@charset "utf-8";

/* CSS Document */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0;
}

:focus {
    outline: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
    font-style: normal;
    font-weight: 400;
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0 !important;
}

table td {
    background: #fff;
}

caption,
th {
    text-align: left;
}

sup,
sub {
    font-size: 100%;
    vertical-align: baseline;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

.hide {
    display: none;
}

.clear {
    clear: both;
}

img {
    border: 0;
    outline: 0;
}

body {
    font-family: "Microsoft YaHei";
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    /*	字体固定*/
    font-size: 20px;
}

* {
    box-sizing: border-box;
}

.clearfix {
    clear: both;
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    zoom: 1;
}

.clear:after {
    display: table;
    content: '';
    clear: both;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .5s;
    -webkit-transition: 0.5s;
}

a:hover {
    color: #5792cc;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*
.pc_none{display: none;}
.mobile_none{display: none;}
*/

.wrap {
    width: 1400px;
    margin: 0 auto;
}
@media (max-width: 1500px) {
    .wrap {
        width: 1000px;
    }
}
@media (max-width: 768px) {
    body{
        overflow-x: hidden;
    }
    .wrap {
        width: 100%;
    }
}
.scale_imgs {
    overflow: hidden;
}

.scale_imgs .imgs {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.scale_imgs:hover .imgs {
    transform: scale(1.05);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}


/* 头部 */
.header_w {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    /* height: 110px; */
    padding-bottom: 1px;
    transition: all .5s;
    background: linear-gradient(to bottom, rgb(0 120 189 / 70%), rgba(0, 0, 0, 0));
}

.header_fixed {
    background-color: rgba(87, 146, 204, 1);
}

.header_line {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(255 255 255 / 30%);
    animation: longer 4s 1.5s linear forwards;
}

@-webkit-keyframes longer {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes longer {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.header {
    margin: 0 6.71%;
    max-width: 1740px;
    height: 5.72vw;
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 1920px) {
    .header {
        margin: 0 auto;
    }
}

.header_logo {
    width: 29.24%;
    display: flex;
    align-items: center;
}

.header_logo .imgs {
    width: 100%;
    display: block;
}

.nav_menu_w {
    position: relative;
    /* width: 58.60%; */
}

.nav_menu {
    margin-right: 14px;
    font-size: 0;
    text-align: right;
}

.nav_menu li {
    /* line-height: 110px; */
    line-height: 5.72vw;
    margin-left: 2.44vw;
    display: inline-block;
    position: relative;
}

.nav_menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.5s;
}

.nav_menu li:hover::after {
    width: 100%;
}

.nav_menu li.active::after {
    width: 100%;
}

.nav_menu li:first-child {
    margin-left: 0;
}

.nav_menu li a {
    font-weight: bold;
    color: #ffffff;
    font-size: 20px;
    display: block;
}

.header_search {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
}

.search_icon {
    display: block;
    width: 25px;
    height: 25px;
    background: url("jnzkh202512_search.png") no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}

@media screen and (max-width: 1680px) {
    .nav_menu li a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1500px) {
    .nav_menu li a {
        font-size: 16px;
    }

    .search_icon {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .nav_menu li a {
        font-size: 14px;
    }
}
/* 检索 */
.search-dialog-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all;
}

.search-dialog-box .bubbles-bg {
    opacity: 0;
    visibility: hidden;
}

.search-dialog-box .search-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120vw;
    height: 120vw;
    margin: -60vw 0 0 -60vw;
    /* background: #003a8e; */
    background: #5792cc;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30%;
    /* z-index: 1; */
    transform: scale(0);
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.search-dialog-box .wrap-inner {
    transform: translateY(100%);
    transition: 0.6s;
}

.header-right .bubbles-bg {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s 0.8s;
}

.search-dialog-box .bubbles-bg .bubble {
    position: absolute;
}

.search-dialog-box .bubbles-bg .bubble .circle {
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.search-dialog-box .bubbles-bg .bubble1 {
    width: 6%;
    padding-top: 6%;
    left: 26.875%;
    top: -6.67%;
}

.search-dialog-box .bubbles-bg .bubble1 .circle {
    border: 1px solid #fff;
}

.search-dialog-box .bubbles-bg .bubble2 {
    width: 12px;
    padding-top: 12px;
    left: 13.54%;
    top: 18%;
}

.search-dialog-box .bubbles-bg .bubble2 .circle {
    background-color: #0054ae;
    opacity: 0.2;
}

.search-dialog-box .bubbles-bg .bubble3 {
    width: 36px;
    padding-top: 36px;
    left: 8.854%;
    top: 30.55%;
}

.search-dialog-box .bubbles-bg .bubble3 .circle {
    background-color: #fff;
}

.search-dialog-box .bubbles-bg .bubble4 {
    width: 56.875%;
    padding-top: 56.875%;
    left: -28.6458%;
    top: 51.85%;
}

.search-dialog-box .bubbles-bg .bubble4 .circle {
    background: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.05) 100%);
    background: -ms-linear-gradient(45deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.05) 100%);
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.05) 100%);
}

