﻿ /* 网站通用样式 */
@font-face {
    font-family: "SYST900";
    src: url("../font/SourceHanSerifCN-Heavy.ttf") format("truetype")
}

#loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

html {
    width: 100%;
    min-width: 320px;
    font-size: 100px;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: .08rem;
}

html::-webkit-scrollbar-thumb {
    border-radius: .08rem;
    background: #015198;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
}

.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 1400px;
    max-width: 90%;
    margin: 0 auto;
    font-size: .16rem;
}

.title {
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #323232;
    text-align: left;
}

.info {
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.24rem;
    color: #8a8a8a;
    text-align: justify;
}

.date {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #989898;
    text-align: left;
}

.date1 {
    width: .86rem;
    padding: .14rem 0 .12rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.22rem;
    color: #fff;
    text-align: center;
    background: rgba(1, 81, 152, 0.85);
}

.date1 p:first-child {
    font-size: .3rem;
    font-weight: 700;
    line-height: .38rem;
}

.mobile-show {
    display: none;
}

/* 网站头部 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: .14rem 0;
    background: #015198;
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.3);
}

.header .container {
    position: relative;
    z-index: 2;
    width: 1600px;
    max-width: 90%;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .right-wrapper {
    width: 10.8rem;
    max-width: calc(100% - 4.6rem);
}

.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: .75rem;
}

.top-box {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
}

.top-link {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
}

.top-link a {
    color: #fff;
}

.top-link a:hover {
    font-weight: 700;
}

.top-link span {
    margin: 0 .1rem 0 .17rem;
}

.rk-btn a {
    display: block;
    margin: 0.03rem 0 0 .08rem;
    padding: 0 .13rem;
    font-size: .16rem;
    line-height: .32rem;
    color: #fff;
    background: #e8a92e;
    border-radius: .06rem;
    transition: all .3s;
}

.rk-btn a:hover {
    background: #fff;
    color: #015198;
}

.search-box {
    border: 1px solid transparent;
    border-radius: .4rem;
}

.search-box:hover {
    border-color: #fff;
}

.search-box:hover .input {
    width: 1.9rem;
    padding: 0 .1rem 0 .15rem;
}

.search-box .form {
    font-size: 0;
}

.search-box .input {
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: .36rem;
    padding: 0;
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.36rem;
    color: #fff;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.search-box .input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box .submit {
    display: inline-block;
    vertical-align: top;
    width: .36rem;
    height: .36rem;
    background-image: url("../image/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav {
    padding: .04rem 0 0;
}

.nav li {
    position: relative;
    text-align: center;
}

.nav li a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 0.2rem;
    font-weight: 500;
    line-height: 0.5rem;
    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;
}

.nav li > a::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 1;
    content: "";
    width: 0%;
    height: 3px;
    border-radius: 2px;
    background: #e9a92e;
    -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 > a::after {
    left: 0;
    width: 100%;
}

.nav li:hover .sub-nav {
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}

.nav .sub-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: calc(50% - .8rem);
    z-index: 1;
    width: 1.6rem;
    padding: .08rem 0;
    background: #015198;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.22);
    background: white;
    border-radius: 2px;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 50% 0%;
    -webkit-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -moz-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -ms-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -o-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.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: #015198;
    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: #015198;
}

.nav .sub-nav a {
    z-index: 2;
    width: 100%;
    padding: .12rem 0;
    font-size: .15rem;
    font-weight: 500;
    line-height: .2rem;
    color: #777;
    border-bottom: 1px solid #efefef;
    -webkit-transition: background 0.15s ease-out 0s;
    -moz-transition: background 0.15s ease-out 0s;
    -ms-transition: background 0.15s ease-out 0s;
    -o-transition: background 0.15s ease-out 0s;
    transition: background 0.15s ease-out 0s;
}

.pad-btn {
    position: relative;
    display: none;
    align-items: center;
    padding: 0 0 0 .22rem;
}

.pad-btn .nav-btn {
    display: block;
    position: relative;
    z-index: 5;
    width: 28px;
    vertical-align: middle;
    cursor: pointer;
}

.pad-btn .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;
}

.pad-btn .nav-btn.close i:nth-child(1) {
    -webkit-transform: translate(0px, 9px) rotate(45deg);
    -moz-transform: translate(0px, 9px) rotate(45deg);
    -ms-transform: translate(0px, 9px) rotate(45deg);
    -o-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}

.pad-btn .nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.pad-btn .nav-btn.close i:nth-child(3) {
    -webkit-transform: translate(0px, -9px) rotate(-45deg);
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    -ms-transform: translate(0px, -9px) rotate(-45deg);
    -o-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}

.mobile-box {
    display: none;
    position: fixed;
    top: 61px;
    right: auto;
    bottom: auto;
    left: -100%;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 61px);
    padding: .15rem 5% .4rem;
    background: url("../image/index_bg1.jpg") no-repeat 50% 100%, #fff;
    -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;
    opacity: 0;
    visibility: hidden;
}

.mobile-box .nav {
    width: 100%;
    height: calc(100% - 1.2rem);
    padding: 0 0 .2rem;
}

.mobile-box .nav ul {
    display: block;
    height: 100%;
    overflow-y: auto;
}

.mobile-box .nav li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #fff;
    text-align: left;
}

.mobile-box .nav li:first-child {
    border-top: none;
}

.mobile-box .nav li:last-child {
    border-bottom: none;
}

.mobile-box .nav li a {
    color: #494949;
    padding: 0 .1rem;
    line-height: .6rem !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: .6rem;
    height: .6rem;
    background-image: url(../image/icon12_2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 7px;
    cursor: pointer;
    transform: rotate(0deg);
    -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 {
    transform: rotate(90deg);
}

.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 {
    padding: 0 .1rem;
    font-weight: 500;
    line-height: .46rem !important;
    color: #494949 !important;
    border-bottom: 1px dashed #ddd;
}

.mobile-box .nav .sub-nav::before {
    display: none;
}

.mobile-box .mobile-search {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0 0 1px;
    margin: .1rem auto .15rem;
    overflow: hidden;
}

.mobile-box .mobile-search .form {
    display: flex;
    width: 100%;
    border: 1px solid #015198;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .65rem);
    height: .48rem;
    margin: 0 .1rem 0 0;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.48rem;
    color: #333;
    text-align: left;
    background: #fff;
}

.mobile-box .mobile-search .submit {
    width: .65rem;
    height: .48rem;
    vertical-align: top;
    background-image: url("../image/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #015198;
    background-size: auto;
}

.mobile-box .top-link {
    display: block;
    text-align: left;
}

.mobile-box .top-link span {
    display: none;
}

.mobile-box .top-link a {
    display: inline-block;
    vertical-align: top;
    margin: 0 .12rem;
    padding: 0 .18rem;
    font-size: .16rem;
    line-height: .34rem;
    color: #fff;
    background: #015198;
    border-radius: 4px;
    white-space: nowrap;
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

/* 首页轮播图 */
.banner {
    z-index: 1;
    margin: 1.2rem 0 0;
    font-size: 0;
    width: 100%;
}

