@charset "UTF-8"; @font-face {
    font-family: Mulish-Regular;
    src: url('../fonts/Mulish-Regular.otf');
}

@font-face {
    font-family: Mulish-ExtraLight;
    src: url('../fonts/Mulish-ExtraLight.otf');
}

@font-face {
    font-family: Mulish-Bold;
    src: url('../fonts/Mulish-Bold.otf');
}

@font-face {
    font-family: Fontquan-XinYilogoTi-Regular;
    src: url('../fonts/Fontquan-XinYilogoTi-Regular.ttf');
}

@keyframes shine {
    100% {
        left: 115%;
    }
}

@keyframes beat {
    0%,to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.9,1.1);
        transform: scale(.9,1.1);
    }

    50% {
        -webkit-transform: scale(1.1,.9);
        transform: scale(1.1,.9);
    }

    75% {
        -webkit-transform: scale(.95,1.05);
        transform: scale(.95,1.05);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate2 {
    0% {
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale2 {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    65% {
        -webkit-transform: scale(1.06);
        -ms-transform: scale(1.06);
        -o-transform: scale(1.06);
        transform: scale(1.06);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

* {
    box-sizing: border-box
}

html, body {
    color: #333;
    font-size: 16px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
    font-family: Arial,sans-serif;
    -webkit-font-smoothing: antialiased
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p,b,section,nav {
    padding: 0;
    margin: 0;
    font-weight: normal;
    box-sizing: border-box
}

i,em,b {
    font-style: normal;
}

ol,ul {
    list-style: none;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus,div:focus {
    border: none;
    outline: none;
}

img, input {
    border: 0;
}

input,button {
    border: none;
    outline: none;
    color: inherit;
    background-color: transparent;
}

.f0 {
    font-size: 0;
}

input[type='text']:focus-visible {
    outline: none;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.icon img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    transition: .8s
}

.img_zd {
    position: relative;
    overflow: hidden;
}

.img_zd .img_hezi {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .8s
}

.img_zd>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s
}

.pic {
    position: relative;
    overflow: hidden;
}

.pic:before {
    content: '';
    position: absolute;
    top: 0;
    left: -86%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    background: -webkit-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.1));
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.1));
}

.pic .a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .8s
}

.bg-mask:hover .pic .a {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pic img:hover, .bg-mask:hover .cover_img .a {
    transform: scale(1.05);
}

.bg-mask:hover .pic:before {
    -webkit-animation: shine .5s;
    animation: shine .5s;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.noflex {
    display: block !important;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-left {
    display: flex;
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.flex-v-center {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-v {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-v-bottom {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: left;
}

.eclip {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.l2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pore {
    position: relative;
}

.aline_r {
    position: relative;
    background-image: linear-gradient( #fff, #fff);
    background-position: 0 100%;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background-size .5s;
}

.alin_r:hover .aline_r {
    background-size: 100% 1px;
    color: #fff;
}

html::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #E2E2E2;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
}

.zi3 {
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 90px!important;
    }
}

@media screen and (max-width: 900px) {
    html {
        font-size: 85px!important;
    }
}

@media screen and (max-width: 640px) {
    body {
        font-size: .18rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 80px!important;
    }
}

@media screen and (max-width: 375px) {
    html {
        font-size: 80px!important;
    }
}

@media screen and (max-width: 360px) {
    html {
        font-size: 70px!important;
    }
}

.wp {
    width: 15rem;
    margin: 0 auto;
    max-width: 96%;
}

.wp2 {
    width: 14rem;
    margin: 0 auto;
    max-width: 96%;
}

.none {
    display: none;
}

.ar_wap {
    display: none;
}

/*=============================公共 开始===================================*/
.header_box {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 1.04rem;
    z-index: 500;
}

.header_box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1.5rem;
    background: url(../images/sr-header_bg1.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

.header_box .wp {
    padding: 0 0.6rem;
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header_box .hd-l {
}

.header_box .hd-r {
    padding-top: 0.31rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_box .set {
    margin-left: 1.1rem;
    display: flex;
    align-items: center;
}

.header_box .set a {
    display: block;
}

.header_box .set .lang {
    width: 0.42rem;
    height: 0.42rem;
    line-height: 0.4rem;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    font-size: 0.16rem;
    color: #FFFFFF;
    text-align: center;
}

.header_box .set .lang:hover {
    line-height: 0.42rem;
    background: linear-gradient(90deg, #215ECD 20%, #02E08C 100%);
    border: none;
}

.header_box .set .so {
    margin-left: 0.14rem;
    width: 0.42rem;
    height: 0.42rem;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.header_box .set .so:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sr-so2.png) center center no-repeat;
    -webkit-background-size: 0.18rem auto;
    background-size: 0.18rem auto;
    z-index: -1;
}

.header_box .set .so:hover {
    line-height: 0.42rem;
    background: linear-gradient(90deg, #215ECD 20%, #02E08C 100%);
    color: #fff;
    border: none;
}

.header_box .set .menuPc {
    margin-left: 0.14rem;
    width: 0.42rem;
    height: 0.42rem;
    background: url(../images/sr-menu1.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    border-radius: 50%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.header_box .set .menuPc.open {
    border: 1px solid #fff;
    background-image: url(../images/sr-close1.png);
    -webkit-background-size: 0.18rem auto;
    background-size: 0.18rem auto;
}

.logo_box {
    margin-top: 0.21rem;
    transition: .5s;
}

.logo {
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    max-width: 3.5rem;
    max-height: 0.66rem;
    flex-shrink: 0;
}

#nav {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#nav ul {
    margin: 0 -0.22rem;
    display: flex;
    justify-content: flex-end;
}

#nav li {
    position: relative;
}

#nav li h2 {
    padding: 0 0.22rem;
    font-size: .22rem;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: 0.42rem;
    transition: .5s;
}

#nav li a, #nav li h2 a {
    color: #FFFFFF;
}

#nav li.on {
}

#nav li.on a, #nav li.on h2 a {
    font-weight: bold;
}

#nav ul li .sub {
    padding-top: 0.24rem;
    position: absolute;
    top: 100%;
    min-width: 8rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: transform .5s;
    transform-origin: top;
    display: none;
}
#nav ul li .sub:before{
    content: '';
    margin-left: -0.47rem;  
    position: absolute;
    left: 50%;
    top: 0;
    width: 0.95rem;
    height: 0.24rem;
    background: url(../images/sr-sub_line1.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
#nav ul li .sub .box {
    padding: 0.26rem;
    text-align: center;
    background: rgba(246, 250, 253, .98);
    position: relative;
    z-index: 1;
    display: none;
    overflow: hidden;
}
#nav ul li .sub .box:before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4.59rem;
    height: 0.88rem;
    background: url(../images/sr-sub_bg1.png) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
}
#nav ul li .sub .box:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0.03rem;
    background: linear-gradient(90deg, #215ECD 36%, #00B26F 100%);
    opacity: .98;
}

#nav ul li .sub .box .left{
    float: left;
    margin-right: 0.4rem;
    width: 2.72rem;
}
#nav ul li .sub .box .right{
    overflow: hidden;
}
#nav ul li .sub .box .pic{
    height: 1.7rem;
}
#nav ul li .sub .box .link{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#nav ul li .sub .box .link a{
    padding: 0.09rem 0;
    padding-left: 0.28rem;
    display: block;
    font-size: 0.2rem;
    color: #333333;
    text-align: left;
    line-height: 1.5;
    width: calc(50% - 0.14rem);
    position: relative;
    flex-shrink: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
#nav ul li .sub .box .link a:before{
    content: '';
    margin-top: -0.07rem;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.08rem;
    height: 0.14rem;
    background: url(../images/sr-arrow6.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
#nav ul li .sub .box .link a:after{
    content: '';
    position: absolute;
    left: 0.16rem;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #D9DAF0;
}
#nav ul li .sub .box .link a:hover{
    padding-left: 0.33rem;
    background: linear-gradient(59deg, #215ECD 54.0771484375%, #02E08C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#nav ul li .sub .box .link a:hover:before{
    -webkit-transform: translate(0.05rem);
    -ms-transform: translate(0.05rem);
    -o-transform: translate(0.05rem);
    transform: translate(0.05rem);
}

#nav ul li:hover {
}

#nav ul li:hover .sub {
}

