*{
    margin: 0;
    padding: 0;
    font-size: 14px;
    background-repeat: no-repeat;
}
a{
    text-decoration:none;
    color: #000;
}
ul,li,ol{
    list-style-type:none;
}
input{
    outline:none;
}
/*页面*/
.center-page{
    display: block;
    margin: auto;
}
.width-1200{
    width: 1200px;
}
.width-1200-center{
    width: 1200px;
    display: block;
    margin: auto;
}
.width-800-center{
    width: 800px;
    display: block;
    margin: auto;
}
.backgroundColor-f08700{
    background-color: #f08700;
}
/*字体样式*/
.fs-12{
    font-size: 12px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
    font-size: 18px;
}
.fs-24{
    font-size: 24px;
}
.fs-30{
    font-size: 30px;
}
.fs-36{
    font-size: 36px;
}
.color-f08700{
    color: #f08700;
}
.color-fff{
    color: #fff;
}
.color-666{
    color: #666;
}
.color-999797{
    color: #999797;
}
.text-center{
    text-align: center;
}
/*行数*/
.line-clamp-1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.line-clamp-2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.line-clamp-3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.line-clamp-4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
/*flex属性*/
.flex{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}
.flex-wrap{
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.justify-center{
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}
.justify-between{
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}
.justify-end{
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -moz-justify-content: flex-end;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}
.align-center{
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}
.align-end{
    align-items:flex-end;
    -webkit-align-items: flex-end;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}
.align-stretch{
    align-items:stretch;
    -webkit-align-items: stretch;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
}

/*banner*/
.bannerMove{
    display: none !important;
}
.banner{
    position: relative;
    width: 100%;
}
.banner .swiper-slide img{
    width: 100%;
}
.banner .swiper-pagination span{
    width: 30px;
    height: 5px;
    border-radius: 0;
    background-color: #f08700;
}
.banner .orderQuery{
    position: absolute;
    left: 50%;
    bottom: 46px;
    width: 354px;
    height: 40px;
    background-color: #fff;
    z-index: 99999;
    border-radius: 200px;
    box-sizing: border-box;
    padding: 2px;
    transform: translate(-50%);
}
.banner .orderQuery span{
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    background-color: #00a0e9;
    color: #fff;
    width: 92px;
    font-weight: bold;
}
.banner .orderQuery input{
    width: calc(100% - 92px - 38px);
    box-sizing: border-box;
    padding-left: 12px;
    border-width: 0;
}
.banner .orderQuery label{
    background-image: url("/tpl/images/search.png");
    background-size: 18px;
    cursor: pointer;
    width: 38px;
    background-position: 0 50%;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}
.banner img{
    width: 100%;
}
/*栏目标题*/
.barTitle{
    padding-bottom: 38px;
}
.barTitle .titleEn{
    color: #f08500;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 68px;
}
.barTitle .title{
    font-size: 24px;
    height: 68px;
    line-height: 68px;
    text-align: center;
}
.barTitle .subTitle{
    font-size: 12px;
    text-align: center;
}

/*图片容器*/
.thumb{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    -moz-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    overflow: hidden;
    transition: transform .5s;
    position: relative;
}
.thumb{
    width: auto;
    height: auto;
    max-width: 100% !important;
    max-height: 100% !important;
    transition: transform .5s;
}
.thumbBox{
    position: relative;
}
.thumbBox div{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.thumbBox div img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: .5s;
}
.thumbBox.thumbBox100 img{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    max-height: none;
    max-width: none;
    transform: translate(0,0);
    transition: .5s;
}
/*动画*/
.animation:hover .thumbBox img{
    transform: scale(1.1) translate(-50%,-50%);
}
.animation.coverLogo .thumb{
    position: relative;
}
.animation.coverLogo .thumb{
    background-color: rgba(0,0,0,.5);
}
.animation.coverLogo:hover .thumb img{
    background-color: rgba(0,0,0,.5);
    transform: scale(1.1);
}
.animation.coverLogo .thumb:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    transition:  1s;
    background-repeat: no-repeat;
    background-image: url("/tpl/images/coverLogo.png");
    background-position: 50%;
    background-size: 42px 42px;
}
.animation.coverLogo:hover .thumb:before{
    opacity: 1;
}
.animation.coverLogo .thumb:after{
    transition: .5s;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    background-color: transparent;
}
.animation.coverLogo:hover .thumb:after{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}
.animation .animationTitle{
    transition: .5s;
}
.animation:hover .animationTitle{
    background-color: #f08700;
    color: #fff;
}
.animation .animationColor{
    transition: .5s;
}
.animation:hover .animationColor{
    color: #f08700;
}

.animation .thumb .rotateY{
    transition: .5s;
}
.animation:hover .thumb .rotateY{
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}
.animation:hover .thumbBox img{
    transform: scale(1.1) translate(-50%,-50%);
}
.animation.coverLogo .thumb{
    position: relative;
}
.animation.coverLogo .thumb{
    background-color: rgba(0,0,0,.5);
}
.animation.coverLogo:hover .thumb img{
    background-color: rgba(0,0,0,.5);
    transform: scale(1.1);
}
.animation.coverLogo .thumb:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    transition:  1s;
    background-repeat: no-repeat;
    background-image: url("/tpl/images/coverLogo.png");
    background-position: 50%;
    background-size: 42px 42px;
}

