﻿@charset "UTF-8";
@font-face {
    font-family: "FZYANSJW_ZHONG";
    src: url(../fonts/fzyansjw_zhong.woff);
}
@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }
    40% {
        -webkit-transform: scale3d(0.75,1.25,1);
        transform: scale3d(0.75,1.25,1)
    }
    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }
    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }
    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }
    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}
@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1,1,1);
        -ms-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        -ms-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }
    40% {
        -webkit-transform: scale3d(0.75,1.25,1);
        -ms-transform: scale3d(0.75,1.25,1);
        transform: scale3d(0.75,1.25,1)
    }
    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        -ms-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }
    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        -ms-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }
    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        -ms-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }
    100% {
        -webkit-transform: scale3d(1,1,1);
        -ms-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}
.header{
    background: url(../images/header_bg.png) no-repeat center bottom #d0121b;
    padding: 35px 0;
    box-shadow: 0px 50px 150px 50px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}
.search{
    float: right;
    margin-top: 28px;
    background-color: #2c2c2c;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, .3);
}
.search>.search-text{
    width: 190px;
    height: 42px;
    font-size: 17px;
    padding-left: 10px;
    padding-right: 13px;
    margin-right: -7px;
    background: none;
    color: #fff;
}
.search>.search-btn{
    vertical-align: top;
    width: 28px;
    height: 34px;
    background: url(../images/search.png) no-repeat center;
    box-sizing: content-box;
    cursor: pointer;
    padding: 4px 9px;
}
.nav_wrapper{
    position: absolute;
    z-index: 99;
    width: 100%;
}
.nav{
    position: relative;
    width: 100%;
}
.nav>ul{
    margin: 0 auto;
    width: 1280px;
}
.nav>ul>li{
    text-align: center;
    
    padding-top: 25px;
    float: left;
    margin-left: 68px;
}
.nav>ul>li:hover>a{
    color:#d61a13;
}
.nav>ul>li:first-child{
    margin-left: 0;
}
.nav>ul>li>a{
    display: block;
    color: #fff;
}
.nav>ul>li>a>p{
    display: table;
    margin: 0 auto;
    font-size: 22px;
    position: relative;
}
.nav>ul>li>a>p:after{
    content: "";
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: -15px;
    top: 48%;
}
.nav>ul>li>a>p:before{
    content: "";
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: -15px;
    top: 48%;
}
.nav>ul>li>a>span{
    display: block;
    font-size: 14px;
}
.nav>ul>li>ul{
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 50%;
    top: 100%;
    background: #004986;
    background-color: rgba(208, 18, 27, 0.73);
    padding: 0px 0;
    -webkit-transform: translate(-50%,12px);
    -ms-transform: translate(-50%,12px);
    transform: translate(-50%,12px);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.nav>ul>li:hover>ul{
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    visibility: visible;
    opacity: 1;
}
.nav>ul>li>ul>li{
    padding: 0 14px;
}
.nav>ul>li>ul>li:hover{
    background: rgba(210, 82, 88, 0.97);
}
.nav>ul>li>ul>li>a{
    display: block;
    font-size: 17px;
    color: #fff;
    font-family: "arial";
    line-height: 42px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav_2_wrapper{
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    padding: 30px 0;
    z-index: 2;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
}
.nav_2{
    width: 1280px;
    margin: 0 auto;
}
.nav>ul>li:hover .nav_2_wrapper{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    background:  url(../images/nav_bg.png) no-repeat #fff;
    background-size: 100% 100%;
}
.nav_l{
    width: 360px;
    padding: 8px 0;
    margin-left: 20px;
    text-align: left;
    margin-top: 30px;
}
.nav_title1{
    background: url(../images/nav_img_bg.png) no-repeat;
    
    margin-top: 25px;
width: 302px;height: 163px;}
.nav_title1>div{
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 27px;
margin: auto;margin-top: 37px;}
.nav_title1>div p{
    font-size: 20px;
    font-weight: 600;
}
.nav_title1>div span{
}
.nav_l .nav_img{
    display: block;
    vertical-align: top;
    width: 260px;
    margin:  0 auto;
    margin-top: 5px;
}
.nav_l p{
    line-height: 52px;
    font-weight: 600;
    font-size: 18px;
    color: #292929;
}
.nav_l span{
    font-size: 14px;
    color: #838383;
    font-weight: 600;
}
.nav_r{
    width: 44%;
}
.nav_r ul li{
    margin: 8px 0;
}
.nav_r ul li a{
    display: block;
    text-align:  left;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.nav_r ul li:hover a{
    padding-left:8px;
}
.nav_r ul li a p{
    font-size: 18px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.nav_r ul li:hover a p{
    color:#d0121b;
}
.nav_r ul li a span{
    color: #adadad;
    display: block;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.nav_r ul li:hover a span{
    color: #d28b8f;
}
.footer_select select{
    border: none;
    background: #fff;
    text-align: center;
    text-align-last: center;
    background: url(../images/select-bg.png) no-repeat scroll right center transparent;
    background-color: #fff;
    padding: 5px 0;
    padding-right: 38px;
    width: 250px;
    margin: 0 50px;
    height: 40px;
}
.footer_select select option{
    text-align: center;
}
select::-ms-expand{ display: none; }
select{
    appearance:none;  
    -moz-appearance:none;  
    -webkit-appearance:none;
}
.footer_logo{
    margin-bottom: 25px;
}
.footer{
    background: url(../images/footer_bg.png) no-repeat left bottom #d0121b;
    background-size: 100% 100%;
    padding: 35px 0;
}
.footer_dz{
    width: 925px;
}
.footer_dz p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}
.footer_dz a{
    display: inline-block;
    color: #fff;
}
.copyRight{
    background: #4e4e4e;
    padding: 15px;
}
.copyRight p{
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}
.footer_dz table{
    color: #fff;
    font-size: 16px;
}
.footer_dz table td{
    margin-right: 10px;
    padding-right: 15px;
    line-height: 24px;
}
.nav_wrapper{
}