@charset "UTF-8"; /* 网站通用样式 */
@font-face {
    font-family: "SYST900";
    src: url("../fonts/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: #00489c;
}

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: 88%;
    margin: 0 auto;
    font-size: .18rem;
}

.title {
    font-size: 0.2rem;
    font-weight: 400;
    line-height: 0.32rem;
    color: #323232;
    text-align: left;
}

.info {
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.24rem;
    color: #737373;
    text-align: justify;
}

.date {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #00489c;
    text-align: left;
}

.date1 {
    width: .84rem;
    height: .82rem;
    padding: .2rem 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.22rem;
    color: #fff;
    text-align: center;
    background-image: url("../images/f_icon2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.date1 p:first-child {
    font-size: .23rem;
    font-weight: 700;
    line-height: .32rem;
}

/* 网站头部 */
.header {
    position: relative;
    z-index: 10;
    width: 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;
}

.header > .container {
    position: relative;
    z-index: 2;
    padding: .44rem 0 .35rem;
}

.header .right-wrap {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #fff;
}

.header.scroll {
    box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.3);
}

.top-link {
    background: #00489c;
}

.top-link .container {
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.34rem;
    color: #fff;
    text-align: right;
}

.top-link a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #fff;
}

.top-link a:hover {
    text-decoration: underline;
}

.top-link span {
    margin: 0 .15rem;
}

.logo {
    position: absolute;
    top: -0.34rem;
    right: auto;
    bottom: auto;
    left: 0;
    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;
}

.logo img {
    max-height: 1.48rem;
}

.logo .img2 {
    display: none;
}

.nav-btn {
    display: none;
    position: relative;
    z-index: 5;
    width: 28px;
    margin: 0 0 0 .16rem;
    vertical-align: middle;
    cursor: pointer;
}

.nav-btn i {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: #00489c;
    -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 li {
    position: relative;
}

.nav li a {
    position: relative;
    display: block;
    font-size: 0.2rem;
    font-weight: 400;
    line-height: 0.56rem;
    color: #333;
    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 > a::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 0%;
    height: .04rem;
    margin: 0 auto;
    border-radius: 3px;
    background: #00489c;
    -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 {
    width: 100%;
}

.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% - .04rem);
    right: auto;
    bottom: auto;
    left: calc(50% - .75rem);
    z-index: 1;
    width: 1.5rem;
    padding: .07rem 0;
    background: #00489c;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 3px;
    border-top: 0.04rem solid #00489c;
    -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: #00489c;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav .sub-nav dd:last-child a {
    border: none;
}

.nav .sub-nav dd:hover::before {
    right: 0;
    width: 100%;
    opacity: 1;
}

.nav .sub-nav dd:hover a {
    color: #fff;
    border-color: transparent;
}

.nav .sub-nav a {
    z-index: 2;
    width: 100%;
    padding: .1rem 0;
    font-size: .15rem;
    font-weight: 400;
    line-height: .2rem;
    color: #333;
    border-bottom: 1px dashed #eee;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}

.nav .sub-nav .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 11px;
    overflow: hidden;
}

.nav .sub-nav .tri::before {
    display: none;
}

.nav .sub-nav .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: #00489c;
    -webkit-transform: translate(0px, 3px) rotate(45deg);
    -moz-transform: translate(0px, 3px) rotate(45deg);
    -ms-transform: translate(0px, 3px) rotate(45deg);
    -o-transform: translate(0px, 3px) rotate(45deg);
    transform: translate(0px, 3px) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

.pc-search {
    width: 2.7rem;
    border: 1px solid #8fa1d1;
    border-radius: .35rem;
}

.pc-search .form {
    display: flex;
}

.pc-search .input {
    width: calc(100% - .5rem);
    height: .37rem;
    padding: 0 .1rem 0 .2rem;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.35rem;
    color: #333;
    text-align: left;
}

.pc-search .submit {
    width: .5rem;
    height: .37rem;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.17rem;
}

.mobile-box {
    display: none;
    position: fixed;
    top: 89px;
    right: auto;
    bottom: auto;
    left: -100%;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 89px);
    padding: .15rem 4% .4rem;
    background: #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% - 1rem);
    padding: 0 0 .2rem;
    border-top: none;
}

