@charset "utf-8";
body {
    width: 100%;
    height: 100%;
    color: #666;
    font: 14px/1.5 "Microsoft YaHe",Tahoma, Geneva, sans-serif;
    background: #fff;
    min-width: 1200px;
}
* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}
@media screen and (min-width: 768px) {

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::selection {

}
::-moz-selection {

}
::-webkit-selection {

}

}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
    clear: both;
}

.fr{
    float: right;
}
.fl{
    float: left;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex_d-c {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex_wrap {
    -webkit-box-pack: wrap;
    -ms-flex-pack: wrap;
    -webkit-justify-content: wrap;
    flex-wrap: wrap;
}

.flex_j-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex_j-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_j-s-b {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex_j-s-a {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex_a-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flex_a-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex_a-b {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ellipsis-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}


@media screen and (min-width: 1024px) {

@-webkit-keyframes img_change {
    0% {
        -webkit-transform:scale(1)
    }
    50% {
        -webkit-transform:scale(1.2)
    }
    100% {
        -webkit-transform:scale(1)
    }
}
@-moz-keyframes img_change {
    0% {
        -moz-transform:scale(1)
    }
    50% {
        -moz-transform:scale(1.2)
    }
    100% {
        -moz-transform:scale(1)
    }
}
@-o-keyframes img_change {
    0% {
        -o-transform:scale(1)
    }
    50% {
        -o-transform:scale(1.2)
    }
    100% {
        -o-transform:scale(1)
    }
}
@keyframes img_change {
    0% {
        transform:scale(1)
    }
    50% {
        transform:scale(1.2)
    }
    100% {
        transform:scale(1)
    }
}

@-webkit-keyframes p_change {
    0% {
        -webkit-transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(15px);
    }
    100% {
        -webkit-transform:translateX(0);
    }
}
@-moz-keyframes p_change {
    0% {
        -moz-transform:translateX(0);
    }
    50% {
        -moz-transform:translateX(15px);
    }
    100% {
        -moz-transform:translateX(0);
    }
}
@-o-keyframes p_change {
    0% {
        -o-transform:translateX(0);
    }
    50% {
        -o-transform:translateX(15px);
    }
    100% {
        -o-transform:translateX(0);
    }
}
@keyframes p_change {
    0% {
        transform:translateX(0);
    }
    50% {
        transform:translateX(15px);
    }
    100% {
        transform:translateX(0);
    }
}

}


.new-header {}

.header-top {
    background: #2A3545;
}

.container {}

.new-container {
    margin: 0 60px;
}

.header-top-l {
    height: 38px;
    width: 800px;
}

.header-nav-all {
    width: 158px;
    height: 38px;
    margin-right: 35px;
    position: relative;
}

.header-nav-all b {
    display: block;
    line-height: 38px;
    height: 38px;
    background: #FF9902;
    color: #fff;
    font-weight: 600;
    padding: 0 15px;
    text-align: left;
    font-size: 16px;
    position: relative;
    cursor: pointer;
}

.header-nav-all b .ico {
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -7px;
    background: url(../images/place-ico.png) no-repeat center;
    background-size: 100%;
}

.header-nav-all .header-nav-all-box {
    display: none;
    height: 530px;
    width: 809px;
    position: absolute;
    left: 0px;
    top: 38px;
    z-index: 10002;
    border: 1px solid #f90;
    border-top: none;
    box-shadow: 0px 0px 3px #f60;
    background: #fff;
    text-align: left;
    box-sizing: border-box;
    padding: 20px;
}

.header-nav-all-box dl {
    width: 196px;
    line-height: 40px;
}

.header-nav-all-box dt {
    width: 100%;
    height: 100%;
    position: relative;
}

.header-nav-all-box dt:after {
    display: block;
    position: absolute;
    content: 'next';
    font-family: swiper-icons;
    font-family: swiper-icons;
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
    font-size: 12px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
}

.header-nav-all-box dt:hover,.header-nav-all-box dl.on dt,.header-nav-all-box dt:hover a, .header-nav-all-box dl.on dt a {
    color: #0F4371;
}

.header-nav-all-box dt a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.8);
    color: rgb(0 0 0 / 80%);
}

.header-nav-all-box dd {
    display: none;
    box-sizing: border-box;
    position: absolute;
    padding: 20px 30px 0 20px;
    width: 573px;
    height: 100%;
    right: 0;
    top: 0;
}

.header-nav-all-box dl.on dd {
    display: block !important;
}

.header-nav-all-box dd ul {}

.header-nav-all-box dd ul li {
    display: inline-block;
    line-height: 20px;
    width: 13.5%;
}

.header-nav-all-box dd ul li a {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.header-nav-all-box dd ul li a:hover {
    color: #004B97;
}

.header-nav-all-box dd ul li a em {
    font-style: inherit;
}

.header-nav-all-box dd ul li.navbar_te {
    display: block;
    line-height: 40px;
}

.header-nav-all-box dd ul li.navbar_te a {
    font-size: 18px;
    font-weight: 600;
    color: #004B97;
}

.welcome {
    font-size: 12px;
    color: #fff;
    line-height: 2;
    padding-left: 22px;
    position: relative;
    width: 580px;
    text-align: left;
}

.welcome .ico {
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    background: url(../images/welcome-ico.png)  no-repeat center;
    background-size: 100%;
}

.welcome span {}

.header-top-r {}

.header-top-tel {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    height: 38px;
    line-height: 38px;
    padding-left: 32px;
    margin-right: 15px;
}

.header-top-tel .ico {
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    background: url(../images/phone-ico.png) no-repeat center;
    background-size: 100%;
}

.header-top-s {
    width: 56px;
    background: #145FC4;
    height: 38px;
    position: relative;
}

.searchout {
    position: absolute;
    z-index: 9999;
    right: 0;
    top: 38px;
    background: #fff;
    box-shadow: 6px 4px 18px #d0d0d0;
    box-sizing: border-box;
    width: 280px;
    padding: 14px;
    display: none;
}

.searchout .searchout-inner {}

.searchout form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.searchout input[type="text"] {
    background: #e8f2ff;
    height: 34px;
    border: 1px solid transparent;
    padding: 0 15px;
    color: #333;
    width: 190px;
    box-sizing: border-box;
    outline: none;
}

.searchout button {
    position: relative;
    z-index: 1;
    height: 34px;
    border: none;
    background: #1d64c4;
    color: #fff;
    padding: 0 10px;
    outline: none;
}

.header-top-s .ico {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/search-ico.png) no-repeat center;
    background-size: 20px;
}

.header-container {
    height: 84px;
}

.header-container-l {
    height: 84px;
    width: 80%;
}

.new-logo {
    padding-right: 90px;
    position: relative;
}

.new-logo:after {
    content: " ";
    display: block;
    width: 1px;
    height: 32px;
    background: rgba(0,0,0,0.2);
    background: rgb(0 0 0 / 20%);
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -16px;
}

.header-container-l .logo img {}

.new-logo img {
    width: 142px;
}

.header-nav {
    margin-left: 10px
}

.header-nav .navlist {}

.header-nav .navlist li {
    float: left;
    position: relative;
    margin-right: 18px;
}

.header-nav .navlist li .nav_url {
    display: block;
    height: 84px;
    line-height: 84px;
    padding: 0 8px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0,0,0,0.8);
    color: rgb(0 0 0 / 80%);
}

.header-nav .navlist li .nav_url_i {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.header-nav .navlist li .nav_url_i:after {
    content: " ";
    display: block;
    height: 2px;
    width: 0;
    left: 50%;
    bottom: 0;
    background: #125EC4;
    position: absolute;
    transition: all 0.35s;
}

.header-nav .navlist li:hover .nav_url_i:after,.header-nav .navlist li.active .nav_url_i:after {
    left: 0;
    width: 100%;
}

.navbtn {
    display: none;
}

.header-container-r {
    width: 20%;
}

.header-container-link {}

.header-container-link a {
    width: auto;
    line-height: 24px;
    border-radius: 12px;
    padding: 0 12px;
    border: 1px solid #004B97;
    color: #004B97;
    background: #fff;
    font-size: 14px;
    overflow: hidden;
    display: block;
    transition: all 0.5s;
}

.header-container-link a:hover {
    border: 1px solid #ff9902;
    color: #ffffff;
    background: #ff9902;
}

.header-container-link span {
    margin: 0 20px;
    color: #004B97;
}

.header-nav .navlist .nav_list {
    position: absolute;
    display: none;
    background: #fff;
    border-radius: 6px;
    left: 50%;
    top: 100%;
    text-align: center;
    box-shadow: 1px 1px 5px rgb(112 112 112);
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 9999;
}

.header-nav .navlist .nav_list li {
    color: rgba(0,0,0,0.8);
    color: rgb(0 0 0 / 80%);
    font-size: 15px;
    font-weight: 500;
    word-break: keep-all;
    white-space: nowrap;
    text-align: center;
    float: none;
    margin: 0;
}

.header-nav .navlist .nav_list li a {
    display: block;
    color: rgba(0,0,0,0.8);
    color: rgb(0 0 0 / 80%);
    padding: 8px 18px;
}

.header-nav .navlist .nav_list li a:hover {
    background: #e4efff;
}

.foot-link {
    background: #F4F6F9;
    padding: 3.5em 0;
    text-align: left;
    font-size: 20px;
}

.foot-link h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: rgba(0,0,0,0.8);
    color: rgb(0 0 0 / 80%);
    letter-spacing: 1px;
}

.foot-link p {}

.foot-link p a {
    font-size: 1em;
    font-weight: 400;
    color: rgba(0,0,0,0.8);
    color: rgb(0 0 0 / 80%);
    letter-spacing: 1px;
    margin-top: 2em;
    display: inline-block;
    margin-right: 3em;
}

.new-footer {
    background: #2A3545;
    padding-top: 3.7em;
    font-size: 20px;
}

.foot-box {
    padding-bottom: 2.75em;
    font-size: 1em;
}

.foot-box .foot-list {
    width: 67%;
}

.foot-box .foot-list .item {
    width: 16.5%;
    text-align: left;
    background-color: transparent;
    box-shadow: none;
}

.foot-box .foot-list .item b a {
    display: block;
    font-size: 1.2em;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    color: rgb(255 255 255 / 80%);
    letter-spacing: 1px;
}

.foot-box .foot-list .item a {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    padding-bottom: 1.25em;
}

.foot-box .foot-img {
    width: 15.9em;
    text-align: left;
    font-size: 1em;
}

.foot-box .foot-img .dt {
    display: block;
    font-size: 1.2em;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    color: rgb(255 255 255 / 80%);
    letter-spacing: 1px;
    padding-bottom: 1.25em;
}

.foot-box .foot-img .dl {
    width: 7em;
}

.foot-box .foot-img img {
    width: 100%;
    height: auto;
}

.foot-box .foot-img p {
    font-size: 0.8em;
    font-weight: 400;
    text-align: center;
    color: rgba(255,255,255,0.8);
    color: rgb(255 255 255 / 80%);
    padding-top: 1em;
}

.foot-text {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding: 0.8em 0;
    font-size: 1em;
}

.foot-text p {
    font-size: 0.7em;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    color: rgb(255 255 255 / 80%);
}

.foot-text p a {
    color: rgba(255,255,255,0.8);
    color: rgb(255 255 255 / 80%);
}

.foot-text .foot-share {}

.foot-text .foot-share a {
    font-size: 0.7em;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    color: rgb(255 255 255 / 80%);
    padding-left: 1.2em;
}

.m_btmnav{
    display: none ;
}

@media screen and (max-width: 1024px) {
    body {
        min-width:auto;
        overflow-x: hidden;
    }

    .new-container {
        margin: 0 auto;
        width: 96%;
    }
    
    .welcome {
        display: none;
    }
    
    .header-top-l {
        width: 500px;
    }
    
    .header-nav-all .header-nav-all-box {
        width: 738px;
        height: 495px;
        padding: 18px;
    }
    
    .header-nav-all-box dl {
        width: 170px;
    }
    
    .header-nav-all-box dd {
        padding: 20px 20px 0 20px;
        width: 548px;
    }

    .header-container-l {
        width: 90%;
    }
    
    .new-logo {
        padding-right: 17px;
    }
    
    .new-logo:after {
        display: none;
    }
    
    .header-nav .navlist li {
        margin-right: 10px;
    }
    
    .header-nav .navlist li .nav_url {
        font-size: 14px;
        padding: 0 6px;
    }
    
    .header-container-r {
        width: 10%;
    }
    
    .header-container-link span {
        display: none;
    }
    
    .header-container-link a {
        font-size: 12px;
        line-height: 1.8;
        padding: 0 10px;
        margin: 2px 0;
    }

    .foot-link {
        font-size: 16px;
    }

    .new-footer {
        font-size: 16px;
    }
    
    .foot-box .foot-list {
        width: 70%;
        font-size: 14px;
    }
    
    .foot-box .foot-img {
        font-size: 14px;
        width: 15.5em;
    }

}

@media screen and (max-width: 767px) {
    .header-container {
        height: 70px;
        box-shadow: 0px 0px 12px rgba(206, 206, 206, 0.5);
        box-shadow: 0px 0px 12px rgb(206 206 206 / 50%);
        position: relative;
    }

    .header-top {
        display: none;
    }

    .header-container-l {
        width: 200px;
        height: 70px;
    }

    .new-logo {
        position: relative;
        z-index: 1000;
    }
    
    .header-container-r {
        display: none;
    }
    
    .header-nav {
        padding-left: 0;
        position: absolute;
        right: 0;
        top: 70px;
        width: 100%;
        height: 100vh;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.3s ease 0s;
        z-index: 999;
        padding: 0 15px;
        box-sizing: border-box;
               display: none;
    }

    .header-nav.active {
        transform: translateX(0);
              display: block;
    }

    .header-nav .navlist li {
        float: none;
        margin: 0;
        border-bottom: 0.5px solid #ebebeb;
    }
    
    .header-nav .navlist li .nav_url {
        color: #000;
        line-height: 2.75;
        height: 2.75em;
        display: block;
        font-size: 15px;
        position: relative;
    }
    
    .header-nav .navlist li .nav_url_i {
        display: none;
    }
    
    .header-nav .navlist li.active a {
        color: #004b97;
    }

    .navbtn {
        display: block;
        width: 36px;
        height: 36px;
        position: relative;
        z-index: 1000;
    }

    .navbtn .i {
        width: 100%;
        height: 100%;
        display: block;
        background: url(../images/navbtn.png) no-repeat center;
        background-size: 100%;
    }

    .navbtn .i.active {
        background-image: url(../images/navbtn-no.png);
    }

    .foot-link {
        display: none;
    }

    .new-footer {
        font-size: 14px;
        padding-top: 2em;
    }
    
    .foot-box {
        padding-bottom: 2em;
    }
    
    .foot-box .foot-list {
        width: 100%;
        font-size: 13px;
    }
    
    .foot-box .foot-list .item {
        width: 33%;
        margin-bottom: 1em;
    }
    
    .foot-box .foot-img {
        display: none;
    }
    
    .foot-text {
        display: none;
    }

    .m_btmnav{
        background-color: #004b97;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.15);
        display: block ;
    }
    .m_btmnav ul li{
        float: left; 
        text-align: center; 
        width: 24.5%; 
        border-right: 1px solid #06c; 
        padding: 15px 0;
    }
    .m_btmnav ul li a{
        color: #fff;
    }
    .m_btmnav ul li a i{
        font-size: 20px; 
        padding-right: 5px;
    }
    .menu{
        margin-bottom: 60px;
    }

    .header-nav .navlist li .nav_url_down:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        transition: all 0.35s;
        background: url(../images/section1-l.png) no-repeat center;
        background-size: 25px;
    }
    
    .header-nav .navlist li .nav_url_down.on:after {
        transform: rotateZ(90deg);
    }
    
    .header-nav .navlist .nav_list {
        position: unset;
        transform: none;
        box-shadow: none;
        text-align: left;
    }
    
    .header-nav .navlist .nav_list li {
        font-size: 12px;
        text-align: left;
        border-bottom: 0;
        border-top: 0.5px solid #ebebeb;
    }

}