.search-dialog-box .bubbles-bg .bubble5 {
    width: 54px;
    padding-top: 54px;
    left: 26.3%;
    top: 70.83%;
}

.search-dialog-box .bubbles-bg .bubble5 .circle {
    background-color: #fff;
    opacity: 0.1;
}

.search-dialog-box .bubbles-bg .bubble6 {
    width: 56.875%;
    padding-top: 56.875%;
    left: 73.4375%;
    top: -52.77%;
}

.search-dialog-box .bubbles-bg .bubble6 .circle {
    background: -webkit-linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1) 100%);
    background: -ms-linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1) 100%);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1) 100%);
}

.search-dialog-box .bubbles-bg .bubble7 {
    width: 2rem;
    padding-top: 2rem;
    left: 60.9375%;
    top: 18.5%;
}

.search-dialog-box .bubbles-bg .bubble7 .circle {
    background-color: #0054ae;
    opacity: 0.2;
}

.search-dialog-box .bubbles-bg .bubble8 {
    width: 1.35rem;
    padding-top: 1.35rem;
    left: 95.83%;
    top: 70.83%;
}

.search-dialog-box .bubbles-bg .bubble8 .circle {
    border: 1px solid #fff;
}

.search-dialog-box .bubbles-bg .bubble9 {
    width: 16px;
    padding-top: 16px;
    left: 76.5625%;
    top: 96.296%;
}

.search-dialog-box .bubbles-bg .bubble9 .circle {
    background-color: #fff;
}

.search-dialog-box .bubbles-bg .bubble10 {
    width: 56.875%;
    padding-top: 56.875%;
    left: 71.354%;
    top: 87%;
}

.search-dialog-box .bubbles-bg .bubble10 .circle {
    background: -webkit-linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.3) 100%);
    background: -ms-linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.3) 100%);
}

.search-dialog-box .bubbles-bg .bubble {
    animation: spin 8s infinite linear;
    transform-origin: 50% 45%;
}

.search-dialog-box .bubbles-bg .bubble:nth-child(2n) {
    animation: spin2 8s infinite linear;
}

.search-dialog-box .bubbles-bg .bubble .circle {
    animation: spin-reverse 8s infinite linear;
}

.search-dialog-box .bubbles-bg .bubble:nth-child(2n) .circle {
    animation: spin-reverse2 8s infinite linear;
}

.search-dialog-box .bubbles-bg .sm-bubble {
    transform-origin: 30% 30px;
}

.search-dialog {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.search-dialog .search-tit {
    font-size: 36px;
    line-height: 56px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 54px;
}

.search-dialog .search-input {
    width: 800px;
    margin: 0 auto;
    padding: 0 8px 0 24px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
    max-width: 94%;
}

.search-dialog .search-input input[type='text'] {
    float: left;
    height: 64px;
    width: calc(100% - 56px);
    background-color: transparent;
    font-size: 18px;
    line-height: 8px;
    color: #fff;
    transition: all 0.3s;
    border: none;
}

.search-dialog .search-input input[type='text']::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type='text']:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type='text']::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type='text']:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type='submit'],
.search-dialog .search-input .clear-btn {
    float: right;
    height: 56px;
    width: 56px;
}

