@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px
}



/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
    overflow-x: hidden;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #013A91;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

@font-face {
    font-family: 'SourceHanSans-Bold';
    src: url(../fonts/SourceHanSans-Bold.otf);
}

@font-face {
    font-family: 'SourceHanSans-Regular';
    src: url(../fonts/SourceHanSans-Regular.otf);
}

.header {
    position: fixed;
    left: 50%;
    top: 0;
    z-index: 999;
    width: 100%;
    max-width: 19.2rem;
    padding-left: .8rem;
    padding-right: .8rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.header::after {
    content: '';
    position: absolute;
    left: -99999px;
    top: 0;
    right: -99999px;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    opacity: .9;
    height: 2rem;
}

.header .top {
    color: #FFF;
    justify-content: flex-end;
    font-size: .16rem;
    line-height: 1.6;
    font-family: 'SourceHanSans-Regular';
    margin-top: .2rem;
}

.header .top .lang {
    color: #FFF;
    background: url(../images/lang.svg)no-repeat left center;
    padding-left: .3rem;
    background-size: .21rem;
    margin-right: .2rem;
}

.header .top .lang::after {
    content: '|';
    margin-left: .2rem;
    font-size: .14rem;
}

.header .top .search-btn {
    background: url(../images/search.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    font-size: .14rem;
    cursor: pointer;
}

.header .logo {
    height: 1.2rem;
}

.header .logo img {
    height: .82rem;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav {
    justify-content: flex-end;
}

.nav li {
    margin-right: .3rem;
}

.nav li>a {
    line-height: .6rem;
    font-family: 'SourceHanSans-Bold';
    font-size: .22rem;
    color: #FFF;
}

.nav li:last-child {
    margin-right: 0;
}

.nav .drop {
    width: 1.8rem;
    left: calc(50% - 0.9rem);
    top: .6rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    line-height: 2.6;
    /* margin-left: -.7rem; */
    font-size: .16rem;
}

.nav .drop::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px transparent solid;
    border-right: 8px transparent solid;
    border-bottom: 8px #FFF solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.search-content {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 58, 145, .9);
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(../images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 7rem;
    height: .7rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
    padding-left: .15rem;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(../images/search.svg)no-repeat center;
    background-size: .24rem;
}

.footer {
    background: url(../images/f-bg.jpg)no-repeat center bottom;
    background-size: cover;
    width: 100%;
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    height: 3.56rem;
    padding-top: .3rem;
    color: #FFF;
}

.footer .tool .item {
    width: 1.2rem;
    height: 1.12rem;
    border: 1px #013A91 solid;
    padding-top: .05rem;
}

.footer .tool .item .icon {
    width: .65rem;
    height: .65rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.footer .tool .item .icon img {
    max-width: 100%;
    max-height: 100%;
}

.footer .tool .item .tit {
    font-size: .14rem;
    color: #FFF;
    height: .4rem;
    line-height: 1.3;
}

.footer .tool .item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: .2rem;
    height: .2rem;
    border-left: 2px #FFF solid;
    border-top: 2px #FFF solid;
    opacity: 0;
}

.footer .tool .item::after {
    content: '';
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: .2rem;
    height: .2rem;
    border-right: 2px #FFF solid;
    border-bottom: 2px #FFF solid;
    opacity: 0;
}

.footer .copyright {
    font-size: .16rem;
    line-height: 1.5;
    border-top: 1px rgba(255, 255, 255, .2) solid;
    padding-top: .2rem;
    padding-bottom: .2rem;
    margin-top: .3rem;
}

.footer .info-con {
    border-top: 1px rgba(255, 255, 255, .2) solid;
    padding-top: .35rem;
    margin-top: .25rem;
}

.footer .select-wrapper {
    width: 2.6rem;
    position: relative;
    cursor: pointer;
    margin-right: .8rem;
}

.footer .select-button {
    width: 100%;
    height: .46rem;
    border: 0;
    cursor: pointer;
    padding: 0 .4rem 0 .2rem;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    color: #FFFFFF;
    font-size: .16rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px rgba(255, 255, 255, .2) solid;
    background: none;
}

.footer .select-down {
    position: absolute;
    top: 50%;
    right: .2rem;
    width: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-left: 8px transparent solid;
    border-right: 8px transparent solid;
    border-top: 8px #FFF solid;
}

.footer .select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    bottom: .44rem;
    overflow: hidden;
}

.footer .select-list ul {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 2.4;
    max-height: 240px;
}

.footer .select-list ul li {
    width: auto;
    padding-left: .2rem;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: .16rem;
    color: #013A91;
}

.footer .select-list ul li:first-child {
    display: none;
}

.footer .select-list ul li.selected,
.footer .select-list ul li:hover {
    color: #fff;
    background: #013A91;
}

.footer .share>div {
    width: .41rem;
    margin-right: .2rem;
    cursor: pointer;
}

.footer .share>div:last-child {
    margin-right: 0;
}

.footer .share>div>img {
    width: 100%;
}

.footer .share>div .erwma {
    position: absolute;
    left: 50%;
    top: .41rem;
    width: 1rem;
    display: none;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.footer .share>div .erwma>img {
    width: 100%;
}

.footer .info>div {
    color: #FFF;
    padding-left: .3rem;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: .2rem;
    width: 42%;
    font-size: .14rem;
    line-height: 2.2;
}

.footer .info .address {
    background-image: url(../images/address.svg);
}

.footer .info .tel {
    background-image: url(../images/tel.svg);
}

.footer .info .code {
    background-image: url(../images/code.svg);
}

.footer .info .email {
    background-image: url(../images/email.svg);
}

@media (min-width:1025px) {
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav .drop>a:hover {
        background-color: #013A91;
        color: #FFF;
    }
    .footer .tool .item:hover {
        border-color: rgba(255, 255, 255, .2);
    }
    .footer .tool .item:hover::before,
    .footer .tool .item:hover::after {
        opacity: 1;
    }
    .footer .share>div:hover .erwma {
        display: block;
    }
}

@media (max-width:1199px) {
    body,
    .search-content .content input[type='text'] {
        font-size: 14px;
    }
    .header,
    .footer {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .header::after {
        height: 150%;
    }
    .header .top .lang {
        display: none;
    }
    .header .top .search-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        right: 50px;
        font-size: 14px;
        background-size: 18px;
        padding-left: 25px;
    }
    .header.active {
        background-color: #013A91;
    }
    .header.active::after {
        display: none;
    }
    .header .logo {
        height: 65px;
    }
    .header .logo img {
        height: 43px;
    }
    .search-content .close {
        width: 20px;
        height: 20px;
    }
    .search-content .content {
        width: 90%;
        height: 60px;
    }
    .search-content .content input[type='submit'] {
        width: 60px;
        background-size: 20px;
    }
    .menu-btn {
        display: block;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 65px;
        overflow-y: scroll!important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        height: calc(100vh - 65px);
        padding: .2rem .3rem;
    }
    .nav li {
        margin-right: 0;
    }
    .nav li>a {
        font-size: 15px;
        line-height: 50px;
        color: #333;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 50px;
        width: 30px;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: 20px;
        height: 20px;
        position: absolute;
        left: .1rem;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: 0;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        background: none;
        padding-bottom: 0;
        margin-left: 0;
        font-size: 14px;
        padding-left: 20px;
    }
    .footer {
        height: auto;
    }
    .footer .tool .item {
        width: 12%;
        height: auto;
    }
    .footer .tool .item .tit {
        font-size: 12px;
        height: 40px;
    }
    .footer .info>div {
        font-size: 12px;
        padding-left: 25px;
        background-size: 18px;
    }
    .footer .select-wrapper {
        width: 200px;
        height: 40px;
        margin-right: 0;
    }
    .footer .select-button {
        height: 40px;
        font-size: 14px;
    }
    .footer .select-list {
        bottom: 40px;
    }
    .footer .share {
        display: none;
    }
    .footer .copyright {
        font-size: 12px;
        line-height: 1.6;
    }
    .footer .select-list ul li {
        font-size: 12px;
    }
}

@media (max-width:767px) {
    .footer .info-con {
        display: block;
    }
    .footer .tool .item {
        width: 25%;
    }
    .footer .select-wrapper {
        width: 100%;
        margin-top: .3rem;
    }
    .footer .tool .item .icon {
        width: 30px;
        height: 30px;
    }
    .footer .tool .item .tit {
        margin-top: .1rem;
    }
    .footer .copyright {
        border-top: 0;
    }
}

@media (max-width:540px) {
    .footer .info>div {
        width: 100%;
    }
}

@media (max-width:375px) {
    .header .logo {
        height: 60px;
    }
    .header .logo img {
        height: 35px;
    }
    .nav {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

@media (max-width:320px) {
    .header .logo {
        height: 50px;
    }
    .header .logo img {
        height: 28px;
    }
    .header .top .search-btn {
        right: 40px;
    }
    .menu-btn {
        width: 25px;
        height: 25px;
    }
    .nav {
        top: 50px;
        height: calc(100vh - 50px);
    }
}

.pub-bg {
    overflow: hidden;
    padding-top: .55rem;
    z-index: 9;
}

.pub-bg::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #F6F9FC url(../images/pub-bg.png)no-repeat center bottom;
    background-size: 100%;
    z-index: 1;
}

.pub-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#F6F9FC, #FFFFFF);
    z-index: -1;
}

.wrapper {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 2.6rem;
}

.banner,
.n-banner {
    overflow: hidden;
}

.banner img,
.n-banner img {
    width: 100%;
}

.banner .swiper-pagination {
    bottom: 1.6rem;
}

.banner .swiper-pagination-bullet {
    opacity: 1;
    background-color: #FFF;
    width: .1rem;
    height: .1rem;
    margin: 0 .1rem !important;
    position: relative;
}

.banner .swiper-pagination-bullet-active {
    margin: 0 .25rem !important;
}

.banner .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .38rem;
    height: .38rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
}

.sidebar {
    width: 2.7rem;
    background-color: #013A91;
    padding-left: .1rem;
    padding-bottom: .1rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .15);
    margin-right: .4rem;
    z-index: 10;
}

.sidebar::after {
    content: '';
    width: 0;
    height: 0;
    border-bottom: .2rem solid transparent;
    border-left: 0;
    border-right: .2rem solid #F6F9FC;
    position: absolute;
    top: 0;
    right: 0;
}

.sidebar .title {
    font-size: .3rem;
    font-weight: bold;
    line-height: .9rem;
    color: #FFF;
}

.sidebar ul {
    background: #FFF url(../images/s-bg.png)no-repeat center bottom;
    background-size: 100%;
    overflow: hidden;
    -webkit-clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 3%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 3%);
    padding-left: .2rem;
    padding-right: .2rem;
    padding-bottom: 1.4rem;
    padding-top: .2rem;
    min-height: 5.6rem;
}