.banner .img {
    position: relative;
    display: block;
    width: 100%;
    padding: 37% 0 0;
    overflow: hidden;
}

.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.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: transform 0.6s ease-out 0s;
    -moz-transition: transform 0.6s ease-out 0s;
    -ms-transition: transform 0.6s ease-out 0s;
    -o-transition: transform 0.6s ease-out 0s;
    transition: transform 0.6s ease-out 0s;
}

.banner .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0 0 6%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .24) 36%, transparent);
    color: #fff;
    text-align: center;
}
.banner .text .text2 {
    position: absolute;
    bottom: .7rem;
    left: 0;
    z-index:1;
    width: 100%
    
}
.banner .text .p1 {
    margin: 0 0 .36rem;
    font-family: "黑体";
    font-size: .55rem;
    font-weight: 700;
    line-height: .8rem;
    text-shadow: 0 2px .06rem rgba(0, 0, 0, .6);
    transform: translateY(100%);
    opacity: 0;
}

.banner .text .p2 {
    font-family: "SYST900";
    font-size: .3rem;
    line-height: .5rem;
    text-shadow: 0 0 .06rem rgba(0, 0, 0, .4);
    transform: translateY(100%);
    opacity: 0;
}

.banner .text .p3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .16rem;
    line-height: .5rem;
    text-shadow: 0 0 .06rem rgba(0, 0, 0, .4);
    transform: translateY(100%);
    opacity: 0;
}

.banner .swiper-slide-active img {
    -webkit-transition: transform 6.4s ease-out .6s;
    -moz-transition: transform 6.4s ease-out .6s;
    -ms-transition: transform 6.4s ease-out .6s;
    -o-transition: transform 6.4s ease-out .6s;
    transition: transform 6.4s ease-out .6s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.banner .swiper-slide-active .p1, .banner .swiper-slide-active .p2, .banner .swiper-slide-active .p3 {
    transform: translateY(0);
    opacity: 1;
    transition: all 1s;
}

.banner .pagination {
    position: absolute;
    bottom: .3rem;
    z-index: 3;
    text-align: center;
}

.banner .pagination .swiper-pagination-bullet {
    vertical-align: middle;
    width: .12rem;
    height: .12rem;
    margin: 0 7px;
    background: white;
    opacity: 1;
    cursor: pointer;
}

.banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #e9a92e;
}