.searchPop-g1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(5px);
    z-index: 500;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.searchPop-g1 .close {
    position: absolute;
    right: 0.3rem;
    top: 0.3rem;
    width: 0.4rem;
    height: 0.4rem;
    background: url(../images/sr-close1.png) center center no-repeat;
    -webkit-background-size: 0.24rem auto;
    background-size: 0.24rem auto;
    cursor: pointer;
    z-index: 10;
}

.searchPop-g1 .cont {
    padding: 0 0.25rem;
    flex-grow: 1;
    -webkit-transform: translateY(60vh);
    -ms-transform: translateY(60vh);
    -o-transform: translateY(60vh);
    transform: translateY(60vh);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.searchPop-g1 .title {
    margin-bottom: 0.3rem;
    font-size: 0.3rem;
    color: #fff;
    line-height: 1.25;
    text-align: center;
}

.searchPop-g1.active {
    opacity: 1;
    visibility: visible;
}

.searchPop-g1.active .cont {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
}

.bigNav-g1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 499;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.bigNav-g1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.bigNav-g1 .scroll {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 2.08rem;
    bottom: 0;
    overflow-y: auto;
    padding-bottom: .3rem;
}

.bigNav-g1 .wp {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bigNav-g1 .wp:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.56rem;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(216, 216, 216, 0.2);
}

.bigNav-g1 dl {
    margin-bottom: .2rem;
    transform: translateY(1rem);
    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.bigNav-g1 dt {
    font-size: .24rem;
    line-height: 0.36rem;
    font-weight: bold;
    margin-bottom: 0.35rem;
    position: relative;
    text-align: center;
}

.bigNav-g1 dt a {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: .2rem;
    color: #FFFFFF;
    position: relative;
    text-shadow: 0rem 0.04rem 0.1rem rgba(0, 0, 0, 0.3);
}

.bigNav-g1 dt a:before {
    content: '';
    height: 4px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
}

.bigNav-g1 dd {
}

.bigNav-g1 dd ul {
    display: flex;
    flex-direction: column;
}

.bigNav-g1 dd ul li {
    width: 100%;
    margin-bottom: 0.25rem;
    font-size: .18rem;
    line-height: 1.4em;
    text-align: center;
}

.bigNav-g1 dd ul a {
    color: #FFFFFF;
}

.bigNav-g1 dl:nth-child(1) {
    transition: .8s .2s;
}

.bigNav-g1 dl:nth-child(2) {
    transition: .8s .3s;
}

.bigNav-g1 dl:nth-child(3) {
    transition: .8s .4s;
}

.bigNav-g1 dl:nth-child(4) {
    transition: .8s .5s;
}

.bigNav-g1 dl:nth-child(5) {
    transition: .8s .6s;
}

.bigNav-g1 dl:nth-child(6) {
    transition: .8s .7s;
}

.bigNav-g1 dl:nth-child(7) {
    transition: .8s .8s;
}

.bigNav-g1 dl:nth-child(8) {
    transition: .8s .9s;
}

.bigNav-g1 dl:nth-child(9) {
    transition: .8s 1s;
}

.bigNav-g1 dl:nth-child(10) {
    transition: .8s 1.1s;
}

.bigNav-g1.active {
    opacity: 1;
    visibility: visible;
}

.bigNav-g1.active dl {
    transform: translateY(0);
    opacity: 1;
}

.bigNav-g1.active dl.on dt a:before {
    width: 100%;
    transition: width .6s 1s linear;
}

body.navShow {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body.navShow .header_box:before {
    opacity: 0;
}

body.navShow #nav {
    opacity: 0;
}

/*foot*/
.foot {
    margin-top: -0.6rem;
    background: url(../images/sr-foot_bg1.png) center top no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    position: relative;
    z-index: 10;
}

.foot .top {
}

.foot .top .wp {
    padding-top: 1.1rem;
    padding-bottom: 0.54rem;
    position: relative;
    z-index: 1;
}

.foot .top .bg-house {
    position: absolute;
    right: 0;
    bottom: -0.02rem;
    width: 8.94rem;
    height: 2.06rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.foot .top .bg-house img, .foot .top .bg-house svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.foot .top .bg-house svg {
    stroke-width: 2;
}

.foot .top .bg-house .st0 {
    fill: none;
    stroke: rgba(255, 255, 255, .4);
    stroke-miterlimit: 10;
}

.foot .bot {
    padding: 0.3rem 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.foot .bot .wp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.foot .bot .col, .foot .bot .cor {
}

.foot .bot .col {
}

.foot .bot .cor {
}

.foot .lg {
}

.foot .lg img {
    display: block;
    max-height: 0.86rem;
}

.foot .info {
    margin-top: 0.34rem;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 1.8;
}

.foot .info p+p {
    margin-top: 0.1rem;
}

.foot .info img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0.1rem 0 0;
    width: 0.24rem;
}

.foot .link {
    padding: 0 0.5rem 0 0.3rem;
    width: 4rem;
    height: 0.52rem;
    line-height: 0.52rem;
    background: url(../images/sr-foot_bg2.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    position: relative;
    font-size: 0.18rem;
    color: #FFFFFF;
}

.foot .link:before {
    content: '';
    position: absolute;
    right: 0.18rem;
    top: 50%;
    width: 0.2rem;
    height: 0.12rem;
    background: url(../images/m-arrow1.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    margin-top: -0.06rem;
}

.foot .link dt {
}

.foot .link dd {
    padding: 0.06rem 0;
    position: absolute;
    left: 0;
    bottom: 100%;
    min-width: 100%;
    background-color: #fff;
    border-radius: 0.1rem;
    z-index: 10;
    max-height: 3.72rem;
    overflow-y: auto;
    display: none;
}

.foot .link dd a {
    padding: 0.06rem 0.3rem;
    display: block;
    font-size: 0.16rem;
    color: #333333;
    line-height: 1.5;
}

.foot .link dd a:hover {
    color: #fff;
    background: linear-gradient(90deg, #215ECD 20%, #02E08C 100%);
}

.foot .link:hover {
}

.foot .link:hover dd {
    display: block;
}

.foot .copy {
    padding: 0.14rem 0;
    font-size: 0.18rem;
    color: #F4F6FF;
    line-height: 0.24rem;
}

.foot .copy a {
    font-size: inherit;
    color: inherit;
}

.foot .copy a:hover {
    text-decoration: underline;
    color: #fff;
}

/*=================================响应开始========================================*/
/*手机端开始*/
.m_header_box {
    transition: .6s;
    display: none;
    height: .75rem;
    position: relative;
    z-index: 800;
}

.m_header_box header {
    padding: 0 0 0 15px;
    height: .75rem;
    background: linear-gradient(90deg, rgba(33, 94, 205, .9) 56.99999999999999%, rgba(0, 178, 111, .9) 100%);
    box-shadow: 0 3px 5px rgba(0,0,0,.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m_header_box header #logo img {
    height: .56rem;
}

.m_header_box header #logo {
    padding: 0;
    width: 100%;
}

#m_nav .list_box0 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#m_nav .list_box0 .li {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    transition: .6s;
    margin-right: .2rem;
    position: relative;
    line-height: .5rem;
}

#m_nav .list_box0 .li>a {
    display: block;
}

#m_nav .list_box0 .li a>img {
    margin: -2px 0 0 0;
}

#m_nav .list_box0 .li a .ewm_box {
    display: inline-block;
    border: #d3d3d3 1px solid;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1);
    top: 3.5rem;
    opacity: 1;
    visibility: visible;
    transform-origin: top;
    display: none;
}

#m_nav .list_box0 .li a .ewm_box:before {
    content: "";
    position: absolute;
    border-left: transparent 6px solid;
    border-right: transparent 6px solid;
    border-bottom: #fff 6px solid;
    top: -6px;
    left: 50%;
    margin-left: -6px;
}

#m_nav .list_box0 .li:hover {
    opacity: 1;
    color: #fe9800;
}