.search-dialog .search-input .input_submit {
    background: none;
    border: 0;
    outline: 0;
    height: 64px;
    cursor: pointer;
}

.search-dialog .search-input .input_submit svg {
    width: 30px;
    height: 30px;
}

.search-dialog .search-input .clear-btn {
    background-color: rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('jnzkh202512_index_close_btn.png');
    background-size: 56px;
    border-radius: 100%;
    margin-right: 16px;
    display: none;
}

.search-dialog .search-input.on {
    background-color: #fff;
}

/* .search-dialog .search-input.on input[type='submit'] {
  background-image: url('../images/search-btn2.svg');
} */

.search-dialog .hot-search {
    font-size: 0;
    width: 312px;
    margin: 10px auto 0;
    box-sizing: border-box;
    padding: 0 10px;
    overflow: hidden;
}

.search-dialog .hot-search .hot-tit,
.search-dialog .hot-search .hot-link {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: top;
}

.search-dialog .hot-search .hot-tit {
    font-size: 6px;
    line-height: 8px;
    color: #fff;
    font-weight: bold;
    padding-left: 10px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 8px;
    background-image: url(../images/hot-icon.png);
}

.search-dialog .hot-link {
    margin-left: 16px;
}

.search-dialog .hot-link a {
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: 6px;
    line-height: 8px;
    margin-right: 12px;
    color: #fff;
    padding-bottom: 5px;
    position: relative;
}

.search-dialog .hot-link a:before {
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s;
}

.search-dialog-box .bottom-box {
    position: absolute;
    left: 0;
    bottom: 5.1%;
    width: 100%;
}

.search-dialog-box .bottom-box .share-box {
    overflow: hidden;
}

.search-dialog-box .bottom-box .copy {
    font-size: 6px;
    line-height: 8px;
    color: #fff;
    font-family: 'gilroy-regular';
    margin-top: 8px;
    overflow: hidden;
}


.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box.on .search-bg {
    transform: scale(1);
}

.search-dialog-box.on .bubbles-bg {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box.on .wrap-inner {
    transform: translateY(0);
}

.pub-close {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 10;
    right: 3.125%;
    top: 22px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
}

.pub-close .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1c5ab7;
    transform: scale(0);
    border-radius: 100%;
    transition: transform 0.3s;
}

.pub-close i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    background-image: url("jnzkh202512_index_close_btn.png");
    transition: 0.6s;
}

.pub-close i:hover {
    transform: rotate(180deg);
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

@keyframes spin2 {
    to {
        transform: rotate(-1turn);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(1turn);
    }
}

@keyframes spin-reverse2 {
    from {
        transform: rotate(-1turn);
    }
}

/* 手机端导航 */
#nav_btn_box {
    z-index: 999;
    position: fixed;
    right: 6.71%;
    top: 0;
    display: none;
}

.menubtn_w {
    display: flex;
    height: 5.72vw;
    align-items: center;
}

.menubtn {
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .5s;
}

/* .xg .menubtn{ background: rgba(0, 51, 128, 0.665); box-shadow: -4px 2px 18px 0px rgb(81 124 170 / 25%);} */
.menubtn.active {
    background: rgba(0, 51, 128, 0) !important;
}

.menubtn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    vertical-align: middle;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menubtn span:after,
.menubtn span:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 115%;
    height: 2px;
    left: 0;
    background-color: #fff;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menubtn span:before {
    top: -6px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
}

.menubtn span:after {
    bottom: -6px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
}

.menubtn.active span {
    background-color: transparent;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -ms-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s
}

