@charset "utf-8"; /* 网站通用样式 */
#loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #f6f6f6;
}

#loading img {
    width: .48rem;
    animation: load-ti 2s linear infinite;
}

@keyframes load-ti {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

html {
    width: 100%;
    min-width: 320px;
    font-size: 100px;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: .06rem;
}

html::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #0f3b84;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.12);
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins500";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "SourceHanSansCN_Medium";
    src: url("../fonts/SourceHanSansCN_Medium.ttf") format("truetype");
}

.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 1500px;
    max-width: 86%;
    margin: 0 auto;
    font-size: .17rem;
}

/* 网站头部 */
.header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 100;
    width: 100%;
    padding: 0 0 .09rem;
    -webkit-transition: box-shadow 0.3s ease-out 0s;
    -moz-transition: box-shadow 0.3s ease-out 0s;
    -ms-transition: box-shadow 0.3s ease-out 0s;
    -o-transition: box-shadow 0.3s ease-out 0s;
    transition: box-shadow 0.3s ease-out 0s;
    background: #fff;
    border-top: .06rem solid #0f3b84;
    background: url("../images/head_bg.jpg") no-repeat 50% 50% / cover;
}

.header .container {
    position: relative;
    z-index: 2;
    width: 1650px;
    max-width: 92%;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .header::after { position: absolute; top: .18rem; left: 45%; opacity: .8; z-index: -1; content: ""; width: 2.68rem; height: .31rem; background: url("../images/xiaoxun.png") no-repeat 50% 50% / 100%; } */
.header .right-wrapper {
    width: 11.5rem;
    max-width: calc(100% - 5rem);
}

.header.scroll {
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.4);
}

