#header {
    position: fixed;
    top: 0;
    z-index: 99;
    height: 70px;
    width: 100%;
    max-width:1920px;
    transition: all .7s;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

#header.on {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-bottom: none;
}

#header.on .header .h_right .search {
    cursor: pointer;
    background: url(../images/search_on.png)no-repeat center;
    background-size: 80%;
}

@-webkit-keyframes z_scaleIn {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes z_scaleIn {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.z_scaleIn {
    -webkit-animation-name: z_scaleIn;
    animation-name: z_scaleIn;
}

@-webkit-keyframes z_fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.w1350 {
    width: 1350px;
    margin: 0 auto;
}

.w1500 {
    width: 1500px;
    margin: 0 auto;
}

.pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.pop .bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.pop .popBody {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -250px;
    width: 1200px;
    height: 500px;
    background-color: #fff;
    padding: 30px;
    animation: popBody 1s;
    -webkit-animation: popBody 1s;
}

.search_pop .popBody {
    background: transparent;
    height: 86px;
    margin-top: -43px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: bigToLittle;
    animation-name: bigToLittle;
    background-color: white;
}

.search_pop .popBody p {
    font-size: 18px;
    color: #fff;
    text-align: right;
    margin-top: 20px;
}

.search_pop .ico {
    width: 24px;
    height: 26px;
    background: url(../images/search2.png) no-repeat center;
    position: absolute;
    right: 30px;
    top: 30px;
}

.search_input {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    border-bottom: 3px solid #fff;
    padding-bottom: 26px;
}

#law_wr {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

#law_wr .bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: .8;
    filter: alpha(opacity=80);
}

#law_wr .cnt {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 1200px;
    height: 490px;
    background: #fff;
    padding: 35px 40px;
    margin: -245px 0 0 -600px;
}

#law_wr .btn {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    right: 30px;
    background: url(../images/xn.png) no-repeat center;
}

#law_wr p {
    margin: 0;
}

#law_wr .box {
    overflow: hidden;
    padding: 36px 0 35px;
}

#law_wr .h4 {
    font-size: 16px;
    color: #4c4c4c;
    line-height: 24px;
    margin: 31px 0 10px;
}

#law_wr .h4:first-child {
    margin-top: 0;
}

#law_wr .til {
    font-size: 18px;
    color: #076ebe;
    line-height: 28px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dae0e6;
}

#header .header {
    position: relative;
    z-index: 70;
    width: 100%;
    padding-left: 60px;
    max-width: 1920px;
    height: 70px;
    margin: 0 auto;
}

#header .header .logo {
    display: block;
    width: 164px;
    float: left;
    height: 38px;
    margin-top: 17px;
    background: url(../images/logo.png) no-repeat center center;
    background-size: 80%;
    transition: all .7s;
}

#header.on .header .logo {
    background: url(../images/logo_on.png) no-repeat center center;
    background-size: 80%;
}

#header .header .h_right {
    /* position: relative; */
    z-index: 60;
    float: right;
    height: 70px;
}

#header .header .h_right ul {
    margin-right: 54px;
}

#header .header .h_right ul li {
    float: left;
    height: 70px;
    line-height: 70px;
    position: relative;
    padding: 0 15px;
    transition: all .5s;
}

#header .header .h_right ul li:last-child {
    margin-right: 34px;
}

#header .header .h_right ul li.on {
    color: #fff;
    background-color: #3e8bd9;
    ;
    /* border-bottom: 3px solid #0059b3; */
}

#header .header .h_right ul li.on a {
    color: #fff;
}

#header .header .h_right ul li a {
    font-size: 14px;
    color: #ffffff;
    transition: all .7s;
    font-weight: bold;
}

#header.on .header .h_right ul li.on a {
    color: #fff;
}

#header.on .header .h_right ul li.co a {
    color: #0059b3;
}

#header.on .header .h_right ul li a {
    color: #808080;
}

#header .header .h_right ul li:hover a {
    color: #fff;
}
#header .header .h_right ul li:hover{
    color: #fff;
    background-color: #3e8bd9;
    ;
}