.sidebar ul>li {
    line-height: .66rem;
    border-bottom: 1px #E5E5E5 dotted;
}

.sidebar ul>li:last-child {
    border-bottom: 0;
}

.sidebar ul>li>a {
    z-index: 10;
    text-align: center;
}

.sidebar ul>li.on>a::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    left: -.2rem;
    border-radius: 0 .67rem .67rem 0;
    -webkit-border-radius: 0 .67rem .67rem 0;
    -moz-border-radius: 0 .67rem .67rem 0;
    -ms-border-radius: 0 .67rem .67rem 0;
    -o-border-radius: 0 .67rem .67rem 0;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(1, 58, 145, 0), #013A91);
    opacity: .1;
}

.sidebar ul>li.on::before {
    content: '';
    position: absolute;
    left: -.2rem;
    top: .2rem;
    width: 4px;
    height: .3rem;
    background-color: #FDD100;
}

.sidebar ul>li.on>a {
    font-weight: bold;
    color: #013A91;
}


/* .sidebar ul>li.on>a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: .25rem;
    width: .12rem;
    height: .12rem;
    background: url(../images/arrow1.svg)no-repeat center;
    background-size: 100%;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    margin-top: -.06rem;
} */

.sidebar ul>li .arrow {
    position: absolute;
    top: .25rem;
    right: .25rem;
    width: .12rem;
    height: .12rem;
    background: url(../images/arrow1.svg)no-repeat center;
    background-size: 100%;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    z-index: 10;
    cursor: pointer;
}

