/*整体剧中*/
.center_ltn{
    /* Firefox */
    display:-moz-box;
    -moz-box-pack:center;
    -moz-box-align:center;

    /* Safari, Chrome, and Opera */
    display:-webkit-box;
    -webkit-box-pack:center;
    -webkit-box-align:center;

    /* W3C */
    display:box;
    box-pack:center;
    box-align:center;
}
/*上下居中*/
.center_v {
    display:-moz-box;
    -moz-box-align:center;

    /* Safari, Chrome, and Opera */
    display:-webkit-box;
    -webkit-box-align:center;

    /* W3C */
    display:box;
    box-align:center;
}
/*左右居中*/
.center_h {
    /* Firefox */
    display:-moz-box;
    -moz-box-pack:center;

    /* Safari, Chrome, and Opera */
    display:-webkit-box;
    -webkit-box-pack:center;

    /* W3C */
    display:box;
    box-pack:center;
}

/*空行*/
.ontop{ height:2em;}
.ontop2{ height:1em;}
.ontop1{ height:1em;background-color: #fecb00;}

/*a标签初始化*/
a {
    text-decoration: none;
    color: #656565;
}
a:hover{
    text-decoration:none;
}

input,button,a {
    outline:0 none !important; blr:expression(this.onFocus=this.blur());
}

/*轮播图初始化*/
.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /*height: 200px;*/
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*5等分*/
.col-xs-1-5 {
    width: 20%;
    float: left;
    padding-left: 7px;
    padding-right: 7px;
    border-left: rgba(140,140,140,0.3) solid 0.5px;
    border-right: rgba(140,140,140,0.3) solid 0.5px;
    margin-bottom: 10px;
    margin-top: 20px;
}

/*li前面小箭头*/
.arrow_g{
    color: #7c7c7c;
    zoom: 0.6;
}
.arrow_y{
    color: #c6bb6e;
    zoom: 0.6;
}

/*通用ul竖版选择器*/
.jj_ul {
    list-style: none;
    font-size: 15px;
    font-weight: bolder;
    padding: 40px;
    margin-top: 40px;
    background-color: #f6f6f6;
}
.jj_ul li{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: #7c7c7c solid 1px;
}
.jj_ul .li_active{
    color: #c6bb6e;
}
/*通用文章p标签*/
.jj_p {
    margin-top: 20px;
    text-align:justify;
    line-height: 24px;
    word-spacing: 4px;
    text-indent: 2em;
    white-space: normal;
}

/*超过长度显示省略号*/
.limit-length {
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

/*swiper左右切换按钮*/
.ltn_swp_btn {
    border: 1px solid #bebebe;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background-color: rgba(180,180,180,.7);
}