.logo {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo {
    display: block;
}

.logo img {
    max-height: .86rem;
}

.top-box {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: .15rem 0 0;
}

.top-box .line {
    width: 1px;
    height: .18rem;
    margin: 0 .2rem;
    background: #0f3b84;
}

.ewm-box {
    display: -ms-flexbox;
    display: flex;
}

.ewm-box li {
    position: relative;
}

.ewm-box li:hover .down {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.ewm-box .img {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: .38rem;
    height: .38rem;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #0f3b84;
}

.ewm-box .img img {
    width: .22rem;
}

.ewm-box .down {
    position: absolute;
    top: 130%;
    right: auto;
    bottom: auto;
    left: calc(50% - .6rem);
    z-index: 2;
    width: 1.2rem;
    height: 1.2rem;
    padding: .04rem;
    background: #fff;
    box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.ewm-box .down img {
    width: 100%;
    height: 100%;
}

.top-link {
    display: flex;
    align-items: center;
}

.top-link a {
    font-size: .15rem;
    line-height: .34rem;
    color: #0f3b84;
    display: block;
    padding: 0 .26rem 0 0;
    background: url("../images/f_icon10.png") no-repeat 100% 50% / .18rem;
}

.search-box {
    padding: 0 .05rem 0 0;
    border: 1px solid #b7cef3;
    border-radius: .4rem;
    background: #fff;
}

.search-box .flex {
    font-size: 0;
}

.search-box .input {
    display: inline-block;
    vertical-align: top;
    width: .5rem;
    height: .32rem;
    padding: 0 .1rem 0 0;
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 0.32rem;
    color: #333;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.search-box .input::placeholder {
    color: #0f3b84;
}

.search-box .submit {
    display: inline-block;
    vertical-align: top;
    width: .42rem;
    height: .32rem;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.search-box:hover .input {
    width: 1.5rem;
}

.nav {
    width: 100%;
    margin: .06rem 0 0;
}

.nav li {
    position: relative;
}

.nav li a {
    position: relative;
    display: block;
    font-size: 0.18rem;
    line-height: 0.5rem;
    color: #0f3b84;
    text-align: center;
    font-weight: 700;
}

.nav li > a {
    display: flex;
    align-items: center;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li > a img {
    width: .15rem;
    margin: 0 0 0 .03rem;
    transition: all .3s;
}

.nav li > a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    content: "";
    box-sizing: border-box;
    width: 0%;
    height: .04rem;
    margin: 0 auto;
    border-radius: 3px;
    background: #0f3b84;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li:hover .sub-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
}

.nav li:hover > a img {
    transform: rotate(-180deg);
}

.nav .sub-nav {
    position: absolute;
    top: calc(100% - .04rem);
    right: auto;
    bottom: auto;
    left: calc(50% - .8rem);
    z-index: 1;
    width: 1.6rem;
    padding: .07rem 0;
    background: #0f3b84;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 3px;
    border-top: 0.04rem solid #0f3b84;
    -webkit-transition: all 0.42s ease-out 0s;
    -moz-transition: all 0.42s ease-out 0s;
    -ms-transition: all 0.42s ease-out 0s;
    -o-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transform-origin: 50% 0%;
}

.nav .sub-nav dd {
    position: relative;
    padding: 0 .15rem;
}

.nav .sub-nav dd::before {
    position: absolute;
    top: 0;
    right: 0.15rem;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: calc(100% - .3rem);
    height: 100%;
    content: "";
    background: #0f3b84;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav .sub-nav dd:last-child a {
    border: none;
}

.nav .sub-nav dd:hover::before {
    right: 0;
    width: 100%;
    opacity: 1;
}

.nav .sub-nav dd:hover a {
    color: #fff;
    border-color: transparent;
}

.nav .sub-nav a {
    z-index: 2;
    width: 100%;
    padding: .1rem 0;
    font-size: .15rem;
    font-weight: 400;
    line-height: .22rem;
    color: #333;
    border-bottom: 1px dashed #eee;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}

.nav .sub-nav .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 11px;
    overflow: hidden;
}

.nav .sub-nav .tri::before {
    display: none;
}

.nav .sub-nav .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: #0f3b84;
    -webkit-transform: translate(0px, 3px) rotate(45deg);
    -moz-transform: translate(0px, 3px) rotate(45deg);
    -ms-transform: translate(0px, 3px) rotate(45deg);
    -o-transform: translate(0px, 3px) rotate(45deg);
    transform: translate(0px, 3px) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

.mobile-box {
    display: none;
    position: fixed;
    top: 69px;
    right: auto;
    bottom: auto;
    left: -100%;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 69px);
    padding: .15rem 4% .4rem;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    background: #f8f8f8;
}

.mobile-box .nav {
    width: 100%;
    height: calc(100% - .6rem);
    padding: 0 0 .2rem;
}

.mobile-box .nav ul {
    display: block;
    height: 100%;
    overflow-y: auto;
}

.mobile-box .nav li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #fff;
}

.mobile-box .nav li:first-child {
    border-top: none;
}

.mobile-box .nav li:last-child {
    border-bottom: none;
}

.mobile-box .nav li a {
    color: #333;
    font-weight: 400;
    padding: 0 .1rem;
    line-height: .6rem;
    text-align: left;
}

.mobile-box .nav li a::after {
    display: none;
}

.mobile-box .nav li > a img {
    display: none;
}

.mobile-box .nav li .icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .6rem;
    height: .6rem;
    background-image: url(../images/arrow2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 7px;
    cursor: pointer;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mobile-box .nav li .icon.close {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.mobile-box .nav li > a {
    font-size: .2rem;
}

.mobile-box .nav .sub-nav {
    display: none;
    position: static;
    opacity: 1;
    width: 100%;
    padding: 0 0 12px 20px;
    background: none;
    box-shadow: none;
    transition: none;
    border: none;
    visibility: visible;
    transform: none;
}

.mobile-box .nav .sub-nav dd::before {
    display: none;
}

.mobile-box .nav .sub-nav .tri {
    display: none;
}

.mobile-box .nav .sub-nav a {
    font-size: .18rem;
    line-height: .4rem;
    color: #494949 !important;
    border-bottom: none;
}

.mobile-box .nav .sub-nav::before {
    display: none;
}

.mobile-box .mobile-search {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0 0 1px;
    margin: .1rem auto .15rem;
    overflow: hidden;
}

.mobile-box .mobile-search .form {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .6rem);
    height: 42px;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 42px;
    color: #333;
    text-align: left;
    background: #fff;
    border: 1px solid #0f3b84;
    border-radius: .3rem 0 0 .3rem;
    overflow: hidden;
}

.mobile-box .mobile-search .submit {
    width: .6rem;
    height: 42px;
    border-radius: 0 .3rem .3rem 0;
    vertical-align: top;
    background-image: url("../images/search2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #0f3b84;
    background-size: 0.21rem;
}

.mobile-box .top-link {
    justify-content: center;
}

.mobile-box .top-link a {
    margin: 0 .1rem;
    color: #0f3b84;
    background-image: url("../images/f_icon1_2.png");
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

.pad-btn {
    display: none;
    align-items: center;
    padding: 0 0 0 .4rem;
}

.pad-btn .nav-btn {
    position: relative;
    z-index: 5;
    width: 28px;
    margin: 0 0 0 .16rem;
    vertical-align: middle;
    cursor: pointer;
}

.pad-btn .nav-btn i {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: #0f3b84;
    -webkit-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
}

.pad-btn .nav-btn i:nth-child(2) {
    width: 75%;
}

.pad-btn .nav-btn.close i:nth-child(1) {
    -webkit-transform: translate(0px, 9px) rotate(45deg);
    -moz-transform: translate(0px, 9px) rotate(45deg);
    -ms-transform: translate(0px, 9px) rotate(45deg);
    -o-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}

.pad-btn .nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.pad-btn .nav-btn.close i:nth-child(3) {
    -webkit-transform: translate(0px, -9px) rotate(-45deg);
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    -ms-transform: translate(0px, -9px) rotate(-45deg);
    -o-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}

/* 网站底部 */
.footer {
    background: #0f3b84;
    padding: .3rem 0 .4rem;
}

.footer .title {
    position: relative;
    margin: 0 0 .05rem;
    font-size: .21rem;
    line-height: .4rem;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

.footer .title i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: .03rem;
    right: calc(100% + .1rem);
    width: .34rem;
    height: .34rem;
    border: 1px dashed rgba(255, 255, 255, .5);
    border-radius: 50%;
    padding: .05rem;
}

.footer .title i img {
    width: 88%;
}

.foot1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .line {
    width: 1px;
    height: 1.8rem;
    background: rgba(255, 255, 255, .1);
    align-self: center;
}

.foot-img img {
    max-height: 0.9rem;
}

.footer .contact .title i img {
    width: 82%;
}

.foot-text {
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.26rem;
    color: #fff;
    text-align: left;
}

.foot-text h6 {
    font-weight: 400;
    font-size: .22rem;
    margin: 0 0 0.2rem;
}

.foot-ewm {
    text-align: center;
}

.foot-ewm img {
    width: .89rem;
    margin: 0 0 .06rem;
}

.foot-ewm p {
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.28rem;
    color: #fff;
    text-align: center;
}

.foot-link span {
    display: block;
    width: 1px;
    height: .18rem;
    margin: 0 .3rem;
    background: rgba(255, 255, 255, 0.2);
    transition: all .2s;
}

.foot-link a {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: .15rem;
    line-height: .3rem;
    color: rgba(255, 255, 255, 0.8);
}

.foot-link a::after {
    position: absolute;
    bottom: .02rem;
    right: 0;
    content: "";
    width: 0;
    height: 1px;
    z-index: 1;
    background: #fff;
    transition: all .4s;
}

.foot-link a:hover {
    color: #fff;
}

.foot-link a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.contact {
    font-size: .15rem;
    line-height: .3rem;
    color: rgba(255, 255, 255, 0.8);
    ; }

.contact a {
    color: rgba(255, 255, 255, 0.8);
}

.sim-select {
    position: relative;
    width: 3.4rem;
    margin: .16rem 2.6vw 0;
    cursor: pointer;
}

.sim-select p {
    position: relative;
    padding: 0 .45rem 0 .2rem;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.36rem;
    color: #fff;
    text-align: left;
    border-radius: .1rem;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sim-select p::after {
    position: absolute;
    top: 0;
    right: 0.2rem;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .26rem;
    height: 100%;
    background-image: url("../images/f_icon5.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.16rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sim-select ul {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 2.28rem;
    display: none;
    padding: .06rem 0;
    background: #fff;
    box-shadow: 0 0.15rem 0.2rem 0 rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    border-radius: .1rem;
}

.sim-select ul::-webkit-scrollbar {
    width: .05rem;
}

.sim-select ul::-webkit-scrollbar-thumb {
    border-radius: .05rem;
    background: #0f3b84;
}

.sim-select ul::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
}

.sim-select ul li {
    border-bottom: 1px dashed #ddd;
}

.sim-select ul a {
    display: block;
    padding: .08rem .45rem .08rem .2rem;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.2rem;
    color: #5b5b5b;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sim-select ul a:hover {
    color: #fff;
    background: #0f3b84;
}

.sim-select:hover {
    z-index: 2;
}

.sim-select:hover p::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.copy {
    font-size: 0.14rem;
    margin: 0 0 .2rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: rgba(255, 255, 255, .6);
    align-self: flex-end;
}

.copy .img {
    margin: 0 0 .3rem;
}

.copy .img img {
    max-height: .86rem;
}

.copy a {
    color: rgba(255, 255, 255, .8);
}

/* 首页轮播图 */
.banner {
    width: 100%;
    height: calc(100vh - 1.17rem);
    z-index: 1;
    margin: 1.17rem 0 0;
    font-size: 0;
}

.banner .img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner .img .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.banner .img img {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: transform 1s ease-out 0s;
    -moz-transition: transform 1s ease-out 0s;
    -ms-transition: transform 1s ease-out 0s;
    -o-transition: transform 1s ease-out 0s;
    transition: transform 1s ease-out 0s;
}

.banner .swiper-slide-active img {
    -webkit-transition: transform 6.2s ease-out 1s;
    -moz-transition: transform 6.2s ease-out 1s;
    -ms-transition: transform 6.2s ease-out 1s;
    -o-transition: transform 6.2s ease-out 1s;
    transition: transform 6.2s ease-out 1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.banner .pagination {
    position: absolute;
    bottom: .3rem;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .pagination .swiper-pagination-bullet {
    position: relative;
    vertical-align: middle;
    width: .4rem;
    height: .08rem;
    margin: 0 .09rem;
    background: #fff;
    border-radius: .04rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: .8;
}

.banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0f3b84;
    opacity: 1;
}

.banner .swiper-arrow {
    position: absolute;
    top: calc(50% - .39rem);
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
    width: .6rem;
    height: .6rem;
    background-image: url("../images/arrow1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: rgba(255, 255, 255, 0.32);
    background-size: 0.14rem;
    cursor: pointer;
    border-radius: 50%;
    opacity: .5;
}

.banner .swiper-arrow.swiper-prev {
    left: 2%;
}

.banner .swiper-arrow.swiper-next {
    right: 2%;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* 首页样式 */
.title {
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #000;
    text-align: left;
}

.info {
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.24rem;
    color: #888;
    text-align: justify;
}

.date {
    padding: 0 0 0 .24rem;
    font-family: "Poppins";
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #0f3b84;
    text-align: left;
    background-image: url("../images/f_icon4_1.png");
    background-repeat: no-repeat;
    background-position: 0 40%;
    background-color: transparent;
    background-size: 0.14rem;
}

.date1 {
    font-family: "Poppins";
    font-size: 0.2rem;
    font-weight: 400;
    line-height: 0.22rem;
    color: #0f3b84;
    text-align: left;
    -webkit-transition: background 0.3s ease-out 0s;
    -moz-transition: background 0.3s ease-out 0s;
    -ms-transition: background 0.3s ease-out 0s;
    -o-transition: background 0.3s ease-out 0s;
    transition: background 0.3s ease-out 0s;
}

.date1 p {
    -webkit-transition: color 0.3s ease-out 0s;
    -moz-transition: color 0.3s ease-out 0s;
    -ms-transition: color 0.3s ease-out 0s;
    -o-transition: color 0.3s ease-out 0s;
    transition: color 0.3s ease-out 0s;
}

.date1 p:first-child {
    font-size: .14rem;
    color: #9e9e9e;
    line-height: .24rem;
}

.column {
    width: 100%;
    margin: .6rem 0 .3rem;
}

.column h3 {
    position: relative;
    z-index: 1;
}

.column h3::before {
    position: absolute;
    left: -.26rem;
    top: -.17rem;
    z-index: -1;
    content: "";
    width: .86rem;
    height: .63rem;
    background: url("../images/f_icon9.png") no-repeat 50% 50% / 100%;
}

.column .en {
    padding-left: .04rem;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.2rem;
    color: #0f3b84;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.column .en::after {
    display: block;
    content: "";
    min-width: .5rem;
    width: 100%;
    height: 1px;
    background: #0f3b84;
    margin-left: .1rem;
}

.column .cn {
    font-family: "SourceHanSansCN_Medium";
    font-size: 0.38rem;
    font-weight: 400;
    line-height: 0.5rem;
    color: #3d3d3d;
    text-align: left;
}

.more {
    display: block;
    position: relative;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.26rem;
    color: #002477;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.more span{
    line-height: 1;
    padding: 0.05rem 0;
    border-bottom: 1px solid #002477;
    display:block;
    text-align: center;
    color: #002477;
}
.more .moreIcon{
    margin-left: 0.1rem;
    transition: all .3s;
}
.more:hover .moreIcon{
    transform: rotateY(180deg);
}
.more2 {
    display: block;
    width: 1.4rem;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.45rem;
    color: #fff;
    text-align: center;
    background: #0f3b84;
    border-radius: .4rem;
}

.more2 img {
    margin: 0 0 0 .08rem;
}

.more3 {
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.28rem;
    color: #878787;
    text-align: right;
}

.more3:hover {
    color: #0f3b84;
}

.home1 {
    padding: .1rem 0 0;
    background: url("../images/index_bg1.jpg") no-repeat 50% 0 / 100%;
}

.news-swiper {
    width: 57%;
    margin: 0;
    border-radius: .1rem;
}

.news-swiper .img {
    padding: 5.3rem 0 0;
}

.news-swiper .text {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: .9rem 1.6rem .24rem .3rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.news-swiper .title {
    font-size: .2rem;
    font-weight: 700;
    color: #fff;
}

.news-swiper .date {
    padding: 0;
    font-size: .18rem;
    color: #fff;
    background: none;
}

.news-swiper .pagination {
    position: absolute;
    top: auto;
    right: 0.26rem;
    bottom: 0.2rem;
    left: auto;
    z-index: 2;
}

.news-swiper .pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    margin: 0;
    padding: .06rem;
    opacity: 1;
    border: 1px dashed transparent;
    background: none;
}

.news-swiper .pagination .swiper-pagination-bullet::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .09rem;
    height: .09rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.news-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
    margin: 0 .06rem;
    animation: ani-yuan 15s linear infinite;
}

.news-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: #fff;
}

@keyframes ani-yuan {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.date2 {
    width: .7rem;
    font-family: "Poppins";
    font-size: 0.15rem;
    line-height: 0.2rem;
    color: #003d83;
    text-align: center;
}

.date2 p:first-child {
    font-family: "Poppins500";
    font-size: .3rem;
    line-height: .36rem;
}

.news-list1 {
    width: 40%;
}

.news-list1 li {
    border-bottom: 1px solid #e3e3e3;
}

.news-list1 li:nth-of-type(1) a {
    padding-top: 0;
}

.news-list1 li:last-child {
    border: none;
}

.news-list1 a {
    padding: .17rem 0;
    align-items: center;
}

.news-list1 .text {
    width: calc(100% - 1rem);
}

.news-list1 .title {
    max-height: .6rem;
}

.home2 {
    position: relative;
    z-index: 1;
    padding: .32rem 0 .65rem;
    overflow: hidden;
}

.home3 {
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    background-image: url("../images/index_bg4.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 100%;
}

.home3 .t-box {
    width: 100%;
    margin: 0 0 .7rem;
}

.home3 .t-box .column .en {
    color: rgba(255, 255, 255, 0.2);
}

.home3 .t-box .column .cn {
    color: #fff;
}

.home3 .t-box .more {
    color: #fff;
}

.home3 .t-box .more::after {
    background: #fff;
}

.home3 .l-box, .home3 .r-box {
    width: 48%;
}

.news-list3 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 .15rem;
    padding: .18rem 0;
    border-bottom: 1px solid #E4E4E4;
}

.news-list3 .date1 {
    width: .73rem;
    height: .72rem;
    padding: .1rem 0 0 .09rem;
    border: 1px solid #B2B6C1;
    background: #fff;
}

.news-list3 .title {
    width: calc(100% - .8rem);
}

.news-list4 li:first-child a {
    border-top: none;
}

.news-list4 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .18rem 0;
    margin: 0 ;
    border-top: 1px solid #E4E4E4;
}

.news-list4 .line {
    width: 1px;
    height: .55rem;
    background: #DEDEDE;
}

.news-list4 .text {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 1rem);
}

.news-list4 .title {
    width: 100%;
    margin: 0 0 .05rem;
}

.news-list4 .info {
    width: 50%;
    height: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: #fff;
}

.news-list4 .info img {
    margin: 0 .1rem 2px 0;
}

.home4 {
    padding: 1px 0 0;
    background: #fff;
}

.news-list5 {
    margin-top: -.12rem;
}

.news-list5 li {
    padding: .15rem 0;
    border-bottom: 1px solid #ebebeb;
}

.news-list5 li:last-child {
    border: none;
}

.news-list5 .img-zoom {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-list5 .img-frame {
    width: 2.4rem;
    padding: 1.4rem 0 0;
    border-radius: .1rem;
}

.news-list5 .text {
    width: calc(100% - 2.7rem);
    padding: .06rem 0 0;
}

.news-list5 .title {
    max-height: .6rem;
}

.news-list5 .info {
    margin: .1rem 0 .12rem;
}

.news-swiper3 .pagination {
    margin: .2rem 0 0;
    text-align: center;
}

.news-swiper3 .pagination .swiper-pagination-bullet {
    width: .12rem;
    height: .12rem;
    transition: all .3s;
    background: #ddd;
    margin: 0 .06rem;
}

.news-swiper3 .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #1b5eaf;
}

.news-swiper3 .img-zoom {
    z-index: 1;
    padding: .2rem;
    background: #f4f4f9;
    border-radius: 5px;
}

.news-swiper3 .img-zoom::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: -1;
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: #dee5f5;
    border-radius: 0 0 0 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.news-swiper3 .img-frame {
    border-radius: 5px;
}

.news-swiper3 .img-frame .img {
    padding: 2rem 0 0;
}

.news-swiper3 .title {
    margin: .22rem 0 .2rem;
    height: .6rem;
}

.news-swiper3 .info {
    height: .48rem;
}

.news-swiper3 .more5 {
    display: inline-block;
    padding: 0 .27rem 0 0;
    margin: .5rem 0 0;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #1965d6;
    text-align: left;
    background-image: url("../images/arrow3.png");
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-color: transparent;
    background-size: 0.2rem;
    transition: all .3s;
}

.news-swiper3 .date {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1;
    padding: 0 .28rem;
    color: #0f3b84;
    line-height: .5rem;
    background: #dee5f5;
    border-radius: .25rem 0 0 .25rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.home5 {
    position: relative;
    z-index: 2;
    padding: 0 0 .7rem;
    background: url("../images/index_bg3.jpg") no-repeat 50% 100% / 100%
}

.home5 .l-box {
    width: 48%;
}

.home5 .r-box {
    width: 48%;
}

.home5 .news-list5 li {
    padding: .16rem 0;
}

.home5 .news-list5 .info {
    margin: 0;
}

.home5 .news-list5 .date {
    margin: .1rem 0 .12rem;
}

.home5 .news-list5 .date .source {
    font-family: "Microsoft YaHei";
    margin-left: .3rem;
    font-size: .16rem;
}

.first-news {
    display: flex;
    border-radius: .1rem;
}

.first-news .img-frame {
    width: 66%;
}

.first-news .img-frame .img {
    padding: 3.2rem 0 0;
}

.first-news .text {
    width: 34%;
    padding: .28rem .16rem 0;
    background: url("../images/list_bg2.jpg") no-repeat 50% 50% / cover;
}

.first-news .date {
    color: #fff;
    background-image: url("../images/f_icon4_2.png");
}

.first-news .source {
    font-size: .14rem;
    line-height: .25rem;
    color: rgba(255, 255, 255, .8);
    margin: .15rem 0;
}

.first-news .title {
    margin: 0 0 .3rem;
    max-height: .9rem;
    color: #fff;
}

.first-news .more4 {
    color: #fff;
    font-size: .14rem;
}

.first-news .more4 img {
    display: inline;
    width: auto;
    height: .07rem;
    margin: 0 0 2px .1rem;
    position: static;
}

.news-list6 li:first-child a {
    padding-top: 0;
}

.news-list6 li:last-child a {
    border: none;
}

.news-list6 a {
    position: relative;
    padding: .15rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.news-list6 a::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #1965d6;
}

.news-list6 .date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: .38rem;
}

.news-list6 .title {
    width: calc(100% - 0);
    line-height: .4rem;
}

.news-list6 .source {
    color: #0f3b84;
}

/* 内页样式 */
.decorate {
    position: relative;
    margin: 1.17rem 0 0;
    padding: 5.4rem 0 0;
}

.decorate img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.sidebar {
    position: relative;
    z-index: 3;
    width: 3.1rem;
    margin: -.9rem 0 .6rem;
}

.sidebar h3 {
    position: relative;
    z-index: 1;
    font-family: "SourceHanSansCN_Medium";
    font-size: 0.36rem;
    font-weight: 400;
    line-height: 1.2rem;
    color: #fff;
    text-align: center;
    background: #0f3b84;
    letter-spacing: 2px;
}

.sidebar .sub-nav {
    position: relative;
    padding: 0 .28rem;
    border-left: 0.12rem solid #0f3b84;
    background: rgba(0, 0, 0, 0.03);
}

.sidebar .sub-nav li {
    position: relative;
    z-index: 1;
    border-bottom: 1px dashed rgba(72, 116, 203, 0.2);
}

.sidebar .sub-nav li:last-child {
    border: none;
}

.sidebar .sub-nav li.cur {
    border-bottom: 1px solid #0f3b84;
}

.sidebar .sub-nav li.cur::after {
    opacity: 1;
}

.sidebar .sub-nav li.cur > a {
    color: #0f3b84 !important;
    font-weight: 700;
}

.sidebar .sub-nav li.cur .lv3 {
    display: block;
}

.sidebar .sub-nav li.cur .down {
    opacity: 1;
}

.sidebar .sub-nav li:hover > a {
    color: #0f3b84;
    font-weight: 700;
}

.sidebar .sub-nav li:hover .down {
    opacity: 1;
}

.sidebar .sub-nav a {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: .25rem .4rem .25rem .24rem;
    font-size: 0.2rem;
    font-weight: 400;
    line-height: 0.36rem;
    color: #333;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar .sub-nav a p {
    position: relative;
}

.sidebar .sub-nav a p::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -0.03rem;
    left: 0;
    z-index: 1;
    width: 0;
    max-width: .9rem;
    height: .15rem;
    border-radius: .1rem 0 .1rem 0;
    background: #54a4e2;
    content: "";
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.sidebar .sub-nav a span {
    position: relative;
    z-index: 2;
}

.sidebar .sub-nav .down {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .3rem;
    height: .96rem;
    background-image: url("../images/icon12_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.1rem;
    cursor: pointer;
    opacity: .32;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar .sub-nav .down.has {
    z-index: 3;
}

.sidebar .sub-nav .down.close {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar .sub-nav .lv3 {
    display: none;
    margin: -.1rem 0 0;
    padding: 0 0 .15rem .12rem;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 .08rem .2rem;
    font-size: .16rem;
    line-height: .22rem;
}

.sidebar .sub-nav .lv3 a::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #0f3b84;
    margin: 0 .1rem 0 0;
    content: "";
    border-radius: 50%;
}

.sidebar .sub-nav .lv3 a:hover {
    color: #0f3b84;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #0f3b84;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #0f3b84;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #0f3b84;
}

.side-swiper {
    background: #fff;
}

.side-swiper .img-zoom {
    opacity: .5;
}

.side-swiper .img {
    padding: 56.25% 0 0;
}

.side-swiper .pagination {
    padding: .08rem 0;
    text-align: center;
    background: #0f3b84;
}

.side-swiper .pagination .swiper-pagination-bullet {
    width: .11rem;
    height: .11rem;
    margin: 0 .12rem;
    border-radius: .05rem;
    background: rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.side-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    width: .4rem;
}

.main-box {
    background: url("../images/index_bg3.jpg") no-repeat 50% 100% / 100%
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.8rem);
    min-height: 4rem;
    margin: .3rem 0 0;
    padding: 0 0 .3rem;
}

.position {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
}

.position h3 {
    white-space: nowrap;
    font-size: 0.28rem;
    font-weight: 700;
    line-height: 0.56rem;
    color: #333;
    text-align: left;
    border-bottom: 3px solid #0f3b84;
    margin: 0 0 -1px;
}

.place {
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 0.6rem;
    color: #888;
    text-align: left;
    padding: 0 0 0 26px;
    background-image: url(../images/place.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.19rem;
}

.place a {
    position: relative;
    display: inline-block;
    color: #888;
}

.place a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.18rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #0f3b84;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.place a:hover {
    color: #0f3b84;
}

.place a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.list1 {
    margin: .1rem 0 0;
}

.list1 li {
    position: relative;
}

.list1 a {
    position: relative;
    padding: .26rem .0rem;
    border-bottom: 1px dashed #e5e5e5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 a::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 1;
    content: "";
    width: 0;
    height: 2px;
    background: #0f3b84;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.list1 .date1 {
    font-size: .16rem;
    color: #9e9e9e;
    width: .62rem;
}

.list1 .date1 p:first-child {
    font-size: .22rem;
    line-height: .34rem;
    color: #0f3b84;
}

.list1 .line {
    width: 1px;
    height: .5rem;
    background: #dfdfdf;
}

.list1 .text {
    width: calc(100% - 1.3rem);
}

.list1 .title {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 .info {
    margin: .04rem 0 0;
    color: #777;
}

.picture2 {
    margin: .2rem 0 0;
}

.picture2 li {
    position: relative;
}

.picture2 li.no-img .text {
    width: 100%;
    padding-left: 0;
}

.picture2 a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .24rem .2rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom: 1px dashed #cacaca;
}

.picture2 .img-frame {
    width: 2.6rem;
}

.picture2 .img-frame .img {
    padding: 60% 0 0;
}

.picture2 .text {
    position: relative;
    width: calc(100% - 2.7rem);
    padding: .1rem 0 0 .2rem;
}

.picture2 .date {
    margin: .08rem 0 0;
}

.picture2 .title {
    line-height: .3rem;
    color: #222;
}

.picture2 .info {
    max-height: .48rem;
    margin: .1rem 0 0;
}

.picture3 {
    font-size: 0;
    margin: 0 -0.15rem;
}

.picture3 > li {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
    padding: 0 0.15rem;
}

.picture3 .img-zoom {
    margin: .3rem 0 0;
    padding: .1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: #fcfeff;
    box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32);
}

.picture3 .img {
    padding: 65% 0 0;
}

.picture3 .text {
    padding: .15rem 0 .05rem;
}

.picture3 .title {
    font-family: "SYST400";
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.36rem;
    color: #333;
    text-align: center;
}

.teach-column {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .2rem 0 0;
    border-bottom: 1px solid #ddd;
}

.teach-column h5 {
    margin: 0 0 -1px;
    font-size: 0.22rem;
    font-weight: 700;
    line-height: 0.5rem;
    color: #333;
    text-align: left;
    border-bottom: 3px solid #0f3b84;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}

.teach-list {
    font-size: 0;
    margin: 0 -0.24rem;
    margin-bottom: .3rem;
}

.teach-list > li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 0.24rem;
}

.teach-list li {
    margin: .44rem 0 0;
}

.teach-list .img-zoom {
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: .2rem .1rem 0;
    border-radius: .15rem;
    background: #FFFFFF;
    box-shadow: 0px 4px 0.15rem 0px rgba(14, 65, 150, 0.15);
}

.teach-list .img-zoom::before {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0%;
    z-index: 1;
    content: "";
    width: 100%;
    height: 2px;
    background: #0f3b84;
}

.teach-list .img-frame {
    border-radius: 50%;
    background: #fff;
}

.teach-list .img-frame .img {
    padding: 100% 0 0;
    background-position-y: 10%;
}

.teach-list .title {
    font-weight: 700;
    font-size: .2rem;
    line-height: .6rem;
    text-align: center;
}

.article {
    padding: .4rem 0 .2rem;
}

.article .title {
    font-size: 0.27rem;
    font-weight: 400;
    line-height: 140%;
    color: #333;
    text-align: center;
}

.article .sub-title1 {
    margin: 0 0 .08rem;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.32rem;
    color: #000;
    text-align: center;
}

.article .sub-title2 {
    margin: .08rem 0 0;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.32rem;
    color: #666;
    text-align: center;
}

.article .sub {
    margin: 0 0 .1rem;
    padding: .14rem 0 .3rem;
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 0.22rem;
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.article .sub span {
    margin: 0 .1rem;
}

.article .sub span span {
    margin: 0;
}

.article .content {
    padding: .3rem 0 .2rem;
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 200%;
    color: #333;
    text-align: justify;
}

.article .content p {
    text-indent: 2em;
    word-break: break-all;
    margin: 0 0 .25rem;
}

.article .content img, .article .content video {
    max-width: 100%;
    height: auto !important;
}

.article .content video {
    display: block;
    margin: 0 auto;
}

.article .content table {
    max-width: 100%;
    margin: 0 auto .2rem;
}

.article .content table td {
    word-break: break-all;
}

.article .content table p {
    text-indent: 0;
    margin: 0;
}

.article .content table img, .article .content table video, .article .content table iframe {
    margin-top: 0;
    margin-bottom: 0;
}

.article .content iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto .2rem;
}

.article .cont-page {
    position: relative;
    padding: .3rem 90px .28rem .1rem;
    border-top: 2px solid #0f3b84;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.28rem;
    color: #666;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.article .cont-page a span {
    position: relative;
}

.article .cont-page a span::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 1px;
    background: #0f3b84;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    content: "";
}

.article .cont-page a:hover {
    text-decoration: none;
    color: #0f3b84;
    font-weight: 700;
}

.article .cont-page a:hover span::after {
    width: 100%;
}

.article .return-list {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    text-align: center !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.article .return-list p {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 200%;
    color: #0f3b84;
    text-align: center;
}

.article .return-list:hover p {
    font-weight: 700;
}

.article ul a, .article a {
    color: #2196f3;
}

.article ul a:hover, .article a:hover {
    text-decoration: underline;
}

.article .table-box {
    overflow-x: auto;
}

.teach-article {
    display: flex;
    justify-content: space-between;
}

.teach-article .teach-img {
    width: 1.8rem;
}

.teach-article .teach-img .name {
    margin: .2rem 0 .1rem;
    font-size: .21rem;
    font-weight: 700;
    line-height: .3rem;
    color: #333;
    text-align: center;
}

.teach-article .teach-content {
    width: calc(100% - 2.2rem);
}

.teach-article .teach-title {
    font-size: .19rem;
    line-height: .55rem;
    color: #0a5897;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
}

.teach-article .teach-title i {
    display: inline-block;
    width: 0;
    height: 0;
    border: .06rem solid transparent;
    border-left-color: #0a5897;
    margin: 0 4px 0 0;
}

.teach-article .content {
    padding: .2rem 0;
}

.article .share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: .1rem 0 .3rem;
    -webkit-transition: top 0.01s linear 0s;
    -moz-transition: top 0.01s linear 0s;
    -ms-transition: top 0.01s linear 0s;
    -o-transition: top 0.01s linear 0s;
    transition: top 0.01s linear 0s;
}

.article .share p {
    margin: 0 0 0;
    text-indent: 0;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.2rem;
    color: #999;
    text-align: center;
}

.article .share .share-icon {
    display: flex;
    justify-content: center;
}

.article .share .share-icon .s-icon {
    width: .45rem;
    height: .45rem;
    margin: 0 .07rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: 60%;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    -ms-transition: all .3s;
    border: 1px solid #eee;
}

.article .share .share-icon .s-icon:hover {
    box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.15);
}

.article .share .share-icon .s-icon.sina {
    background-image: url(../images/share4_2.png);
}

.article .share .share-icon .s-icon.wechat {
    position: relative;
    background-image: url(../images/share4_1.png);
}

.article .share .share-icon .s-icon.qq {
    background-image: url(../images/share4_3.png);
}

.article .share .share-icon .s-icon.qzone {
    background-image: url(../images/share4_4.png);
}

.article .share .qrid_zz {
    position: absolute;
    bottom: 120%;
    right: 0;
    left: 50%;
    z-index: 1000;
    display: none;
    width: 1.5rem;
    height: auto;
    padding: .14rem .14rem .06rem;
    background: #fff;
    border-radius: 5px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-shadow: 0 0 0.14rem 0 rgba(0, 0, 0, 0.2);
}

.article .share .qrid_zz #qrid {
    width: 100%;
    height: 100%;
}

.article .share .qrid_zz #qrid canvas {
    vertical-align: top;
    width: 100%;
    height: 100%;
}

.article .share .qrid_zz p {
    font-size: .14rem;
    line-height: .3rem;
    color: #666;
    text-align: center;
    margin: 4px 0 0;
}

/* 翻页样式 */
#list-page {
    margin: .4rem 0 .3rem !important;
    font-family: Arial;
    text-align: center;
}

#list-page div {
    font-family: Arial;
}