.banner .swiper-arrow {
    position: absolute;
    top: calc(50% - .25rem);
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .5rem;
    height: .5rem;
    background-image: url("../image/arrow1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
    opacity: .5;
    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;
}

.banner .swiper-arrow.swiper-prev {
    left: 5%;
}

.banner .swiper-arrow.swiper-next {
    right: 5%;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.banner .swiper-arrow:hover {
    opacity: 1;
}

/* 网站底部 */
.footer {
    padding: 0 0 0;
    background-image: url("../image/foot_bg1.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.footer .container {
    padding: .3rem 0 .2rem;
}

.footer .line {
    width: 1px;
    height: 1.4rem;
    background: rgba(255, 255, 255, 0.3);
}

.foot-link {
    align-items: flex-end;
}

.foot-link .l-box {
    margin: 0;
}

.foot-link .l-box h6 {
    font-size: 0.2rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
}

.foot-link .link-box {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.32rem;
    height: 1.32rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    -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:first-child {
    margin: 0 .4rem 0 0;
}

.foot-link .link-box img {
    max-height: .4rem;
    margin: 0 0 .12rem;
    -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 p {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #fff;
    text-align: center;
}

.foot-link .link-box:hover {
    -webkit-transform: translateY(-0.08rem);
    -moz-transform: translateY(-0.08rem);
    -ms-transform: translateY(-0.08rem);
    -o-transform: translateY(-0.08rem);
    transform: translateY(-0.08rem);
    background: #015198;
}

.foot-link .link-box:hover img {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.sim-select {
    position: relative;
    width: 2.4rem;
    margin: .2rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.sim-select:hover p::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sim-select p {
    position: relative;
    padding: 0 .34rem 0 .12rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.34rem;
    color: #fff;
    text-align: left;
}

.sim-select p::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .34rem;
    height: .34rem;
    background-image: url("../image/f_icon3.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.14rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sim-select ul {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    max-height: 1.66rem;
    padding: .06rem .12rem;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.sim-select ul li {
    border-bottom: 1px dashed #eee;
}

.sim-select ul li:last-child {
    border: none;
}

.sim-select ul a {
    display: block;
    padding: .06rem 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.18rem;
    color: #333;
    text-align: left;
}

.sim-select ul::-webkit-scrollbar {
    width: .05rem;
}

.sim-select ul::-webkit-scrollbar-thumb {
    border-radius: .05rem;
    background: #015198;
}

.sim-select ul::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
}

.ewm li {
    margin: 0 0 0 .34rem;
}

.ewm li:first-child {
    margin: 0;
}

.ewm img {
    width: 1.15rem;
}

.ewm p {
    margin: .08rem 0 0;
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.24rem;
    color: #fff;
    text-align: center;
}

.copy {
    padding: .1rem;
    background: #00427c;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #fff;
    text-align: center;
}

/* 首页样式 */
.column {
    position: relative;
    width: 100%;
    margin: .32rem 0 .1rem;
}

.column h3 {
    display: inline-block;
    font-size: 0.3rem;
    font-weight: 700;
    line-height: 0.64rem;
    color: #333;
    text-align: left;
}

.column h3::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .6rem;
    height: 2px;
    margin: 0 auto;
    background: #015198;
}

.column .more {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.more {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.6rem;
    color: #e9a92b;
    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;
}

.more i {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0 6px 0 0;
}

.more i::before {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 7px;
    height: 7px;
    background: #e9a92b;
    -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 i::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .19rem;
    height: 1px;
    background: #e9a92b;
    -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:hover {
    color: #015198;
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px);
}

.more:hover i::before {
    background: #015198;
}

.more:hover i::after {
    background: #015198;
    width: .3rem;
}

.home1 {
    padding: 1px 0 .12rem;
    background-image: url("../image/index_bg1.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: 100%;
}

.news-swiper1 {
    width: 46.42%;
    margin: .5rem 0 0;
}

.news-swiper1 .img {
    padding: 4.2rem 0 0;
}

.news-swiper1 .img-frame {
    display: block;
}

.news-swiper1 .text {
    position: relative;
    z-index: 3;
    padding: .13rem 0 0 1.3rem;
}

.news-swiper1 .title {
    font-weight: 700;
}

.news-swiper1 .date1 {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.news-swiper1 .pagination {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.43rem;
    left: auto;
    z-index: 1;
    width: auto;
    padding: .06rem .2rem;
    background: rgba(1, 81, 152, 0.85);
}

.news-swiper1 .pagination span {
    width: .12rem;
    height: .12rem;
    border: 1px solid #fff;
    background: none;
    opacity: 1;
}

.news-swiper1 .pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.news-list {
    width: 50.7%;
}

.news-list li a {
    position: relative;
    padding: .17rem 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom: 1px dashed #ddd;
}

.news-list li a::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 1;
    content: "";
    width: 0;
    height: 2px;
    background: #015198;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.news-list li a:hover {
    -webkit-transform: translateX(0.1rem);
    -moz-transform: translateX(0.1rem);
    -ms-transform: translateX(0.1rem);
    -o-transform: translateX(0.1rem);
    transform: translateX(0.1rem);
}

.news-list li a:hover .title {
    color: #015198;
    font-weight: 700;
}

.news-list li a:hover::after {
    width: 100%;
}

.news-list li a:hover .line {
    background: #015198;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.news-list .date {
    font-size: .15rem;
    color: #9a9a9a;
    line-height: .22rem;
}

.news-list .date p:first-child {
    font-size: .22rem;
    color: #015198;
    line-height: .24rem;
}

.news-list .line {
    width: 1px;
    height: .24rem;
    background: #dbdbdb;
    -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-list .title {
    width: calc(100% - .9rem);
}

.news-list .title::before {
    display: inline-block;
    content: "";
    width: .08rem;
    height: .08rem;
    margin: 0 .1rem 2px 0;
    background: #015198;
    border-radius: 50%;
}

.notice {
    width: 100%;
    height: 6.58rem;
    padding: .1rem 0 0;
}

.notice .column {
    margin-bottom: .3rem;
}

.notice .slide-tag {
    margin: 0 0 .55rem;
}

.slide-tag h5 {
    margin: 0 .2rem;
    font-size: .24rem;
    line-height: .5rem;
    font-weight: 400;
    color: #666;
    cursor: pointer;
}

.slide-tag h5.active {
    color: #333;
    font-weight: 700;
}

.slide-tag h5::after {
    display: block;
    content: "";
    width: 100%;
    height: .11rem;
    background: url("../image/f_icon6.png") no-repeat 50% 50%;
    background-size: 100% 100%;
    transition: all .3s;
    transform: rotateY(90deg);
}

.slide-tag h5.active::after {
    transform: rotateY(0);
}

.slide-tag .more {
    opacity: 0;
    visibility: hidden;
}

.slide-tag .more.active {
    opacity: 1;
    visibility: visible;
}

.slide-item {
    display: none;
}

.slide-item.active {
    display: block;
    animation: ani-fade .7s;
}

@keyframes ani-fade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0.3rem);
        -moz-transform: translateY(0.3rem);
        -ms-transform: translateY(0.3rem);
        -o-transform: translateY(0.3rem);
        transform: translateY(0.25rem);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.news-list2 {
    font-size: 0;
    margin: 0 -0.2rem;
}

.news-list2 > li {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
    padding: 0 0.2rem;
}

.news-list2 a {
    position: relative;
    display: block;
    margin: 0 0 .42rem;
    padding: .28rem .44rem .3rem;
    border: 1px solid #eff4f8;
    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;
}

.news-list2 .column-link {
    position: absolute;
    top: -0.15rem;
    right: auto;
    bottom: auto;
    left: 0.44rem;
    z-index: 1;
    padding: 0 .12rem;
    min-width: .88rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #e9a92b;
    text-align: center;
    background: #fff8ee;
    -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-list2 .column-link::before {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 0;
    border: 0.07rem solid transparent;
    border-right-color: #ebe4da;
    border-bottom-color: #ebe4da;
    -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-list2 .column-link::after {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 100%;
    z-index: 1;
    content: "";
    width: 0;
    height: 0;
    border: 0.07rem solid transparent;
    border-left-color: #ebe4da;
    border-bottom-color: #ebe4da;
    -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-list2 .title {
    height: .6rem;
}

.news-list2 .date {
    margin: .1rem 0 0;
    padding: 0 0 0 .23rem;
    background-image: url("../image/f_icon1_2.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.17rem;
}

.home2 {
    padding: 1px 0 .5rem;
}

.home2 .column {
    margin-bottom: .3rem;
}

@keyframes ani-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.link-swiper {
    padding: .36rem 0 0;
}

.link-swiper .swiper-slide {
    -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-swiper .swiper-slide:hover {
    -webkit-transform: translateY(-0.1rem);
    -moz-transform: translateY(-0.1rem);
    -ms-transform: translateY(-0.1rem);
    -o-transform: translateY(-0.1rem);
    transform: translateY(-0.1rem);
}

.link-swiper .swiper-slide:hover .title {
    color: #015198;
}

.link-swiper .swiper-slide:hover .icon::after {
    animation: ani-rotate 25s linear infinite;
}

.link-swiper .swiper-slide:hover .icon img {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.link-swiper .icon {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: .9rem;
    height: .9rem;
    margin: 0 auto;
    border-radius: 50%;
    background: #eff6ff;
}

.link-swiper .icon img {
    max-height: .4rem;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.link-swiper .icon::after {
    position: absolute;
    top: -0.1rem;
    right: -0.1rem;
    bottom: auto;
    left: auto;
    z-index: 1;
    box-sizing: border-box;
    content: "";
    width: calc(100% + .2rem);
    height: calc(100% + .2rem);
    border: 1px dashed #bccddd;
    border-radius: 50%;
}

.link-swiper .swiper-wrapper {
    justify-content: center;
}

.link-swiper .icon.i2 {
    background: #fff8ee;
}

.link-swiper .icon.i2::after {
    border-color: #d4c3af;
}

.link-swiper .icon.i3 {
    background: #effff5;
}

.link-swiper .icon.i3::after {
    border-color: #acd5c3;
}

.link-swiper .icon.i4 {
    background: #fbeeff;
}

.link-swiper .icon.i4::after {
    border-color: #b2add6;
}

.link-swiper .icon.i5 {
    background: #fffdf0;
}

.link-swiper .icon.i5::after {
    border-color: #d6d4ae;
}

/* .link-swiper .icon.i6 { background: #fef3ef; }
.link-swiper .icon.i6::after { border-color: #dbbdbd; } */
.link-swiper .icon.i7 {
    background: #ffefff;
}

.link-swiper .icon.i7::after {
    border-color: #d0a2ce;
}

.link-swiper .title {
    margin: .16rem 0 0;
    text-align: center;
    -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-swiper .pagination {
    margin: .36rem 0 0;
    text-align: center;
}

.link-swiper .pagination span {
    width: .12rem;
    height: .12rem;
    opacity: 1;
    margin: 0 .06rem !important;
    background: #ccc;
}

.link-swiper .pagination .swiper-pagination-bullet-active {
    background: #015198;
}

/* 内页样式 */
.decorate {
    position: relative;
    margin: 1.2rem 0 0;
    padding: 4.5rem 0 0;
}

.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 .5rem;
}

.sidebar {
    position: relative;
    z-index: 3;
    width: 2.7rem;
    margin: -.8rem 0 .6rem;
    box-shadow: 0px 0.06rem 0.18rem 0px rgba(165, 186, 199, 0.32);
    background: #fcfeff;
}

.sidebar h3 {
    position: relative;
    font-family: "SYST700";
    font-size: 0.3rem;
    font-weight: 700;
    line-height: 1rem;
    color: #fff;
    text-align: center;
    background: #015198;
    letter-spacing: 2px;
}

.sidebar .sub-nav {
    position: relative;
    padding: 0 .28rem .8rem;
    background-image: url("../image/index_bg1.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: 5rem;
}

.sidebar .sub-nav li {
    position: relative;
    border-bottom: 1px solid #ededed;
}

.sidebar .sub-nav li:last-child {
    border: none;
}

.sidebar .sub-nav li.cur > a {
    color: #015198 !important;
    font-weight: 700;
}

.sidebar .sub-nav li.cur > a p::after {
    width: 100%;
    opacity: 1;
}

.sidebar .sub-nav li.cur .lv3 {
    display: block;
}

.sidebar .sub-nav li:hover > a {
    color: #015198;
}

.sidebar .sub-nav li:hover .down {
    background-image: url("../image/icon12_2.png");
}

.sidebar .sub-nav a {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: .2rem .2rem .2rem .12rem;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.24rem;
    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: .64rem;
    background-image: url("../image/icon12_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    cursor: pointer;
    opacity: .8;
    -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.close {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    background-image: url("../image/icon12_2.png");
}

.sidebar .sub-nav .lv3 {
    display: none;
    margin: -.1rem 0 0;
    padding: 0 0 .15rem .12rem;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 .08rem .2rem;
    font-size: .15rem;
    line-height: .22rem;
}

.sidebar .sub-nav .lv3 a:hover {
    color: #015198;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #015198;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #015198;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #015198;
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.2rem);
    min-height: 4rem;
    margin: .3rem 0 0;
}

.position {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d2d2d2;
}

.position h3 {
    display: inline-block;
    font-size: 0.25rem;
    font-weight: 500;
    line-height: 0.52rem;
    color: #333;
    text-align: left;
}

.position h3::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 100%;
    height: 2px;
    margin: 0 0 -1px;
    background: #015198;
}

.place {
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.52rem;
    color: #888;
    text-align: left;
    padding: 0 0 0 26px;
    white-space: nowrap;
    background-image: url(../image/place.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.18rem;
}

.place a {
    color: #888;
}

.place a:hover {
    color: #015198;
}

.list3 {
    margin: .1rem 0 0;
}

.list3 li {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    -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;
}

.list3 li::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 1px;
    content: "";
    background: #015198;
    -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;
}

.list3 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;
}

.list3 a::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 .12rem 2px 0;
    border-radius: 50%;
    content: "";
    background: #015198;
}

.list3 .title {
    width: calc(100% - 1.3rem);
    line-height: .66rem;
    -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;
}

.list3 .title i {
    display: inline-block;
    margin: 0 .15rem 0 0;
    border: 1px solid #6D88CD;
    padding: 3px;
    -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;
}

.list3 .title i::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 5px;
    height: 5px;
    background: #6D88CD;
    -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;
}

.list3 .date {
    line-height: .66rem;
    padding: 0 0 0 .23rem;
    background-image: url("../image/f_icon1_2.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.17rem;
}

.picture2 {
    margin: .2rem 0 0;
}

.picture2 li.no-img .text {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
}

.picture2 a {
    position: relative;
    display: block;
    padding: 0.26rem 0.26rem;
    font-size: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.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;
}

.picture2 .img-frame {
    display: inline-block;
    vertical-align: top;
    width: 2.6rem;
}

.picture2 .img-frame .img {
    padding: 56.25% 0 0;
}

.picture2 .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 2.6rem);
    padding: .1rem 0 0 .3rem;
}

.picture2 .date {
    margin: .04rem 0 0;
    line-height: .3rem;
    padding: 0 0 0 .23rem;
    background-image: url("../image/f_icon1_2.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.17rem;
}

.picture2 .title {
    line-height: .3rem;
    color: #222;
}

.picture2 .info {
    margin: .08rem 0 0;
    height: .48rem;
    color: #777;
}

.picture3 {
    font-size: 0;
    margin: 0 -0.16rem;
}

.picture3 > li {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
    padding: 0 0.16rem;
}

.picture3 .img-zoom {
    margin: .3rem 0 0;
    padding: .11rem;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: #fcfeff;
    box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32);
}

.picture3 .img {
    padding: 65% 0 0;
}

.picture3 .text {
    padding: .1rem 0 .03rem;
}

.picture3 .title {
    font-family: "SYST400";
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.4rem;
    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 #015198;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}

.teach-list {
    font-size: 0;
    margin: 0 -0.15rem;
}

.teach-list > li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 0.15rem;
}

.teach-list li {
    margin: .3rem 0 0;
}

.teach-list .img-zoom {
    padding: .1rem .1rem .05rem;
    background: #f2f2f2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 4px;
}

.teach-list .img-zoom:hover {
    background: #015198;
    box-shadow: 0px 4px 10px 0px rgba(14, 65, 150, 0.2);
}

.teach-list .img-zoom:hover .title {
    color: #fff;
}

.teach-list .img-frame .img {
    padding: 120% 0 0;
}

.teach-list .title {
    line-height: .5rem;
    text-align: center;
}

.article {
    padding: .42rem 0 0;
}

.article .title {
    font-size: 0.26rem;
    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.22rem;
    font-weight: 500;
    line-height: 0.4rem;
    color: #333;
    text-align: center;
}

.article .sub {
    margin: .2rem 0 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.42rem;
    color: #969696;
    text-align: center;
    background: #f6f6f6;
}

.article .content {
    padding: .3rem 0 .2rem;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 180%;
    color: #333;
    text-align: justify;
}

.article .content p {
    word-break: break-all;
}

.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;
    font-size: .17rem;
    line-height: 150%;
}

.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: 3px solid #015198;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.18rem;
    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: #015198;
    -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: #015198;
    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.18rem;
    font-weight: 500;
    line-height: 200%;
    color: #015198;
    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 .table-box table {
    min-width: 650px;
}

/* 翻页样式 */
#list-page {
    margin: .4rem 0 .1rem !important;
    font-family: Arial;
    text-align: center;
}

#list-page .p_pages a, #list-page span, #list-page .p_goto a {
    font-size: 14px;
    width: auto;
    height: auto;
    margin-top: 5px;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: 9px 11px;
    color: #015198;
    border: 1px solid #aaa;
    border-radius: 4px;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #015198;
    font-weight: bold;
    color: #fff;
    border-color: #015198;
}

#list-page .p_t {
    padding: 0 2px 0 0;
    color: #777;
}

#list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d {
    display: inline-block;
}

#list-page .p_pages span {
    color: #aaa;
}

#list-page .p_goto input {
    font-family: 'Arial';
    color: #333;
    border-radius: 4px;
    width: 40px;
    height: 32px;
    line-height: 32px;
    vertical-align: bottom;
}

@media screen and (min-width: 1025px) {
    .list3 li:hover {
        -webkit-transform: translateX(0.06rem);
        -moz-transform: translateX(0.06rem);
        -ms-transform: translateX(0.06rem);
        -o-transform: translateX(0.06rem);
        transform: translateX(0.06rem);
    }

    .list3 li:hover .title {
        color: #015198;
        font-weight: 700;
    }

    .list3 li:hover .title i {
        background: #015198;
        border-color: #015198;
    }

    .list3 li:hover .title i::after {
        background: #fff;
    }

    .list3 li:hover::after {
        width: 100%;
    }

    .list3 li:hover .date {
        color: #e9a92b;
        background-image: url("../image/f_icon1.png");
    }

    .picture2 a:hover {
        background: #015198;
        border-color: #015198;
        box-shadow: 6px 6px 0 0 #eeb553;
    }

    .picture2 a:hover::after {
        bottom: 0;
        opacity: 1;
        -webkit-transition: bottom 0.4s ease-out 0s;
        -moz-transition: bottom 0.4s ease-out 0s;
        -ms-transition: bottom 0.4s ease-out 0s;
        -o-transition: bottom 0.4s ease-out 0s;
        transition: bottom 0.4s ease-out 0s;
    }

    .picture2 a:hover .title {
        color: #fff;
    }

    .picture2 a:hover .info {
        color: #fff;
    }

    .picture2 a:hover .date {
        color: #e9a92b;
        background-image: url("../image/f_icon1.png");
    }

    .picture3 .img-zoom:hover {
        border-color: #015198;
        background: #015198;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
    }

    .news-list a:hover {
        -webkit-transform: translateX(0.1rem);
        -moz-transform: translateX(0.1rem);
        -ms-transform: translateX(0.1rem);
        -o-transform: translateX(0.1rem);
        transform: translateX(0.1rem);
    }

    .news-list a:hover .title {
        color: #015198;
        font-weight: 700;
    }

    .news-list a:hover::after {
        width: 100%;
    }

    .news-list a:hover .line {
        background: #015198;
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
    }

    .news-list2 a:hover {
        -webkit-transform: translateY(-0.08rem);
        -moz-transform: translateY(-0.08rem);
        -ms-transform: translateY(-0.08rem);
        -o-transform: translateY(-0.08rem);
        transform: translateY(-0.08rem);
        border-color: #82a8cd;
        background: #015198;
    }

    .news-list2 a:hover .title {
        color: #fff;
    }

    .news-list2 a:hover .date {
        color: #e9a92b;
        background-image: url("../image/f_icon1.png");
    }

    .news-list2 a:hover .column-link {
        color: #fff;
        background: #e9a92b;
    }

    .news-list2 a:hover .column-link::before {
        border-right-color: #ca9428;
        border-bottom-color: #ca9428;
    }

    .news-list2 a:hover .column-link::after {
        border-left-color: #ca9428;
        border-bottom-color: #ca9428;
    }
}

@media screen and (max-width: 1660px) {
    .banner .text .p1 {
        font-size: .5rem;
    }

    .banner .text .p2 {
        font-size: .65rem;
    }

    .banner .text .p3 {
        font-size: .3rem;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 90px;
    }

    .header {
        padding: 8px 0 !important;
        transition: all .2s;
        background: #015198;
        border: none;
    }

    .header::after {
        display: none;
    }

    .header .container {
        width: 90%;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .header .right-wrapper .top-box, .header .right-wrapper .nav {
        display: none;
    }

    .header.mobile-show {
        background: #015198;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .header.mobile-show::after {
        display: none;
    }

    .logo {
        width: auto;
        min-width: auto;
        height: 45px;
        padding: 0 .12rem 0 0;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 45px !important;
    }

    .pad-btn {
        display: block;
    }

    .pad-btn::before {
        display: none;
    }

    .mobile-box {
        display: block;
    }

    .mobile-show {
        display: block;
    }

    .mobile-hide {
        display: none;
    }

    .banner {
        margin: 61px 0 0;
    }

    .banner .img {
        height: auto;
        padding: 40% 0 0;
    }

    .banner .text .p1 {
        font-size: 3.4vw;
        line-height: 140%;
        margin: 0 0 1.4vw;
    }

    .banner .text .p2 {
        font-size: 4.6vw;
        line-height: 140%
    }

    .banner .text .p3 {
        font-size: 2.2vw;
        line-height: 140%
    }

    .banner .pagination {
        bottom: .2rem;
        line-height: 140%;
    }

    .column {
        justify-content: space-between;
        margin: .25rem 0 .1rem;
    }

    .column h3 {
        font-size: .28rem;
        line-height: .55rem;
    }

    .news-swiper1 {
        width: 100%;
    }

    .news-swiper1 .img {
        padding: 56.25% 0 0;
    }

    .news-list {
        width: 100%;
    }

    .news-list li a {
        padding: .14rem 0;
    }

    .news-list2 {
        margin: 0 -.1rem;
    }

    .news-list2 > li {
        width: 50%;
        padding: 0 .1rem;
    }

    .news-list2 a {
        padding: .25rem .2rem .2rem;
    }

    .slide-tag h5 {
        margin: 0 .2rem;
    }

    .notice {
        height: auto;
    }

    .notice .slide-tag {
        margin: 0 0 .34rem;
    }

    .title {
        font-size: .19rem;
    }

    .decorate {
        margin: 61px 0 0;
        padding: 35% 0 0;
    }

    .sidebar {
        width: 100%;
        margin: .15rem 0 0;
        padding: 0;
        border-radius: 3px;
        overflow: hidden;
        box-shadow: 0px 0.04rem 0.1rem 0px rgba(165, 186, 199, 0.32);
    }

    .sidebar h3 {
        position: relative;
        font-size: .22rem;
        line-height: .5rem;
        text-align: center;
    }

    .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(../image/daohang.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .sidebar h3.down i {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar h3 .return-sup {
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: 1;
        display: block;
        width: .5rem;
        height: .5rem;
        background-image: url("../image/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;
        background-size: 100%;
    }

    .sidebar .sub-nav li .lv3 {
        margin: 0;
        padding-top: 0;
    }

    .sidebar .sub-nav a {
        height: .5rem;
        text-align: left;
        font-size: .18rem;
        line-height: .5rem;
        padding-left: .2rem;
    }

    .sidebar .sub-nav .down {
        top: 0;
        height: .45rem;
    }

    .main {
        width: 100%;
        padding: .16rem 0 0;
        margin: 0;
        box-shadow: none;
        background: none;
    }

    .main::before {
        display: none;
    }

    .position {
        margin: 0;
    }

    .position h3 {
        font-size: .21rem;
        line-height: .5rem;
    }

    .place {
        line-height: .5rem;
    }

    .list1 a {
        padding: .2rem;
    }

    .teach-list > li {
        width: 33.333%;
    }

    .leader-list .text {
        padding: .4rem .4rem 0 0;
    }

    .leader-list .info {
        margin: .2rem 0 0;
    }

    .article {
        padding: .3rem 0 0 !important;
    }

    .article .sub {
        margin: .2rem 0 0;
        padding: 0 0 .18rem;
    }
}

@media screen and (max-width: 768px) {
    .news-list2 {
        margin: 0;
    }

    .banner .swiper-arrow {
        display: none;
    }

    .notice .column {
        margin-bottom: .2rem;
    }

    .news-swiper1 {
        margin: .35rem 0 0;
    }

    .news-swiper1 .text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 .15rem 0 0;
    }

    .news-swiper1 .title {
        width: calc(100% - 1rem);
        text-overflow: clip;
        white-space: initial;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .news-swiper1 .date1 {
        position: static;
        background: #015198;
    }

    .news-swiper1 .pagination {
        bottom: .86rem;
    }

    .news-list .title {
        text-overflow: clip;
        white-space: initial;
    }

    .news-list2 {
        margin: 0;
    }

    .news-list2 > li {
        width: 100%;
        padding: 0;
    }

    .news-list2 a {
        margin: 0 0 .3rem;
    }

    .news-list2 .title {
        height: auto;
    }

    .slide-tag {
        justify-content: flex-start;
    }

    .slide-tag h5 {
        margin: 0 .2rem 0 0;
        font-size: .2rem;
        line-height: .4rem;
    }

    .link-swiper .title {
        font-size: .18rem;
    }

    .link-swiper .icon {
        width: .8rem;
        height: .8rem;
    }

    .link-swiper .icon img {
        max-height: .34rem;
    }

    .slide-tag h5::after {
        height: .08rem;
    }

    .column h3 {
        font-size: .26rem;
        line-height: .5rem;
    }

    .column h3::after {
        margin: 0;
    }

    .footer .line {
        display: none;
    }

    .footer .container {
        padding: .2rem 0;
        align-items: flex-start;
    }

    .ewm {
        width: 100%;
        margin: .2rem 0 0;
        justify-content: center;
    }

    .notice .slide-tag {
        overflow-x: auto;
    }

    .notice .slide-tag .flex-center {
        width: 855px;
    }

    .notice .slide-tag h5 {
        margin: 0 .25rem 0 0;
    }

    .position {
        padding: 0 0 5px;
        border-bottom: 1px solid #015198;
    }

    .position h3, .position .line {
        display: none;
    }

    .place {
        padding-top: .06rem;
        padding-bottom: .06rem;
        line-height: .22rem;
        white-space: initial;
        background-position-y: 2px;
    }

    .main {
        padding: .18rem 0 0;
    }

    .article {
        padding: .25rem 0 0 !important;
    }

    .article .title {
        font-size: .22rem;
    }

    .article .content {
        padding: .2rem 0 .1rem;
    }

    .article .content p {
        margin: 0 0 .2rem;
    }

    .article .cont-page {
        padding: .15rem 0 .35rem;
    }

    .cont-page {
        padding-right: .1rem;
    }

    .cont-page .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);
    }

    .cont-page .return-list p {
        font-weight: 700;
    }

    .teach-list {
        margin: 0 -7px;
    }

    .teach-list > li {
        padding: 0 7px;
        margin: .2rem 0 0;
    }

    .list3 li {
        padding: .12rem 0;
    }

    .list3 .title {
        width: 100%;
        line-height: .26rem;
        white-space: initial;
        text-overflow: clip;
    }

    .list3 .date {
        line-height: .3rem;
        margin: .08rem 0 0;
    }

    .picture2 {
        margin: 0;
    }

    .picture2 a {
        padding: .2rem 0;
    }

    .picture2 .img-frame {
        width: 2.1rem;
    }

    .picture2 .text {
        width: calc(100% - 2.1rem);
        padding-left: .2rem;
    }

    .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;
    }

    .leader-list .text {
        width: calc(100% - 2.25rem);
        padding: .2rem .2rem 0 0;
    }

    .leader-list .info {
        margin: .1rem 0 0;
        line-height: 180%;
    }

    .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;
    }
}

@media screen and (max-width: 520px) {
    .header {
        padding: 7px 0 !important;
    }

    .header .container {
        width: 94%;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
    }

    .logo {
        height: 40px !important;
    }

    .logo img {
        max-height: 40px !important;
    }

    .mobile-box {
        height: calc(100vh - 54px);
        top: 54px;
    }

    .mobile-box .nav {
        height: calc(100% - 1.2rem);
    }

    .mobile-box .mobile-search {
        flex-wrap: wrap;
    }

    .pad-btn .nav-btn {
        width: 25px;
    }

    .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 .pagination {
        bottom: .1rem;
    }

    .foot-link {
        width: 100%;
    }

    .foot-link .l-box {
        width: 100%;
    }

    .foot-link .l-box h6 {
        text-align: center;
    }

    .sim-select {
        width: 100%;
    }

    .contact {
        width: 100%;
        margin: .15rem 0 0;
        text-align: center;
        line-height: .3rem;
    }

    .list1 a {
        padding: .15rem;
    }

    .link-swiper .pagination {
        margin: .15rem 0 0;
    }

    .news-list2 a {
        margin: 0 0 .22rem;
        padding: .2rem .12rem .14rem
    }

    .list1 .title {
        width: calc(100% - .86rem);
        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;
    }

    .decorate {
        margin: 54px 0 0;
        padding: 45% 0 0;
    }

    .teach-list > li {
        width: 100%;
    }

    .leader-list li {
        margin: .3rem 0 0;
    }

    .leader-list .img-zoom {
        flex-wrap: wrap;
    }

    .leader-list .img-frame {
        margin: .2rem auto 0;
    }

    .leader-list .text {
        width: 100%;
        padding: .2rem;
    }

    .leader-list .title {
        text-align: center;
    }

    .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%;
    }
}