#m_nav .list_box0 {
    justify-content: center;
    width: 100%;
}

#m_nav .list_box0 .li {
    margin: 0 .05rem;
}

/*导航按钮开始*/
#nav_btn_box.on {
    background: none;
}

#nav_btn .point.on .navbtn::after, #nav_btn .point.on .navbtn::before {
}

#nav_btn_box {
    position: relative;
    width: .85rem;
    height: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-width: .85rem;
}

#nav_btn_box:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#nav_btn_box:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -6px;
    border-bottom: transparent .75rem solid;
}

#nav_btn {
    cursor: pointer;
    text-align: center;
    z-index: 99999;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    outline: none;
    box-shadow: none;
}

#nav_btn .point {
    display: inline-block;
    width: .34rem;
    height: 18px;
    position: relative;
    outline: none;
}

#nav_btn .point:hover .navbtn, #nav_btn .point:hover .navbtn::after, #nav_btn .point:hover .navbtn::before {
    width: 100%;
}

#nav_btn .navbtn {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-top: -1px;
}

#nav_btn .navbtn::after, #nav_btn .navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    content: '';
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
}

#nav_btn .navbtn::after {
    top: -8px;
}

#nav_btn .navbtn::before {
    top: 8px;
}

#nav_btn .point.on .navbtn {
    background: transparent;
}