.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 {
    font-weight: 400;
    padding: 0 .1rem;
    line-height: .6rem;
    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(../images/arrow2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 7px;
    cursor: pointer;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mobile-box .nav li .icon.close {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.mobile-box .nav li > a {
    font-size: .2rem;
}

.mobile-box .nav .sub-nav {
    display: none;
    position: static;
    opacity: 1;
    width: 100%;
    padding: 0 0 12px 10px;
    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: .18rem;
    line-height: .44rem;
    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;
    background: #fff;
}

.mobile-box .mobile-search .form {
    display: flex;
    width: 100%;
    border: 1px solid #00489c;
    border-radius: 2px;
    overflow: hidden;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .7rem);
    height: .5rem;
    margin: 0 .1rem 0 0;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.5rem;
    color: #333;
    text-align: left;
    background: #fff;
}

.mobile-box .mobile-search .submit {
    width: .7rem;
    height: .5rem;
    vertical-align: top;
    background-image: url("../images/search2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #00489c;
    background-size: auto;
}

.mobile-box .top-link a {
    color: #00489c;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #00489c;
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

/* 首页 */
.banner {
    width: 100%;
    z-index: 1;
    font-size: 0;
    background: #00489c;
}

.banner .img,.banner .video {
    position: relative;
    display: block;
    width: 100%;
    height: 4.6rem;
    overflow: hidden;
}

.banner .img .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.banner .video .slide-inner{
  transform: none!important;
}
.banner .video video{
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: transform 1s ease-out 0s;
    -moz-transition: transform 1s ease-out 0s;
    -ms-transition: transform 1s ease-out 0s;
    -o-transition: transform 1s ease-out 0s;
    transition: transform 1s ease-out 0s;
}

.banner .swiper-slide-active img {
    -webkit-transition: transform 6.2s ease-out 1s;
    -moz-transition: transform 6.2s ease-out 1s;
    -ms-transition: transform 6.2s ease-out 1s;
    -o-transition: transform 6.2s ease-out 1s;
    transition: transform 6.2s ease-out 1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.banner .pagination {
    position: absolute;
    bottom: .32rem;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .pagination .swiper-pagination-bullet {
    position: relative;
    vertical-align: middle;
    width: .12rem;
    height: .12rem;
    margin: 0 .07rem;
    border-radius: .12rem;
    background: #fff;
    opacity: 1;
    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 .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: .44rem;
    background-color: #fac63f;
}

.banner .swiper-arrow {
    position: absolute;
    top: calc(50% - .3rem);
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .6rem;
    height: .6rem;
    background-image: url("../images/arrow1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: rgba(0, 0, 0, 0.4);
    background-size: 0.15rem;
    border-radius: 50%;
    opacity: .3;
    -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;
    cursor: pointer;
}

.banner .swiper-arrow.swiper-prev {
    left: 5%;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.banner .swiper-arrow.swiper-next {
    right: 5%;
}

.banner:hover {
    opacity: 1;
}

.column {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: .46rem 0 .3rem;
}

.column h3 {
    position: relative;
}

.column h3::before {
    position: absolute;
    top: 0.42rem;
    right: calc(100% + .24rem);
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .68rem;
    height: .16rem;
    background-image: url("../images/f_icon1_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.column h3::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0.1rem;
    left: calc(100% + .28rem);
    z-index: 1;
    content: "";
    width: .55rem;
    height: .21rem;
    background-image: url("../images/f_icon1_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.column .cn {
    padding: 0 0 .3rem;
    letter-spacing: 2px;
    font-size: 0.4rem;
    font-weight: 700;
    line-height: 0.54rem;
    color: #333;
    text-align: center;
}

.column .en {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.24rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #d9d9d9;
    text-align: center;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.column .more {
    position: absolute;
    top: 0.28rem;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.column.white .cn {
    color: #fff;
}

.column.white .en {
    color: rgba(255, 255, 255, 0.35);
}

.column.white .more {
    color: #fff;
    border-color: #fff;
}

.column.white .more::before, .column.white .more::after {
    background: #fff;
}

.more {
    display: block;
    position: relative;
    padding: 0 2px;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.26rem;
    color: #888;
    text-align: left;
}

.more::before {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 1px;
    background: #888;
    -webkit-transition: all 0.3s ease-out 0.3s;
    -moz-transition: all 0.3s ease-out 0.3s;
    -ms-transition: all 0.3s ease-out 0.3s;
    -o-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
}

.more::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #00489c;
    -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: #00489c;
    font-weight: 700;
    border-color: transparent;
}

.more:hover::before {
    left: auto;
    right: 0;
    width: 0;
    transition-delay: 0s;
}

.more:hover::after {
    right: auto;
    left: 0;
    width: 100%;
    transition-delay: .3s;
}

.home1 {
    padding: 0 0 .7rem;
    background-image: url("../images/index_bg1.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: cover;
}

.home1 .l-box {
    width: 48.75%;
}

.home1 .r-box {
    width: 48.4375%;
}

.home1 .b-box {
    width: 100%;
}

.first-news {
    overflow: visible;
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.08);
}

.first-news .img {
    padding: 5rem 0 0;
}

.first-news .text {
    position: relative;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0rem;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: .7rem .26rem .15rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}

.first-news .text .r {
    width: calc(100% - 1rem);
}

.first-news .date1 {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -0.2rem;
    left: 0.26rem;
    z-index: 1;
}

.first-news .source {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.24rem;
    color: #fac63f;
    text-align: left;
}

.first-news .source::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .2rem;
    height: 1px;
    margin: 0 0 0 .05rem;
    background: #fac63f;
}

.first-news .title {
    color: #fff;
    font-weight: 700;
}

.news-list1 .img-zoom {
    background: #fff;
    box-shadow: 0 0.05rem 0.15rem 0 rgba(0, 0, 0, 0.1);
}

.news-list1 li {
    width: 47.7%;
}

.news-list1 .img {
    padding: 2.4rem 0 0;
}

.news-list1 .text {
    padding: .12rem .26rem .35rem;
}

.news-list1 .date {
    display: -ms-flexbox;
    display: flex;
    color: #00489c;
}

.news-list1 .source {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0 0 0 .12rem;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.24rem;
    color: #00489c;
    text-align: left;
}

.news-list1 .source::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .2rem;
    height: 1px;
    margin: 0 0 0 .05rem;
    background: #fac63f;
}

.news-list1 .title {
    height: .64rem;
    margin: .12rem 0 .11rem;
    font-weight: 700;
    line-height: .32rem;
}

.news-list1 .info {
    height: .96rem;
}

.news-list2 {
    margin: .4rem 0 0;
}

.news-list2 li {
    width: 22.5%;
}

.news-list2 a {
    display: block;
    padding: .2rem .3rem;
}

.news-list2 .line {
    width: 1px;
    height: 1.7rem;
    background: #e5e5e5;
}

.news-list2 .date {
    display: -ms-flexbox;
    display: flex;
    color: #00489c;
}

.news-list2 .source {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0 0 0 .12rem;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.24rem;
    color: #00489c;
    text-align: left;
}

.news-list2 .source::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .2rem;
    height: 1px;
    margin: 0 0 0 .05rem;
    background: #fac63f;
}

.news-list2 .title {
    height: 1.02rem;
    margin: .14rem 0 0;
    line-height: .34rem;
}

.home2 {
    padding: .15rem 0 .75rem;
    background-image: url("../images/index_bg2.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.news-list3 {
    font-size: 0;
    margin: 0 -0.3rem;
}

.news-list3 > li {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0 0.3rem;
}

.news-list3 li {
    margin: 0 0 .28rem;
}

.news-list3 a {
    position: relative;
    z-index: 1;
    display: block;
    padding: .24rem .12rem .22rem;
}

.news-list3 a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: .1rem 0 .25rem 0;
}

.news-list3 .date {
    padding: 0 .14rem;
    color: #9a9a9a;
}

.news-list3 .date span {
    font-size: .32rem;
    font-weight: 700;
}

.news-list3 .line {
    position: relative;
    height: 1px;
    margin: .2rem 0 .12rem;
    background: #f1e9d9;
}

.news-list3 .line i {
    position: absolute;
    top: -3px;
    right: auto;
    bottom: auto;
    left: 0.27rem;
    z-index: 1;
    width: 7px;
    height: 7px;
}

.news-list3 .line i::before {
    position: relative;
    z-index: 1;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #fac63f;
    border-radius: 50%;
}

.news-list3 .line i::after {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(241, 233, 217, 0.8);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -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;
}

.news-list3 .title {
    height: .96rem;
    padding: 0 .07rem;
}

.home3 {
    padding: 0 0 .8rem;
}

.news-swiper1 {
    padding: 0 .12rem .12rem;
}

.news-swiper1 .swiper-slide {
    display: block;
    padding: .32rem .5rem .3rem;
    box-shadow: 0 0.03rem 0.12rem 0 rgba(0, 0, 0, 0.1);
}

.news-swiper1 .swiper-slide > .flex-between {
    margin: 0 0 .15rem;
}

.news-swiper1 .img-box {
    width: 1.23rem;
    height: 1.23rem;
    padding: .08rem;
    background-image: url("../images/f_icon3.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.news-swiper1 .img-box .img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 10%;
    background-color: transparent;
    background-size: cover;
    border-radius: 50%;
}

.news-swiper1 .title {
    width: calc(100% - 1.42rem);
    height: 1.28rem;
    font-weight: 700;
}

.news-swiper1 .info {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #333;
    line-height: .3rem;
}

.news-swiper1 .info img {
    width: .2rem;
    margin: 0 .13rem 0 0;
}

.news-swiper1 .control {
    margin: 0 0 .4rem;
}

.news-swiper1 .swiper-arrow {
    font-family: "宋体";
    font-size: .25rem;
    width: .3rem;
    line-height: .3rem;
    color: #a7a7a7;
    text-align: center;
    cursor: pointer;
}

.news-swiper1 .swiper-arrow:hover {
    color: #00489c;
}

.news-swiper1 .pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .2rem;
}

.news-swiper1 .pagination::before {
    position: absolute;
    top: 50%;
    right: calc(100% + .02rem);
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .14rem;
    height: 1px;
    background: #adadad;
}

.news-swiper1 .pagination::after {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: calc(100% + .02rem);
    z-index: 1;
    content: "";
    width: .14rem;
    height: 1px;
    background: #adadad;
}

.news-swiper1 .pagination .swiper-pagination-bullet {
    position: relative;
    vertical-align: middle;
    width: .09rem;
    height: .09rem;
    margin: 0 .12rem;
    border-radius: 50%;
    background: none;
    border: 1px solid #adadad;
    opacity: 1;
    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;
}

.news-swiper1 .pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: 50%;
    right: calc(100% + .06rem);
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: .1rem;
    height: 1px;
    background: #adadad;
}

.news-swiper1 .pagination .swiper-pagination-bullet::after {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: calc(100% + .06rem);
    z-index: 1;
    content: "";
    width: .1rem;
    height: 1px;
    background: #adadad;
}

.news-swiper1 .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: .17rem;
    height: .17rem;
    border-color: transparent;
    background-image: url("../images/f_icon7.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.home4 {
    position: relative;
    z-index: 2;
    padding: .15rem 0 0;
    background-image: url("../images/index_bg3.jpg");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: transparent;
    background-size: auto 4.3rem;
}

.home4 .column .en {
    font-size: .18rem;
}

.home4 .swiper-container {
    padding: .3rem .12rem .2rem;
}

.home4 .swiper-slide {
    display: block;
    padding: .28rem .36rem .5rem;
    background: #fff;
    box-shadow: 0 0.06rem 0.12rem 0 rgba(0, 0, 0, 0.1);
}

.home4 .date {
    position: relative;
    padding: 0 0 .08rem;
    margin: 0 0 .15rem;
    color: #333;
    line-height: .25rem;
    color: #00489c;
}

.home4 .title {
    margin: 0 0 .15rem;
}

.home4 .info {
}

.home4 .swiper-arrow {
    position: absolute;
    top: 1.4rem;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .6rem;
    font-family: "宋体";
    font-size: .54rem;
    line-height: .6rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.home4 .swiper-arrow.swiper-prev {
    left: -.7rem;
}

.home4 .swiper-arrow.swiper-next {
    right: -.7rem;
}

.slide-box .slide-tag {
    cursor: pointer;
}

.slide-box .slide-tag:first-child {
    margin: 0 2.2rem 0 0;
}

.slide-box .slide-tag::before {
    top: 0.3rem;
    opacity: 0;
    visibility: hidden;
    -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-box .slide-tag::after {
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -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-box .slide-tag .cn {
    font-weight: 400;
}

.slide-box .slide-tag .en {
    opacity: 0;
    bottom: -.15rem;
    visibility: hidden;
    -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-box .slide-tag.on::before {
    top: 0.42rem;
    opacity: 1;
    visibility: visible;
}

.slide-box .slide-tag.on::after {
    bottom: 0.1rem;
    opacity: 1;
    visibility: visible;
}

.slide-box .slide-tag.on .cn {
    font-weight: 700;
}

.slide-box .slide-tag.on .en {
    opacity: 1;
    bottom: 0;
    visibility: visible;
}

.slide-box .more {
    display: none;
}

.slide-box .more.on {
    display: block;
}

.slide-box .slide-item {
    position: relative;
    z-index: 1;
    display: none;
}

.slide-box .slide-item.on {
    display: block;
    animation: ani-up .75s;
}

@keyframes ani-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0.18rem);
        -moz-transform: translateY(0.18rem);
        -ms-transform: translateY(0.18rem);
        -o-transform: translateY(0.18rem);
        transform: translateY(0.18rem);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.home5 {
    padding: .6rem 0 .7rem;
    background-image: url("../images/index_bg4.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: cover;
}

.home5 .l-box, .home5 .r-box {
    width: 47.8%;
}

.news-swiper4 {
    margin: 0 -.12rem;
    padding: 0 .12rem;
}

.news-swiper4 .control {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .25rem 0 0;
}

.news-swiper4 .swiper-arrow {
    width: .4rem;
    height: .3rem;
    background-image: url("../images/arrow3.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.36rem;
}

.news-swiper4 .swiper-arrow.swiper-prev {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.news-swiper4 .pagination {
    display: -ms-flexbox;
    display: flex;
    width: auto;
    padding: 0 .05rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.25rem;
    color: #fac63f;
    text-align: center;
}

.news-swiper4 .pagination span {
    display: block;
    width: .25rem;
    margin: 0 .12rem;
    border-radius: 50%;
    background: #fac63f;
    color: #fff;
}

.news-list4 {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-list4 li {
    width: 48.5%;
    margin: .2rem 0 0;
}

.news-list4 a {
    display: block;
    padding: .1rem .22rem .16rem;
    background-image: url("../images/list_bg2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100% 100%;
}

.news-list4 .date {
    padding: 0 0 0 .24rem;
    color: #333;
    background-image: url("../images/f_icon5.png");
    background-repeat: no-repeat;
    background-position: 2px 50%;
    background-color: transparent;
    background-size: 0.14rem;
}

.news-list4 .title {
    height: .9rem;
    line-height: .3rem;
}

.news-list5 li {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.news-list5 .title {
    width: calc(100% - 1.4rem);
    line-height: .47rem;
}

.news-list5 .title::before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    margin: 0 .1rem 2px 0;
    background: #fac63f;
    border-radius: 50%;
}

.news-list5 .date {
    font-size: .15rem;
    color: #666;
    line-height: .47rem;
}

.over-hide {
    overflow: hidden;
}

.home6 {
    position: relative;
    z-index: 1;
    height: 2.3rem;
    background-image: url("../images/index_bg5.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: transparent;
    background-size: 100%;
}

.home6 .container {
    position: relative;
    padding: 1.2rem 0 0;
}

.home6 .bg {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 0 0 36.25%;
}

.home6 .bg img {
    width: 7.54rem;
}

.home6 .bg i {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px dashed #ddd4eb;
    border-radius: 50%;
}

.home6 .bg i:nth-of-type(1) {
    width: 9.9rem;
    height: 9.9rem;
}

.home6 .bg i:nth-of-type(2) {
    width: 12.7rem;
    height: 12.7rem;
}

.home6 .bg i:nth-of-type(3) {
    width: 15.2rem;
    height: 15.2rem;
}

.data-swiper {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 2;
    width: 9rem;
    margin: 2.25rem 0 0 15.5%;
    overflow: visible;
}

.data-list {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.data-list li {
    position: relative;
    width: 1.7rem;
    height: 1.7rem;
}

.data-list .box {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.7rem;
    height: 1.7rem;
    padding: .2rem 0 0;
    background: rgba(0, 71, 201, 0.7);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.data-list .data {
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.42rem;
    color: #fff;
    text-align: left;
    letter-spacing: -1px;
    -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;
    white-space: nowrap;
}

.data-list .data .num {
    font-family: "SYST900";
    font-size: .4rem;
    letter-spacing: 2px;
}

.data-list .data sub {
    font-family: "宋体";
    font-size: .3rem;
}

.data-list .title {
    font-size: .18rem;
    color: #fff;
    text-align: center;
}

.data-list.d1 li:nth-child(2) {
    margin: -.75rem 0 0 1.9rem;
}

.data-list.d1 li:nth-child(3) {
    margin: -1.3rem 0 0 1.3rem;
}

.data-list.d1 li:nth-child(3) .box {
    background: rgba(250, 198, 63, 0.8);
}

.data-list.d1 li:nth-child(4) {
    margin: .4rem 0 0 1rem;
}

.data-list.d1 li:nth-child(5) {
    margin: .7rem 0 0 1rem;
}

.data-list.d1 li:nth-child(5) .box {
    background: rgba(250, 198, 63, 0.8);
}

.data-list.d2 li:nth-child(1) {
    margin: -.75rem 0 0 -.2rem;
}

.data-list.d2 li:nth-child(2) {
    margin: -.2rem 0 0 1.5rem;
}

.data-list.d2 li:nth-child(3) {
    margin: -1rem 0 0 1.3rem;
}

.data-list.d2 li:nth-child(3) .box {
    background: rgba(250, 198, 63, 0.8);
}

.data-list.d2 li:nth-child(4) {
    margin: 1rem 0 0 1rem;
}

.data-list.d2 li:nth-child(5) {
    margin: .7rem 0 0 1rem;
}

.data-list.d2 li:nth-child(5) .box {
    background: rgba(250, 198, 63, 0.8);
}

.data-list.d3 li:nth-child(1) {
    margin: .5rem 0 0 0rem;
}

.data-list.d3 li:nth-child(2) {
    margin: -.75rem 0 0 1.9rem;
}

.data-list.d3 li:nth-child(3) {
    margin: -.8rem 0 0 1.3rem;
}

.data-list.d3 li:nth-child(3) .box {
    background: rgba(250, 198, 63, 0.8);
}

.data-list.d3 li:nth-child(4) {
    margin: .4rem 0 0 1rem;
}

.data-list.d3 li:nth-child(5) {
    margin: .7rem 0 0 1.5rem;
}

.data-list.d3 li:nth-child(5) .box {
    background: rgba(250, 198, 63, 0.8);
}

@keyframes ani-zoom {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* 网站底部 */
.footer {
    position: relative;
    z-index: 3;
    background: #00489c;
}

.footer .container {
    padding: .22rem 0 .15rem;
}

.foot-img img {
    max-height: .62rem;
}

.foot-link {
    width: 7.9rem;
}

.foot-link h6 {
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
}

.foot-link .link-box {
    margin: .06rem 0 0;
}

.foot-link .link-box a {
    display: inline-block;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
    margin: 0 .32rem 0 0;
}

.foot-link .link-box a:last-child {
    margin: 0;
}

.ewm {
    display: -ms-flexbox;
    display: flex;
}

.ewm li {
    margin: 0 0 0 .2rem;
}

.ewm img {
    width: 1.07rem;
}

.ewm p {
    margin: .06rem 0 0;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #fff;
    text-align: center;
}

.copy {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: .06rem .1rem;
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #fff;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.copy p {
    padding: 0 .1rem;
}

.copy a {
    color: #fff;
}

/* 内页样式 */
.decorate {
    position: relative;
    padding: 4.6rem 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;
}

.sidebar {
    position: relative;
    z-index: 3;
    width: 3.1rem;
    margin: -1.2rem 0 .6rem;
}

.sidebar h3 {
    position: relative;
    z-index: 1;
    font-size: 0.32rem;
    font-weight: 700;
    line-height: 1.2rem;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    background: #0f399b;
}

.sidebar .sub-nav {
    position: relative;
    padding: 0 .28rem;
    border-left: .12rem solid #0f399b;
    background: rgba(0, 0, 0, 0.03);
}

.sidebar .sub-nav li {
    position: relative;
    z-index: 1;
    border-bottom: 1px dashed rgba(72, 116, 203, 0.2);
}

.sidebar .sub-nav li:last-child {
    border: none;
}

.sidebar .sub-nav li.cur {
    border-bottom: 1px solid #00489c;
}

.sidebar .sub-nav li.cur::after {
    opacity: 1;
}

.sidebar .sub-nav li.cur > a {
    color: #00489c !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: #00489c;
    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: .24rem .4rem .24rem .24rem;
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.26rem;
    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: .74rem;
    background-image: url("../images/icon12_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.08rem;
    cursor: pointer;
    opacity: .32;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar .sub-nav .down.has {
    z-index: 3;
}

.sidebar .sub-nav .down.close {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar .sub-nav .lv3 {
    display: none;
    margin: -.1rem 0 0;
    padding: 0 0 .15rem .12rem;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 .08rem .2rem;
    font-size: .16rem;
    line-height: .22rem;
}

.sidebar .sub-nav .lv3 a::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #00489c;
    margin: 0 .1rem 0 0;
    content: "";
    border-radius: 50%;
}

.sidebar .sub-nav .lv3 a:hover {
    color: #00489c;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #00489c;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #00489c;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #00489c;
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.8rem);
    min-height: 4rem;
    margin: .3rem 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: 700;
    line-height: 0.56rem;
    color: #333;
    text-align: left;
    border-bottom: 2px solid #00489c;
    margin: 0 0 -2px;
}

.position h3 i {
    display: inline-block;
    margin: 0 .12rem 0 0;
    border: 0.07rem solid rgba(0, 20, 137, 0.2);
    border-radius: 50%;
}

.position h3 i::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 7px;
    height: 7px;
    background: #00489c;
    border-radius: 50%;
}

.place {
    font-size: 0.14rem;
    font-weight: 400;
    line-height: 0.6rem;
    color: #999;
    text-align: left;
    padding: 0 0 0 .28rem;
    background-image: url(../images/place.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.21rem;
}

.place a {
    position: relative;
    display: inline-block;
    color: #999;
}

.place a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.18rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #00489c;
    -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: #00489c;
}

.place a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.list1 {
    margin: .1rem 0 0;
}

.list1 li {
    position: relative;
}

.list1 a {
    position: relative;
    padding: .2rem .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: #00489c;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.list1 .date1 {
    background-image: url("../images/f_icon2_2.png");
}

.list1 .line {
    width: 1px;
    height: .5rem;
    background: #dfdfdf;
}

.list1 .text {
    width: calc(100% - 1.5rem);
}

.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: .08rem 0 0;
    color: #777;
}

.picture2 {
    margin: .2rem 0 0;
}

.picture2 li {
    position: relative;
}

.picture2 li.no-img .text {
    width: 100%;
    padding-left: 0;
}

.picture2 a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .24rem .2rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom: 1px dashed #cacaca;
}

.picture2 .img-frame {
    width: 2.6rem;
}

.picture2 .img-frame .img {
    padding: 60% 0 0;
}

.picture2 .text {
    position: relative;
    width: calc(100% - 2.7rem);
    padding: .1rem 0 0 .2rem;
}

.picture2 .date {
    margin: .08rem 0 0;
    padding: 0 0 0 .24rem;
    color: #999;
    background-image: url("../images/f_icon5.png");
    background-repeat: no-repeat;
    background-position: 2px 50%;
    background-color: transparent;
    background-size: 0.14rem;
}

.picture2 .title {
    line-height: .3rem;
    color: #222;
}

.picture2 .info {
    max-height: .48rem;
    margin: .1rem 0 0;
}

.picture3 {
    font-size: 0;
    margin: 0 -0.15rem;
}

.picture3 > li {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
    padding: 0 0.15rem;
}

.picture3 .img-zoom {
    margin: .3rem 0 0;
    padding: .1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: #fcfeff;
    box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32);
}

.picture3 .img {
    padding: 65% 0 0;
}

.picture3 .text {
    padding: .15rem 0 .05rem;
}

.picture3 .title {
    font-family: "SYST400";
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.36rem;
    color: #333;
    text-align: center;
}

.teach-column {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .2rem 0 0;
    border-bottom: 1px solid #ddd;
}

.teach-column h5 {
    margin: 0 0 -1px;
    font-size: 0.22rem;
    font-weight: 700;
    line-height: 0.5rem;
    color: #333;
    text-align: left;
    border-bottom: 3px solid #00489c;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}

.teach-list {
    font-size: 0;
    margin: 0 -0.24rem;
    margin-bottom: .3rem;
}

.teach-list > li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 0.24rem;
}

.teach-list li {
    margin: .44rem 0 0;
}

.teach-list .img-zoom {
    z-index: 1;
    padding: 0 .04rem .04rem;
    -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-list .img-zoom::after {
    position: absolute;
    top: 0.04rem;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: 100%;
    height: calc(100% - .04rem);
    background: #00489c;
}

.teach-list .img-zoom:hover {
    box-shadow: 0px 4px 0.15rem 0px rgba(14, 65, 150, 0.5);
}

.teach-list .img-frame .img {
    padding: 129.4% 0 0;
}

.teach-list .title {
    color: #fff;
    line-height: .4rem;
    text-align: center;
}

.article {
    padding: .4rem 0 .2rem;
}

.article .title {
    font-size: 0.27rem;
    font-weight: 400;
    line-height: 140%;
    color: #333;
    text-align: center;
}

.article .sub-title1 {
    margin: 0 0 .08rem;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.32rem;
    color: #000;
    text-align: center;
}

.article .sub-title2 {
    margin: .08rem 0 0;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.32rem;
    color: #666;
    text-align: center;
}

.article .sub {
    margin: 0 0 .1rem;
    padding: .14rem 0 .3rem;
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 0.22rem;
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.article .sub span {
    margin: 0 .1rem;
}

.article .sub span span {
    margin: 0;
}

.article .content {
    padding: .3rem 0 .2rem;
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 200%;
    color: #333;
    text-align: justify;
}

.article .content p {
    text-indent: 2em;
    word-break: break-all;
    margin: 0 0 .25rem;
}

.article .content img, .article .content video {
    max-width: 100%;
    height: auto !important;
}

.article .content video {
    display: block;
    margin: 0 auto;
}

.article .content table {
    max-width: 100%;
    margin: 0 auto .2rem;
}

.article .content table td {
    word-break: break-all;
}

.article .content table p {
    text-indent: 0;
    margin: 0;
}

.article .content table img, .article .content table video, .article .content table iframe {
    margin-top: 0;
    margin-bottom: 0;
}

.article .content iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto .2rem;
}

.article .cont-page {
    position: relative;
    padding: .3rem 90px .28rem .1rem;
    border-top: 2px solid #00489c;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 0.28rem;
    color: #666;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.article .cont-page a span {
    position: relative;
}

.article .cont-page a span::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 1px;
    background: #00489c;
    -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: #00489c;
    font-weight: 700;
}

.article .cont-page a:hover span::after {
    width: 100%;
}

.article .return-list {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    text-align: center !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.article .return-list p {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 0.17rem;
    font-weight: 400;
    line-height: 200%;
    color: #00489c;
    text-align: center;
}

.article .return-list:hover p {
    font-weight: 700;
}

.article ul a, .article a {
    color: #1852d8;
}

.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: 400;
    line-height: 0.2rem;
    color: #999;
    text-align: center;
}

.article .share .share-icon {
    display: flex;
    justify-content: center;
}

.article .share .share-icon .s-icon {
    width: .45rem;
    height: .45rem;
    margin: 0 .07rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: 60%;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    -ms-transition: all .3s;
    border: 1px solid #eee;
}

.article .share .share-icon .s-icon:hover {
    box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.15);
}

.article .share .share-icon .s-icon.sina {
    background-image: url(../images/share4_2.png);
}

.article .share .share-icon .s-icon.wechat {
    position: relative;
    background-image: url(../images/share4_1.png);
}

.article .share .share-icon .s-icon.qq {
    background-image: url(../images/share4_3.png);
}

.article .share .share-icon .s-icon.qzone {
    background-image: url(../images/share4_4.png);
}

.article .share .qrid_zz {
    position: absolute;
    bottom: 120%;
    right: 0;
    left: 50%;
    z-index: 1000;
    display: none;
    width: 1.5rem;
    height: auto;
    padding: .14rem .14rem .06rem;
    background: #fff;
    border-radius: 5px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-shadow: 0 0 0.14rem 0 rgba(0, 0, 0, 0.2);
}

.article .share .qrid_zz #qrid {
    width: 100%;
    height: 100%;
}

.article .share .qrid_zz #qrid canvas {
    vertical-align: top;
    width: 100%;
    height: 100%;
}

.article .share .qrid_zz p {
    font-size: .14rem;
    line-height: .3rem;
    color: #666;
    text-align: center;
    margin: 4px 0 0;
}

.article .attach-box h6 {
    white-space: nowrap;
    font-size: .18rem;
    line-height: .32rem;
    color: #333;
    font-weight: 700;
}

.article .attach-list {
    flex: 1;
    width: 100%;
    margin: 0 0 0 .05rem;
}

.article .attach-list li {
    color: #333;
    font-size: .17rem;
    line-height: .32rem;
}

.article .attach-list a {
    color: #00489c;
    padding-left: .28rem;
    background: url("../images/f_icon8.png") no-repeat 0% 50% / .22rem;
}

#to-top {
    position: fixed;
    bottom: 20%;
    right: -1rem;
    z-index: 100;
    width: .5rem;
    height: .5rem;
    background: url("../images/toTop.png") no-repeat 50% 50% #fac63f;
    background-size: .24rem;
    border-radius: .06rem;
    box-shadow: 0 0 .08rem 0 rgba(0, 0, 0, 0.3);
    transition: all .6s;
    cursor: pointer;
}

#to-top:hover {
    background-color: #fac63f;
}

#to-top.show {
    right: .2rem;
}

/* 翻页样式 */
#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: .11rem .13rem;
    color: #00489c;
    border: 1px solid #e2e2e2;
    border-radius: .3rem;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #00489c;
    font-weight: bold;
    color: #fff;
    border-color: #00489c;
}

#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: .36rem;
    line-height: .34rem;
    vertical-align: bottom;
}

@media screen and (min-width: 1025px) {
    .news-list1 .img-zoom:hover .title {
        color: #00489c;
    }

    .news-list2 a {
        position: relative;
        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;
        perspective: 1000px;
    }

    .news-list2 a::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: -1;
        content: "";
        width: 100%;
        height: 100%;
        background: #00489c;
        opacity: 0;
        transform-style: preserve-3d;
        -webkit-transform: rotateX(25deg);
        -moz-transform: rotateX(25deg);
        -ms-transform: rotateX(25deg);
        -o-transform: rotateX(25deg);
        transform: rotateX(25deg);
        -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.16rem 0 rgba(0, 0, 0, 0.2);
    }

    .news-list2 a:hover::after {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .news-list2 a:hover .title {
        color: #fff;
        font-weight: 700;
    }

    .news-list2 a:hover .date {
        color: #fff;
    }

    .news-list2 a:hover .source {
        color: #fff;
    }

    .news-list3 a {
        -webkit-transition: transform 0.3s ease-out 0s;
        -moz-transition: transform 0.3s ease-out 0s;
        -ms-transition: transform 0.3s ease-out 0s;
        -o-transition: transform 0.3s ease-out 0s;
        transition: transform 0.3s ease-out 0s;
    }

    .news-list3 a::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: -2;
        content: "";
        width: calc(100% - .1rem);
        height: calc(100% - .1rem);
        background-image: url("../images/list_bg1.png");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 100% 100%;
        opacity: 0;
        visibility: hidden;
        -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-list3 a:hover {
        -webkit-transform: translate(5px, -5px);
        -moz-transform: translate(5px, -5px);
        -ms-transform: translate(5px, -5px);
        -o-transform: translate(5px, -5px);
        transform: translate(5px, -5px);
    }

    .news-list3 a:hover::after {
        top: .18rem;
        right: .2rem;
        opacity: 1;
        visibility: visible;
    }

    .news-list3 a:hover .date {
        color: #fac63f;
    }

    .news-list3 a:hover .line i::after {
        width: 15px;
        height: 15px;
        opacity: 1;
    }

    .news-list3 a:hover .title {
        font-weight: 700;
        color: #00489c;
    }

    .news-swiper1 .swiper-slide {
        position: relative;
        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;
        perspective: 1000px;
    }

    .news-swiper1 .swiper-slide::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: -1;
        content: "";
        width: 100%;
        height: 100%;
        background: #00489c;
        opacity: 0;
        transform-style: preserve-3d;
        -webkit-transform: rotateX(30deg);
        -moz-transform: rotateX(30deg);
        -ms-transform: rotateX(30deg);
        -o-transform: rotateX(30deg);
        transform: rotateX(30deg);
        -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.16rem 0 rgba(0, 0, 0, 0.2);
        border-radius: .45rem 0 0 0;
    }

    .news-swiper1 .swiper-slide:hover {
        border-radius: .45rem 0 0 0;
    }

    .news-swiper1 .swiper-slide:hover::after {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .news-swiper1 .swiper-slide:hover .title, .news-swiper1 .swiper-slide:hover .info {
        color: #fff;
    }

    .home4 .swiper-slide {
        -webkit-transition: border-radius 0.3s ease-out 0s;
        -moz-transition: border-radius 0.3s ease-out 0s;
        -ms-transition: border-radius 0.3s ease-out 0s;
        -o-transition: border-radius 0.3s ease-out 0s;
        transition: border-radius 0.3s ease-out 0s;
        perspective: 1000px;
    }

    .home4 .swiper-slide::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: -1;
        content: "";
        width: 100%;
        height: 100%;
        background: #00489c;
        opacity: 0;
        transform-style: preserve-3d;
        -webkit-transform: rotateX(30deg);
        -moz-transform: rotateX(30deg);
        -ms-transform: rotateX(30deg);
        -o-transform: rotateX(30deg);
        transform: rotateX(30deg);
        -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.16rem 0 rgba(0, 0, 0, 0.2);
        border-radius: 0 .45rem 0 0;
    }

    .home4 .swiper-slide:hover {
        background: transparent;
        border-radius: 0 .45rem 0 0;
    }

    .home4 .swiper-slide:hover::after {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .home4 .swiper-slide:hover .date {
        color: #fac63f;
    }

    .home4 .swiper-slide:hover .title {
        color: #fff;
        font-weight: 700;
    }

    .home4 .swiper-slide:hover .info {
        color: rgba(255, 255, 255, 0.6);
    }

    .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 {
        border-radius: .4rem 0 0 0;
        box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.2);
    }

    .news-list4 a:hover .date {
        color: #fac63f;
    }

    .news-list4 a:hover .title {
        color: #00489c;
        font-weight: 700;
    }

    .news-list5 li {
        position: relative;
    }

    .news-list5 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 1px;
        background: #00489c;
    }

    .news-list5 li:hover::after {
        width: 100%;
        -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;
    }

    .news-list5 li:hover .title {
        font-weight: 700;
        color: #00489c;
    }

    .news-list5 li:hover .date {
        color: #00489c;
    }

    .data-list li {
        cursor: pointer;
    }

    .data-list li:hover .box {
        width: 2.4rem;
        height: 2.4rem;
        background: #00489c;
    }

    .data-list li:hover .box::before {
        animation: ani-zoom 1.6s linear infinite;
    }

    .data-list li:hover .box::after {
        animation: ani-zoom 1.6s linear .8s infinite;
    }

    .data-list li:hover .data {
        line-height: .7rem;
    }

    .data-list li:hover .data .num {
        font-size: .6rem;
    }

    .data-list li:hover .title {
        font-size: .24rem;
    }

    .data-list li:nth-of-type(3) .box::after, .data-list li:nth-of-type(3) .box::before, .data-list li:nth-of-type(5) .box::after, .data-list li:nth-of-type(5) .box::before {
        background: #fac63f;
    }

    .data-list li:nth-of-type(3):hover .box, .data-list li:nth-of-type(5):hover .box {
        background: #fac63f;
    }

    .data-list .box {
        -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;
    }

    .data-list .box::after, .data-list .box::before {
        position: absolute;
        top: 0%;
        right: auto;
        bottom: auto;
        left: 0%;
        z-index: -1;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 0;
        background: #00489c;
        border-radius: 50%;
    }

    .foot-link a {
        position: relative;
    }

    .foot-link a::after {
        position: absolute;
        top: auto;
        right: 0;
        bottom: -4px;
        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 a:hover {
        font-weight: 700;
    }

    .foot-link a:hover::after {
        left: 0;
        right: auto;
        width: 100%;
    }

    .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: #00489c;
        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: #00489c;
        opacity: 0;
        transform-style: preserve-3d;
        -webkit-transform: rotateX(25deg);
        -moz-transform: rotateX(25deg);
        -ms-transform: rotateX(25deg);
        -o-transform: rotateX(25deg);
        transform: rotateX(25deg);
        -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.16rem 0 rgba(0, 0, 0, 0.2);
    }

    .picture2 li:hover a {
        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: #fac63f;
    }

    .picture3 .img-zoom:hover {
        border-color: #00489c;
        background: #00489c;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
        font-family: "SYST700";
    }

    .teach-list .img-zoom::before {
        -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-list .img-zoom:hover::before {
        box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.22);
    }

    .teach-list .img-zoom:hover .title {
        font-weight: 700;
    }
}

@media screen and (max-width: 1680px) {
    .foot-link {
        width: 7.4rem;
    }

    .foot-link .link-box a {
        margin: 0 .15rem 0 0;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 90px !important;
    }

    .header {
        transition: all .2s;
    }

    .header > .container {
        padding: .14rem 0 .2rem;
    }

    .header > .nav {
        display: none;
    }

    .top-link .container {
        font-size: 12px;
        line-height: .28rem;
    }

    .pc-search {
        display: none;
    }

    .logo {
        height: 75px;
        top: -17px;
    }

    .logo img {
        max-height: 75px !important;
    }

    .nav-btn {
        display: block;
    }

    .mobile-box {
        display: block;
    }

    #to-top {
        display: none !important;
    }

    .container {
        max-width: 92%;
    }

    .banner .img {
        height: auto;
        padding: 40% 0 0;
    }

    .banner .pagination {
        bottom: .15rem;
    }

    .banner .swiper-arrow {
        width: .4rem;
        height: .4rem;
        opacity: 1;
        background-size: .1rem;
    }

    .title {
        font-size: .19rem;
    }

    .column {
        justify-content: flex-start;
        margin: .3rem 0 .2rem;
    }

    .column h3::before {
        display: none;
    }

    .column h3::after {
        width: .45rem;
        bottom: .2rem;
        left: calc(100% + .1rem);
    }

    .column .cn {
        padding: 0 0 .2rem;
        font-size: .32rem;
        line-height: .4rem;
        letter-spacing: 0;
    }

    .column .en {
        left: 0;
        transform: none;
        font-size: .18rem;
        line-height: .2rem;
    }

    .column .more {
        top: .16rem;
    }

    .home1 {
        padding: 0 0 .2rem;
    }

    .home1 .l-box {
        width: 100%;
    }

    .home1 .r-box {
        width: 100%;
        margin: .24rem 0 0;
    }

    .first-news .img {
        padding: 60% 0 0;
    }

    .first-news .date1 {
        bottom: .1rem;
    }

    .news-list1 .img {
        padding: 60% 0 0;
    }

    .news-list1 .title {
        margin-top: 5px;
    }

    .news-list2 li {
        width: 46%;
        margin: 0 0 .26rem;
    }

    .news-list2 .line {
        height: 1.5rem;
    }

    .news-list2 .line:nth-of-type(2) {
        display: none;
    }

    .news-list2 a {
        padding: 0;
    }

    .news-list2 .title {
        height: .68rem;
        -webkit-line-clamp: 2;
    }

    .home2 {
        padding: 1px 0 .3rem;
    }

    .news-list3 {
        margin: 0 -.1rem;
    }

    .news-list3 > li {
        width: 50%;
        padding: 0 .1rem;
    }

    .news-list3 .line {
        margin: .1rem 0;
    }

    .news-list3 .title {
        height: .64rem;
        -webkit-line-clamp: 2;
    }

    .home3 {
        padding-bottom: .3rem;
    }

    .news-swiper1 .control {
        margin: 0 0 .2rem;
    }

    .news-swiper1 .swiper-slide {
        padding: .2rem .3rem;
    }

    .home4 .column .en {
        font-size: .14rem;
    }

    .home6 {
        margin: .3rem 0 0;
        height: 17vw;
        background-size: cover;
    }

    .home6 .bg i {
        opacity: .5;
    }

    .home4 .swiper-container {
        padding-top: .1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .home4 .swiper-slide {
        padding: .2rem .3rem .3rem;
    }

    .home4 .swiper-arrow {
        top: auto;
        bottom: 0;
        width: .46rem;
        line-height: .46rem;
        font-size: .34rem;
        background: #00489c;
        border-radius: 50%;
    }

    .home4 .swiper-arrow.swiper-prev {
        left: calc(50% - .6rem);
    }

    .home4 .swiper-arrow.swiper-next {
        right: calc(50% - .6rem);
    }

    .home4 .title {
        margin: .1rem 0;
    }

    .slide-box .slide-item {
        padding-bottom: .4rem;
    }

    .slide-box .slide-tag:first-child {
        margin: 0 1rem 0 0;
    }

    .slide-box .slide-tag.on::after {
        bottom: .2rem;
    }

    .home5 {
        padding: .2rem 0 .3rem;
    }

    .home5 .l-box {
        width: 100%;
    }

    .home5 .r-box {
        width: 100%;
    }

    .home6 .container {
        padding: .7rem 0 0;
    }

    .home6 .bg {
        display: block;
        width: 64%;
        margin: 0 auto;
    }

    .home6 .bg img {
        width: 100%;
    }

    .home6 .bg i:nth-of-type(1) {
        width: 68vw;
        height: 68vw;
    }

    .home6 .bg i:nth-of-type(2) {
        width: 78vw;
        height: 78vw;
    }

    .home6 .bg i:nth-of-type(3) {
        width: 88vw;
        height: 88vw;
    }

    .data-swiper {
        width: 100%;
        margin: 0;
        top: auto;
        bottom: 10vw;
    }

    .data-list {
        justify-content: center;
    }

    .data-list li {
        width: 33%;
        margin: .3rem 0 0 !important;
    }

    .data-list .box {
        background: rgba(250, 198, 63, 0.8) !important;
    }

    .foot-img {
        width: 100%;
        text-align: center;
    }

    .foot-link {
        width: 100%;
        margin: .2rem 0;
    }

    .foot-link h6 {
        font-weight: 700;
    }

    .foot-link .link-box a {
        margin: 0 .16rem 0 0;
    }

    .ewm {
        width: 100%;
        justify-content: center;
    }

    .copy {
        display: block;
        text-align: center;
    }

    .copy p {
        padding: 0;
    }

    .decorate {
        padding: 40% 0 0;
    }

    .sidebar {
        width: 100%;
        margin: .15rem 0 0;
        padding: 0;
        border-radius: 3px;
        overflow: hidden;
    }

    .sidebar h3 {
        position: relative;
        font-size: .21rem;
        line-height: .5rem;
        text-align: center;
        background: #00489c;
    }

    .sidebar h3::after {
        display: none;
    }

    .sidebar h3 i {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: .5rem;
        height: .5rem;
        background-image: url(../images/daohang.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .sidebar h3.down i {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar h3 .return-sup {
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: 1;
        display: block;
        width: .5rem;
        height: .5rem;
        background-image: url("../images/fanhui.png");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .sidebar .sub-nav {
        display: none;
        padding: .1rem .2rem .2rem;
    }

    .sidebar .sub-nav li .lv3 {
        margin: 0;
        padding-top: 0;
    }

    .sidebar .sub-nav a {
        height: .55rem;
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;
        font-size: .18rem;
        line-height: .55rem;
    }

    .sidebar .sub-nav .down {
        top: 0;
        height: .55rem;
    }

    .side-swiper {
        display: none;
    }

    .main {
        width: 100%;
        padding: .26rem 0 0;
        margin: 0;
        box-shadow: none;
        background: none;
    }

    .main::before {
        display: none;
    }

    .place {
        line-height: .4rem;
    }

    .place .container {
        justify-content: flex-start;
        font-size: .15rem;
    }

    .teach-list {
        margin: 0;
        padding: 0 .2rem .3rem;
    }

    .teach-list li {
        width: 25%;
        margin: .3rem 0 0;
    }

    .article {
        padding: .3rem 0 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .banner .swiper-arrow {
        display: none;
    }

    .news-list1 .text {
        padding: .1rem .16rem .2rem;
    }

    .data-list li {
        height: auto;
        margin: .2rem 0 0 !important;
    }

    .data-list .box {
        position: static;
        width: 25vw;
        height: 25vw;
        margin: 0 auto;
        transform: none;
    }

    .data-list .title {
        font-size: .14rem;
    }

    .data-list .data {
        font-size: .14rem;
        line-height: 1.2;
    }

    .data-list .data .num {
        font-size: 5vw;
        letter-spacing: 0;
    }

    .data-list .data sub {
        font-size: 13px;
    }

    .teach-list {
        margin: 0;
        padding: 0 0 .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;
        padding-top: .09rem;
        padding-bottom: .05rem;
        background-position-y: 4px;
    }

    .list1 .text {
        width: calc(100% - 1rem);
    }

    .list1 .date1 {
        position: static;
        width: .68rem;
        height: .68rem;
    }

    .list1 .date1 p:first-child {
        font-size: .2rem;
        line-height: .22rem;
    }

    .article {
        padding: .25rem 0 0 !important;
    }

    .article .title {
        font-size: .22rem;
    }

    .article .content {
        padding: .2rem 0 .1rem;
    }

    .article .content p {
        margin: 0 0 .2rem;
    }

    .article .cont-page {
        padding: .15rem 0 .35rem;
    }

    .article .share {
        justify-content: flex-start;
    }

    .picture2 {
        margin: 0;
    }

    .picture2 a {
        padding: .2rem 0;
    }

    .picture2 .img-frame {
        width: 2.1rem;
    }

    .picture2 .text {
        width: calc(100% - 2.1rem);
        padding: 0 0 0 .2rem;
    }

    .picture2 .text::after {
        display: none;
    }

    .picture3 {
        margin: 0 -.1rem;
    }

    .picture3 > li {
        width: 50%;
        padding: 0 .1rem;
    }

    .picture3 .img-zoom {
        margin: .2rem 0 0;
    }

    #list-page {
        margin: .3rem 0 .4rem !important;
    }

    #list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
        padding: 7px 9px;
    }

    #list-page .p_goto input {
        width: 36px;
        height: 28px;
        line-height: 28px;
    }
}

@media screen and (max-width: 520px) {
    .header > .container {
        padding: .14rem 0 .15rem;
    }

    .logo {
        height: 65px;
        left: -4vw;
        top: -15px;
    }

    .logo img {
        max-height: 65px !important;
    }

    .top-link span {
        margin: 0 5px;
    }

    .nav-btn {
        width: 26px;
    }

    .nav-btn i {
        margin: 6px 0;
    }

    .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);
    }

    .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);
    }

    .mobile-box {
        height: calc(100vh - 81px);
        top: 81px;
        padding-top: 3px;
    }

    .mobile-box .nav {
        height: calc(100% - 1.4rem);
    }

    .banner .pagination {
        bottom: .1rem;
    }

    .banner .pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 16px;
    }

    .column {
        margin: .25rem 0 .15rem;
    }

    .column h3::after {
        width: .4rem;
    }

    .column .cn {
        font-size: .26rem;
    }

    .column .en {
        font-size: .17rem;
    }

    .first-news {
        box-shadow: none;
    }

    .first-news .text {
        position: static;
        align-items: center;
        justify-content: space-between;
        padding: .1rem 0 0;
        background: none;
    }

    .first-news .text .r {
        width: calc(100% - 0.8rem);
    }

    .first-news .title {
        color: #333;
        line-height: .26rem;
        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;
    }

    .first-news .date1 {
        position: static;
        width: .68rem;
        height: .68rem;
    }

    .first-news .date1 p:first-child {
        font-size: .2rem;
        line-height: .22rem;
    }

    .news-list1 li {
        width: 100%;
        margin: 0 0 .2rem;
    }

    .news-list2 {
        margin: -.1rem 0 .22rem;
    }

    .news-list2 li {
        width: 100%;
        margin: 0;
        padding: .14rem 0;
        border-bottom: 1px dashed #d2d2d2;
    }

    .news-list2 .line {
        display: none;
    }

    .news-list2 .title {
        margin: 3px 0 0;
    }

    .news-list3 > li {
        width: 100%;
        margin: 0 0 .15rem;
    }

    .news-swiper1 .swiper-slide {
        padding: .1rem .14rem;
    }

    .news-swiper1 .control {
        margin: 0 0 .1rem;
    }

    .news-swiper1 .pagination .swiper-pagination-bullet {
        margin: 0 .05rem;
    }

    .news-swiper1 .pagination .swiper-pagination-bullet::after, .news-swiper1 .pagination .swiper-pagination-bullet::before {
        width: 3px;
    }

    .home4 .swiper-slide {
        padding: .2rem .14rem .2rem;
    }

    .home4 .swiper-arrow {
        width: .36rem;
        line-height: .36rem;
        font-size: .28rem;
    }

    .home4 .swiper-arrow.swiper-prev {
        left: calc(50% - .42rem);
    }

    .home4 .swiper-arrow.swiper-next {
        right: calc(50% - .42rem);
    }

    .slide-box .slide-item {
        padding-bottom: .28rem;
    }

    .slide-box .slide-tag::after {
        display: none;
    }

    .slide-box .slide-tag:first-child {
        margin-right: .24rem;
    }

    .slide-box .slide-tag .en {
        font-size: 12px;
    }

    .news-list4 li {
        width: 100%;
        margin: .12rem 0 0;
    }

    .news-list4 a {
        background-color: #fff;
    }

    .news-list5 li {
        flex-wrap: wrap;
        padding: .12rem 0;
        border-bottom: 1px solid #ddd;
    }

    .news-list5 .title {
        width: 100%;
        line-height: .24rem;
        text-overflow: clip;
        white-space: initial;
    }

    .news-list5 .date {
        margin: 4px 0 0;
        line-height: .24rem;
    }

    .decorate .img {
        padding: 40% 0 0;
    }

    .picture2 .img-frame {
        width: 100%;
    }

    .picture2 .img-frame .img {
        padding: 66.6% 0 0;
    }

    .picture2 .text {
        width: 100%;
        padding: .14rem 0 0;
    }

    .picture2 .no-img .text {
        padding: 0;
    }

    .picture3 > li {
        width: 100%;
    }

    .teach-list {
        padding: 0 0 .25rem;
    }

    .teach-list li {
        width: 50%;
    }

    .list1 a {
        padding: .16rem 0;
    }

    .list1 .line {
        display: none;
    }

    .list1 .text {
        width: calc(100% - .9rem);
    }

    .list1 .title {
        text-overflow: clip;
        white-space: initial;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .list1 .info {
        display: none;
    }
}

/* 新闻动态轮播样式 */
.home1-swiper {
    padding: 0 0 .21rem;
}

.home1-swiper .first-news .text {
    padding-right: 1.1rem;
}

.home1-swiper .pagination {
    position: absolute;
    top: auto;
    right: 0.2rem;
    bottom: 0.38rem;
    left: auto;
    z-index: 2;
}

.home1-swiper .pagination .swiper-pagination-bullet {
    width: .11rem;
    height: .11rem;
    margin: 0 .05rem;
    background: none;
    opacity: 1;
    border: 1px solid white;
}

.home1-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}

@media screen and (max-width: 520px) {
    .home1-swiper {
        padding: 0 0 .1rem;
    }

    .home1-swiper .first-news .text {
        padding-right: 0;
    }

    .home1-swiper .pagination {
        bottom: 98px;
        right: 0;
        text-align: center;
        width: 100%;
    }
}