.sidebar ul>li .drop {
    font-size: .16rem;
    line-height: 2;
    padding-left: .5rem;
    padding-top: .1rem;
}

.pub-content {
    background-image: linear-gradient(#FFF, rgba(255, 255, 255, 0));
    z-index: 10;
    padding: .25rem .6rem;
}

.pub-title {
    background: url(../images/line.svg)no-repeat left bottom;
    background-size: 100%;
    padding-bottom: .2rem;
}

.pub-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 5px;
    height: 5px;
    background-color: #FFF;
    border: 1px #BFBFBF solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.pub-title .dot {
    width: .2rem;
    height: .2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #E6ECF5;
    margin-right: .1rem;
}

.pub-title .dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .1rem;
    height: .1rem;
    background-color: #013A91;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.pub-title .title {
    font-size: .22rem;
    font-weight: bold;
    color: #013A91;
    line-height: 1.7;
}

.crumb {
    position: absolute;
    right: 0;
    top: .1rem;
    font-size: .16rem;
    color: #013A91;
}

.crumb>a::after {
    content: '>';
    color: rgba(39, 39, 39, 0.3);
    margin: 0 .1rem;
}

.about {
    padding-bottom: 4.25rem;
}

.about .content {
    margin-top: .3rem;
    line-height: 1.8;
}

.about .content img {
    max-width: 100%;
}

.about .content .text {
    margin-top: .3rem;
}

.about .content .text p {
    text-indent: .36rem;
    margin-bottom: .2rem;
}

.news-list {
    padding-bottom: 3.3rem;
}

.news-list .content {
    margin-top: .32rem;
}

.news-list .content .item {
    height: 1.65rem;
    background-color: #F7F9FC;
    margin-bottom: .56rem;
}

.news-list .content .item .pic {
    overflow: hidden;
    width: 2.7rem;
    height: 1.65rem;
    margin-right: .5rem;
}

.news-list .content .item .des {
    font-size: .16rem;
    color: #666;
    line-height: 1.8;
    margin-top: .1rem;
}

.news-list .content .item .text-con {
    margin-right: .25rem;
    padding-right: .35rem;
}

.news-list .content .item .text-con::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #013A91;
}

.news-list .content .item .date {
    width: 1.1rem;
    color: #9B9B9B;
}

.news-list .content .item .date span {
    font-weight: bold;
    font-size: .3rem;
    line-height: 1.5;
    color: #013A91;
    margin-bottom: .1rem;
}

.page {
    margin-top: 1.3rem;
    line-height: .38rem;
    font-size: .16rem;
}

.page span {
    font-size: .2rem;
    margin: 0 .05rem;
}

.page a {
    border: 1px #DCDCDC solid;
    width: .38rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    height: .38rem;
    margin: 0 .05rem;
}

.page .idx,
.page .last {
    width: .48rem;
    border: 0;
}

.page .prev,
.page .next {
    background: url(../images/arrow1.svg)no-repeat center;
    background-size: .14rem;
}

.page .prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page .on {
    background-color: #013A91;
    color: #FFF;
    border-color: #013A91;
}

.details {
    padding-bottom: 1.5rem;
}

.details .content {
    margin-top: .4rem;
}

.details h1 {
    font-size: 28px;
    line-height: 1.5;
}

.details .info {
    background-color: #F5F5F5;
    height: .52rem;
    margin-top: .35rem;
    color: #5A5A5A;
}
.details .content p{
    font-size: 16px !important;
    line-height: 34px !important;
}
.details .content p span{
    font-size: 16px !important;
    line-height: 34px !important;
}

.details .info span {
    margin-right: .1rem;
}

.details .info span:last-child {
    margin-right: 0;
}

.details .body {
    line-height: 1.8;
    color: #2c2c2c;
    margin-top: .3rem;
}

.details .body p {
    text-indent: .36rem;
    margin-bottom: .2rem;
}
.details .body table{max-width:100%;margin:0  auto;}
.details .body iframe, .details .body video{
    display:block;
    max-width:100%;
    height:auto !important;
    margin:0  auto;
}
.details .body img {
    max-width: 100% !important;
}

.details .prev-next {
    margin-top: 1.3rem;
    border-top: 1px #D4D4D4 solid;
    line-height: 2;
    padding-top: .3rem;
}

.details .prev-next span {
    color: #013A91;
}

.text-list {
    padding-bottom: 1.1rem;
}

.text-list .content {
    margin-top: .3rem;
}

.text-list .item {
    background: url(../images/arrow1.svg)no-repeat left center;
    background-size: .14rem;
    padding-left: .4rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    line-height: .89rem;
    padding-right: .25rem;
    border-bottom: 1px #F4F7F5 dotted;
}

.text-list .item .tit {
    margin-right: .3rem;
}

.text-list .item .date {
    color: #9E9E9E;
    font-size: .16rem;
}

.text-list .page {
    margin-top: .6rem;
}