#header .header .h_right .search {
    background: url(../images/search.png) no-repeat center center;
    background-size: 80%;
    height: 70px;
    width: 24px;
    position: absolute;
    top: 0;
    right: 40px;
    transition:all .6s;
    cursor:pointer;
}
#header .header .h_right .search:hover{
    background: url(../images/search_on1.png) no-repeat center center;
    background-size: 80%;
}

.con01 {
    margin-top: 70px !important;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

#footer {
    max-width: 1920px;
    margin: 0 auto;
    position:relative;
    z-index:10;
}

#footer .ft {
    max-width: 1920px;
    padding-top: 48px;
    height: 160px;
    background: #292e33;
}

#footer .ft .lf {
    float: left;
}

#footer .ft .lf p {
    float: left;
    font-size: 14px;
    color: #ffffff;
    opacity: .7;
}

#footer .ft .lf span {
    position: relative;
    cursor: pointer;
    float: right;
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    opacity: 1;
    padding: 5px 0;
    background: url(../images/wx.png) no-repeat center left;
    padding-left: 65px;
    background-position: 20px 0;
    margin-top: -4px;
    transition:all .6s;
}

#footer .ft .lf span:hover:after {
    display:block;
    opacity: 1;
}

#footer .ft .lf span:after {
    bottom: 40px;
    z-index: 99;
    left: -29px;
    content: '';
    width: 136px;
    height: 146px;
    background: url(../images/f_ma.png) no-repeat center center;
    position: absolute;
    opacity: 0;
    transition: all .7s;
    display:none;
}

.siteSelect {
    float: right;
    /* margin-left: 20px; */
    /*margin-top: 16px;*/
    position: relative;
    z-index: 33;
}

.siteSelect span {
    display: block;
    width: 310px;
    height: 44px;
    color: #8d8d8d;
    text-align: left;
    border: 2px solid #8d8d8d;
    line-height: 44px;
    padding-left: 20px;
    background: url(../images/icof.png) 276px center no-repeat;
    cursor: pointer;
}

.sitelist {
    display: none;
    float: left;
    position: absolute;
    width: 310px;
    bottom: 100%;
    left: 0;
    background: #8d8d8d;
}

.sitelist a {
    color: #e2e2e2;
    display: block;
    font-size: 12px;
    /* height: 30px; */
    line-height: 40px;
    padding-left: 15px;
    border-top: 1px solid #989898;
    transition:all .6s;
}
.sitelist a:hover{
    color: #006ad4;
}

.pubilc {
    margin-top: 70px;
}

.pubilc .ban {
    padding-top: 90px;
    width: 100%;
    max-width: 1920px;
    height: 200px;
    background: url(../images/banner.jpg) no-repeat center;
}

.pubilc .ban .ban_txt {
    float: right;
}

.pubilc .ban .ban_txt h3 {
    font-size: 30px;
    color: #ffffff;
    opacity: .5;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.pubilc .ban .ban_txt h4 {
    font-size: 22px;
    color: #ffffff;
    margin-top: 10px;
}

.pubilc .crumbs {
    height: 72px;
    width: 100%;
    max-width: 1920px;
    background: #e8edf3;
}

.pubilc .crumbs .lf {
    float: left;
    height: 72px;
    line-height: 72px;
}

.pubilc .crumbs .rt {
    float: right;
}

.pubilc .crumbs .lf span {
    font-size: 15px;
    color: #6f7780;
}

.pubilc .crumbs .lf .s1 {
    background: url(../images/house.png) no-repeat center left;
    padding-left: 21px;
    margin-right: 11px;
}

.pubilc .crumbs .lf .s2 {
    background: url(../images/sj.png) no-repeat center left;
    padding-left: 18px;
}

.pubilc .crumbs .rt ul li {
    float: left;
    height: 72px;
    line-height: 72px;
}

.pubilc .crumbs .rt ul li {
    display: block;
    height: 72px;
    line-height: 72px;
    color: #6f7780;
    font-size: 15px;
    padding-left: 40px;
}

.pubilc .crumbs .rt ul li.on a {
    color: #0066cc;
}

.pc_txt {
    width: 100%;
    margin-bottom: 40px;
}

.pc_txt h3 {
    text-transform: uppercase;
    font-size: 24px;
    color: #7aa3cc;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.pc_txt h4 {
    margin-top: 6px;
    font-size: 24px;
    color: #4c4c4c;
}