#nav_btn .point.on .navbtn::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
}

#nav_btn .point.on .navbtn::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0px;
}

.m_nav_list {
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: auto;
    align-items: center;
    display: flex;
    background: rgba(255,255,255,.1);
}

.m_nav_list::-webkit-scrollbar {
    display: none;
}

#m_nav {
    z-index: 799;
    position: fixed;
    width: 100%;
    height: 100vh;
    right: -105vw;
    top: 0;
    display: none;
    padding: 64px 0px 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(33, 94, 205, .8);
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

#m_nav .close {
    position: absolute;
    top: 7px;
    right: 15px;
    left: 15px;
    font-size: 30px;
    color: #333;
    z-index: 10000;
    width: auto;
    height: 35px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0;
}

#m_nav.act {
    pointer-events: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
}

#m_nav .search_box input.submit {
    background: #fe9800 url() center no-repeat;
    background-size: 1.75rem;
}

#m_nav .old_rukou {
    margin: .24rem 0 0;
    width: 100%;
}

.nav_link {
    padding: 0.1rem 0.12rem;
    min-width: 100%;
    font-size: 0.18rem;
    color: rgba(255, 255, 255, .5);
    line-height: 2;
    border-bottom: 1px solid rgba(255,255,255,.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav_link a {
    padding: 0 0.08rem;
    display: block;
    font-size: inherit;
    color: #ffffff;
}

.nav_lang {
    padding: 0.1rem 0.22rem;
    min-width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.3);
    display: flex;
    flex-wrap: wrap;
}

.nav_lang .tit {
    display: block;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 2;
}

.nav_lang .tit .icon-lang {
    margin: -2px 4px 0 0;
    display: inline-block;
    vertical-align: middle;
    width: 0.19rem;
    height: 0.18rem;
    background: url() center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.list_box_nav_mobile {
    width: 100%;
    height: 100%;
    padding: 0 0 10px;
    overflow: hidden;
    overflow-y: scroll;
    margin: 0;
    flex: 1;
}

.list_box_nav_mobile>li {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin: 0 auto;
    padding: 0 0.25rem;
}

.list_box_nav_mobile>li .con {
    position: relative;
}

.list_box_nav_mobile>li .a {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.15);
    line-height: .64rem;
    color: rgba(255,255,255,.8);
    padding: 0;
    font-size: .2rem;
    display: flex;
    position: relative;
    transition: .5s;
}

.list_box_nav_mobile>li i {
    opacity: 1;
    filter: alpha(opacity=100);
    display: inline-block;
    width: .64rem;
    height: .64rem;
    display: inline-block;
    background: url(../images/m-arrow1.png) center no-repeat;
    background-size: .2rem !important;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
}

.list_box_nav_mobile>li.on1 i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

.list_box_nav_mobile>li.on .a {
    color: rgba(255,255,255,1);
}

/*三级导航 开始*/
.list_box_nav_mobile>li .list {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.list_box_nav_mobile>li .list a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 2.5;
}

.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 798;
    background-color: rgba(0,0,0,0.4);
    display: none;
}

