@font-face{
	font-family: OgilvySans;     /*自定义的字体名*/
	src:url('../fonts/OgilvySans-Regular.otf');   /*引入字体包*/
}
@font-face{
	font-family: fzFonts;     /*自定义的字体名*/
	src:url('../fonts/font.TTF');   /*引入字体包*/
}
.en{
	font-family: OgilvySans;       /*使用引入的外部字体*/
}
body{
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: fzFonts;
}
.container{
    width: 100%;
    margin: 0 auto;
    max-width: calc(1600px + 16.6%);
    padding: 0 8.3%;
    position: relative;
}
.top-bg{
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
a{
    text-decoration: none;
    color: #fff;
    outline: none;
}
a:hover{
    color: #fff;
    text-decoration: none;
}
.page-title{
    color: #fff;
    font-size: 34px;
    background: #eb3f43;
    line-height: 38px;
    padding: 0px 0px 0px 4px;
    display: inline-block;
    letter-spacing: 4px;
    margin-top: 90px;
}
.page-text{
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 14px;
    line-height: 30px;
}
.pc{
    display: block !important;
}
.mobile{
    display: none !important;
}

.header{
    height: 90px;
    line-height: 90px;
    background: #eb3e44;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}
.header .container{
    position: relative;
}
.header .container .nav-box{
   background: url(../img/nav_bg.jpg) right center no-repeat #eb3e44;
   background-size: 560px 100%;
   position: relative;
   z-index: 2;
   height:90px;
}
.header .link-box{
    position: absolute;
    top: 0;
    right: 560px;
}
.header .link-box a{
    display: inline-block;
    margin: 0 18px;
    height: 90px;
}
.header .link-box a:hover{
    opacity: 0.7;
}
.header .link-box a.active{
    border-bottom: 3px solid #fff;
}
.header .link-box a.active:hover{
    opacity: 1;
}
.header .nav-mask{
    position: absolute;
    top: 0;
    right: 0%;
    background: #000;
    width: 50%;
    height: 90px;
}
.header .sign-btn{
    float: right;
    text-align: center;
    width: 133px;
    height: 48px;
    line-height: 46px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 21px;
}
.header .sign-btn:hover{
    background: #eb3f43;
    border:1px solid #eb3f43;
}
@media (max-width: 1600px) {
    .header .container .nav-box{
        background-size: 500px 100%;
     }
     .header .link-box{
         right: 500px;
     }
}
@media (max-width: 1400px) {
    .header .container .nav-box{
        background-size: 410px 100%;
     }
     .header .link-box{
         right: 420px;
     }
}
@media (max-width: 1250px) {
    .header .link-box a{
        margin: 0 8px;
    }
}
@media (max-width: 1024px) {
    .container{
        padding:0 5.5%;
    }
    .page-title{
        margin-top: 45px;
        font-size: 22px;
        line-height: 24px;
    }
    .page-text{
        line-height: 22px;
        margin: 20px 0 30px 0;
        font-size: 14px;
    }
    .pc{
        display: none !important;
    }
    .mobile{
        display: block !important;
    }

    #mask{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.7);
        z-index: 98;
        display: none;
    }
    .header{
        height: 70px;
        line-height: 70px;
        position: fixed;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
    }
    .header.scroll{
        top: -70px;
    }
    .header .container{
        position: static;
    }
    .header .nav-mask{
        display: none;
    }
    .header .logo{
        width: 75px;
    }
    .header .container .nav-box{
        background: none;
        position: static;
    }
    .header .sign-btn{
        display: none;
    }
    .header .menu{
        display: block;
        position: absolute;
        right: 5.5%;
        top:50%;
        z-index: 2;
        transform: translateY(-50%);
    }
    .header .menu .line{
        width:28px;
        height:2px;
        background: #fff;
        margin:6px 0;
        border-radius: 5px;
        position: static;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .header .menu .line:nth-child(1) {
        transform: rotate(0);
        -webkit-transform-origin: 10px 0;
        transform-origin: 5px 0;
      }
    .header .menu .line:nth-child(2) {
        opacity: 1;
    }
    .header .menu .line:nth-child(3) {
        transform: rotate(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
    }
    .header .menu.active .line:nth-child(1) {
        transform: rotate(45deg);
      }
    .header .menu.active .line:nth-child(2) {
        opacity: 0;
    }
    .header .menu.active .line:nth-child(3) {
        transform: rotate(-45deg);
    }
    .header .link-box{
        position: fixed;
        top: 70px;
        left: 100%;
        width: 100%;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        height: calc(100% - 70px);
    }
    .header .link-box.active{
        left: 0;
    }
    .header .link-box a{
        display: block;
        border-bottom: 1px solid #f59fa1 !important;
        height: 60px;
        line-height: 60px;
        margin: 0 5.5%;
        font-size: 15px;
    }
    .header .link-box a:first-child{
        border-top: 1px solid #f59fa1;
    }
    .header .link-box a:last-child{
        border-bottom: none !important;
    }
    .header .link-box .link{
        background: url(../img/nav_line.jpg) left top no-repeat #eb3f43;
        background-size: 14px 100%;
    }
    .header .btn-box{
        position: relative;
        margin: 0;
    }
    .header .btn-box img{
        width: 100%;
        display: block;
    }
    .header .btn-box .btn{
        display: block;
        width: 200px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        background: #fff;
        color: #eb3e44;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        padding: 0;
        font-weight: bold;
        margin: 0;
    }
}

.totop{
    cursor: pointer;
    position: fixed;
    right: 5%;
    bottom: 120px;
    display: none;
    z-index: 97;
    text-align: center;
    border-radius: 15px;
}
.totop img{
    width: auto;
}
.totop p{
    margin-bottom: 3px;
    font-weight: bold;
    font-size: 12px;
}
.totop:hover{
    opacity: 0.6;
}
.footer{
    background: #eb3e44;
    height: 100px;
    line-height: 96px;
    /* overflow: hidden; */
}
.footer *{
    vertical-align: middle;
}
.footer .logo{
    margin-right: 40px;
    vertical-align: middle;
}
.footer .link{
    margin: 0 12px;
    vertical-align: middle;
    display: inline-block;
    font-size: 16px;
    color: #fff;
}
.footer a.link:hover{
    opacity: 0.6;
}
.footer .follow-box{
    vertical-align: middle;
    display: inline-block;
    color: #fff;
    margin-left: 12px;
    font-size: 16px;
}
.footer .follow-box .wx{
    display:inline-block;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}
.footer .follow-box .wx .wx-popup{
    position: absolute;
    background: #fff;
    border-radius: 15px;
    top: -172px;
    width: 324px;
    height: 192px;
    padding: 20px 20px;
    left: -150px;
    display: none;
    z-index: 9;
}
.footer .follow-box .wx:hover .wx-popup{
    display: block;
}
.footer .follow-box .wx .wx-popup .arrow{
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
}
.footer .follow-box .wx .wx-popup .item{
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
}
.footer .follow-box .wx .wx-popup .item .qr{
    width: 90%;
}
.footer .follow-box .wx .wx-popup .item p{
    color: #000;
    text-align: center;
    line-height: 14px;
    font-size: 14px;
    margin-top: 5px;
}
.footer .follow-box img{
    width: 23px;
}
.footer .follow-box .wx>img:hover,.footer .follow-box .sina>img:hover{
    opacity: 0.6;
}
.follow-popup{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
}
.follow-popup .pic{
   width: 100%;
}
.follow-popup .content{
    width: 88%;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
.follow-popup .close{
    opacity: 1;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
}
.popup-end{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
}
.popup-end .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 504px;
    height: 437px;
}
.popup-end .content img{
    width: 100%;
    display: block;
}
.popup-end .content .enter-btn{
    width: 200px;
    height: 51px;
    position: absolute;
    top:343px;
    left: 152px;
    cursor: pointer;
    text-align: center;
    line-height: 51px;
    background: #fff;
    color: #eb3e44;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    border: 1px solid #fff;
}
.popup-end .content .enter-btn:hover{
    background:#eb3e44;
    color: #fff;
}

@media (max-width: 1024px) {
    .totop{
        right: 2%;
    }
    .footer{
        height: auto;
        line-height: normal;
        text-align: center;
        padding: 30px 0 40px 0;
    }
    .footer .logo{
        margin: 0 0 20px 0;
        width: 75px;
    }
    .footer .link{
        display: block;
        height: 60px;
        line-height: 60px;
        margin: 0;
        border-top:1px solid #ed9799;
    }
    .footer .follow-box{
        border-top:1px solid #ed9799;
        height: 60px;
        line-height: 60px;
        width: 100%;
        display: block;
        margin: 0;
        padding-top: 10px;
    }
    .footer .follow-box img{
        width: 34px;
    }
    .footer .follow-box .wx .wx-popup{
        top: -195px;
        left: -145px;
    }
    .popup-end .content{
        width: 89%;
        height: auto;
    }
    .popup-end .content .enter-btn{
        opacity: 0;
        top: auto;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .animate1{
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        /* padding-top: 200px !important; */
        opacity: 0;
        position: relative;
        top: 200px !important;
    }
    .animate1.action {
        top: 0 !important;
        opacity: 1;
    }
    .animate2{
        -webkit-transition: all 1s;
        transition: all 1s;
        top: 250px !important;
        opacity: 0;
        position: relative;
    }
    .animate2.action {
        top: 0 !important;
        opacity: 1;
    }
    .animate3{
        -webkit-transition: all 1.5s;
        transition: all 1.5s;
        top: 300px !important;
        opacity: 0;
        position: relative;
    }
    .animate3.action {
        top: 0 !important;
        opacity: 1;
    }

    .tools .item.animate1{
        top: 50px !important;
    }
    .tools .item.animate2{
        top: 100px !important;
    }
    .tools .item.animate3{
        top: 150px !important;
    }
    .tools .item.animate1.action{
        top: 0 !important;
    }
    .tools .item.animate2.action{
        top: 0 !important;
    }
    .tools .item.animate3.action{
        top: 0 !important;
    }
}