.menubtn.active span:after,
.menubtn.active span:before {
    background-color: #fff !important;
    -webkit-transition-delay: 0s, .3s;
    -moz-transition-delay: 0s, .3s;
    -ms-transition-delay: 0s, .3s;
    -o-transition-delay: 0s, .3s;
    transition-delay: 0s, .3s
}

.menubtn.active span:before {
    top: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menubtn.active span:after {
    bottom: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.nva_mobiles .top_search {
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

/*搜索*/
.top_search {
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    transform: translateY(30px);
}

.nva_mobiles.active .top_search {
    opacity: 1;
    transition: all 0.5s 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    transform: translateY(0);
}

.top_search form {
    width: 80%;
    height: 0.8rem;
    background: none;
    border-radius: 0.8rem;
    border: 1px solid rgb(191 195 200 / 63%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_search form .input {
    width: 68%;
    height: 100%;
    background: none;
    border: 0;
    flex-grow: 1;
    color: #fff;
    padding-left: 0.4rem;
	font-size: .3rem;
}

.top_search form .button {
    width: 1rem;
    height: 100%;
    cursor: pointer;
    background: url("jnzkh202512_index_search_btn.png") center no-repeat;
    background-size: 0.4rem auto;
    border: 0;
    outline: 0;
    color: #fff;
}

.top_search form .button:active {
    background: url("jnzkh202512_index_search_btn.png") center no-repeat;
}

.top_search form .input::-webkit-input-placeholder {
    color: #fff;
}

.top_search form .input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.top_search form .input::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.top_search form .input::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.top_search form .input:focus::-webkit-input-placeholder {
    color: transparent;
}

.top_search form .input:focus:-moz-placeholder {
    color: transparent;
}

.top_search form .input:focus::-moz-placeholder {
    color: transparent;
}

.top_search form .input:focus:-ms-input-placeholder {
    color: transparent;
}

.nva_mobiles{
    display: none;
}

.nva_mobiles{
    z-index: -1;
    position: fixed;
    background: #5792cc;
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
    display: none;
    padding: 0.8rem 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.5s 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    display: block;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform-origin: left;
}

.nva_mobiles::-webkit-scrollbar {
    display: none;
}

.nva_mobiles.active {
    pointer-events: auto;
    top: 0;
    visibility: visible;
    opacity: 1;
    z-index: 998;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
}

.nva_mobiles>ul>li {
    overflow: hidden;
    padding: 0 0.16rem;
    margin: 0 0.3rem;
    width: auto;
}

.nva_mobiles>ul>li+li {
    border-top: 1px solid rgb(111 111 111 / 10%);
}

.nva_mobiles li .a {
    display: block;
    transform: translateY(100%);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    opacity: 0;
}

.nva_mobiles.active li .a {
    transform: translateY(0);
    transition: all 0.5s 0.6s cubic-bezier(0.445, 0.145, 0.355, 1);
    opacity: 1;
}

.nva_mobiles li .a h3 {
    line-height: 0.8rem;
    height: 0.8rem;
    color: #ffffff;
    padding: 0;
    font-size: 0.32rem;
    float: left;
    font-weight: normal;
}

.nva_mobiles li .a span {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    width: 20px;
    height: 50px;
    text-align: center;
}

.nva_mobiles li .a span i {
    font-size: 0;
}

.nva_mobiles .title .a i {
    opacity: 1;
    filter: alpha(opacity=100);
    width: 0.24rem;
    height: 0.8rem;
    float: right;
    background: url("jnzkh202512_index_arrow_down.png") center no-repeat;
    background-size: 100% auto;
    transition: all 0.5s;
}

.nva_mobiles li.on.title .a i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.nva_mobiles .on.title .a i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.nva_mobiles li {
    display: block;
    width: 100%;
}

.nva_mobiles .title .list {
    display: none;
    position: relative;
    width: 100%;
    z-index: 9;
    left: 0;
    margin-left: 0;
    background: none;
    border: 0;
    clear: both;
    padding-bottom: 10px;
}

.nva_mobiles .title .list span {
    background: none;
}

.nva_mobiles .title .list span a:hover {
    color: #014085;
}

.nva_mobiles .title .list a {
    display: block;
    font-size: 0.28rem;
    color: rgb(255 255 255 / 53%);
    text-align: left;
    line-height: 0.56rem;
    height: 0.56rem;
    border: 0;
}

@media (max-width: 1024px) {
    .nav_menu_w {
        display: none;
    }

    #nav_btn_box {
        display: block;
    }
    .top-guide {
        display: none;
    }

}

@media (max-width: 768px) {
    .header {
        margin: 0 0.3rem;
        height: auto;
        padding: 0.2rem 0;
    }
    .header_logo{
        width: 4.2rem;
    }
    #nav_btn_box{
        right: 0.3rem;
    }
    .menubtn_w {
        height: 0.96rem;
    }
}

/* 底部 */
.footer {
    background-color: #5792cc;
    color: #ffffff;
}

.footer_wrap {
    max-width: 1590px;
    margin: 0 auto;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 38px 0 36px;
}

.footer_left img {
    width: 327px;
    /* width: 17.03vw; */
    max-width: 100%;
    margin-bottom: 27px;
    margin-left: 3px;
}

.footer_left .ps {
    font-size: 16px;
    color: #cee3f8;
    line-height: 36px;
    display: block;
    margin-top: 9px;
    background: no-repeat 3px 50%;
    background-image: url("jnzkh202512_index_footer1.png");
    background-size: auto 23px;
    padding-left: 34px;
}

.footer_left .sp {
    font-size: 24px;
    font-weight: bold;
}

.footer_left .ps_icos2 {
    background-image: url("jnzkh202512_index_footer2.png");
}

.footer_menu {
    display: flex;
    justify-content: space-between;
    width: 65.40%;
    margin-top: 23px;
}

.menu_column h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 14px;
}

.menu_column ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    line-height: 36px;
    color: #cee3f8;
}

.menu_column li {
    margin: 0;
}

.menu_column a {
    text-decoration: none;
}

.menu_column a:hover {
    color: #ffffff;
}

.footer_right img {
    width: 150px;
    display: block;
}

.footer_right p {
    margin: 0;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 17px 0 18px;
    position: relative;
}

.footer_copyright {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #cee3f8;
}

.footer_copyright img {
    margin-left: 2px;
    width: 52px;
    display: block;
    margin-right: 23px;
}
.footer_copyright a:hover{
	color: #fff;
}

.footer_right {
    position: absolute;
    right: 0;
    bottom: 24px;
    background-color: #5792cc;
    border: 1px solid #8ab3db;
    padding: 9px 10px 22px;
}

.footer_right .ts {
    font-size: 16px;
    line-height: 1;
    color: #cee3f8;
    position: absolute;
    left: 16.92%;
    right: 16.92%;
    bottom: -8px;
    text-align: center;
    background-color: #5792cc;
}

.footer_links {
    margin-right: 12.57%;
    position: relative;
}

.footer_links .texts {
    width: 290px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #8ab3db;
    color: #cee3f8;
    font-size: 16px;
    cursor: pointer;
    padding: 0 50px 0 17px;
    position: relative;
}

.footer_links .texts::after {
    content: " ";
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    background: url("jnzkh202512_index_footer3.png") no-repeat center center;
    background-size: 100% auto;
    width: 15px;
    height: 9px;
    transition: all 0.5s;
}

.footer_links.on .texts::after {
    transform: translateY(-50%) rotate(180deg);
}

.footer_links .uls {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    background-color: #5792cc;
    z-index: 999;
    border: 1px solid #8ab3db;
    border-bottom: none;
    font-size: 14px;
    line-height: 28px;
    padding: 6px 0;
    color: #cee3f8;
    /* opacity: 0; */
    /* transition: all 0.5s; */
    max-height: 200px;
    overflow-y: scroll;
    display: none;
}

.footer_links .uls li {
    padding: 0 17px;
}

.footer_links .uls li a:hover {
    color: #ffffff;
}

@media screen and (max-width: 1680px) {
    .footer_wrap {
        margin: 0 8.33%;
    }
    .footer_links{
        margin-right: 15.57%;
    }
    .footer_links .texts{
        width: 264px;
    }
}
@media (max-width: 1500px) {
    .footer_content {
        padding: 27px 0 28px;
    }

    .footer_left img {
        width: 233px;
        margin-bottom: 18px;
        margin-left: 2px;
    }

    .footer_left .ps {
        font-size: 14px;
        line-height: 28px;
        margin-top: 9px;
        background: no-repeat 2px 50%;
        background-image: url("jnzkh202512_index_footer1.png");
        background-size: auto 16px;
        padding-left: 23px;
    }

    .footer_left .sp {
        font-size: 18px;
    }

    .footer_left .ps_icos2 {
        background-image: url("jnzkh202512_index_footer2.png");
        background-position: 2px 6px;
    }

    .footer_menu {
        width: 65.40%;
        margin-top: 15px;
    }

    .menu_column h4 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 9px;
    }

    .menu_column ul {
        font-size: 14px;
        line-height: 28px;
    }

    .footer_bottom {
        padding: 12px 0 14px;
    }

    .footer_copyright {
        font-size: 14px;
    }

    .footer_copyright img {
        margin-left: 2px;
        width: 40px;
        margin-right: 16px;
    }

    .footer_right {
        bottom: 22px;
        padding: 6px 7px 16px;
    }

    .footer_right img {
        width: 79px;
    }

    .footer_right .ts {
        font-size: 12px;
        left: 16.92%;
        right: 16.92%;
        bottom: -6px;
    }

    .footer_links .texts {
        width: 208px;
        height: 36px;
        line-height: 36px;
        font-size: 12px;
        padding: 0 26px 0 12px;
    }

    .footer_links .texts::after {
        right: 14px;
        width: 12px;
        height: 6px;
    }

    .footer_links .uls {
        font-size: 12px;
        line-height: 22px;
        padding: 4px 0;
        max-height: 160px;
    }

    .footer_links .uls li {
        padding: 0 17px;
    }
}