.teacher-list {
    padding-bottom: 2.4rem;
}

.teacher-list .content {
    margin-top: .4rem;
}

.teacher-list .item {
    /* width: 2.8rem; */
    width: 26.3%;
    margin-bottom: .7rem;
    margin-right: 10%;
}

.teacher-list .item:nth-of-type(3n) {
    margin-right: 0;
}

.teacher-list .item .pic-con {
    border: 1px #b1b1b1 solid;
    z-index: 10;
}

.teacher-list .item .pic {
    overflow: hidden;
    height: 3.5rem;
}

.teacher-list .item .name {
    color: #999;
    margin-top: .2rem;
}

.teacher-list .item .name span {
    font-size: .24rem;
    margin-right: .2rem;
    color: #333;
}

.teacher-list .page {
    margin-top: .6rem;
}

.team-list {
    padding-bottom: 2.8rem;
}

.team-list .content {
    margin-top: .28rem;
}

.team-list .item {
    margin-bottom: .8rem;
    border-bottom: 1px #013A91 solid;
    width: 30.5%;
    margin-right: 4%;
}

.team-list .item:nth-of-type(3n) {
    margin-right: 0;
}

.team-list .item .pic {
    overflow: hidden;
    padding-top: 65%;
}

.team-list .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.team-list .item .tit {
    line-height: .6rem;
}

.team-list .page {
    margin-top: 0;
}

@media (min-width:1025px) {
    .sidebar ul>li>a:hover {
        font-weight: bold;
    }
    .news-list .content .item:hover {
        background: url(../images/tbg.png)no-repeat center;
        background-size: cover;
        color: #FFF;
    }
    .news-list .content .item:hover .pic img,
    .teacher-list .item:hover .pic img,
    .team-list .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .news-list .content .item:hover .des,
    .news-list .content .item:hover .date span,
    .news-list .content .item:hover .date {
        color: #FFF;
    }
    .news-list .content .item:hover .text-con::after {
        background-color: #FFF;
    }
    .text-list .item:hover {
        background-color: #FFF;
        box-shadow: 0 0 .1rem rgba(1, 58, 145, .2);
        padding-left: .55rem;
        padding-right: .4rem;
        background-position: .3rem center;
    }
    .text-list .item:hover .tit,
    .team-list .item .tit,
    .teacher-list .item:hover .name,
    .teacher-list .item:hover .name span {
        font-weight: bold;
    }
    .text-list .item:hover .date,
    .team-list .item .tit,
    .teacher-list .item:hover .name,
    .teacher-list .item:hover .name span {
        color: #013A91;
    }
    .teacher-list .item:hover .pic {
        border-color: #013A91;
        border-width: 6px;
    }
    .teacher-list .item:hover .pic-con::after {
        content: '';
        position: absolute;
        left: -6px;
        top: -6px;
        right: -6px;
        bottom: -6px;
        background-color: #013A91;
        z-index: -1;
    }
}