/*顶部搜索*/
.wap_search {
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    overflow: hidden;
    width: 100%;
    height: 60px;
    display: block;
    padding: 0 0.25rem;
}

.wap_search .header-search {
    height: 44px;
    border-radius: 0;
    background: rgb(255 255 255);
    position: relative;
    width: 100%;
    margin: 10px auto;
    border-radius: 50vw;
}

.wap_search .input {
    font-size: 14px;
    color: #646464;
    height: 44px;
    line-height: 44px;
    padding: 0 .24rem;
    box-shadow: none;
    -webkit-appearance: none;
    float: left;
    border-right: 0;
    background: none;
    width: calc(100% - 40px);
}

.wap_search .btn_blue {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border: 0;
    background: url(../images/sr-so1.png) center no-repeat #fe9800;
    background-size: .17rem;
    border-radius: 0;
    border-radius: 50vw;
}

.wap_search .btn_blue.fr {
    background: #e9edef;
    color: #4e4f53;
}

.wap_search input::-webkit-input-placeholder {
    color: #999;
}

.wap_search input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}

.wap_search input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}

.wap_search input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
}

/* WebKit browsers */
.wap_search input:focus::-webkit-input-placeholder {
    color: transparent;
    /* transparent是全透明黑色(black)的速记法，即一个类似rgba(0,0,0,0)这样的值 */
}

/* Mozilla Firefox 4 to 18 */
.wap_search input:focus:-moz-placeholder {
    color: transparent;
}

/* Mozilla Firefox 19+ */
.wap_search input:focus::-moz-placeholder {
    color: transparent;
}

/* Internet Explorer 10+ */
.wap_search input:focus:-ms-input-placeholder {
    color: transparent;
}

/* 点击搜索框获取焦点 placeholder消失-结束 */
/*导航按钮结束*/
/*搜索*/
.m-search1 {
    margin: 0 auto;
    width: 5.5rem;
    max-width: 100%;
    min-height: 0.5rem;
    position: relative;
}

.m-search1 input {
    outline: none;
    border: none;
    background-color: transparent;
}

.m-search1 .inp {
    padding: 0 0.15rem;
    display: block;
    width: 100%;
    height: 0.5rem;
    line-height: 0.5rem;
    background-color: #fff;
}

.m-search1 .submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 0.6rem;
    height: 0.5rem;
    line-height: 0.5rem;
    background: #215ECD url(../images/sr-so1.png) center center no-repeat;
    -webkit-background-size: 0.24rem auto;
    background-size: 0.24rem auto;
    cursor: pointer;
}

.sr-search1 {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 0;
    z-index: 10;
}

.sr-search1:before, .sr-search1:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0.4rem;
    height: 0.4rem;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
}

.sr-search1:before {
    left: 0;
    background-image: url(../images/sr-shape1.png);
}

.sr-search1:after {
    right: 0;
    background-image: url(../images/sr-shape2.png);
}

.sr-search1 .wp {
    padding: 0 0.78rem;
    height: 0.7rem;
    background: url(../images/sr-search_bg1.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}

.sr-search1 input {
    outline: none;
    border: none;
    background-color: transparent;
}

.sr-search1 .input, .sr-search1 .submit {
    display: inline-block;
    vertical-align: middle;
}

.sr-search1 .input {
    width: calc(100% - 1.87rem);
    position: relative;
    z-index: 1;
}

.sr-search1 .input:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #215ECD 56.99999999999999%, #00B26F 100%);
    z-index: -1;
}

.sr-search1 .inp {
    padding: 0 0.22rem;
    display: block;
    width: 100%;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.26rem;
    color: #333333;
}

.sr-search1 .inp::-webkit-input-placeholder {
    color: rgba(0, 5, 152, .5);
}

.sr-search1 .inp::-moz-placeholder {
    color: rgba(0, 5, 152, .5);
}

.sr-search1 .inp:-ms-input-placeholder {
    color: rgba(0, 5, 152, .5);
}