@media (max-width: 768px) {
    .footer_menu{
        display: none;
    }
    .footer_bottom{
        display: block;
        padding: 0.4rem 0 0.6rem;
    }
    .footer_copyright{
        font-size: 0.24rem;
    }
    .footer_copyright img {
        margin-left: 0;
        width: 0.66rem;
        margin-right: 0.16rem;
    }
    .footer_left .ps {
        font-size: 0.24rem;
        line-height: 0.46rem;
        margin-top: 0.1rem;
        background: no-repeat 0 50%;
        background-image: url("jnzkh202512_index_footer1.png");
        background-size: auto 0.36rem;
        background-position: 0 0.06rem;
        padding-left: 0.5rem;
    }
    .footer_left .sp {
        font-size: 0.28rem;
    }
    .footer_left .ps_icos2 {
        background-image: url("jnzkh202512_index_footer2.png");
        background-position: 0 0.06rem;
    }
    .footer_left img {
        width: 3.8rem;
        display: block;
        margin: 0 auto;
        margin-bottom: 0.4rem;
    }
    .footer_content {
        padding: 0.4rem 0;
    }
    .footer_links{
        margin-right: 0;
        width: 3rem;
        margin: 0 auto;
        margin-top: 0.4rem;
    }
    .footer_links .texts {
        width: 3rem;
        height: 0.62rem;
        line-height: 0.62rem;
        font-size: 0.24rem;
        padding: 0 0.26rem 0 0.2rem;
    }
    .footer_right{
        position: relative;
        top: 0;
        width: 3rem;
        margin: 0 auto;
        padding: 0.2rem 0.2rem 0.4rem;
        margin-top: 0.4rem;
    }
    .footer_right img{
        width: 100%;
    }
    .footer_right .ts{
        font-size: 0.24rem;
        bottom: -0.15rem;
    }
    .footer_links .uls {
        font-size: 0.24rem;
        line-height: 0.56rem;
        padding: 4px 0;
        max-height: 2.8rem;
    }
    .footer_links .uls li {
        padding: 0 0.2rem;
    }
}