#list-page .p_pages a, #list-page span, #list-page .p_goto a {
    font-size: .14rem;
    width: auto;
    height: auto;
    margin-top: 5px;
    -webkit-transition: all 0.24s ease-out 0s;
    -moz-transition: all 0.24s ease-out 0s;
    -ms-transition: all 0.24s ease-out 0s;
    -o-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: .1rem .12rem;
    color: #0f3b84;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #0f3b84;
    font-weight: bold;
    color: #fff;
    border-color: #0f3b84;
}

#list-page .p_t {
    padding: 0 2px 0 0;
    color: #777;
}

#list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d {
    display: inline-block;
}

#list-page .p_pages span {
    color: #aaa;
}

#list-page .p_goto input {
    font-family: 'Arial';
    color: #333;
    border-radius: 4px;
    border-color: #e2e2e2;
    width: .45rem;
    height: .36rem;
    line-height: .34rem;
    vertical-align: bottom;
}

@media screen and (min-width: 1025px) {
    .more span {
        display: block;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .more::before {
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .more:hover {
        color: #0f3b84;
    }
    .more2 {
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .more2:hover {
        background: #CC1A1A;
    }

    .news-list1 li {
        position: relative;
        transition: all .3s;
    }

    .news-list1 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: #003d83;
        -moz-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .news-list1 li:hover {
        -webkit-transform: translateX(0.07rem);
        -moz-transform: translateX(0.07rem);
        -ms-transform: translateX(0.07rem);
        -o-transform: translateX(0.07rem);
        transform: translateX(0.07rem);
    }

    .news-list1 li:hover::after {
        width: 100%;
    }

    .news-list1 li:hover .title {
        font-weight: 700;
        color: #003d83;
    }

    .notice-list .on::after, .notice-list .on::before {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: all 0.38s ease-out 0s;
        -moz-transition: all 0.38s ease-out 0s;
        -ms-transition: all 0.38s ease-out 0s;
        -o-transition: all 0.38s ease-out 0s;
        transition: all 0.38s ease-out 0s;
    }

    .notice-list .on a {
        padding: .16rem .32rem .15rem;
        margin: 0;
        border-color: transparent;
    }

    .notice-list .on .title {
        color: #fff;
        font-weight: 700;
    }

    .notice-list .on .info {
        max-height: .48rem;
        margin: .1rem 0 .05rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .notice-list .on .date {
        margin: .05rem 0 0;
        color: #fff;
        background-image: url("../images/f_icon4_2.png");
    }

    .teach-swiper .swiper-slide::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: #CC1A1A;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
    }

    .teach-swiper .swiper-slide:hover .title {
        color: #0f3b84;
    }

    .teach-swiper .swiper-slide:hover::after {
        left: 0;
        width: 100%;
    }

    .news-list3 li {
        position: relative;
        z-index: 1;
    }

    .news-list3 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 10%;
        z-index: -1;
        content: "";
        width: 80%;
        height: 100%;
        opacity: 0;
        background-image: url("../images/list_bg4.jpg");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 100% 100%;
        -webkit-transition: all 0.36s ease-out 0s;
        -moz-transition: all 0.36s ease-out 0s;
        -ms-transition: all 0.36s ease-out 0s;
        -o-transition: all 0.36s ease-out 0s;
        transition: all 0.36s ease-out 0s;
    }

    .news-list3 li:hover::after {
        width: 100%;
        left: 0;
        opacity: 1;
    }

    .news-list3 li:hover a {
        border-color: transparent;
    }

    .news-list3 li:hover .title {
        color: #0f3b84;
    }

    .news-list3 li:hover .date1 {
        border-color: #0f3b84;
        background: #0f3b84;
    }

    .news-list3 li:hover .date1 p {
        color: #fff !important;
    }

    .news-list5 li {
        position: relative;
        z-index: 1;
    }

    .news-list5 li::after {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background: #fff;
        content: "";
        box-shadow: 0 0 .15rem 0 rgba(72, 116, 203, 0.25);
        opacity: 0;
        transition: all .4s;
        border-radius: .1rem;
    }

    .news-list5 li:hover::after {
        opacity: 1;
        left: -.15rem;
        width: calc(100% + .3rem);
    }

    .news-list5 li:hover .title {
        color: #0f3b84;
        font-weight: 700;
    }

    .news-swiper3 .img-zoom:hover::after {
        width: 100%;
        height: 100%;
        border-radius: 0;
        background: #0f3b84
    }

    .news-swiper3 .img-zoom:hover .title {
        font-weight: 700;
    }

    .news-swiper3 .img-zoom:hover .title, .news-swiper3 .img-zoom:hover .info {
        color: #fff;
    }

    .news-swiper3 .img-zoom:hover .date {
        color: #fff;
        background: transparent;
    }

    .news-swiper3 .img-zoom:hover .more5 {
        color: #fff;
        background-image: url("../images/arrow3_2.png");
    }

    .news-list4 a, .news-list4 .line {
        transition: all .35s;
    }

    .news-list4 a:hover {
        -webkit-transform: translateX(0.07rem);
        -moz-transform: translateX(0.07rem);
        -ms-transform: translateX(0.07rem);
        -o-transform: translateX(0.07rem);
        transform: translateX(0.07rem);
    }

    .news-list4 a:hover .title {
        font-weight: 700;
        color: #0f3b84
    }

    .news-list4 a:hover .line {
        transform: rotateX(180deg);
        background: #0f3b84;
    }

    .list1 a:hover {
        -webkit-transform: translateX(0.07rem);
        -moz-transform: translateX(0.07rem);
        -ms-transform: translateX(0.07rem);
        -o-transform: translateX(0.07rem);
        transform: translateX(0.07rem);
    }

    .list1 a:hover::after {
        width: 100%;
    }

    .list1 a:hover .title {
        color: #0f3b84;
    }

    .picture2 li {
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        z-index: 1;
    }

    .picture2 li::after {
        position: absolute;
        top: -1px;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: -1;
        content: "";
        width: calc(100% + .14rem);
        height: calc(100% + 2px);
        background: #0f3b84;
        opacity: 0;
        -webkit-transform: translateX(0.14rem);
        -moz-transform: translateX(0.14rem);
        -ms-transform: translateX(0.14rem);
        -o-transform: translateX(0.14rem);
        transform: translateX(0.14rem);
    }

    .picture2 li:hover a {
        border-color: transparent;
    }

    .picture2 li:hover::after {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: all 0.38s ease-out 0s;
        -moz-transition: all 0.38s ease-out 0s;
        -ms-transition: all 0.38s ease-out 0s;
        -o-transition: all 0.38s ease-out 0s;
        transition: all 0.38s ease-out 0s;
    }

    .picture2 li:hover .title {
        color: #fff;
        font-weight: 700;
    }

    .picture2 li:hover .info {
        color: rgba(255, 255, 255, 0.6);
    }

    .picture2 li:hover .date {
        color: #fff;
        background-image: url("../images/f_icon4_2.png");
    }

    .picture3 .img-zoom:hover {
        border-color: #0f3b84;
        background: #0f3b84;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
        font-family: "SYST700";
    }

    .teach-list .img-zoom::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        z-index: 2;
        content: "";
        width: 0;
        height: 2px;
        background: #CC1A1A;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
    }

    .teach-list .img-zoom:hover .title {
        color: #0f3b84;
    }

    .teach-list .img-zoom:hover::after {
        left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 1600px) {
    .ewm-box .img img {
        max-height: .2rem;
    }

    .column .en img {
        max-height: .44rem;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 100px !important;
    }

    .header {
        padding: 10px 0 !important;
        transition: all .2s;
        box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.3);
        border-top-width: .04rem;
    }

    .header::after {
        display: none;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
    }

    .header .right-wrapper .top-box, .header .right-wrapper .nav {
        display: none;
    }

    .logo {
        width: auto;
        min-width: auto;
        height: 45px;
        padding: 0 .12rem 0 0;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 45px !important;
    }

    .pad-btn {
        display: block;
        padding: 0;
    }

    .mobile-box {
        display: block;
    }

    .container {
        max-width: 94%;
    }

    .banner {
        margin: 65px 0 0;
        height: auto;
    }

    .banner .img {
        height: auto;
        padding: 45% 0 0;
    }

    .banner .pagination {
        bottom: .2rem;
    }

    .banner .pagination .swiper-pagination-bullet {
        width: .4rem;
        height: 6px;
    }

    .banner .swiper-arrow {
        width: .45rem;
        height: .45rem;
        background-size: .1rem;
    }

    .column {
        margin: .3rem 0 .2rem;
    }

    .column .cn {
        font-size: .3rem;
        line-height: .4rem;
    }

    .column h3::before {
        left: -.1rem;
        width: .6rem;
    }

    .home1 .l-box {
        width: 100%;
    }

    .home1 .r-box {
        width: 100%;
    }

    .more {
    }

    .news-swiper, .news-list1 {
        width: 100%;
    }

    .news-list1 {
        margin: .2rem 0 0;
    }

    .news-swiper .img {
        padding: 56.25% 0 0;
    }

    .notice-list {
        padding: .1rem 0 .15rem;
    }

    .notice-list li::before, .notice-list li::after {
        display: none;
    }

    .notice-list a {
        padding: .18rem 0 .15rem;
    }

    .notice-list .title {
        overflow: visible;
        text-overflow: clip;
        white-space: initial;
    }

    .notice-list .info {
        max-height: .48rem;
        margin: .1rem 0 4px;
    }

    .home2 {
        padding: .2rem 0 .3rem;
    }

    .home5 .l-box, .home5 .r-box {
        width: 100%;
    }

    .gallery {
        padding: 0;
        box-shadow: 0px 4px 0.1rem 0px rgba(0, 0, 0, 0.1);
    }

    .gallery::before {
        top: 0;
        height: 100%;
    }

    .gallery::after {
        display: none;
    }

    .gallery .swiper-container {
        padding: 0;
    }

    .gallery .img-zoom .img {
        padding: 3.4rem 0 0;
    }

    .gallery .text {
        height: 3.4rem;
        box-shadow: none;
    }

    .thumbs {
        margin: .3rem 0 0;
    }

    .thumbs .swiper-arrow {
        width: .4rem;
        height: .4rem;
        background-size: 0.21rem;
    }

    .home3 {
        padding: 1px 0 0;
    }

    .home3::before {
        height: 42vw;
    }

    .home3 .t-box {
        margin: 0 0 .1rem;
    }

    .home3 .l-box, .home3 .r-box {
        width: 100%;
    }

    .teach-swiper {
        padding-top: 0;
    }

    .teach-swiper .title {
        font-size: .2rem;
    }

    .teach-swiper .pagination {
        margin: .3rem 0 0;
    }

    .footer {
        padding: .2rem 0;
    }

    .footer .line {
        height: 1.5rem;
    }

    .footer .line:nth-of-type(2) {
        display: none;
    }

    .copy {
        order: 4;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, .12);
        margin: .2rem 0 0;
        padding: .15rem 0 0;
    }

    .copy .img {
        margin: 0 0 .1rem;
    }

    .footer .title i {
        display: none;
    }

    .news-list3 a {
        margin: 0;
    }

    .home4 {
        padding: .1rem 0 .4rem;
    }

    .home5 {
        padding: 0 0 .4rem;
    }

    .device-swiper {
        text-align: center;
    }

    .device-swiper .swiper-arrow {
        position: static;
        display: inline-block;
        margin: .2rem .2rem 0;
        width: .48rem;
        height: .48rem;
    }

    .foot1 .container {
        justify-content: center;
    }

    .foot-img {
        width: 100%;
        text-align: center;
    }

    .foot-text {
        width: 50%;
        margin: .2rem 0 0;
        text-align: center;
    }

    .foot-text h6 {
        margin: 0 0 .1rem;
    }

    .foot-ewm {
        width: 100%;
        margin: .2rem 0 0;
    }

    .decorate {
        margin: 65px 0 0;
        padding: 36% 0 0;
    }

    .sidebar {
        width: 100%;
        margin: .15rem 0 0;
        padding: 0;
        border-radius: 3px;
        overflow: hidden;
    }

    .sidebar h3 {
        position: relative;
        font-size: .21rem;
        line-height: .5rem;
        text-align: center;
        background: #0f3b84;
    }

    .sidebar h3::after {
        display: none;
    }

    .sidebar h3 i {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: .5rem;
        height: .5rem;
        background-image: url(../images/daohang.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .sidebar h3.down i {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar h3 .return-sup {
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: 1;
        display: block;
        width: .5rem;
        height: .5rem;
        background-image: url("../images/fanhui.png");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .sidebar .sub-nav {
        display: none;
        padding: .1rem .2rem .2rem;
    }

    .sidebar .sub-nav li .lv3 {
        margin: 0;
        padding-top: 0;
    }

    .sidebar .sub-nav a {
        height: .55rem;
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;
        font-size: .18rem;
        line-height: .55rem;
    }

    .sidebar .sub-nav .down {
        top: 0;
        height: .55rem;
    }

    .side-swiper {
        display: none;
    }

    .main {
        width: 100%;
        padding: .26rem 0 0;
        margin: 0;
        box-shadow: none;
        background: none;
    }

    .main::before {
        display: none;
    }

    .place {
        line-height: .4rem;
    }

    .place .container {
        justify-content: flex-start;
        font-size: .15rem;
    }

    .teach-list {
        margin-bottom: 0;
        padding: 0 0 .3rem;
    }

    .article .return-list {
        position: static;
        margin: .15rem 0 0;
    }

    .teach-list li {
        width: 25%;
        margin: .3rem 0 0;
    }

    .article {
        padding: .3rem 0 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .more2 {
        line-height: .38rem;
    }

    .news-list5 .img-frame {
        width: 100%;
        padding: 56.25% 0 0;
        margin: 0 0 .06rem;
    }

    .news-swiper3 .img-frame .img {
        padding: 56.25% 0 0;
    }

    .news-list5 .text {
        width: 100%;
    }

    .news-swiper3 .title {
        margin: .1rem 0;
    }

    .news-swiper3 .more5 {
        margin: .3rem 0 0;
    }

    .notice-list a {
        margin: 0 .2rem;
    }

    .gallery .swiper-slide {
        flex-wrap: wrap;
    }

    .gallery .img-zoom {
        width: 100%;
    }

    .gallery .img-zoom .img {
        padding: 56.25% 0 0;
    }

    .gallery .text {
        width: 100%;
        height: auto;
        padding: .2rem;
    }

    .gallery .title {
        text-align: center;
    }

    .gallery .info {
        margin: .1rem 0 .15rem;
        line-height: .24rem;
        height: .72rem;
    }

    .gallery .more2 {
        margin: 0 auto;
    }

    .thumbs {
        margin: .2rem 0 0;
        padding: 0 .34rem;
    }

    .thumbs .swiper-arrow {
        top: calc(50% - .15rem);
        width: .3rem;
        height: .3rem;
    }

    .thumbs .swiper-arrow.swiper-prev {
        left: 0;
    }

    .thumbs .swiper-arrow.swiper-next {
        right: 0;
    }

    .teach-swiper .swiper-slide {
        padding: .2rem;
    }

    .teach-swiper .pagination .swiper-pagination-bullet {
        width: .3rem;
    }

    .news-list4 .info {
        width: 100%;
    }

    .device-swiper .swiper-slide {
        flex-wrap: wrap;
    }

    .device-swiper .img-zoom {
        width: 100%;
    }

    .device-swiper .img-zoom .img {
        padding: 56.25% 0 0;
    }

    .device-swiper .text {
        width: 100%;
        padding: .2rem;
    }

    .teach-list {
        margin: 0 -.1rem;
        padding: 0 .2rem .3rem;
    }

    .teach-list li {
        width: 33.33%;
        margin: .2rem 0 0;
        padding: 0 .1rem;
    }

    .teach-article {
        flex-wrap: wrap;
        justify-content: center;
    }

    .teach-article .teach-content {
        width: 100%;
    }

    .position h3 {
        line-height: .4rem;
        display: none;
    }

    .position .place {
        width: 100%;
    }

    .place {
        margin-bottom: 6px;
        line-height: .22rem;
        background-position-y: 2px;
    }

    .list1 .text {
        width: calc(100% - 1rem);
    }

    .article {
        padding: .25rem 0 0 !important;
    }

    .article .title {
        font-size: .22rem;
    }

    .article .content {
        padding: .2rem 0 .1rem;
    }

    .article .content p {
        margin: 0 0 .2rem;
    }

    .article .cont-page {
        padding: .15rem 0 .35rem;
    }

    .article .share {
        justify-content: flex-start;
    }

    .footer .line {
        display: none;
    }

    .foot-link {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 0 0 .12rem;
        margin-bottom: .12rem;
    }

    .foot-link ul {
        display: flex;
        flex-wrap: wrap;
    }

    .foot-link ul a {
        margin: 0 .2rem 0 0;
    }

    .picture2 {
        margin: 0;
    }

    .picture2 a {
        padding: .2rem 0;
    }

    .picture2 .img-frame {
        width: 2.1rem;
    }

    .picture2 .text {
        width: calc(100% - 2.1rem);
        padding: 0 0 0 .2rem;
    }

    .picture2 .text::after {
        display: none;
    }

    .picture3 {
        margin: 0 -.1rem;
    }

    .picture3 > li {
        width: 50%;
        padding: 0 .1rem;
    }

    .picture3 .img-zoom {
        margin: .2rem 0 0;
    }

    #list-page {
        margin: .3rem 0 .4rem !important;
    }

    #list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
        padding: 7px 9px;
    }

    #list-page .p_goto input {
        width: 36px;
        height: 28px;
        line-height: 28px;
    }
}

@media screen and (max-width: 520px) {
    .header {
        padding: 7px 0 !important;
    }

    .header .container {
        width: 94%;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
    }

    .logo {
        height: 40px !important;
    }

    .logo img {
        max-height: 40px !important;
    }

    .mobile-box {
        height: calc(100vh - 54px);
        top: 54px;
    }

    .mobile-box .nav {
        height: calc(100% - 1.4rem);
    }

    .mobile-box .top-link2 {
        margin: 0 .1rem;
    }

    .pad-btn .nav-btn {
        width: 26px;
    }

    .pad-btn .nav-btn i {
        margin: 6px 0;
    }

    .pad-btn .nav-btn.close i:nth-child(1) {
        -webkit-transform: translate(0px, 8px) rotate(45deg);
        -moz-transform: translate(0px, 8px) rotate(45deg);
        -ms-transform: translate(0px, 8px) rotate(45deg);
        -o-transform: translate(0px, 8px) rotate(45deg);
        transform: translate(0px, 8px) rotate(45deg);
    }

    .pad-btn .nav-btn.close i:nth-child(3) {
        -webkit-transform: translate(0px, -8px) rotate(-45deg);
        -moz-transform: translate(0px, -8px) rotate(-45deg);
        -ms-transform: translate(0px, -8px) rotate(-45deg);
        -o-transform: translate(0px, -8px) rotate(-45deg);
        transform: translate(0px, -8px) rotate(-45deg);
    }

    .banner {
        margin: 54px 0 0;
    }

    .banner .img {
        height: auto;
        padding: 44% 0 0;
    }

    .banner .swiper-arrow {
        display: none;
    }

    .banner .pagination {
        bottom: .12rem;
    }

    .banner .pagination .swiper-pagination-bullet {
        width: .24rem;
        height: 3px;
        margin: 0 .05rem;
    }

    .column {
        margin: .2rem 0 .12rem;
    }

    .column .cn {
        font-size: .26rem;
    }

    .column .en {
        font-size: .14rem;
    }

    .more {
        font-size: .14rem;
    }

    .news-swiper .text {
        padding: .5rem .85rem .14rem .12rem;
    }

    .news-swiper .title {
        font-size: .19rem;
    }

    .news-swiper .pagination {
        right: .12rem;
        bottom: .1rem;
    }

    .news-swiper .pagination .swiper-pagination-bullet {
        padding: .03rem;
    }

    .news-swiper .pagination .swiper-pagination-bullet::after {
        display: block;
        content: "";
        box-sizing: border-box;
        width: .06rem;
        height: .06rem;
    }

    .news-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        margin: 0 .03rem;
    }

    .news-list1 a {
    }

    .news-list1 .text {
        width: calc(100% - .8rem)
    }

    .news-list1 .title {
        height: auto;
        white-space: initial;
        overflow: hidden;
        text-overflow: clip;
    }

    .news-list1 .info {
        margin: .1rem 0;
    }

    .notice-list a {
        margin: 0 .12rem;
    }

    .thumbs .title {
        font-size: .16rem;
    }

    .teach-swiper .pagination .swiper-pagination-bullet {
        width: .2rem;
        margin: 0 .05rem;
    }

    .news-list3 a {
        padding: .15rem 0;
    }

    .news-list3 .date1 {
        padding: 6px 0 0 5px;
        width: .62rem;
        height: .62rem;
        font-size: .18rem;
    }

    .news-list3 .title {
        width: calc(100% - .72rem);
        text-overflow: clip;
        white-space: initial;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .news-list4 a {
        margin: 0 .12rem;
    }

    .news-list4 .date1 {
        padding: 6px 0 0 5px;
        width: .62rem;
        height: .62rem;
        font-size: .18rem;
    }

    .news-list4 .text {
        width: calc(100% - .68rem);
    }

    .news-list4 .line {
        display: none;
    }

    .news-list4 .title {
        text-overflow: clip;
        white-space: initial;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .device-swiper .swiper-arrow {
        margin: .15rem .1rem 0;
        width: .4rem;
        height: .4rem;
    }

    .foot-text {
        width: 100%;
    }

    .sim-select {
        width: 100%;
    }

    .decorate {
        margin: 54px 0 0;
    }

    .decorate .img {
        padding: 45% 0 0;
    }

    .picture2 .img-frame {
        width: 100%;
    }

    .picture2 .img-frame .img {
        padding: 66.6% 0 0;
    }

    .picture2 .text {
        width: 100%;
        padding: .14rem 0 0;
    }

    .picture2 .no-img .text {
        padding: 0;
    }

    .picture3 > li {
        width: 100%;
    }

    .teach-list {
        padding: 0 0 .25rem;
    }

    .teach-list li {
        width: 50%;
    }

    .list1 a {
        padding: .16rem 0;
    }

    .list1 .date1 {
        font-size: .14rem;
    }

    .list1 .date1 p:first-child {
        font-size: .18rem;
    }

    .list1 .text {
        width: calc(100% - .8rem);
    }

    .list1 .title {
        text-overflow: clip;
        white-space: initial;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .list1 .info {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */
