@charset "utf-8";
@media (min-width: 1500px){
    .container-fluid{
        max-width:1330px;
    }
}
@media (max-width: 1100px){
    .container-fluid{
        width:100%;
    }
}
*{
    margin:0;
    padding:0;
}

body{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    background: #fff;
    color: #2b2b2b;
    position: relative;
    font-family: "Source Han Sans CN","Microsoft YaHei","noto sans";
    overflow-x: hidden;  
}
@media (max-width: 767px){
    body{
        font-size:14px;
    }
}
.ion-ios-play:before,.icon-share:before{
    display: inline-block;
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd{
    list-style:none;
    margin: 0px 0px 0px 0px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;   
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
a{
    text-decoration:none;
    color:#2b2b2b;
}
a:hover{
    text-decoration:none;
    color:#ff4747;
}
a:focus{
    text-decoration:none !important;
}

img{
    width: auto;
    max-width: 100%;
}
/* 底部 */

.footer{    
    background: #2b2b2b;   
    color:#fff;
    padding: 100px 0px 60px;
    position: relative;
}
footer a{
    color:#fff;
}
footer .foot-logo{
    font-size: 20px;
}
footer .foot-contact,
footer .foot-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}
footer .foot-contact li,
footer .foot-nav li{
    color:#feffff; 
    line-height: 1.2;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}
footer .foot-nav li{
    font-size: 18px;
}
footer .foot-nav li:after {
    content: "";
    width: 1px;
    height: 18px;
    border-right: 1px solid #dcdcdc;
    position: absolute;
    top: 2px;
    right: 0px;
}
footer .foot-contact i {    
    font-size: 18px;
    position: relative;    
    padding-right: 5px;
}
.footer .foot-er{
    text-align: right;
}
.footer .foot-er .er-box{
    width: 120px;
    display: inline-block;
}
.footer .foot-er .er-box img{
    text-align: center;
    padding: 8px;    
    background: #fff;
}

.footer .foot-er .er-box p{
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 5px 0 0px;
}
footer .foot-copyright{
    padding: 20px 0px;
    margin-top: 20px;
    border-top: 1px solid #414141;
}
@media (max-width:991px){
    .footer{
        padding: 40px 0 20px 0;
    }
    footer .foot-logo {
        margin-bottom: 10px;
    }
    .footer .foot-er{
        text-align: center;
    }
    footer .foot-contact{
        margin-top: 15px;
    }
    footer .foot-contact li span {
        font-size: 20px;
    }
    footer .foot-copyright {
        padding: 15px 0px 0px;
        margin-top: 15px;
    }
}

/* 侧边悬浮框 */
.float-box{
    position: fixed;
    bottom: 10%;
    right:-120px;
    z-index:999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.float-box.active{
    right:5px;
}
.float-box ul li{
    border: 1px solid #ff3737;
    background: #ff3737;
    text-align: center; 
    border-radius: 2px;
    position: relative;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;    
}
.float-box ul li a{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    -webkit-transition: height .2s ease;
    -o-transition: height .2s ease;
    transition: height .2s ease;
    -webkit-transition-delay: .05s;
    -o-transition-delay: .05s;
    transition-delay: .05s;
}
.float-box ul li a i.ion-ios-play {
    display: inline-block;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.float-box ul li a:hover{
    height: 70px;
}
.float-box ul li a:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 2px;
    height: 30px;
    top: calc(50% - 13px);
    left: -4px;
    z-index: 0;
    background-color: #fff;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform .15s ease-out;
    transition: -webkit-transform .15s ease-out;
    -o-transition: transform .15s ease-out;
    transition: transform .15s ease-out;
    transition: transform .15s ease-out,-webkit-transform .15s ease-out;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.float-box ul li a:hover:after {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    -webkit-transition-delay: .05s;
    -o-transition-delay: .05s;
    transition-delay: .05s;
}
.float-box ul li:hover{
    background: #c02128;
}
@media (max-width: 992px){
   .float-box{
       display:none;
   }
}
/* 手机底部 */
.m-footer{
    position: fixed;
    left:0;
    bottom:0;
    width:100%;
    display: none;
    z-index:999;
}
.m-footer ul{
    margin:0;
    overflow: hidden;
}
.m-footer ul li{
    width:25%;
    height:50px;
    float: left;
    background:#0088e5;
    border-left:1px solid rgba(255,255,255,0.7);
    text-align: center;
    line-height: 50px;
}
.m-footer ul li:first-child{
    border-left:none;
}
.m-footer ul li a{
    color:#fff;
}

@media(max-width:991px){    
    .m-footer{
        display: block;
    }
}
.pre-next{
    font-size: 14px;
}

/* 页码 */
.page-box{
    margin:30px 0;
    text-align: center;
    font-size: 14px;
}
.page-box .pagination{
    overflow: hidden;
}
.page-box .pagination a{
    display: block;
    float: left;
    padding:8px 20px;
    background:#F5F5F5;
    border-radius: 3px;
    text-align: center;
    margin:8px 3px;
}
.page-box .pagination .page-num{
    background:#eee;
}
.page-box .pagination .page-item{
    background:#eee;
}
.page-box .pagination .page-num-current{
    background:#c02128 !important;
    color:#fff;
}
.page-num-current:hover{
    color:#fff;
}
span.page-num{
    display: none;
}