.sr-search1 .submit {
    margin-left: 0.67rem;
    width: 1.2rem;
    height: 0.42rem;
    line-height: 0.42rem;
    font-size: 0.19rem;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    background: url(../images/sr-btn_bg1.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    overflow: hidden;
    cursor: pointer;
}

.sr-search1 .submit input {
    position: absolute;
    left: -999px;
}

.sr-search1 .submit i {
    margin: -2px 0.1rem 0 0;
    display: inline-block;
    vertical-align: middle;
    width: 0.24rem;
    height: 0.24rem;
    background: url(../images/sr-so1.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

/*标题*/
.sr-hd1 {
    margin-bottom: 0.3rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sr-hd1 .hd-l {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

.sr-hd1 .hd-l:after {
    content: '';
    margin-left: 0.6rem;
    margin-bottom: 0.04rem;
    display: block;
    height: 0.16rem;
    background: url(../images/sr-tit_line1.png) left center no-repeat;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    flex-grow: 1;
}

.sr-hd1 .hd-r {
    margin-left: 0.42rem;
    flex-shrink: 0;
}

.sr-hd1 .tit {
    font-weight: normal;
    line-height: 1;
    display: flex;
    align-items: flex-end;
}

.sr-hd1 .tit .icon {
    margin-right: 0.12rem;
    display: block;
    max-width: 0.7rem;
    flex-shrink: 0;
}

.sr-hd1 .tit .r {
    display: flex;
    flex-direction: column;
}

.sr-hd1 .tit .en {
    font-size: 0.16rem;
    color: #666666;
    text-transform: uppercase;
}

.sr-hd1 .tit .cn {
    margin-top: 0.09rem;
    font-size: 0.44rem;
    color: #222222;
}

.sr-hd1 .more {
    display: block;
    font-size: 0.18rem;
    color: #215ECD;
    line-height: 0.4rem;
    display: flex;
    align-items: center;
}

.sr-hd1 .more i {
    margin-right: 0.1rem;
    display: block;
    width: 0.25rem;
    height: 0.24rem;
    background: url(../images/sr-btn_icon1.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.sr-hd1 .more i:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: url(../images/sr-btn_icon1.png) left center no-repeat;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
}

.sr-hd1 .more:hover {
}

.sr-hd1 .more:hover i {
    background: none !important;
}

.sr-hd1 .more:hover i:before {
    width: 100%;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.sr-hd1.v1 {
}

.sr-hd1.v1 .hd-l:after {
    margin-bottom: 0.26rem;
    margin-left: 0.3rem;
    background-image: url(../images/sr-tit_line2.png);
    background-position: right center;
}

.sr-hd1.v2 {
}

.sr-hd1.v2 .hd-l {
    justify-content: center;
}

.sr-hd1.v2 .hd-l:before {
    content: '';
    padding-left: 1.32rem;
    margin-right: 0.46rem;
    margin-bottom: 0.15rem;
    display: block;
    height: 0.16rem;
    background: url(../images/sr-tit_line3.png) right center no-repeat;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    flex-grow: 1;
}

.sr-hd1.v2 .hd-l:after {
    margin-left: 0.5rem;
    margin-bottom: 0.15rem;
    background-image: url(../images/sr-tit_line4.png);
    background-position: left center;
}

.sr-hd1.v2 .hd-r {
    margin-bottom: 0.1rem;
}

.sr-hd1.v2 .tit {
}

.sr-hd1.v2 .tit .en {
    color: #97A1DC;
}

.sr-hd1.v2 .tit .cn {
    color: #ffffff;
}

.sr-hd1.v2 .more {
    color: #fff;
}

.sr-hd1.v2 .more i {
    background-image: url(../images/sr-btn_icon2.png);
}

.sr-hd1.v2 .more i:before {
    background-image: url(../images/sr-btn_icon2.png);
}

.sr-hd1.v3 {
}

.sr-hd1.v3 .hd-l {
    justify-content: center;
}

.sr-hd1.v3 .hd-l:before {
    content: '';
    padding-left: 1.4rem;
    margin-right: 0.46rem;
    margin-bottom: 0.12rem;
    display: block;
    height: 0.16rem;
    background: url(../images/sr-tit_line5.png) right center no-repeat;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    flex-grow: 1;
}

.sr-hd1.v3 .hd-l:after {
    margin-left: 0.5rem;
    margin-bottom: 0.12rem;
    background-image: url(../images/sr-tit_line6.png);
    background-position: left center;
}

.sr-hd1.v4 {
}

.sr-hd1.v4 .hd-l {
    justify-content: center;
}

.sr-hd1.v4 .hd-l:before, .sr-hd1.v4 .hd-l:after {
    display: none;
}

.sr-hd1.v5 {
}

.sr-hd1.v5 .hd-l:after {
    margin-bottom: 0.14rem;
    margin-left: 0.54rem;
}

.sr-hd2 {
    padding-bottom: 0.43rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sr-hd2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14rem;
    height: 0.16rem;
    background: url(../images/ny/sr-tit_line1.png) center 0 no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    z-index: -1;
}

.sr-hd2 .hd-l {
}

.sr-hd2 .tit {
    font-weight: normal;
    display: flex;
    flex-direction: column;
}

.sr-hd2 .tit .en {
    font-size: 0.18rem;
    color: #999999;
}

.sr-hd2 .tit .cn {
    font-size: 0.44rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #245ACF 53.2958984375%, #08DB8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sr-hd3 {
    margin-bottom: 0.28rem;
    display: flex;
    justify-content: center;
}

.sr-hd3 .hd-l {
}

.sr-hd3 .tit {
    font-weight: normal;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sr-hd3 .tit .en {
    font-family: Mulish-ExtraLight;
    font-size: 0.15rem;
    text-transform: uppercase;
    letter-spacing: .5em;
    background: linear-gradient(90deg, #245ACF 53.2958984375%, #08DB8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sr-hd3 .tit .cn {
    margin-top: 0.02rem;
    font-size: 0.44rem;
    color: #222222;
    line-height: 1.2;
}

.sr-hd4 {
    padding-bottom: 0.43rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.sr-hd4 .hd-l{
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.sr-hd4 .hd-l:before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% + 0.48rem);
    width: 2.11rem;
    height: 0.24rem;
    background: url(../images/ny/sr-line3.png) right center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    opacity: .15;
}
.sr-hd4 .hd-l:after {
    content: '';
    margin-left: 0.6rem;
    margin-bottom: 0.04rem;
    display: block;
    height: 0.16rem;
    background: url(../images/sr-tit_line1.png) left center no-repeat;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    flex-grow: 1;
}

.sr-hd4 .tit {
    font-weight: normal;
    display: flex;
    flex-direction: column;
}

.sr-hd4 .tit .en {
    font-size: 0.18rem;
    color: #999999;
}

.sr-hd4 .tit .cn {
    font-size: 0.44rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #245ACF 53.2958984375%, #08DB8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    html,body {
        overflow-x: hidden !important;
    }

    body {
        padding-top: 0;
    }

    .inner_header {
        padding-top: 0;
    }

    .ar_web {
        display: none
    }

    .ar_wap {
        display: block
    }

    .wp, .wp2 {
        width: 100%;
        padding: 0 15px;
        max-width: 100%;
    }

    .foot {
        margin-top: 0;
        background: linear-gradient(90deg, #215ECD 20%, #02E08C 100%);
    }

    .foot .top .wp {
        padding: 0.3rem 20px;
    }

    .foot .top .bg-house {
        width: 5rem;
    }

    .foot .bot {
        padding: 0.2rem 0;
    }

    .foot .bot .wp {
        display: block;
    }

    .foot .bot .cor {
        margin-top: 0.15rem;
    }

    .foot .link {
        margin: 0 auto;
        max-width: 100%;
    }

    .foot .copy {
        padding: 0;
        text-align: center;
    }

    .foot .lg img {
        margin: 0 auto;
        max-height: 0.6rem;
    }

    .foot .info {
        margin-top: 0.15rem;
        text-align: center;
        line-height: 1.6;
    }

    .sr-search1 .wp {
        padding: 0 0.5rem;
    }

    .sr-search1 .input {
        width: calc(100% - 1.5rem);
    }

    .sr-search1 .inp {
        padding: 0 0.15rem;
        font-size: 0.22rem;
    }

    .sr-search1 .submit {
        margin-left: 0.3rem;
    }

    .sr-hd1 {
        margin-bottom: 0.3rem !important;
    }

    .sr-hd1 .hd-l:after {
        margin-left: 0.2rem;
        margin-bottom: 0.08rem;
    }

    .sr-hd1 .hd-r {
        margin-left: 0.2rem;
    }

    .sr-hd1 .tit .icon {
        max-width: 0.46rem;
    }

    .sr-hd1 .tit .en {
        font-size: 0.14rem;
    }

    .sr-hd1 .tit .cn {
        margin-top: 0.03rem;
        font-size: 0.36rem;
    }

    .sr-hd1.v1 .hd-l:after {
        margin-left: 0.2rem;
        margin-bottom: 0.06rem;
    }

    .sr-hd1.v2 .hd-l:before {
        padding-left: 0.86rem;
        margin-right: 0.3rem;
        margin-bottom: 0.05rem;
    }

    .sr-hd1.v2 .hd-l:after {
        margin-left: 0.3rem;
        margin-bottom: 0.05rem;
    }

    .sr-hd1.v3 .hd-l:before {
        padding-left: 0.86rem;
        margin-right: 0.3rem;
    }

    .sr-hd1.v3 .hd-l:after {
        margin-left: 0.3rem;
        margin-bottom: 0.02rem;
    }

    .sr-hd1.v5 .hd-l:after {
        margin-left: 0.3rem;
    }

    .sr-hd2 {
        padding-bottom: 0.3rem;
    }

    .sr-hd2 .tit .en {
        font-size: 0.16rem;
    }

    .sr-hd2 .tit .cn {
        font-size: 0.36rem;
    }

    .sr-hd3 {
        margin-bottom: 0.2rem;
    }

    .sr-hd3 .tit .en {
        font-size: 0.14rem;
    }

    .sr-hd3 .tit .cn {
        font-size: 0.36rem;
    }

    .sr-hd4 {
        padding-bottom: 0.3rem;
    }

    .sr-hd4 .tit .en {
        font-size: 0.16rem;
    }

    .sr-hd4 .tit .cn {
        font-size: 0.36rem;
    }
}

@media (max-width: 959px) {
}

@media (max-width: 767px) {
    .foot .top .bg-house {
        width: 4rem;
    }

    .foot .link {
        padding-left: 0.2rem;
        padding-right: 0.4rem;
        font-size: 0.14rem;
        height: 0.42rem;
        line-height: 0.42rem;
    }

    .foot .link:before {
        right: 0.15rem;
    }

    .foot .link dd a {
        font-size: 0.14rem;
    }

    .foot .info {
        font-size: 0.14rem;
    }

    .foot .info img {
        width: 0.2rem;
        margin-right: 0.06rem;
    }

    .foot .copy {
        font-size: 0.14rem;
    }

    .sr-search1 {
        background-color: #fff;
        position: static;
    }

    .sr-search1:before, .sr-search1:after {
        display: none;
    }

    .sr-search1 .wp {
        padding: 0.1rem 15px;
    }

    .sr-search1 .input {
        width: calc(100% - 1.1rem);
    }

    .sr-search1 .input:before {
        height: 1px;
    }

    .sr-search1 .inp {
        padding: 0 0.1rem;
        font-size: 0.18rem;
        height: 0.54rem;
        line-height: 0.54rem;
    }

    .sr-search1 .submit {
        margin-left: 0.2rem;
        font-size: 0.16rem;
        width: 0.9rem;
        height: 0.36rem;
        line-height: 0.36rem;
    }

    .sr-search1 .submit i {
        margin-right: 0.06rem;
        width: 0.18rem;
        height: 0.18rem;
    }

    .sr-hd1 {
        margin-bottom: 0.25rem !important;
    }

    .sr-hd1 .hd-l:before, .sr-hd1 .hd-l:after {
        display: none !important;
    }

    .sr-hd1 .tit .icon {
        margin-right: 0.08rem;
        max-width: 0.28rem;
    }

    .sr-hd1 .tit .en {
        font-size: 0.1rem;
    }

    .sr-hd1 .tit .cn {
        margin-top: 0.03rem;
        font-size: 0.24rem;
    }

    .sr-hd1 .more {
        font-size: 0.14rem;
    }

    .sr-hd1 .more i {
        margin-left: 0.04rem;
        width: 0.18rem;
        height: 0.18rem;
    }

    .sr-hd1.v2 .hd-l:before, .sr-hd1.v2 .hd-l:after {
        display: none !important;
    }

    .sr-hd1.v2 .hd-r {
        margin-bottom: 0;
    }

    .sr-hd1.v2 .hd-l, .sr-hd1.v3 .hd-l {
        padding-left: 0.68rem;
    }

    .sr-hd2 {
        padding-bottom: 0.15rem;
    }

    .sr-hd2 .tit .en {
        font-size: 0.1rem;
    }

    .sr-hd2 .tit .cn {
        font-size: 0.24rem;
    }

    .sr-hd3 .tit .en {
        font-size: 0.1rem;
    }

    .sr-hd3 .tit .cn {
        font-size: 0.24rem;
    }

    .sr-hd4 {
        padding-bottom: 0.15rem;
    }

    .sr-hd4 .tit .en {
        font-size: 0.1rem;
    }

    .sr-hd4 .tit .cn {
        font-size: 0.24rem;
    }
}

@media (max-width: 479px) {
}

/*兼容*/
#browser-modal {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    color: #303233;
    position: fixed;
    z-index: 99999999;
}

#browser-modal .browser-modal-cover {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #111;
    z-index: -1;
}

#browser-modal .browser-content {
    width: 700px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    padding-top: 50px;
    background-color: #fff;
    border-radius: 5px;
}

#browser-modal .browser-content .browser-dpc-logo img {
    height: 42px;
    margin: 45px auto 40px;
}

#browser-modal .browser-content .browser-text-title {
    text-transform: uppercase;
    font-size: 24px;
}

#browser-modal .browser-content .browser-text-desc {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

#browser-modal .browser-content .browser-list {
    width: 600px;
    margin: 20px auto;
    height: 130px;
}

#browser-modal .browser-content .browser-item {
    float: left;
    width: 150px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

#browser-modal .browser-content .browser-item .iconfont {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 10px;
}

#browser-modal .browser-content .browser-item .iconchrome {
    background: url() no-repeat 0 0;
}

#browser-modal .browser-content .browser-item .iconfirefox {
    background: url() no-repeat 0 -100px;
}

#browser-modal .browser-content .browser-item .iconopera {
    background: url() no-repeat 0 -200px;
}

#browser-modal .browser-content .browser-item .iconEdge {
    background: url() no-repeat 0 -300px;
}

#browser-modal .browser-content .browser-item a {
    cursor: pointer;
    display: block;
}

#browser-modal .browser-content .browser-item a img {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    width: 100px;
    height: 100px;
}

#browser-modal .browser-content .browser-item a h4 {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}




/*2026.03.04*/
.header_box .hd-r{
    padding-top: 0.22rem;
}
#nav li{
    padding: 0 0.18rem;
}
#nav li h2{
    padding: 0 0.04rem;
    position: relative;
    line-height: 0.62rem;
}
#nav li h2:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 0.04rem;
    background: linear-gradient(90deg, #215ECD 36%, #00B26F 100%);
    width: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
#nav li.on{}
#nav li.on h2:before{
    width: 100%;
}

#nav li:hover h2 a {
    font-weight: bold;
}
/*2026.03.04 end*/