@charset "UTF-8"; /* 网站通用样式 */
@font-face {
    font-family: "HarmonyOS Sans";
    src: url("../fonts25/HarmonyOS_Sans_SC_Regular.ttf") format("truetype");
}

#loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

@media (min-width: 471px) and (max-width: 639px) {
    table {
        display: flex;
        overflow-x: auto;
        width: 100% !important;
        white-space: nowrap;
        font-size: 13px;
    }
}

@media (min-width: 329px) and (max-width: 470px) {
    table {
        display: flex;
        overflow-x: auto;
        width: 100% !important;
        white-space: nowrap;
        font-size: 12px;
    }
}

@media (max-width: 328px) {
    table {
        display: flex;
        overflow-x: auto;
        width: 100% !important;
        white-space: nowrap;
        font-size: 12px;
    }
}

@media (min-width: 1920px) and (max-width: 2560px) {
    table {
        width: 100% !important;
        font-size: 13px !important;
        text-align: center !important;
    }
}

@media (min-width: 1400px) and (max-width: 1600px) {
    table {
        width: 100% !important;
        font-size: 13px !important;
        text-align: center !important;
    }
}

@media (min-width: 640px) and (max-width: 1399px) {
    table {
        width: 100% !important;
        font-size: 13px !important;
        text-align: center !important;
    }
}

html {
    width: 100%;
    min-width: 320px;
    font-size: 100px;
    overflow-x: hidden;
    background: #F6F6FA;
}

html::-webkit-scrollbar {
    width: .06rem;
}

html::-webkit-scrollbar-thumb {
    border-radius: .06rem;
    background: #0638B5;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.3);
}

.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 1600px;
    max-width: 85%;
    margin: 0 auto;
    font-size: .18rem;
}

.title {
    font-size: 0.2rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #323232;
    text-align: left;
}

.info {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.23rem;
    color: #777;
    text-align: justify;
}

.date {
    padding: 0 0 0 .3rem;
    font-family: "HarmonyOS Sans";
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #0638B5;
    text-align: left;
    background-image: url("../images25/f_icon6.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.24rem;
}

.date1 {
    width: .64rem;
    font-family: "HarmonyOS Sans";
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.2rem;
    color: #0638B5;
    text-align: center;
}

.date1 p:first-child {
    font-size: .32rem;
    line-height: .4rem;
}

/* 网站头部 */
.header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1000;
    width: 100%;
    padding: .2rem 0 .4rem;
    background: linear-gradient(180deg, rgba(6, 56, 181, 0.8) 64%, rgba(6, 56, 181, 0) 100%, rgba(0, 194, 234, 0.8) 100%);
}

.header::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, #0638B5, #199CE2);
    -webkit-transition: all 0.32s ease-out 0s;
    -moz-transition: all 0.32s ease-out 0s;
    -ms-transition: all 0.32s ease-out 0s;
    -o-transition: all 0.32s ease-out 0s;
    transition: all 0.32s ease-out 0s;
}

.header.scroll {
    padding: .07rem 0 .1rem;
    background: none;
    -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;
}

.header.scroll::before {
    height: 100%;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}

.header.scroll .nav {
    margin: .05rem 0 0;
}

.header.scroll .nav li > a {
    line-height: .45rem;
}

.header.scroll .nav .sub-nav {
    background: #fff;
}

.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 img {
    max-height: .68rem;
}

.top-link {
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.36rem;
    color: #fff;
    text-align: center;
}

.top-link a {
    position: relative;
    display: block;
    color: #fff;
}

.top-link a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.03rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #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;
}

.top-link a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.top-link span {
    margin: 0 .14rem;
}

.t-box .xyxx{
    position: relative;
}
.t-box .xyxx a:hover:after{
    display: none;
}
.t-box .xyxx .xyxx_box{
    display: none;
    position: absolute;
    left: -18px;
    top: 32px;
    width: 240px;
    border-radius: 14px;
    height: 36px;
    line-height: 44px;
    background: url("../images25/xinxiang_bg.png") no-repeat;
    z-index: 9999999;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.t-box .xyxx:hover .xyxx_box{
    display: block;
}

.nav-btn {
    display: none;
    position: relative;
    z-index: 5;
    width: 30px;
    margin: 0 0 0 .16rem;
    vertical-align: middle;
    cursor: pointer;
}

.nav-btn i {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: #fff;
    -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;
}

.nav-btn i:nth-child(2) {
    width: 75%;
}

.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);
}

.nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.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);
}

.nav {
    position: relative;
    z-index: 100;
    width: 100%;
    margin: .15rem 0 0;
}

.nav li {
    position: relative;
}

.nav li a {
    position: relative;
    display: block;
    font-size: 0.2rem;
    font-weight: 500;
    line-height: 0.52rem;
    color: #fff;
    text-align: center;
}

.nav li > a {
    -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: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 .sub-nav {
    position: absolute;
    top: calc(100% + .1rem);
    right: auto;
    bottom: auto;
    left: calc(50% - .95rem);
    z-index: 1;
    width: 1.9rem;
    padding: .1rem 0;
    background: #0638B5;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 0.2rem 0 rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.8);
    -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: linear-gradient(90deg, #0638B5, #199CE2);
    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: .12rem 0;
    font-size: .18rem;
    font-weight: 500;
    line-height: .24rem;
    color: #333;
    -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: .13rem;
    overflow: hidden;
    background-image: url("../images25/f_icon1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto 100%;
}

.nav .sub-nav .tri::before {
    display: none;
}

.pc-search {
    margin: 0 0 0 .84rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    border-radius: .36rem;
}

.pc-search form, .pc-search .form {
    display: flex !important;
}

.pc-search .input {
    width: 1.48rem;
    height: .36rem;
    padding: 0 .12rem 0 .04rem;
    vertical-align: top;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.36rem;
    color: #fff;
    text-align: left;
}

.pc-search .input::placeholder {
    color: #fff;
}

.pc-search .submit {
    width: .48rem;
    height: .36rem;
    background-image: url("../images25/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.17rem;
}

.mobile-box {
    display: none;
    position: fixed;
    top: 65px;
    right: auto;
    bottom: auto;
    left: -100%;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 65px);
    padding: .15rem 4% .3rem;
    -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: #eef5f5;
}

.mobile-box .nav {
    width: 100%;
    height: calc(100% - 1.2rem);
    padding: 0 0 .2rem;
}

.mobile-box .nav ul {
    display: block;
    max-width: 100%;
    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: 500;
    padding: 0 .1rem;
    line-height: .52rem !important;
    text-align: left;
}

.mobile-box .nav li a::after {
    display: none;
}

.mobile-box .nav li .icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .52rem;
    height: .52rem;
    background-image: url(../images25/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: .19rem;
}

.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;
}

.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: .16rem;
    line-height: .34rem;
    color: #494949 !important;
    border-bottom: none;
}

.mobile-box .nav .sub-nav::before {
    display: none;
}

.mobile-box .mobile-search {
    display: -ms-flexbox;
    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;
    border: 1px solid #0638B5;
    border-radius: 3px;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .6rem);
    height: .46rem;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.46rem;
    color: #333;
    text-align: left;
    background: #fff;
    overflow: hidden;
}

.mobile-box .mobile-search .submit {
    width: .6rem;
    height: .46rem;
    vertical-align: top;
    background-image: url("../images25/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #0638B5;
    background-size: 0.17rem;
}

.mobile-box .top-link {
    flex-wrap: wrap;
}

.mobile-box .top-link a {
    color: #0638B5;
    margin: 0 .1rem;
}

.mobile-box .top-link span {
    display: none;
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

.aside {
    position: fixed;
    top: auto;
    right: 0.1rem;
    bottom: 6%;
    left: auto;
    z-index: 99;
    width: 1.4rem;
    padding: 0 .12rem;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.14);
}

.aside li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.aside li:last-child {
    border: none;
}

.aside li::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: -1px;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #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;
}

.aside li:hover img {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transition: all 0.7s ease-out 0s;
    -moz-transition: all 0.7s ease-out 0s;
    -ms-transition: all 0.7s ease-out 0s;
    -o-transition: all 0.7s ease-out 0s;
    transition: all 0.7s ease-out 0s;
}

.aside li:hover a {
    font-weight: 700;
}

.aside li:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.aside a {
    display: flex;
    align-items: center;
    height: 6vh;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.2rem;
    color: #fff;
    text-align: left;
}

.aside img {
    width: .24rem;
    margin: 0 .05rem 0 0;
}

/* 首页轮播图 */
.banner {
    width: 100%;
    z-index: 1;
    font-size: 0;
    background: #0638B5;
}

.banner::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, rgba(1, 85, 174, 0.6), transparent);
}

.banner .img {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    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.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
    -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 .img video {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
    top: auto;
    right: auto;
    bottom: 0.5rem;
    left: 50%;
    z-index: 3;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.banner .pagination .swiper-pagination-bullet {
    position: relative;
    vertical-align: middle;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: .24rem;
    height: .24rem;
    margin: 0 .1rem;
    opacity: 1;
    background: none;
    -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;
}

.banner .pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images25/f_icon2_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    -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;
}

.banner .pagination .swiper-pagination-bullet::after {
    box-sizing: border-box;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images25/f_icon2_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 0;
    visibility: hidden;
}

/* 首页样式 */
.column {
    width: 100%;
    margin: .54rem 0 .3rem;
}

.column h3 {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 0.36rem;
    font-weight: bold;
    line-height: 0.9rem;
    color: #333;
    text-align: left;
    background-image: url("../images25/f_icon9.png");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-color: transparent;
    background-size: 0.8rem;
}

.column h3::after {
    position: absolute;
    top: 0;
    right: -0.21rem;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: .86rem;
    height: .86rem;
    background-image: url("../images25/f_icon4_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

@keyframes ani-zoom {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }

    100% {
        -webkit-transform: scale(1.4);
        -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -o-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

.more {
    position: relative;
    z-index: 1;
    width: 1.1rem;
    display: block;
}

.more span {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.4rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(81deg, #0638B5 1%, #199CE2 103%);
    border-radius: .4rem;
    -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 span::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .27rem;
    height: .17rem;
    margin: 0 0 0 .05rem;
    background-image: url("../images25/f_icon5.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.more::before, .more::after {
    position: absolute;
    top: 0;
    right: 3%;
    bottom: auto;
    left: auto;
    z-index: -1;
    width: 94%;
    height: 100%;
    content: "";
    background: linear-gradient(81deg, #0638B5 1%, #199CE2 103%);
    border-radius: .4rem;
}

.more:hover span {
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.2);
}

.more:hover span::after {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    -webkit-transition: all 0.8s ease-out 0s;
    -moz-transition: all 0.8s ease-out 0s;
    -ms-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
}

.more:hover::before {
    animation: ani-zoom 1.8s linear infinite;
}

.more:hover::after {
    animation: ani-zoom 1.8s linear infinite .9s;
}

.more2 {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.more2 span {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.06rem;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.4rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(99deg, #0638B5 5%, #199CE2 97%);
    border-radius: .4rem;
    -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 span::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .26rem;
    height: .07rem;
    margin: 0 0 0 .05rem;
    background-image: url("../images25/arrow1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.more2::before, .more2::after {
    position: absolute;
    top: 0;
    right: 3%;
    bottom: auto;
    left: auto;
    z-index: -1;
    width: 94%;
    height: 100%;
    content: "";
    background: linear-gradient(99deg, #0638B5 5%, #199CE2 97%);
    border-radius: .4rem;
}

.more2:hover span {
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.2);
}

.more2:hover span::after {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    -webkit-transition: all 0.8s ease-out 0s;
    -moz-transition: all 0.8s ease-out 0s;
    -ms-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
}

.more2:hover::before {
    animation: ani-zoom 1.8s linear infinite;
}

.more2:hover::after {
    animation: ani-zoom 1.8s linear infinite .9s;
}

.home1 {
    padding: 0 0 .8rem;
    background: #fff;
}

.home1 .container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home1 .news-box1, .home1 .news-box2 {
    width: 31.6875%;
}

.news-box1 {
    background: #F6F6FA;
}

.news-box1 .img {
    padding: 3.37rem 0 0;
}

.news-box1 .text {
    padding: .2rem .32rem .3rem;
}

.news-box1 .title {
    height: .56rem;
}

.news-box1 .info {
    height: .46rem;
    margin: .14rem 0;
}

.news-box2 {
    padding: .55rem .32rem 0;
    background-image: url("../images25/list_bg1.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.news-box2 .title {
    margin: .18rem 0 0;
    line-height: .3rem;
}

.news-box2 .info {
    height: 1.28rem;
    margin: .16rem 0 1.05rem;
    line-height: .32rem;
}

.news-list1 {
    width: 31.6875%;
}

.news-list1 li {
    border-bottom: 1px solid #d8d8d8;
}

.news-list1 li:first-child .img-zoom {
    padding-top: 0;
}

.news-list1 .img-zoom {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: .14rem 0;
}

.news-list1 .img-frame {
    width: 1.46rem;
    margin: .1rem 0 0;
}

.news-list1 .img-frame .img {
    padding: 75.34% 0 0;
}

.news-list1 .text {
    width: calc(100% - 1.7rem);
}

.news-list1 .title {
    height: .56rem;
}

.news-list1 .info {
    height: .46rem;
    margin: .13rem 0;
}

.news-list1 .date {
    position: relative;
}

.news-list1 .date::after {
    position: absolute;
    top: 0.06rem;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .27rem;
    height: .17rem;
    background-image: url("../images25/f_icon7.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.home2 {
    position: relative;
    z-index: 1;
    padding: .58rem 0 .7rem;
}

.home2::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: 100%;
    height: 6.68rem;
    background-image: url("../images25/index_bg1.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.link-list1 li {
    width: 16.666%;
    margin: .2rem 0 0;
}

.link-list1 a {
    display: block;
}

.link-list1 .icon {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 auto;
    border-radius: 50%;
    background: #a0b3e1;
    -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;
}

.link-list1 .icon::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .64rem;
    height: .64rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
    -webkit-transition: all 0.7s ease-out 0s;
    -moz-transition: all 0.7s ease-out 0s;
    -ms-transition: all 0.7s ease-out 0s;
    -o-transition: all 0.7s ease-out 0s;
    transition: all 0.7s ease-out 0s;
}

.link-list1 .icon.i1::after {
    background-image: url("../images25/f_icon8_1.png");
}

.link-list1 .icon.i2::after {
    background-image: url("../images25/f_icon8_2.png");
}

.link-list1 .icon.i3::after {
    background-image: url("../images25/f_icon8_3.png");
}

.link-list1 .icon.i4::after {
    background-image: url("../images25/f_icon8_4.png");
}

.link-list1 .icon.i5::after {
    background-image: url("../images25/f_icon8_5.png");
}

.link-list1 .icon.i6::after {
    background-image: url("../images25/f_icon8_6.png");
}

.link-list1 .title {
    margin: .15rem 0 0;
    color: #fff;
    text-align: center;
}

.slide-tag {
    display: -ms-flexbox;
    display: flex;
    margin: .57rem 0 .35rem;
}

.slide-tag h3 {
    position: relative;
    z-index: 1;
    margin: 0 .35rem 0 0;
    font-size: 0.28rem;
    font-weight: bold;
    line-height: 0.9rem;
    color: #888;
    text-align: left;
    background-image: url("../images25/f_icon9.png");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-color: transparent;
    background-size: 0;
    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;
}

.slide-tag h3::after {
    position: absolute;
    top: 0;
    right: -0.21rem;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: .86rem;
    height: .86rem;
    background-image: url("../images25/f_icon4_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.45s ease-out 0s;
    -moz-transition: all 0.45s ease-out 0s;
    -ms-transition: all 0.45s ease-out 0s;
    -o-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

.slide-tag h3:last-child {
    margin-right: 0;
}

.slide-tag h3.on {
    font-size: .36rem;
    color: #333;
    background-size: .8rem;
}

.slide-tag h3.on::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.slide-item {
    display: none;
}

.slide-item.on {
    display: block;
    animation: ani-up 1s;
}

.slide-item .more {
    margin: .4rem 0 0;
}

.more-part .more {
    display: none;
}

.more-part .more.on {
    display: inline-block;
}

@keyframes ani-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0.15rem);
        -moz-transform: translateY(0.15rem);
        -ms-transform: translateY(0.15rem);
        -o-transform: translateY(0.15rem);
        transform: translateY(0.15rem);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.home3 {
    position: relative;
    z-index: 2;
    padding: 0 0 .54rem;
}

.home3::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: calc(50% + 800px);
    height: 100%;
    background-image: url("../images25/index_bg2.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: #fff;
    background-size: 100%;
}

.home3 .container {
    padding: 1px 0 0 1rem;
}

.home3 .l-box {
    width: 52.333%;
}

.home3 .r-box {
    width: 42%;
}

.home3 .b-box {
    width: 100%;
    padding: .7rem 0 0;
}

.home3 .b-box .b-box-l {
    width: 1.8rem;
    margin: .08rem 0 0;
}

.home3 .b-box .b-box-r {
    width: calc(100% - 1.82rem);
}

.home3 .b-box .slide-tag {
    flex-wrap: wrap;
    margin: 0;
}

.home3 .b-box .slide-tag h3 {
    margin: 0 0 .5rem;
}

.home3 .b-box .slide-tag h3::after {
    right: -.17rem;
}

.home3 .b-box .slide-item {
    justify-content: space-between;
}

.home3 .b-box .slide-item.on {
    display: flex;
}

.home3 .news-list2, .home3 .news-list3 {
    min-height: 5.5rem;
}

.news-list2 li {
    border-bottom: 1px solid #d8d8d8;
}

.news-list2 li:first-child .img-zoom {
    padding-top: 0;
}

.news-list2 .img-zoom {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .18rem 0;
}

.news-list2 .text {
    width: calc(100% - 2.49rem);
    padding: 0 .28rem;
}

.news-list2 .img-frame {
    width: 1.85rem;
}

.news-list2 .img-frame .img {
    padding: 75.67% 0 0;
}

.news-list2 .title {
    height: .56rem;
}

.news-list2 .info {
    height: .46rem;
    margin: .15rem 0 .18rem;
}

.news-list2 .icon {
    display: block;
    height: .17rem;
    background-image: url("../images25/f_icon7_2.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: auto 100%;
}

.news-list3 li {
    border-bottom: 1px solid #d8d8d8;
}

.news-list3 li:first-child a {
    padding-top: 0;
}

.news-list3 a {
    display: block;
    padding: .22rem 0;
}

.news-list3 .title {
    margin: 0 0 .13rem;
}

.news-list3 .date {
    position: relative;
    overflow: hidden;
}

.news-list3 .date::after {
    position: absolute;
    top: 0.05rem;
    right: -0.28rem;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .27rem;
    height: .17rem;
    background-image: url("../images25/f_icon7.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
    -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;
}

.first-news {
    width: 33.33%;
    padding: .2rem;
    background: #fff;
}

.first-news a {
    display: block;
    height: 100%;
    padding: .46rem .38rem;
    background-image: url("../images25/list_bg2.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.first-news .title {
    margin: 0 0 .34rem;
    font-size: .24rem;
    line-height: .34rem;
}

.first-news .info {
    font-size: .18rem;
    line-height: .4rem;
    color: #333;
}

.first-news .info img {
    width: .24rem;
    margin: 0 .07rem 0 0;
}

.first-news .icon {
    display: block;
    height: .17rem;
    margin: .18rem 0 0;
    background-image: url("../images25/f_icon7.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: auto 100%;
}

.news-list4 {
    width: 63.73%;
}

.news-list4 li {
    width: 47.61%;
    margin: .4rem 0 0;
}

.news-list4 li:nth-child(1), .news-list4 li:nth-child(2) {
    margin: 0;
}

.news-list4 a {
    display: block;
    padding: .27rem .4rem .19rem;
    background: #fff;
}

.news-list4 .title {
    height: .56rem;
    margin: 0 0 .18rem;
}

.news-list4 .info {
    line-height: .4rem;
}

.news-list4 .info img {
    width: .24rem;
    margin: 0 .07rem 0 0;
}

.home4 {
    padding: .25rem 0 .77rem;
    background-image: url("../images25/index_bg3.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: 100%;
}

.home4 .l-box {
    width: 60.1875%;
}

.home4 .r-box {
    position: relative;
    width: 35.625%;
    margin-top: -1rem;
}

.home4 .r-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    background-image: url("../images25/list_bg3.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.teach-swiper1 .name {
    display: block;
    margin: .1rem 0 .25rem;
    font-size: 0.32rem;
    font-weight: 500;
    line-height: 0.4rem;
    color: #333;
    text-align: left;
}

.teach-swiper1 .name span {
    margin: 0 0 0 .15rem;
    font-size: .24rem;
    color: #555;
}

.teach-swiper1 .name:hover {
    color: #0638B5;
}

.teach-swiper1 .info {
    line-height: .28rem;
    height: .84rem;
}

.teach-swiper2 {
    margin: .34rem 0;
}

.teach-swiper2 .swiper-container {
    width: calc(100% - 1.41rem);
    padding: .14rem;
}

.teach-swiper2 .img {
    padding: 100% 0 0;
    background-position-y: 10%;
}

.teach-swiper2 .img-zoom {
    border-radius: 50%;
}

.teach-swiper2 .swiper-slide {
    padding: 3px;
    border-radius: 50%;
    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;
}

.teach-swiper2 .swiper-slide.swiper-slide-thumb-active {
    box-shadow: 2px 2px 0.12rem 0px rgba(0, 31, 77, 0.4);
    background: linear-gradient(133deg, #0638B5 9%, #199CE2 93%);
}

.teach-swiper2 .swiper-arrow {
    position: relative;
    width: .33rem;
    height: .33rem;
    background: #d8d8d8;
    border-radius: 50%;
    cursor: pointer;
}

.teach-swiper2 .swiper-arrow::after {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images25/arrow3.png");
    background-repeat: no-repeat;
    background-position: 0 55%;
    background-color: transparent;
    background-size: 0.26rem;
}

.teach-swiper2 .swiper-arrow.swiper-prev {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.teach-swiper2 .swiper-arrow.swiper-button-disabled {
    opacity: .5;
}

.teach-swiper2 .swiper-arrow:hover:not(.swiper-button-disabled) {
    background: linear-gradient(130deg, #0638B5 0%, #199CE2 100%);
}

.teach-swiper2 .swiper-arrow:hover:not(.swiper-button-disabled)::after {
    background-image: url("../images25/arrow1.png");
}

.teach-swiper3 {
    z-index: 2;
    width: 4.4rem;
    margin: .95rem 0 0;
}

.teach-swiper3 .img-zoom {
    border-radius: 50%;
}

.teach-swiper3 .img {
    padding: 100% 0 0;
    background-position-y: 10%;
}

/* 网站底部 */
.footer {
    background-image: url("../images25/foot_bg.jpg");
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-color: transparent;
    background-size: cover;
}

.footer > .container {
    padding: .32rem 0 0;
}

.foot-cont {
    margin: 0 0 .18rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.26rem;
    color: #fff;
    text-align: left;
}

.foot-cont .img {
    margin: 0 0 .25rem;
}

.foot-cont .img img {
    max-height: .52rem;
}

.foot-cont p {
    padding: 0 0 0 .22rem;
}

.foot-cont p:nth-of-type(1) {
    background-image: url("../images25/f_icon11_1.png");
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-color: transparent;
    background-size: 0.18rem;
}

.foot-cont p:nth-of-type(2) {
    background-image: url("../images25/f_icon11_2.png");
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-color: transparent;
    background-size: 0.18rem;
}

.foot-cont p:nth-of-type(3) {
    background-image: url("../images25/f_icon11_3.png");
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-color: transparent;
    background-size: 0.18rem;
}

.foot-cont a {
    color: #fff;
}

.foot-link {
    width: 2.7rem;
    margin: 0 0 .18rem;
}

.foot-link h6 {
    margin: 0 0 .06rem;
    padding: 0 0 0 .22rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.26rem;
    color: #fff;
    text-align: left;
    background-image: url("../images25/f_icon11_4.png");
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-color: transparent;
    background-size: 0.16rem;
}

.foot-link .link-box {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 .18rem;
}

.foot-link .link-box li {
    width: 50%;
    padding: 0 .12rem 0 0;
}

.foot-link .link-box a {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
}

.foot-link .link-box a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.03rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #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;
}

.foot-link .link-box a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.foot-link.d2 {
    width: 3.4rem;
}

.foot-link.d2 h6 {
    background-image: url("../images25/f_icon11_5.png");
}

.foot-link.d3 {
    width: 2.1rem;
}

.foot-link.d3 h6 {
    background-image: url("../images25/f_icon11_6.png");
}

.ewm {
    margin: 0 0 .18rem;
}

.ewm li {
    margin: 0 0 0 .2rem;
}

.ewm li:first-child {
    margin: 0;
}

.ewm img {
    width: 1rem;
    height: 1rem;
}

.ewm p {
    margin: .08rem 0 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.22rem;
    color: #fff;
    text-align: center;
}

.copy {
    padding: .11rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.12);
}

.copy a {
    color: #fff;
}

.copy img {
    vertical-align: sub;
}

/* 内页样式 */
.decorate {
    position: relative;
    padding: 5.2rem 0 0;
}

.decorate::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(216, 216, 216, 0) 31%);
}

.decorate img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-box {
    padding: 0 0 .4rem;
    background-image: url("../images25/index_bg3.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: 100%;
}

.sidebar {
    position: relative;
    z-index: 3;
    width: 3rem;
    margin: -1rem 0 .6rem;
}

.sidebar::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, #199CE2, #0638B5);
}

.sidebar h3 {
    position: relative;
    z-index: 2;
    font-size: 0.32rem;
    font-weight: 500;
    line-height: 1.14rem;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
}

.sidebar .sub-nav {
    position: relative;
    z-index: 2;
    padding: 0 .28rem;
    margin: 0 0 0 .1rem;
    background: #fff;
}

.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 #0638B5;
}

.sidebar .sub-nav li.cur::after {
    opacity: 1;
}

.sidebar .sub-nav li.cur > a {
    color: #0638B5 !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: #0638B5;
    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: .2rem .4rem .2rem .24rem;
    font-size: 0.2rem;
    font-weight: 500;
    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: .76rem;
    background-image: url("../images25/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 .22rem;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 .08rem .2rem;
    font-size: .16rem;
    line-height: .22rem;
}

.sidebar .sub-nav .lv3 a:hover {
    color: #0638B5;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #0638B5;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #0638B5;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #0638B5;
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.6rem);
    min-height: 4rem;
    margin: .2rem 0 0;
    padding: 0 0 .2rem;
}

.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.26rem;
    font-weight: 500;
    line-height: 0.56rem;
    color: #333;
    text-align: left;
    border-bottom: 3px solid #0638B5;
    margin: 0 0 -2px;
}

.place {
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.6rem;
    color: #999;
    text-align: left;
    padding: 0 0 0 26px;
    background-image: url(../images25/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: #0638B5;
    -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: #0638B5;
}

.place a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.list1 {
    margin: .1rem 0 0;
}

.list1 li {
    position: relative;
}

.list1 a {
    position: relative;
    padding: .25rem .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: linear-gradient(90deg, #0638B5, #199CE2);
    -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 .line {
    width: 1px;
    height: .6rem;
    background: linear-gradient(0deg, transparent, rgba(27, 113, 211, 0.8), transparent);
}

.list1 .text {
    width: calc(100% - 1.2rem);
    padding: .05rem 0 0;
}

.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: .1rem 0 0;
}

.picture2 {
    margin: .2rem 0 0;
}

.picture2 li {
    position: relative;
    border-bottom: 1px dashed #cacaca;
}

.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: .28rem .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;
}

.picture2 .img-frame {
    width: 2.6rem;
}

.picture2 .img-frame .img {
    padding: 64% 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: #333;
}

.picture2 .info {
    max-height: .46rem;
    margin: .12rem 0 .15rem;
}

.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;
    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: 500;
    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 #199CE2;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}

.teach-list {
    font-size: 0;
    margin: 0 -0.2rem;
    margin-bottom: .3rem;
}

.teach-list > li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 0.2rem;
}

.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: .1rem .1rem 0;
    border-radius: .05rem;
    background: #FFFFFF;
    box-shadow: 0px 4px 0.15rem 0px rgba(14, 65, 150, 0.1);
}

.teach-list .img-zoom::before {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0%;
    z-index: 1;
    content: "";
    width: 100%;
    height: 2px;
    background: #0638B5;
}

.teach-list .img-frame {
    background: #fff;
}

.teach-list .img-frame .img {
    padding: 120% 0 0;
    background-position-y: 10%;
}

.teach-list .title {
    line-height: .6rem;
    text-align: center;
}

.article {
    padding: .4rem 0 .2rem;
}

.article .title {
    font-size: 0.28rem;
    font-weight: 500;
    line-height: 140%;
    color: #333;
    text-align: center;
}

.article .sub-title1 {
    margin: 0 0 .08rem;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.32rem;
    color: #000;
    text-align: center;
}

.article .sub-title2 {
    margin: .08rem 0 0;
    font-size: 0.17rem;
    font-weight: 500;
    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: 500;
    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: 500;
    line-height: 200%;
    color: #333;
    text-align: justify;
}

.article .content p {
    text-indent: 2em;
    word-break: break-all;
    margin: 0 0 .15rem;
    font-size: 18px!important;
    line-height: 40px!important;
}

.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 #0638B5;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.17rem;
    font-weight: 500;
    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: #0638B5;
    -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: #0638B5;
    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: 500;
    line-height: 200%;
    color: #0638B5;
    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;
}

.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: 500;
    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(../images25/share4_2.png);
}

.article .share .share-icon .s-icon.wechat {
    position: relative;
    background-image: url(../images25/share4_1.png);
}

.article .share .share-icon .s-icon.qq {
    background-image: url(../images25/share4_3.png);
}

.article .share .share-icon .s-icon.qzone {
    background-image: url(../images25/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;
}

.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-img .p1 {
    margin: .1rem 0 0;
    font-size: .16rem;
    line-height: .24rem;
    color: #666;
    text-align: center;
}

.teach-article .teach-content {
    width: calc(100% - 2.2rem);
}

.teach-article .teach-title {
    font-size: .19rem;
    line-height: .55rem;
    color: #0638B5;
    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: #0638B5;
    margin: 0 4px 0 0;
}

.teach-article .content {
    padding: .2rem 0;
}

.mobile-show {
    display: none !important;
}

/* 翻页样式 */
#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: #199CE2;
    border: 1px solid #e2e2e2;
    border-radius: .3rem;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #0638B5;
    font-weight: bold;
    color: #fff;
    border-color: #0638B5;
}

#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: .3rem;
    border-color: #e2e2e2;
    width: .45rem;
    height: .34rem;
    line-height: .32rem;
    vertical-align: bottom;
}

@media screen and (min-width: 1025px) {
    .news-box1, .news-box2 {
        -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-box1:hover, .news-box2:hover {
        box-shadow: 0 5px 0.26rem 0 rgba(0, 0, 0, 0.16);
    }

    .news-box1:hover .title, .news-box2:hover .title {
        color: #0638B5;
        font-weight: 700;
    }

    .news-list1 li {
        position: relative;
    }

    .news-list1 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #0638B5, #199CE2);
        -webkit-transition: all 0.7s ease-out 0s;
        -moz-transition: all 0.7s ease-out 0s;
        -ms-transition: all 0.7s ease-out 0s;
        -o-transition: all 0.7s ease-out 0s;
        transition: all 0.7s ease-out 0s;
    }

    .news-list1 li:hover::after {
        width: 100%;
    }

    .news-list1 li:hover .title {
        color: #0638B5;
        font-weight: 700;
    }

    .link-list1 a:hover .icon {
        background: #fff;
    }

    .link-list1 a:hover .icon.i1::after {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
        background-image: url("../images25/f_icon8_1_h.png");
    }

    .link-list1 a:hover .icon.i2::after {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
        background-image: url("../images25/f_icon8_2_h.png");
    }

    .link-list1 a:hover .icon.i3::after {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
        background-image: url("../images25/f_icon8_3_h.png");
    }

    .link-list1 a:hover .icon.i4::after {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
        background-image: url("../images25/f_icon8_4_h.png");
    }

    .link-list1 a:hover .icon.i5::after {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
        background-image: url("../images25/f_icon8_5_h.png");
    }

    .link-list1 a:hover .icon.i6::after {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
        background-image: url("../images25/f_icon8_6_h.png");
    }

    .news-list2 li {
        position: relative;
    }

    .news-list2 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #0638B5, #199CE2);
        -webkit-transition: all 0.7s ease-out 0s;
        -moz-transition: all 0.7s ease-out 0s;
        -ms-transition: all 0.7s ease-out 0s;
        -o-transition: all 0.7s ease-out 0s;
        transition: all 0.7s ease-out 0s;
    }

    .news-list2 li:hover::after {
        width: 100%;
    }

    .news-list2 li:hover .title {
        color: #0638B5;
        font-weight: 700;
    }

    .news-list2 li:hover .icon {
        background-image: url("../images25/f_icon7.png");
    }

    .news-list3 li {
        position: relative;
    }

    .news-list3 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #0638B5, #199CE2);
        -webkit-transition: all 0.7s ease-out 0s;
        -moz-transition: all 0.7s ease-out 0s;
        -ms-transition: all 0.7s ease-out 0s;
        -o-transition: all 0.7s ease-out 0s;
        transition: all 0.7s ease-out 0s;
    }

    .news-list3 li:hover::after {
        width: 100%;
    }

    .news-list3 li:hover .title {
        color: #0638B5;
        font-weight: 700;
    }

    .news-list3 li:hover .date::after {
        right: 0;
    }

    .first-news {
        -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;
    }

    .first-news:hover {
        box-shadow: 0 5px 0.26rem 0 rgba(0, 0, 0, 0.16);
    }

    .first-news:hover .title {
        color: #0638B5;
        font-weight: 700;
    }

    .news-list4 a {
        -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-list4 a:hover {
        box-shadow: 0 5px 0.26rem 0 rgba(0, 0, 0, 0.16);
    }

    .news-list4 a:hover .title {
        color: #0638B5;
        font-weight: 700;
    }

    .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: #0638B5;
        font-weight: 700;
    }

    .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;
        perspective: 1000px;
    }

    .picture2 li::after {
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: -1;
        content: "";
        width: calc(100% + .14rem);
        height: 100%;
        background: linear-gradient(90deg, #0638B5, #199CE2);
        opacity: 0;
        transform-style: preserve-3d;
        -webkit-transform: rotateX(20deg);
        -moz-transform: rotateX(20deg);
        -ms-transform: rotateX(20deg);
        -o-transform: rotateX(20deg);
        transform: rotateX(20deg);
        -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;
        box-shadow: 0 0 0.23rem 0 rgba(0, 0, 0, 0.06);
    }

    .picture2 li:hover {
        border-color: transparent;
    }

    .picture2 li:hover::after {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .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("../images25/f_icon6_2.png");
    }

    .picture3 .img-zoom::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: -1;
        content: "";
        width: 100%;
        height: 0;
        background: linear-gradient(90deg, #0638B5, #199CE2);
        -webkit-transition: all 0.45s ease-out 0s;
        -moz-transition: all 0.45s ease-out 0s;
        -ms-transition: all 0.45s ease-out 0s;
        -o-transition: all 0.45s ease-out 0s;
        transition: all 0.45s ease-out 0s;
    }

    .picture3 .img-zoom:hover {
        border-color: #0638B5;
    }

    .picture3 .img-zoom:hover::after {
        top: 0;
        bottom: auto;
        height: 100%;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
        font-weight: 700;
    }

    .teach-list .img-zoom::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        z-index: 2;
        content: "";
        width: 0;
        height: 2px;
        background: #0638B5;
        -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: #0638B5;
    }

    .teach-list .img-zoom:hover::after {
        left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 1882px) {
    .top-link {
        font-size: .14rem;
    }

    .pc-search {
        margin: 0 0 0 .3rem;
    }

    .aside {
        right: 0;
        width: 1.2rem;
        padding: 0 .07rem;
    }

    .aside a {
        font-size: .13rem;
        line-height: .2rem;
    }

    .aside img {
        width: .22rem;
    }

    .home3::after {
        width: 92.5%;
    }

    .home4 .r-box::after {
        width: 4.6rem;
        height: 4.6rem;
    }

    .teach-swiper3 {
        margin: .75rem 0 0;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 90px !important;
    }

    .mobile-show {
        display: block !important;
    }

    .container {
        max-width: 94%;
    }

    .header {
        padding: 10px 0 !important;
        transition: all .2s;
        background: linear-gradient(90deg, #0638B5, #199CE2) !important;
        box-shadow: 0 0 .12rem 0 rgba(0, 0, 0, 0.3);
    }

    .header::before {
        display: none;
    }

    .header > .nav, .header .aside {
        display: none;
    }

    .header .container {
        flex-wrap: nowrap;
    }

    .header .right-wrapper .t-box {
        display: none;
    }

    .header.mobile-show {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .nav-btn {
        display: block;
    }

    .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;
    }

    .mobile-box {
        display: block;
    }

    .banner {
        margin: 65px 0 0;
    }

    .banner .container {
        max-width: 100%;
    }

    .banner .img {
        height: 40vw;
    }

    .banner .pagination {
        bottom: .2rem;
    }

    .column {
        margin: .3rem 0 .2rem;
    }

    .column h3 {
        font-size: .3rem;
        line-height: .7rem;
        font-weight: bold;
    }

    .column h3::after {
        right: -.15rem;
        width: .6rem;
        height: .6rem;
    }

    .home1 {
        padding: 0 0 .4rem;
    }

    .home1 .news-box1, .home1 .news-box2 {
        width: 48%;
    }

    .news-box1 .img {
        padding: 60% 0 0;
    }

    .news-list1 {
        width: 100%;
        margin: .3rem 0 0;
    }

    .news-list1 .title, .news-list1 .info {
        height: auto;
    }

    .home2 {
        padding: .3rem 0 .4rem;
    }

    .home2::after {
        height: 100%;
    }

    .link-list1 li {
        width: 33.33%;
    }

    .link-list1 .icon {
        width: .9rem;
        height: .9rem;
        background: #fff;
    }

    .link-list1 .icon::after {
        width: .52rem;
        height: .52rem;
    }

    .slide-tag {
        justify-content: center;
        margin: .3rem 0 .2rem;
    }

    .slide-tag h3 {
        font-size: .24rem;
        line-height: .7rem;
    }

    .slide-tag h3.on {
        font-size: .3rem;
    }

    .slide-tag h3.on::after {
        right: -.15rem;
        width: .6rem;
        height: .6rem;
    }

    .slide-item .more {
        margin: .2rem auto 0;
    }

    .more-part {
        text-align: center;
    }

    .home3 .container {
        padding: 0;
    }

    .home3::after {
        width: 100%;
    }

    .home3 .l-box {
        width: 100%;
    }

    .home3 .r-box {
        width: 100%;
    }

    .home3 .b-box {
        padding: .3rem 0 0;
    }

    .home3 .b-box .b-box-l {
        width: 100%;
    }

    .home3 .b-box .b-box-r {
        width: 100%;
    }

    .home3 .b-box .slide-tag {
        margin-bottom: .2rem;
    }

    .home3 .b-box .slide-tag h3 {
        margin: 0 .35rem 0 0;
    }

    .home3 .b-box .more-part {
        display: none;
    }

    .home3 .b-box .slide-item {
        flex-wrap: wrap;
    }

    .first-news {
        width: 100%;
        padding: .12rem;
        margin: 0 0 .2rem;
        box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.12);
    }

    .first-news .title {
        margin: 0 0 .15rem;
    }

    .news-list3 .date::after {
        right: 0;
    }

    .news-list4 {
        width: 100%;
    }

    .news-list4 li {
        margin: .2rem 0 0;
    }

    .news-list4 a {
        box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.12);
    }

    .home4 {
        padding: 1px 0 .5rem;
    }

    .home4 .container {
        justify-content: center;
    }

    .home4 .l-box {
        width: 100%;
        order: 2;
    }

    .home4 .r-box {
        width: 4.2rem;
        order: 1;
        margin: 0;
    }

    .home4 .r-box::after {
        width: 3.8rem;
        height: 3.8rem;
    }

    .home4 .more {
        margin-left: auto;
        margin-right: auto;
    }

    .teach-swiper1 .name {
        font-size: .26rem;
        text-align: center;
    }

    .teach-swiper1 .name span {
        font-size: .21rem;
    }

    .teach-swiper3 {
        width: 3.8rem;
        margin: .2rem 0 0;
    }

    .footer > .container {
        align-items: flex-start;
    }

    .foot-cont {
        order: 3;
    }

    .foot-cont .img {
        margin: 0 0 .1rem;
    }

    .foot-link.d1 {
        order: 0;
    }

    .foot-link.d2 {
        order: 1;
    }

    .foot-link.d3 {
        order: 2;
    }

    .ewm {
        order: 4;
    }

    .decorate {
        margin: 65px 0 0;
        padding: 36% 0 0;
    }

    .main-box {
        padding-bottom: .8rem;
    }

    .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: #0638B5;
    }

    .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(../images25/daohang.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.22rem;
        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("../images25/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;
    }

    .teach-list li {
        width: 25%;
        margin: .3rem 0 0;
    }

    .article {
        padding: .3rem 0 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .home1 .news-box1, .home1 .news-box2 {
        width: 100%;
    }

    .news-box1 {
        margin: 0 0 .2rem;
    }

    .news-box1 .title {
        height: auto;
    }

    .news-box1 .info {
        height: auto;
    }

    .news-box1 .text {
        padding: .24rem .2rem;
    }

    .news-box2 {
        padding: .22rem .2rem;
    }

    .news-box2 .info {
        height: auto;
        margin: .1rem 0 .22rem;
    }

    .first-news {
        margin: 0;
    }

    .first-news a {
        padding: .22rem .2rem;
    }

    .news-list4 li {
        width: 100%;
        margin: .2rem 0 0 !important;
    }

    .news-list4 a {
        padding: .22rem .2rem;
    }

    .news-list4 .title {
        height: auto;
        margin: 0 0 .1rem;
    }

    .teach-swiper2 {
        margin: 2rem 0;
    }

    .teach-swiper2 .swiper-container {
        width: calc(100% - .8rem);
    }

    .foot-link {
        width: 100% !important;
    }

    .foot-link .link-box {
        width: 100%;
        padding: 0;
    }

    .foot-link .link-box li {
        width: auto;
        padding: 0 .16rem 0 0;
    }

    .foot-cont {
        width: 100%;
    }

    .ewm {
        width: 100%;
        justify-content: center;
    }

    .ewm li {
        margin: 0 0 0 .12rem;
    }

    .ewm img {
        width: .9rem;
        height: .9rem;
    }

    .teach-list {
        margin: 0 -.1rem;
        padding: 0 .2rem .3rem;
    }

    .teach-list li {
        width: 33.33%;
        margin: .2rem 0 0;
        padding: 0 .1rem;
    }

    .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 0;
    }

    .article .share {
        justify-content: flex-start;
    }

    .article .return-list {
        display: block;
        position: static;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(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;
    }

    .teach-article .article-head {
        display: block;
        padding: .35rem 5% .2rem;
    }

    .teach-article .article-head .img-box {
        margin: 0 auto;
    }

    .teach-article .article-head .text {
        width: 100%;
        padding: .2rem 0 0;
    }

    .teach-article {
        flex-wrap: wrap;
        justify-content: center;
    }

    .teach-article .teach-content {
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .header {
        padding: 7px 0 !important;
    }

    .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.6rem);
    }

    .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 {
        padding: 50vw 0 0;
    }

    .banner .pagination {
        bottom: .12rem;
    }

    .column {
        margin: .3rem 0 .2rem;
    }

    .column h3 {
        font-size: .28rem;
        line-height: .6rem;
    }

    .column h3::after {
        right: -.12rem;
        width: .55rem;
        height: .55rem;
    }

    .more {
        width: 1rem;
    }

    .more span {
        font-size: .16rem;
        line-height: .32rem;
    }

    .more span::after {
        width: .22rem;
    }

    .news-list1 .img-zoom {
        padding: .2rem 0;
    }

    .news-list1 .img-frame {
        width: 100%;
        margin: 0 0 .1rem;
    }

    .news-list1 .img-frame .img {
        padding: 60% 0 0;
    }

    .news-list1 .text {
        order: 1;
        width: 100%;
    }

    .news-list1 .info {
        margin: .08rem 0;
    }

    .link-list1 li {
        width: 50%;
    }

    .link-list1 .icon::after {
        width: .46rem;
        height: .46rem;
    }

    .slide-tag h3 {
        margin: 0 .28rem 0 0;
        font-size: .22rem;
        line-height: .6rem;
    }

    .slide-tag h3.on {
        font-size: .26rem;
    }

    .slide-tag h3.on::after {
        right: -.1rem;
        width: .52rem;
        height: .52rem;
    }

    .news-list2 .img-zoom {
        flex-wrap: wrap;
    }

    .news-list2 .img-frame {
        width: 100%;
        margin: 0 0 .1rem;
    }

    .news-list2 .img-frame .img {
        padding: 60% 0 0;
    }

    .news-list2 .text {
        order: 2;
        width: calc(100% - .74rem);
        padding: 0;
    }

    .news-list2 .date1 {
        order: 1;
    }

    .news-list2 .info {
        margin: .08rem 0;
    }

    .news-list3 a {
        padding: .15rem 0;
    }

    .news-list3 .title {
        text-overflow: clip;
        white-space: initial;
        margin: 0 0 .08rem;
    }

    .first-news {
        padding: 0;
    }

    .first-news .title {
        font-size: .2rem;
    }

    .first-news .info {
        line-height: .32rem;
    }

    .news-list4 .info {
        line-height: .3rem;
    }

    .teach-swiper1 .name {
        margin: .1rem 0;
    }

    .home4 .r-box {
        width: 3rem;
        order: 1;
        margin: 0;
    }

    .home4 .r-box::after {
        width: 2.8rem;
        height: 2.8rem;
    }

    .teach-swiper2 {
        margin: .12rem 0;
    }

    .teach-swiper3 {
        width: 2.8rem;
        margin: .2rem 0 0;
    }

    .decorate {
        margin: 54px 0 0;
    }

    .decorate .img {
        padding: 45% 0 0;
    }

    .main-box {
        padding-bottom: .4rem;
    }

    .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 .text {
        width: calc(100% - .85rem);
    }

    .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 .line, .list1 .info {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */

/*新增样式20250801*/
/*现任领导*/
.n_lingdao ul{margin:0.32rem -0.1rem;overflow: hidden;}
.n_lingdao ul li{float:left; width:50%; padding:0 0.1rem; margin-bottom:0.2rem;}
.n_lingdao ul li a{ display:block; position:relative; padding:0.16rem;border:#dedede 1px solid;}
.n_lingdao ul li:hover a{border:#0638B5 1px solid;}
.n_lingdao ul li a .top .img{width:0.7rem;height:0.7rem;float:left;position:relative;overflow:hidden;text-align: center;}
.n_lingdao ul li a .top .img img{display:inline-block;width: 100%;height: 100%;object-fit: cover;}
.n_lingdao ul li a .top .con_fr{width:calc(100% - 0.7rem);padding: 0.12rem 0 0 0.16rem;}
.n_lingdao ul li a .top .con_fr h4{font-size: 0.18rem;color:#323232;margin-bottom: 0.14rem;}
.n_lingdao ul li a .top .con_fr h5{font-size: 0.16rem;line-height: 0.24rem;color:#323232;height: 0.24rem;font-weight:bold;transition:.36s;}
.n_lingdao ul li a .con{width: 100%;margin-top: 0.16rem;padding-top: 0.16rem;position:relative;border-top: #dedede 1px solid;}
.n_lingdao ul li a .con h4{font-size:0.2rem;color:#323232;margin-bottom: 0.08rem;}
.n_lingdao ul li a .con h5{font-size: 0.16rem;line-height: 0.24rem;color:#323232;height: 0.24rem;font-weight:bold;transition:.36s;margin-bottom: 0.14rem;}
.n_lingdao ul li a .con .con_li{font-size: 0.16rem;line-height:0.24rem;color:#666666;}
.n_lingdao ul li a .con .con_li p{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-top:0.08rem;color: #323232;font-size: 0.16rem;}
.n_lingdao ul li a .con .con_li p svg{width: 0.18rem;height: 0.18rem;fill:#0638B5;vertical-align:middle;margin:-3px 6px 0 0;}
.n_lingdao ul li a .con .con_li p:last-child{ text-decoration:underline; color:#0638B5}
@media screen and (max-width: 768px) {
    .n_lingdao ul{
        margin: 0.24rem -0.1rem;
    }
    .n_lingdao ul li{
        float: none;
        width: 100%;
    }
}

/*教学名师*/
.jxms{
    padding-top: 0.2rem;
}
.dsjs h3{font-size:0.2rem;color:#323232;font-weight:bold;margin:0.24rem 0;}
.dsjs ul{ margin:0 -0.1rem;overflow: hidden;}
.dsjs ul li{ float:left; width:50%; padding:0 0.1rem; margin-bottom:0.2rem;}
.dsjs ul li a{ display:block; position:relative; padding:0 0.1rem 0.14rem;overflow: hidden;}
.dsjs ul li a:before{ content:""; position:absolute; top:0.2rem; right:0; bottom:0; left:0; border:#dedede 1px solid}
.dsjs ul li:hover a:before{
    border: 1px solid #0638B5;
}
.dsjs ul li a .img{width: 1.4rem;height: 1.8rem;float:left;position:relative;overflow:hidden;text-align: center;}
.dsjs ul li a .img img{display:inline-block;width: 100%;height: 100%;object-fit: cover;}
.dsjs ul li a .con{width: calc(100% - 1.4rem);padding-left: 0.2rem;padding-top:0.36rem;position:relative;}
.dsjs ul li a .con h4{font-size:0.2rem;color:#323232;margin-bottom: 0.08rem;}
.dsjs ul li a .con h5{font-size:0.14rem;line-height: 0.2rem;color:#323232;height: 0.2rem;font-weight:bold;transition:.36s;margin-bottom: 0.14rem;}
.dsjs ul li a .con .con_li{ font-size:0.12rem; line-height:0.2rem; color:#666666; border-left:#0638B5 1px solid; padding-left:0.14rem}
.dsjs ul li a .con .con_li p{ overflow:hidden; white-space:nowrap; text-overflow:ellipsis; margin-top:0.08rem}
.dsjs ul li a .con .con_li p svg{ width:0.16rem; height:0.16rem; fill:#0638B5; vertical-align:middle; margin:-3px 6px 0 0}
@media screen and (max-width: 1024px) {
    .dsjs h3{margin: 0.15rem 0;}
    .dsjs ul li{float:none; width:100%;}
}

/*学科带头人*/
.n_njiaozhi{
    padding-top: 0.32rem;
}
.n_njiaozhi ul>li .top{background: #e3eaf4;height: 0.5rem;position:relative;line-height: 0.5rem;    margin-bottom: 2px;}
.n_njiaozhi ul>li .top i{position:absolute;right: 0.2rem;top:50%;margin-top: -0.12rem;width: 0.16rem;height:0.24rem;background: url("../images25/jia.png") center no-repeat;}
.n_njiaozhi ul>li .top h5{position:relative;font-size: 0.2rem;color: #323232;padding: 0 0.26rem;display:inline-block;}
.n_njiaozhi ul>li .top h5:after{position:absolute;right: -0.2rem;bottom:0px;content:"";width: 0;height: 0;border-right: 0.2rem solid transparent;}
.n_njiaozhi ul>li .top h6{font-size:0.12rem;color: #a0a0a0;text-transform:  uppercase;}
.n_njiaozhi ul>li .submenu{ display:none}
.n_njiaozhi ul>li div.open .top i{ background: url("../images25/jian.png") center no-repeat;}
.n_njiaozhi ul>li div.open .top{ background:#0638B5}
.n_njiaozhi ul>li div.open .top h5{ color:#fff}



/*            ? */
.toubu_div{position: relative;z-index: 9;}
.navA{position: fixed;right: 0;background: #74bceb;width: 0.7rem;height: 0.6rem;border-radius: 0.1rem 0rem 0rem 0.1rem;z-index: 99999999;top: 0.2rem;}
.navA::after{  content: "";display: block;position: absolute;left: 0.1rem;top: 0;right: 0.08rem;bottom: 0;background: url(../images25/menuPc01_0807.png) center no-repeat;background-size: 0.32rem;z-index: 2;}
.navA.on::after{  content: "";display: block;position: absolute;left: 0.1rem;top: 0;right: 0;bottom: 0;background: url(../images25/menuPc02_0807.png) center no-repeat;background-size: 0.32rem;z-index: 6;}
  
.navB{position: fixed; z-index: 9999999;width: 100%;height: 100%;    background: url(../images25/bn_dt_img2130528.jpg) center no-repeat;display: none;top: 0;right: 0;background-size: cover;}
.navB .w17{overflow-y: auto;margin: 0 auto;}
.navB .w17 .logo{padding:0.5rem 0.8rem;}
.navB .qylogo{margin-top: 0.2rem;}
.navB .qylogo img{display: block;width: 4rem;}
.navB ul{margin-top: 0.4rem;    display: flex;flex-wrap: wrap;padding: 0rem 0.8rem;justify-content: space-around;}
.navB ul li{    margin: 0.2rem 0.1rem;}
.navB ul li a{font-size:0.26rem;line-height: 0.26rem;color: white;}
.navB ul li .subnav{margin-top: 0.16rem;}
.navB ul li .subnav a{display: block;font-size: 0.16rem;color: white;opacity: 0.8;left: 0.24rem;margin-top: 0.12rem;text-align: center;}
.navB ul li .subnav a:hover{color: #FFFFFF;opacity: 1;text-decoration: underline;}


/*               */
@media(max-width: 1024px){
    .navA{display: none;}
    .navb{display: none;}
    }