.animation.coverLogo .thumbBox:after{
    transition: .5s;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    background-color: transparent;
}
.animation.coverLogo:hover .thumbBox:after{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}
.animation:hover .thumbBox img{
    transform: scale(1.1) translate(-45%,-45%);
}
.animation.coverLogo .thumbBox div:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    opacity: 0;
    transition:  1s;
    background-repeat: no-repeat;
    background-image: url("/tpl/images/coverLogo.png");
    background-position: 50%;
    background-size: 42px 42px;
}
.animation.coverLogo:hover .thumbBox div:before{
    opacity: 1;
}
.animation .thumbBox .rotateY{
    transition: .5s;
}
.animation:hover .thumbBox .rotateY{
    transform: rotateY(180deg) translate(50%,-50%);
    -webkit-transform: rotateY(180deg) translate(50%,-50%);
}
.animation:hover .thumbBox.thumbBox100 img{
    transform: scale(1.1) translate(0,0);
    -webkit-transform: scale(1.1) translate(0,0);
}
.pageMenu,.pageMenu .width-1200-center{
    height: 50px;
    background-color: #f5f5f5;
}

/*翻页按钮*/
.pageBtnBox{
    padding: 50px 0;
}
.pageBtnBox a{
    padding: 0 10px;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
    height: 28px;
    display: flex;
    justify-items: center;
    align-items: center;
}
.pageBtnBox a.nolinks{
    background-color: #f08700;
    border-width: 0;
    color: #fff;
}
.pageBtnBox a + a{
    margin-left: 12px;
}

/*订单跟踪*/
.order-page-content .order-search-content{width: 600px;display: block;margin:auto;}
.order-page-content .order-search-content textarea{width: 100%;height: 100px;padding: 10px 15px;border: 1px solid #ddd;}
.order-page-content .order-search-content button{margin-top: 40px;width: 160px;height: 40px;background-color: #e45827;border-width: 0;display: block;margin-left: auto;margin-right: auto;cursor: pointer;}
.order-page-content .order-search-content button i{margin-right: 10px;}
.order-page-content dl{width: 100%;margin: 50px 0;}
.order-page-content dt{padding: 5px 10px;text-align: center;font-size: 20px;font-weight: bold;}
.order-page-content dd{width: 100%;position: relative;}
.order-page-content dd:before{position: absolute;content: '';border-left: 1px dashed #ddd;left: 50%;transform: translate(-50%);top: 0;height: 100%;}
.order-page-content dd span{display: block;text-align: right;}
.order-page-content dd span,.order-page-content dd label{padding: 10px 20px;width: 50%;}
.order-page-content dd i{
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #999;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.order-page-content dd:nth-child(2) i{
    background-color: #333;
}
.order-page-content dd:nth-child(2) i,.order-page-content dd:nth-last-child(1) i{
    width: 20px;
    height: 20px;
}
.order-page-content dd i p{
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
}
.izl-rmenu{position:fixed; right:0; margin-right:5px; bottom:20px; padding-bottom:20px;  z-index:999; }
.izl-rmenu .btn{width:50px; height:50px; margin-bottom:1px; cursor:pointer; position:relative;}
.izl-rmenu .btn-qq{background:url('/tpl/images/r_qq.png') 0px 0px no-repeat; background-color:#6da9de;background-size: 55px;}
.izl-rmenu .btn-qq:hover{background-color:#488bc7;}
.izl-rmenu a.btn-qq,.izl-rmenu a.btn-qq:visited{background:url('/tpl/images/r_qq.png') 0px 0px no-repeat; background-color:#6da9de; text-decoration:none; display:block;background-size: 55px;}
.izl-rmenu .btn-wx{background:url('/tpl/images/r_wx.png') 0px 0px no-repeat; background-color:#78c340;background-size: 55px;}
.izl-rmenu .btn-wx:hover{background-color:#58a81c;}
.izl-rmenu .btn-wx .pic{position:absolute; left:-160px; top:0px; display:none;width:160px;height:160px;}
.izl-rmenu .btn-phone{background:url('/tpl/images/r_phone.png') 0px 0px no-repeat; background-color:#fbb01f;background-size: 55px;}
.izl-rmenu .btn-phone:hover{background-color:#ff811b;}
.izl-rmenu .btn-phone .phone{background-color:#ff811b; position:absolute; width:160px; left:-160px; top:0px; line-height:73px; color:#FFF; font-size:18px; text-align:center; display:none;}
.izl-rmenu .btn-top{background:url('/tpl/images/r_top.png') 0px 0px no-repeat; background-color:#666666; display:none;background-size: 55px;}
.izl-rmenu .btn-top:hover{background-color:#444;}

/*平板*/
@media all and (max-width: 1200px) {
    .banner{
        display: none;
    }
    .bannerMove{
        display: block !important;
    }
    .width-1200-center {
        width: 95%;
    }
}
/*平板*/
@media all and (max-width: 750px) {
    .width-1200-center {
        width: 92%;
    }
    .barTitle{
        padding-bottom: 10px;
    }
    .barTitle .titleEn{
        padding-top: 20px;
    }
    .barTitle .title{
        height: 44px;
        line-height: 40px;
    }
    .pageBtnBox{
        padding: 0 0 30px 0;
    }
}