@media (max-width:1199px) {
    .wrapper {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .sidebar {
        display: none;
    }
    .pub-title .title {
        font-size: 18px;
    }
    .crumb,
    .text-list .item .date,
    .news-list .content .item .date,
    .news-list .content .item .des {
        font-size: 12px;
    }
    .pub-title .dot {
        width: 14px;
        height: 14px;
    }
    .pub-title .dot::after {
        width: 7px;
        height: 7px;
    }
    .news-list .content .item .date span {
        font-size: 22px;
    }
    .news-list .content .item .date {
        width: 60px;
    }
    .page {
        line-height: 32px;
        font-size: 12px;
    }
    .page a {
        width: 32px;
        height: 32px;
    }
    .page .idx,
    .page .last {
        width: 40px;
    }
    .page span {
        font-size: 14px;
    }
    .page .prev,
    .page .next {
        background-size: 10px;
    }
    .details h1 {
        font-size: 18px;
    }
    .details .info {
        height: auto;
        padding: .2rem;
        line-height: 1.7;
    }
    .text-list .item {
        line-height: 50px;
        background-size: 8px;
        padding-left: 20px;
    }
    .teacher-list .item .name span {
        font-size: 16px;
    }
    .teacher-list .item .pic {
        height: auto;
        padding-top: 120%;
    }
    .teacher-list .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .team-list .item .tit {
        line-height: 40px;
    }
    .news-list .content .item {
        height: auto;
        padding: .3rem .2rem;
    }
}

@media (max-width:767px) {
    .team-list .item {
        width: 48.5%;
        margin-right: 3%;
    }
    .team-list .item:nth-of-type(3n) {
        margin-right: 0;
    }
    .team-list .item:nth-child(even) {
        margin-right: 0;
    }
     .news-list .content .item {
        padding: .3rem;
        height: auto;
    }
}

@media (max-width:540px) {
    .pub-title::after {
        display: none;
    }
    .news-list .content .item {
        height: auto;
        padding: .3rem;
    }
    .news-list .content .item .pic {
        width: 100%;
        height: auto;
        padding-top: 65%;
        margin-bottom: .3rem;
        margin-right: 0;
    }
    .news-list .content .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .teacher-list .item {
        width: 48%;
        margin-right: 4%;
    }
    .teacher-list .item:nth-of-type(3n) {
        margin-right: 4%;
    }
    .teacher-list .item:nth-child(even) {
        margin-right: 0;
    }
    .teacher-list .item .name {
        font-size: 12px;
    }
    .teacher-list .item .name span {
        font-size: 14px;
    }
    .team-list .item {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width:320px) {
    .teacher-list .item {
        width: 100%;
        margin-right: 0;
    }
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-tool {
    background-color: rgba(1, 58, 145, .8);
    margin-top: -1.3rem;
    z-index: 10;
}

.home-tool .container {
    height: 1.3rem;
}

.home-tool .item {
    color: #FFF;
    padding-left: .6rem;
    border-left: 1px rgba(255, 255, 255, .1) solid;
    width: 20%;
}

.home-tool .item:last-child {
    border-right: 1px rgba(255, 255, 255, .1) solid;
}

.home-tool .item .icon {
    width: .62rem;
    height: .62rem;
    margin-right: .25rem;
}

.home-tool .item .icon img {
    max-width: 100%;
    max-height: 100%;
}

.home-tool .item .counter {
    font-size: .48rem;
    line-height: 1;
    font-family: 'SourceHanSans-Bold';
}

.home-tool .item .txt {
    line-height: 1.2;
    margin-top: .1rem;
}

.page1 {
    background: url(../images/bg1.jpg)no-repeat center bottom;
    background-size: 100%;
}

.home-title .icon {
    width: .35rem;
    height: .35rem;
    margin-right: .1rem;
}

.home-title .icon img {
    max-width: 100%;
}

.home-title .cn {
    font-family: 'SourceHanSans-Bold';
    font-size: .36rem;
    line-height: 1.2;
}

.home-title .en {
    text-transform: uppercase;
    font-size: .16rem;
    line-height: 1.2;
    color: #013A91;
    margin-top: .1rem;
}

.home-title .en::before {
    content: '';
    width: .3rem;
    height: 3px;
    background-color: #013A91;
    margin-right: .2rem;
}

.home-title .more {
    width: .69rem;
    height: .38rem;
    position: absolute;
    right: 0;
    top: .1rem;
    background: url(../images/more.svg)no-repeat left center;
    background-size: 100% 100%;
    color: #3D3D3D;
    padding-left: .16rem;
    font-size: .16rem;
}

.home-title .more::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .12rem;
    height: .12rem;
    background: url(../images/arrow.svg)no-repeat center;
    background-size: 100%;
}

.home-notice {
    width: 3.8rem;
    margin-right: .7rem;
    margin-top: .9rem;
}

.home-notice .content {
    overflow: hidden;
    margin-top: .03rem;
}

.home-notice .item {
    margin-top: .3rem;
}

.home-notice .item .date {
    color: rgba(1, 58, 145, .7);
    font-size: .14rem;
    line-height: 1.2;
    width: .7rem;
    margin-right: .2rem;
    background: url(../images/date-bg.svg)no-repeat center bottom;
    background-size: 100%;
}

.home-notice .item .date span {
    font-size: .3rem;
    font-family: 'SourceHanSans-Bold';
    color: #013A91;
}

.home-notice .item .tit {
    color: #000;
    line-height: 1.7;
    border-bottom: 1px rgba(1, 58, 145, .1) solid;
    padding-bottom: .2rem;
}

.home-notice .item .tit>div {
    height: .62rem;
    overflow: hidden;
}

.home-news {
    margin-top: .9rem;
    min-width: 0;
}

.home-news .content {
    margin-top: .38rem;
}

.home-news .focuse {
    width: 7.3rem;
    overflow: hidden;
    margin-right: .25rem;
    border-bottom: 3px #013A91 solid;
    padding-bottom: .35rem;
}

.home-news .focuse .pic {
    overflow: hidden;
    padding-top: 61.5%;
}

.home-news .focuse .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-news .focuse .pic span {
    position: absolute;
    left: .2rem;
    top: .2rem;
    line-height: .28rem;
    background-color: #013A91;
    color: #FFF;
    border-radius: .14rem;
    -webkit-border-radius: .14rem;
    -moz-border-radius: .14rem;
    -ms-border-radius: .14rem;
    -o-border-radius: .14rem;
    font-size: .14rem;
    padding: 0 .15rem;
    z-index: 9;
}

.home-news .focuse .text-con {
    margin-top: .2rem;
}

.home-news .focuse .date {
    color: #013A91;
    font-size: .45rem;
    font-weight: bold;
    text-indent: -2px;
}

.home-news .focuse .date span {
    font-size: .2rem;
}

.home-news .focuse .tit {
    font-weight: bold;
    font-size: .2rem;
    color: #000;
    line-height: 1.2;
    margin-top: .15rem;
}

.home-news .focuse .des {
    font-size: .16rem;
    color: #666;
    margin-top: .1rem;
}

.home-news .button {
    width: 1.2rem;
    height: .6rem;
    position: absolute;
    right: 0;
    top: 61.5%;
}

.home-news .swiper-button-next,
.home-news .swiper-button-prev {
    width: .6rem;
    height: .6rem;
    background: #013A91 url(../images/prev.svg)no-repeat center;
    background-size: .27rem;
    margin-top: 0;
    top: 0;
}

.home-news .swiper-button-prev {
    left: 0;
}

.home-news .swiper-button-next {
    right: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-news .item {
    height: 1.4rem;
    border: 1px rgba(1, 58, 145, .1) solid;
    padding: .28rem .3rem;
    margin-bottom: .26rem;
}

.home-news .item:last-child {
    margin-bottom: 0;
}

.home-news .item .tit {
    height: .7rem;
    line-height: 1.7;
    overflow: hidden;
}

.home-news .item .date {
    color: #A5A5A5;
    font-size: .16rem;
    line-height: 1;
}

.home-shuang {
    margin-top: 1.05rem;
    background: url(../images/bg2.png)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: .7rem;
}

.home-shuang .tabs .home-title {
    margin-right: .6rem;
    opacity: .7;
    cursor: pointer;
}

.home-shuang .tabs .home-title .more {
    display: none;
}

.home-shuang .tabs .home-title.on {
    opacity: 1;
}

.home-shuang .tabs .home-title.on .more {
    display: flex;
}

.home-shuang .content {
    margin-top: .4rem;
}

.home-shuang .swiper-slide {
    height: 5.2rem;
    width: 3.6rem;
    transform: translateX(30%);
    -webkit-transform: translateX(30%);
    -moz-transform: translateX(30%);
    -ms-transform: translateX(30%);
    -o-transform: translateX(30%);
    padding-top: .7rem;
}

.home-shuang .swiper-slide .pic {
    width: 2.5rem;
    height: 3.15rem;
    overflow: hidden;
}

.home-shuang .swiper-slide .name {
    color: #FFF;
    margin-top: .25rem;
    line-height: 1.2;
}

.home-shuang .swiper-slide .name span {
    margin-left: .1rem;
    color: rgba(255, 255, 255, .7);
    font-size: .14rem;
}

.home-shuang .swiper-slide .des {
    display: none;
    color: #013A91;
    font-size: .16rem;
    line-height: 1.6;
    margin-top: .1rem;
    height: .52rem;
    overflow: hidden;
}

.home-shuang .swiper-slide-active {
    padding-top: 0;
    background-image: linear-gradient(#ECF3FF, #FFFFFF);
    align-items: flex-start;
    padding: .3rem;
    transform: translateX(3%);
    -webkit-transform: translateX(3%);
    -moz-transform: translateX(3%);
    -ms-transform: translateX(3%);
    -o-transform: translateX(3%);
}

.home-shuang .swiper-slide-active .pic {
    width: 100%;
    height: 3.6rem;
}

.home-shuang .swiper-slide-active .name,
.home-shuang .swiper-slide-active .name span {
    color: #013A91;
    font-weight: bold;
}

.home-shuang .swiper-slide-active .des {
    display: block;
}

.home-shuang .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: .2rem;
    width: 100%;
    z-index: 1;
    height: .85rem;
    background: url(../images/titbg2.png)no-repeat 90% center;
    background-size: auto 100%;
}

.home-shuang .swiper-slide-prev {
    transform: translateX(16%);
    -webkit-transform: translateX(16%);
    -moz-transform: translateX(16%);
    -ms-transform: translateX(16%);
    -o-transform: translateX(16%);
}

.home-shuang .swiper-slide-next {
    transform: translateX(16%);
    -webkit-transform: translateX(16%);
    -moz-transform: translateX(16%);
    -ms-transform: translateX(16%);
    -o-transform: translateX(16%);
}

.home-shuang .swiper-slide-next~.swiper-slide {
    transform: translateX(5%);
    -webkit-transform: translateX(5%);
    -moz-transform: translateX(5%);
    -ms-transform: translateX(5%);
    -o-transform: translateX(5%);
}

.home-shuang .button {
    width: 100%;
    margin-top: .4rem;
}

.home-shuang .button::before {
    content: '';
    height: 1px;
    background-color: rgba(255, 255, 255, .2);
    flex: 1;
    margin-right: .2rem;
}

.home-shuang .button::after {
    content: '';
    height: 1px;
    background-color: rgba(255, 255, 255, .2);
    flex: 1;
    margin-left: .2rem;
}

.home-shuang .swiper-button-next,
.home-shuang .swiper-button-prev {
    top: auto;
    margin-top: 0;
    position: inherit;
    width: .44rem;
    height: .44rem;
    background: url(../images/prev.svg)no-repeat center;
    background-size: .2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
}

.home-shuang .swiper-button-prev {
    left: auto;
    margin-right: .1rem;
}

.home-shuang .swiper-button-next {
    right: auto;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page2 {
    background: url(../images/bg3.png)no-repeat center top;
    background-size: cover;
    overflow: hidden;
    padding-bottom: 1.6rem;
}

.home-team {
    margin-top: .93rem;
}

.home-team .content {
    margin-top: .3rem;
}

.home-team .gallery-top {
    margin-right: .4rem;
    min-width: 0;
    padding-top: .65rem;
}

.home-team .gallery-top .tit {
    font-weight: bold;
    font-size: .24rem;
    line-height: 1.2;
    padding-bottom: .25rem;
}

.home-team .gallery-top .tit::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: .4rem;
    height: 3px;
    background-color: #013A91;
}

.home-team .gallery-top .des {
    color: #333;
    font-size: .16rem;
    line-height: 1.85;
    margin-top: .2rem;
    height: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-team .gallery-top .button {
    width: 100%;
    margin-top: 1rem;
}

.home-team .gallery-top .line {
    height: 1px;
    background-color: rgba(1, 58, 145, .1);
}

.home-team .gallery-top .line1 {
    background-color: #013A91;
    width: .4rem;
    margin-right: .3rem;
}

.home-team .gallery-top .line1::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #013A91;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-team .gallery-top .line2::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border: 1px rgba(1, 58, 145, .2) solid;
}

.home-team .gallery-top .line3 {
    width: .3rem;
}

.home-team .gallery-top .line3::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border: 1px rgba(1, 58, 145, .2) solid;
}

.home-team .gallery-top .swiper-pagination {
    position: inherit;
    bottom: auto;
    width: auto;
    color: #013A91;
    font-size: .16rem;
}

.home-team .gallery-top .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: auto;
    height: auto;
    line-height: 1.2;
    background: none;
    margin-right: .2rem !important;
    margin-left: 0 !important;
}

.home-team .gallery-top .swiper-pagination-bullet-active {
    font-size: .36rem;
    line-height: 1;
}

.home-team .gallery-top .swiper-button-next,
.home-team .gallery-top .swiper-button-prev {
    position: inherit;
    margin-top: 0;
    top: auto;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: url(../images/prev-on.svg)no-repeat center;
    background-size: .2rem;
    border: 1px #013A91 solid;
    margin-right: .15rem;
}

.home-team .gallery-top .swiper-button-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-team .gallery-thumbs {
    width: 9.2rem;
    overflow: hidden;
}

.home-team .gallery-thumbs .swiper-slide {
    width: 6.7rem;
    background-color: #000;
}

.home-team .gallery-thumbs .swiper-slide .pic {
    height: 4.35rem;
    overflow: hidden;
    opacity: .5;
}

.home-team .gallery-thumbs .swiper-slide-active .pic {
    opacity: 1;
}

.home-results {
    margin-top: .8rem;
}

.home-results .button {
    width: 100%;
    margin-top: .5rem;
}

.home-results .button::before {
    content: '';
    height: 1px;
    background-color: rgba(1, 58, 145, .2);
    flex: 1;
    margin-right: .2rem;
}

.home-results .button::after {
    content: '';
    height: 1px;
    background-color: rgba(1, 58, 145, .2);
    flex: 1;
    margin-left: .2rem;
}

.home-results .swiper-button-next,
.home-results .swiper-button-prev {
    top: auto;
    margin-top: 0;
    position: inherit;
    width: .44rem;
    height: .44rem;
    background: url(../images/prev-on.svg)no-repeat center;
    background-size: .2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px rgba(1, 58, 145, .1) solid;
}

.home-results .swiper-button-prev {
    left: auto;
    margin-right: .1rem;
}

.home-results .swiper-button-next {
    right: auto;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-results .content {
    margin-top: .55rem;
    z-index: 9;
    overflow: hidden;
}

.home-results .content::after {
    content: '';
    position: absolute;
    left: 0;
    top: .35rem;
    height: 1px;
    background-color: #013A91;
    width: 100%;
    z-index: -1;
}

.home-results .swiper-container {
    padding-top: .4rem;
    margin-left: -3px;
    margin-right: -4px;
}

.home-results .swiper-container::before {
    content: '';
    position: absolute;
    left: 3px;
    top: .35rem;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(rgba(1, 58, 145, 1), rgba(1, 58, 145, 0));
}

.home-results .swiper-container::after {
    content: '';
    position: absolute;
    right: 4px;
    top: .35rem;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(rgba(1, 58, 145, 1), rgba(1, 58, 145, 0));
}

.home-results .swiper-slide {
    padding: .3rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-right: 1px rgba(1, 58, 145, .2) solid;
}

.home-results .swiper-slide .pic {
    overflow: hidden;
    padding-top: 63.5%;
}

.home-results .swiper-slide .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-results .swiper-slide .tit {
    margin-top: .22rem;
    font-size: .2rem;
    line-height: 1.4;
    height: .56rem;
}

.home-results .swiper-slide::before {
    content: '';
    position: absolute;
    right: -4px;
    top: -8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #013A91;
}

.home-results .swiper-slide::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -5px;
    width: 1px;
    height: 1.2rem;
    background-color: rgba(1, 58, 145, 1);
}

@media (min-width:1025px) {
    .home-title .more:hover {
        color: #013A91;
        font-weight: bold;
    }
    .home-notice .item:hover .tit {
        color: #013A91;
        font-weight: bold;
        border-bottom-color: #013A91;
    }
    .home-news .swiper-button-next:hover,
    .home-news .swiper-button-prev:hover {
        background-color: #FDD100;
    }
    .home-news .focuse .swiper-slide:hover .pic img,
    .home-results .swiper-slide:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-news .focuse .swiper-slide:hover .tit {
        color: #013A91;
    }
    .home-news .item:hover {
        background: url(../images/titbg1.png)no-repeat center;
        background-size: cover;
    }
    .home-news .item:hover .tit,
    .home-results .swiper-slide:hover .tit {
        font-weight: bold;
    }
    .home-news .item:hover .tit,
    .home-news .item:hover .date {
        color: #FFF;
    }
    .home-shuang .swiper-button-next:hover,
    .home-shuang .swiper-button-prev:hover {
        background-color: #FFF;
        background-image: url(../images/prev-on.svg);
    }
    .home-team .gallery-top .swiper-button-next:hover,
    .home-team .gallery-top .swiper-button-prev:hover,
    .home-results .swiper-button-next:hover,
    .home-results .swiper-button-prev:hover {
        background-color: #013A91;
        background-image: url(../images/prev.svg);
    }
    .home-results .swiper-slide:hover {
        transform: translateY(-.4rem);
        -webkit-transform: translateY(-.4rem);
        -moz-transform: translateY(-.4rem);
        -ms-transform: translateY(-.4rem);
        -o-transform: translateY(-.4rem);
        background-image: linear-gradient(#013A91, rgba(1, 58, 145, 0));
    }
}

@media (max-width:1199px) {
    .banner .swiper-pagination {
        bottom: 20px;
    }
    .banner .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px !important;
    }
    .banner .swiper-pagination-bullet-active {
        margin: 0 15px !important;
    }
    .banner .swiper-pagination-bullet-active::after {
        width: 24px;
        height: 24px;
    }
    .home-notice {
        width: 30%;
        margin-right: .5rem;
    }
    .home-title .icon {
        width: 20px;
        height: 20px;
    }
    .home-title .cn {
        font-size: 22px;
    }
    .home-title .en,
    .home-notice .item .date,
    .home-news .focuse .des,
    .home-title .more,
    .home-news .item .date,
    .home-news .focuse .pic span,
    .home-news .focuse .date span,
    .home-shuang .swiper-slide .name span,
    .home-shuang .swiper-slide .des,
    .home-team .gallery-top .des,
    .home-team .gallery-top .swiper-pagination-bullet {
        font-size: 12px;
    }
    .home-title .en::before {
        width: 16px;
    }
    .home-title .more {
        width: 46px;
        height: 24px;
        padding-left: 10px;
    }
    .home-title .more::after {
        width: 8px;
        height: 8px;
    }
    .home-notice .item .date {
        width: 50px;
    }
    .home-notice .item .date span {
        font-size: 20px;
    }
    .home-news .focuse .tit,
    .home-team .gallery-top .tit {
        font-size: 15px;
    }
    .home-news .item {
        height: auto;
    }
    .home-news .item .tit {
        height: 48px;
    }
    .home-news .focuse .pic span {
        line-height: 30px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        padding: 0 15px;
    }
    .home-news .button {
        top: 51%;
        width: 64px;
    }
    .home-news .swiper-button-next,
    .home-news .swiper-button-prev,
    .home-shuang .swiper-button-next,
    .home-shuang .swiper-button-prev,
    .home-team .gallery-top .swiper-button-next,
    .home-team .gallery-top .swiper-button-prev,
    .home-results .swiper-button-next,
    .home-results .swiper-button-prev {
        width: 32px;
        height: 32px;
        background-size: 16px;
    }
    .home-notice .item .tit {
        height: 60px;
    }
    .home-news .focuse .date {
        font-size: 24px;
    }
    .home-tool {
        margin-top: 0;
        padding: .3rem 0;
        background-color: #013A91;
    }
    .home-tool .container {
        height: auto;
    }
    .home-tool .item .icon {
        width: 32px;
        height: 32px;
    }
    .home-tool .item .txt {
        font-size: 12px;
    }
    .home-tool .item .counter {
        font-size: 28px;
    }
    .home-tool .item {
        border-left: 0;
        padding-left: 0;
    }
    .home-tool .item:last-child {
        border-right: 0;
    }
    .home-shuang .swiper-slide {
        padding: .3rem;
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        -moz-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
        -o-transform: translateX(0) !important;
        background-image: linear-gradient(#ECF3FF, #FFFFFF);
        align-items: flex-start;
        height: auto;
    }
    .home-shuang .swiper-slide .des {
        display: block;
    }
    .home-shuang .swiper-slide .pic {
        width: 100%;
        height: auto;
        padding-top: 110%;
    }
    .home-shuang .swiper-slide .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .home-shuang .swiper-slide .name,
    .home-shuang .swiper-slide .name span {
        font-weight: bold;
        color: #013A91;
    }
    .home-shuang .tabs {
        justify-content: flex-start;
    }
    .home-team .gallery-top .des {
        height: auto;
    }
    .home-team .gallery-top .button {
        margin-top: 30px;
    }
    .home-team .gallery-top .swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .home-results .swiper-slide::before {
        top: -5px;
    }
    .home-results .swiper-slide .tit {
        font-size: 14px;
    }
    .home-notice .item .tit>div,
    .home-news .item .tit,
    .home-shuang .swiper-slide .des,
    .home-results .swiper-slide .tit {
        height: auto;
    }
}

@media (max-width:950px) {
    .home-notice {
        width: 100%;
        margin-right: 0;
    }
    .home-news {
        min-width: 100%
    }
    .home-news .focuse {
        width: 58%;
    }
    .home-news .button {
        top: 64.5%;
    }
    .home-team .gallery-top .button {
        margin-top: 20px;
    }
}

@media (max-width:767px) {
    .home-tool .item {
        width: 33.333%;
        margin: .1rem 0;
    }
    .home-tool .item .counter {
        font-size: 24px;
    }
    .home-news .focuse {
        width: 100%;
        margin-right: 0;
        padding-bottom: 20px;
    }
    .home-news .con {
        margin-top: .4rem;
    }
    .home-news .focuse .tit,
    .home-news .focuse .des {
        margin-top: 10px;
    }
    .home-news .item .tit {
        height: auto;
    }
    .home-news .button {
        top: auto;
        bottom: 140px;
    }
    .home-news .focuse .text-con {
        margin-top: 15px;
    }
    .home-notice .item {
        margin-top: 15px;
    }
    .home-team .gallery-thumbs {
        width: 100%;
        order: 1;
    }
    .home-team .gallery-top {
        order: 2;
        margin-right: 0;
        min-width: 100%;
    }
    .home-team .gallery-thumbs .swiper-slide .pic {
        opacity: 1;
        height: auto;
        padding-top: 60%;
    }
    .home-team .gallery-thumbs .swiper-slide .pic img {
        position: absolute;
        left: 0;
        top: 0
    }
    .home-team .gallery-top .tit {
        padding-bottom: 15px;
    }
    .home-team .gallery-top .tit::after,
    .home-team .gallery-top .line1,
    .home-team .gallery-top .line3 {
        width: 30px;
    }
    .home-team .gallery-top .des {
        margin-top: 10px;
    }
    .home-team .home-title,
    .home-results .home-title {
        justify-content: flex-start;
    }
    .winstyle1180192{width: calc(100% - 20px) !important;margin: 0 10px;}
    .selectstyle1180192{font-size: 14px !important;height: 33px !important;}
}

@media (max-width:540px) {
    .home-tool .item {
        width: 50%;
    }
}

@media (max-width:375px) {
    .home-results .swiper-container::after,
    .home-results .swiper-container::before,
    .home-results .content::after,
    .home-results .swiper-slide::before,
    .home-results .swiper-slide::after {
        display: none;
    }
}


.pb_sys_style1 .p_no_d {
    border: 1px solid #013a91 !important;
    color: #fff;
    background-color: #013a91 !important;
}

.pb_sys_common .p_fun_d, .pb_sys_common .p_no_d, .pb_sys_common .p_no_o,.pb_sys_common .p_fun a, .pb_sys_common .p_no a{
    border: 1px solid #ccc;
    padding: 5px 8px;
    margin:0px 0px 0px 5px;
    height: 32px !important;
    -
    height:auto;
    line-height: 22px !important;
    box-sizing:border-box;
    display:inline-block;
    vertical-align:middle;
    min-width: 40px !important;
    font-size: 15px !important;
    font-family: Microsoft Yahei !important;
}