/* 动效 */

@-webkit-keyframes enter {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }

  20% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

@keyframes enter {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }

  20% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

@-webkit-keyframes scaleUpDown {
  from {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUpDown {
  from {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  to {
    transform: scale(1);
    transform: scale(1);
  }
}

.print_time {
    display: none;
}

@media print {
    body * {
        visibility: hidden;
    }
    .print_time {
        visibility: visible;
    }
    .print-area, .print-area * {
        visibility: visible;
    }
    .print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        font-size: 12pt;
    }
    .print-title {
        font-size: 18pt !important;
        font-weight: bold;
    }
}
body.active {
    overflow: hidden;
}


/* 20260126 修改 start */
@media screen and (min-width: 768px) {


    .header {
        position: relative;
        height: 6.72vw;
        align-items: end;
    }
    .header_logo {
        height: 100%;
    }
    .header_logo .imgs {
        width: 90%;
        display: block;
    }

    .nav_menu_w {
        align-items: end;
        height: 3vw;
    }
    .top-guide {
        display: none;
    }
    .nav_menu li {
        position: relative;
        line-height: 1;
        height: 3vw;
    }
    .sub-menu {
        position: absolute;
        top: 125%;
        padding: 10px 14px;
        border-radius: 10px;
        background: #fff;
        text-align: center;
        font-size: 14px;
        width: 120px;
        /* text-align: left; */
        box-shadow:  0 0 20px #ccc;
        left: 50%;
        transform: translateX(-50%);

        visibility: hidden;
        opacity: 0;
        transition: .5s;
    }

    .nav_menu li:nth-child(3) .sub-menu {
        width: 200px;
    }
    .nav_menu li:nth-child(4) .sub-menu {
        width: 215px;
    }


    .sub-menu  .sub-item {
        line-height: 32px;
        margin: 6px 0;
    }
    .sub-menu  .sub-item a {
        font-weight: normal;
        color: #333;
        font-size: 16px;
    }
    .sub-menu  .sub-item a:hover {
        color:#5792cc;
    }
    .nav_menu li:hover .sub-menu {
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 110%;
    }
    .top-guide {
        position: absolute;
        right: 0;
        top: 18%;
        margin-right: 5px;
        display: flex;
        align-items: center;
        font-size: 16px;
    }
    .top-guide span a{
        transition: .5s;
    }
    .top-guide span {
        display: inline-block;
        margin: 0 10px;
        color: #fff;
    }
    .top-guide span a:hover {
        color: #fff;
        font-weight: bold;
        transition: .5s;
    }
}
@media screen and (max-width: 1680px) {
    .top-guide {
        font-size: 14px;
    }
}

@media screen and (max-width: 1500px) {
    .top-guide {
        font-size: 14px;
    }

    .search_icon {
        width: 20px;
        height: 20px;
    }
    .sub-menu .sub-item {
        line-height: 28px;
    }
    .sub-menu .sub-item a {
        font-size: 14px;
    }
}

@media screen and (max-width: 1280px) {
    .top-guide {
        font-size: 12px;
        top: 10px;
    }
    .sub-menu .sub-item {
        line-height: 24px;
    }
    .sub-menu .sub-item a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .top-guide {
        display: none;
    }
}
@media (max-width: 768px) {
    .top-guide {
        display: none;
    }
}
.top-guide-mobile {
    font-size: 0.32rem;
    text-align: center;
    color: #fff;
    margin: 0.4rem 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    transform: translateY(30px);

}
.nva_mobiles.active .top-guide-mobile {
    opacity: 1;
    transition: all 0.5s 0.55s cubic-bezier(0.445, 0.145, 0.355, 1);
    transform: translateY(0);
}
.top-guide-mobile  span {
    margin: 0 0.1rem;
}
/* 20260126 修改 end */