@import url('base.css');
:root {
    /* prettier-ignore */
    --Color: #F2632C;
    --MinorColor: #3A9B54;
    /* prettier-ignore */
    --lightColor: #fedcd2;
    /* prettier-ignore */
    --bgColor: #F3F6FB;
    /* prettier-ignore */
    --navBgColor: #feede8;
}
#main{width: 100%; overflow: hidden;}


.imgblock{width: 100%;display: block;}
.img{width: 100%;display: block; transition: all 0.3s; transform: scale(1,1);}
.img:hover{transform: scale(1.1,1.1);}

/**/
.flex{display: flex;} 
.flex-col{flex-direction: column;}
.justify-between{justify-content: space-between;}
.justify-center{justify-content: center;}
.items-center{align-items: center;}
.flex-wrap{flex-wrap: wrap;}
.h-full {height: 100%;}
.p-t-150 {padding-top: 150px; }
.p-b-64{padding-bottom: 64px;}
.mr-30{margin-right: 30px;}
.bl-row{display: flex;}
.bl-col {width: 100%;}
.bl-col-5{width: 50%;}


/*悬浮*/
.xfwrap{
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 99;
    width: 40px;
}

.xf-top,.xf-tel{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 10px 0;
    position: relative;
}
.xf-top{
    background: #fff url(../images/top.png) no-repeat center center;
    background-size: 100%;
}
.xf-tel-img{
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.xf-tel-text{
    position: absolute;
    width: 0px;
    background: #fff;
    right: 0;
    border-radius: 20px;
    top: 3px;
    height: 34px;
    line-height: 34px;
    z-index: 1;
    padding: 0 30px 0 5px;
    font-size: 0;
    transition: all 0.3s;
}

.xf-tel.active .xf-tel-text{
    width: 150px;
    font-size: 14px;
}


/*PC端媒体查询*/
@media(min-width: 768px){
    .middle{
        width: calc(100vw - 11.4%);
        min-width: 1200px; 
        margin: 0 auto;
    }
    /*==头部==*/
    .header-top{
        background: #2f333a;
        height: 40px;
    }
    .header-msg{
        color: #ff7f27;
    }
    .header-search{
        width: 30px;
        background: rgba(255,255,255,0);
        height: 30px;
        transition: all 0.3s;
    }
    .header-search>form{
        width: 100%;
        height: 100%;
        display: flex;
    }
    .header-search-input{
        width: calc(100% - 30px);
        background: none;
        border: 0 none;
        outline: none;
        text-indent: 10px;
    }
    .header-search-btn{
        width: 30px;
        height: 30px;
        background: url(../images/icon_search.png) no-repeat center;
        background-size: 20px 20px;
        cursor: pointer;
        border: 0 none;
    }
    .header-search:hover{
        width: 150px;
        background: rgba(255,255,255,1);
    }
    .header-search:hover .header-search-btn{
        background: url(../images/icon_search1.png) no-repeat center;
        background-size: 20px 20px;
    }
    .header-line{width: 1px; height: 20px; background: #898989; margin: 0 10px;}
    .icon-login{
        cursor: pointer;
        width: 30px;
        height: 30px;
        background: url(../images/icon_login.png) no-repeat center;
        background-size: 20px 20px;
    }
    .logo{ width: 145px; }
    .nav{display: flex;font-size: 16px;}
    .nav li{width: 100px;text-align: right;}
    .nav li a{color: #000;}
    .nav li a:hover{color:#0867c7; font-weight: bold;}
    .nav li:nth-child(5) a:hover,.nav li:nth-child(6) a:hover{color: #000;font-weight: normal;}
    .header-bottom{
        height: 80px;
        background: #fff;
    }

    /*底部*/
    .footer-top{
        background: #2a2a2a;
        color: #c3c3c3;
        padding: 30px 0;
    }
    .footer-wrap{
        width: 1200px;
    }
    .footer-top-left{
        width: 300px;
        font-size: 30px;
        line-height: 30px;
        padding: 0 50px;
    }
    .footer-top-right{
        font-size: 14px;
        line-height: 1.7;
        padding-left: 70px;
    }
    .footer-top-right h3{font-size: 16px;}
    .footer-info{
        background: #000;
        text-align: center;
        padding: 10px 0;
        color: #ccc;
    }
    .footer-info a{color: #ccc;}
    .footer-info a:hover{color: rgba(255,255,255,0.9);}

    /*n-banner*/
    .n-banner{
        background: #2a2a2a;
        height: 400px;
        overflow: hidden;
        text-align: center;
        line-height: 400px;
        font-size: 30px;
    }
    .n-banner .imgblock{
        object-fit: cover;
        height: inherit;
    }

    .m-hidden{
        display: block !important;
    }
    .p-hidden{
        display: none !important;
    }
}

/*移动端端媒体查询*/
@media(max-width: 768px){
    .middle{width: 100%; margin: 0 auto;}
    /*头部*/
    .header-wrap{
        position: relative;
        width: 100%;
        height: 54px;
        z-index: 9;
        background: rgba(0, 0, 0, 1);
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navpop{
        width: 100%;
        height: calc(100vh - 54px);
        background: #000;
        font-size: 16px;
        position: fixed;
        left: -100vw;
        bottom: 0;
        z-index: 999;
        padding: 30px 0;
        transition: all 0.3s;
    }
    .navpop.active{
        left: 0;
    }
    .nav li{
        width: 100%;
        padding-left: 10%;
    }
    .nav li a{
        display: block;
        color: #fff;
        padding: 10px 0;
    }
    .nav li a:hover{color: rgba(255,255,255,0.8);}
    .cfbtn{position: absolute;}
    .cfbtn>span,.cfbtn:before,.cfbtn:after{
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        margin: 7px 0;
        transition: all 0.3s;
    }
    .cfbtn-close>span{display: none; margin: 0;}
    .cfbtn-close:before{
        margin: 0;
        transform: rotate(-45deg);
    }
    .cfbtn-close:after{
        margin: 0;
        transform: rotate(45deg);
    }
    .logo{ width: 145px; position: absolute; right: 10px; }

    .header-bottom{
        border-top: 1px solid #ccc;
        display: flex;
        align-items: center;
        padding-top: 10px;
        margin-top: 30px;
    }
    .icon-login{
        width: 30px;
        height: 30px;
        background: url(../images/icon_login.png) no-repeat center;
        background-size: 20px 20px;
    }
    .header-line{width: 1px; height: 20px; background: #898989; margin: 0 10px;}

    .header-search{
        width: 150px;
        background: rgba(255,255,255,1);
        height: 30px;
    }
    .header-search>form{
        width: 100%;
        height: 100%;
        display: flex;
    }
    .header-search-input{
        width: calc(100% - 30px);
        background: none;
        border: 0 none;
        outline: none;
        text-indent: 10px;
    }
    .header-search-btn{
        width: 30px;
        height: 30px;
        background: url(../images/icon_search1.png) no-repeat center;
        background-size: 20px 20px;
        cursor: pointer;
        border: 0 none;
    }

     /*底部*/
     .footer-top{
        background: #2a2a2a;
        color: #c3c3c3;
        padding: 10px;
    }
    .footer-top-left{
        display: none;
    }
    .footer-top-right{
        font-size: 14px;
    }
    .footer-top-right h3{font-size: 16px;}
    .footer-info{
        background: #000;
        text-align: center;
        padding: 5px 0;
        font-size: 12px;
        color: #ccc;
    }
    .footer-info a{color: #ccc;display: block;}
    .footer-info a:hover{color: rgba(255,255,255,0.9);}

    /*n-banner*/
    .n-banner{
        background: #2a2a2a;
        height: 160px;
        overflow: hidden;
        text-align: center;
        line-height: 160px;
        font-size: 30px;
    }
    .n-banner .imgblock{
        object-fit: cover;
        height: inherit;
    }
    
    .m-hidden{
        display: none !important;
    }
    .p-hidden{
        display: block !important;
    }
}

    /* .header{
        position: relative;
        width: 100%;
        height: 54px;
        z-index: 9;
        background: rgba(0, 0, 0, 1);
        padding: 0 10px;
        
    }
    .header-wrap{
        width: 100%;
        height: 54px;
        position: relative;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    } */

    




.pro_view {
    background: #222;
}




.imgbox{
    overflow: hidden;
    border-radius: 20px;
    border: 6px solid #434343;
    position: relative;
    box-shadow: 17px 0 24px rgba(46,46,46,0.6);
}
.imgbox2{
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ffffff;
    position: relative;
    background: #a0a0a0;
}


/*内容主体*/
@keyframes translateX{
    0% {
        transform: translateX(50%);
        opacity: 0;
    }
    to {
        transform: translateX(0%);
        opacity: 1;
    }
}


@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}






/*== S 页面加载 S ==*/
@keyframes tras {
    0% {transform: rotate(0);}
    to {transform: rotate(360deg);}
}
.loading{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading.hidden{
    display: none;
    font-size: 0;
    z-index: -99;
}
.loading-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-icon{
    width: 30px;
    height: 30px;
    position: relative;
    animation: tras 1s linear infinite;
}
.loading-text{
    font-size: 16px;
    padding: 20px 0;
}
.loading-icon>i{
    display: block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
}
.loading-icon-1{left: 0;top: 0; opacity: 1;}
.loading-icon-2{right: 0;top: 0; opacity: 0.8;}
.loading-icon-3{left: 0;bottom: 0; opacity: 0.6;}
.loading-icon-4{right: 0;bottom: 0; opacity: 0.4;}
/*== E 页面加载 E ==*/

