@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;
}


/*全局样式*/

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%;
}


/*原文件配置*/

@font-face {
    font-family: 'SourceHanSans-Bold';
    src: url('../fonts/SourceHanSans-Bold.otf');
}

@font-face {
    font-family: 'SourceHanSans-Regular';
    src: url('../fonts/SourceHanSans-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSans-Medium';
    src: url('../fonts/SourceHanSans-Medium.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url('../fonts/SourceHanSerifCN-Bold.otf');
}

@font-face {
    font-family: 'impact';
    src: url('../fonts/impact.ttf');
}

body {
    color: #3A3A3C;
    background: #ffffff;
    font: .18rem 'SourceHanSans-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #3A3A3C;
    text-decoration: none;
}

a:hover {
    color: #1E52CB;
}


/*块级转化*/

.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 {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-left: .5rem;
    padding-right: 1.6rem;
    padding-top: .4rem;

}

.header.shadow,
.header.fixed {
    background: linear-gradient(rgb(11 3 56) 0%, rgba(255, 255, 255, 0) 100%);
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1.75rem;
    z-index: -1;
background-image: linear-gradient(rgb(6 17 99 / 95%),rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
    /*background-image: linear-gradient(rgba(0, 0, 0, .95),rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));*/
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
display:none;
}

.header .logo img {
    height: .82rem;
}

.header .top {
    color: rgba(255, 255, 255, .4);
    justify-content: flex-end;
    font-size: .16rem;
}

.header .top span {
    margin: 0 .2rem;
}

.header .top a {
    color: #FFF;
}

.header .search-btn {
    width: .32rem;
    height: .32rem;
    background: url(../images/search.png)no-repeat center;
    background-size: 100%;
    cursor: pointer;
    margin-left: .2rem;
}

.header.fixed::after {
    height: 100%;
}

.nav-btn {
    background: url(../images/menu.png)no-repeat center;
    width: .32rem;
    height: .2rem;
    background-size: 100%;
    position: absolute;
    top: 55%;
    right: .5rem;
}

.menu-btn {
    display: none;
    background: url(../images/menu.png)no-repeat center;
    width: .5rem;
    height: .5rem;
    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.png);
}

.nav {
    justify-content: flex-end;
}

.nav li>a {
    line-height: .6rem;
    padding: 0 .15rem;
    font-family: 'Alibaba-PuHuiTi-Bold';
    color: #FFF;
    font-size: .21rem;
}

.nav li:last-child>a {
    padding-right: 0;
}

.nav .drop {
    min-width: 100%;
    left: 50%;
    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: translateX(-50%) rotateX(90deg);
    -webkit-transform: translateX(-50%) rotateX(90deg);
    -moz-transform: translateX(-50%) rotateX(90deg);
    -ms-transform: translateX(-50%) rotateX(90deg);
    -o-transform: translateX(-50%) rotateX(90deg);
    background-color: rgba(255, 255, 255, .95);
    line-height: 2.4;
    font-size: .14rem;
    word-break: keep-all;
}

.nav .drop a {
    padding: 0 .1rem;
}

.search-content {
    background: #1E52CB;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(../images/close.png)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.png)no-repeat center;
    background-size: .3rem;
}

.menu {
    background: #1E52CB;
    background-size: cover;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10001;
    display: none;
    width: 100%;
    height: 100%;
}

.menu .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: #F6541B url(../images/close.png)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.menu ul {
    height: 100%;
}

.menu li {
    position: relative;
    border-right: 1px rgba(68, 127, 217, .3) solid;
    padding-top: 1.4rem;
    padding-right: .4rem;
    padding-left: .3rem;
}

@keyframes louver {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

.menu li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    transition: all .3s;
    transform-origin: right top;
    animation: louver .5s linear .3s forwards;
}

.menu li>a {
    color: #FFF;
    font-size: .24rem;
    border-bottom: 1px rgba(68, 127, 217, .3) solid;
    line-height: 2.2;
}

.menu li>a::after {
    content: '';
    position: absolute;
    height: 3px;
    width: .5rem;
    background-color: #417ed8;
    left: 0;
    bottom: -1px;
}

.menu .drop {
    width: 100%;
    z-index: 9;
    line-height: 2;
}

.menu .drop a {
    color: #f1f0f4;
    opacity: .5;
    font-size: .18rem;
    margin-top: .3rem;
}

.footer {
    padding-top: .6rem;
    padding-bottom: .6rem;
    background: url(../images/footerbg.jpg)no-repeat center;
    background-size: cover;
    color: #FFF;
}

.footer .logo {
    margin-right: 1.5rem;
}

.footer .logo img {
    width: 3.42rem;
}

.footer .f-nav .tit {
    font-weight: 700;
    font-size: .24rem;
}

.footer .f-nav .sub {
    margin-top: .1rem;
}

.footer .f-nav .item {
    opacity: .7;
    color: #FFF;
    line-height: 2.2;
}

.footer .f-nav>div:last-child {
    margin-left: 1.3rem;
}

.footer .f-nav>div:last-child .item {
    width: 38%;
}

.footer .f-nav>div:last-child .item:nth-child(even) {
    width: 62%;
}

.footer .tel-box {
    width: 2.65rem;
}

.footer .tel-box .tel {
    width: 100%;
    border: 1px rgba(255, 255, 255, .6) solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: .25rem .25rem .25rem .75rem;
    background: url(../images/tel.png)no-repeat .25rem center;
    background-size: .4rem;
    font-size: .24rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .2rem;
}

.footer .tel-box .tel:last-child {
    margin-bottom: 0;
}

.footer .tel-box .tel .txt {
    font-size: .14rem;
    font-weight: normal;
}

.footer>div:last-child {
    margin-top: .6rem;
    padding-top: .3rem;
    border-top: 1px rgba(255, 255, 255, .3) solid;
}

.footer .copyright,
.footer .copyright a {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.footer .copyright a img {
    width: .34rem;
    margin-right: .1rem;
}

.footer .copyright p:last-child {
    margin-top: .1rem;
}

.footer .sns>div {
    width: .9rem;
    height: .9rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: rgba(184, 227, 248, 0.5);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.footer .sns .wx {
    background-image: url(../images/db-icwx.png);
    background-size: .43rem;
}

.footer .sns .wb {
    background-image: url(../images/db-icwb.png);
    background-size: .46rem;
    margin-right: .3rem;
}

.footer .sns .erwma {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: .9rem;
    width: 2rem;
    background-color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: .3rem;
    font-size: .2rem;
    display: none;
}

.footer .sns .erwma img {
    width: 100%;
}

.footer .sns .erwma .text {
    margin-top: .1rem;
    color: #333;
}

.n-banner {
    overflow: hidden;
}

.n-banner img {
    width: 100%;
}

.footer .sns>div:hover .erwma {
    display: block;
}

@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);
    }
    .footer .f-nav .item:hover,
    .menu .drop a:hover {
        opacity: 1;
    }
    .footer .copyright a:hover {
        color: #FFF;
    }
    
}

@media (min-width:1025px) {
    .nav li:hover .drop {
        opacity: 1;
        transform: translateX(-50%) rotateX(0deg);
        -webkit-transform: translateX(-50%) rotateX(0deg);
        -moz-transform: translateX(-50%) rotateX(0deg);
        -ms-transform: translateX(-50%) rotateX(0deg);
        -o-transform: translateX(-50%) rotateX(0deg);
    }
    .nav .drop a:hover {
        background-color: #f8f8f8;
    }
}

@media (max-width:1199px) {
    .menu-btn,
    .header .top,
    .search-content {
        display: block;
    }
    .nav-btn,
    .header .search-btn,
    .search-content .close,
    .header.on::after {
        display: none;
    }
    .header {
        padding-top: 0;
        height: 1.2rem;
        padding-left: .2rem;
    }
    .header::after {
        height: 100%;
    }
    .header.on {
        background-color: #417ed8;
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #417ed8;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
    }
    .nav {
        display: block;
        margin-top: .3rem;
    }
    .nav li>a {
        font-size: 16px;
        padding: 0;
        line-height: .9rem;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: .9rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.png)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        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: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        background: none;
        padding-left: .2rem;
        word-break: break-all;
    }
    .nav .drop a {
        color: #FFF;
        padding: 0;
    }
    .header .top,
    .search-content .content input[type='text'],
    .nav .drop a {
        font-size: 14px;
    }
    .footer .copyright,
    .footer .tel-box .tel .txt {
        font-size: 12px;
    }
    .footer .f-nav .tit,
    .footer .tel-box .tel {
        font-size: 18px;
    }
    .footer .tel-box {
        width: 3.2rem;
    }
    .footer .f-nav>div:last-child {
        margin-left: .7rem;
    }
    .search-content {
        height: .7rem;
        left: auto;
        top: auto;
        margin-top: .3rem;
        background: none;
    }
    .search-content,
    .search-content .content {
        position: initial;
        width: 100%;
    }
    .search-content .content {
        left: auto;
        top: auto;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .search-content .content input[type='submit'] {
        background-size: .4rem;
    }
    .footer .logo {
        margin-right: .7rem;
    }
    .footer .sns>div:last-of-type .erwma {
        left: unset;
        right: 0;
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }
}

@media (max-width:950px) {
    .footer .logo {
        width: 100%;
        margin-right: 0;
    }
    .footer .tel-box {
        width: 4rem;
    }
    .footer .sns {
        width: 100%;
        justify-content: center;
        margin-top: .4rem;
    }
    .footer .sns .wb {
        margin-right: 0;
    }
    .footer .sns>div {
        margin-left: .6rem;
    }
    .footer .sns>div:first-of-type {
        margin-left: 0;
    }
    .footer .sns>div:last-of-type .erwma {
        left: 50%;
        right: unset;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}

@media (max-width:767px) {
    .header .top {
        line-height: 2;
        text-align: center;
    }
    .header .top span {
        margin: 0 .3rem;
    }
    .search-content .content input[type='submit'] {
        background-size: .5rem;
    }
    .footer .tel-box {
        width: 100%;
        margin-top: .4rem;
    }
    .footer .f-nav {
        margin-top: .4rem;
    }
    .footer .f-nav>div:last-child {
        margin-left: .4rem;
    }
}


/*  */

.wrap {
    background: url(../images/bg.jpg)no-repeat center bottom;
    padding-bottom: 1.6rem;
    background-size: cover;
}

.pub-content {
    background-color: #FFF;
    padding: .7rem .4rem
}

.sidebar {
    width: 3rem;
    background: url(../images/s-bg2.png)no-repeat top;
    padding-bottom: 2.6rem;
    color: #FFF;
    padding-left: .25rem;
    padding-right: .25rem;
    padding-top: .5rem;
    z-index: 10;
    margin-top: -1.5rem;
    margin-right: .8rem;
    background-size: cover;
    background-size: 100% 100%;
}

.sidebar .title {
    padding-left: .55rem;
}

.sidebar .title .en {
    font-size: .2rem;
    text-transform: capitalize;
    line-height: 1;
}

.sidebar .title .cn {
    font-size: .38rem;
    font-weight: bold;
    line-height: 1.2;
    margin-top: .1rem;
}

.sidebar .title::after {
    content: '';
    position: absolute;
    left: .25rem;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #FFF;
}

.sidebar .title::before {
    content: '';
    position: absolute;
    left: .27rem;
    top: -.5rem;
    height: .5rem;
    width: 1px;
    border-left: 1px dashed #FFF;
    opacity: .3;
}

.sidebar .sub {
    margin-top: .5rem;
}

.sidebar li {
    position: relative;
    /* height: .85rem; */
    border-bottom: 1px dashed rgba(255, 255, 255, .3);
    padding: .1rem 0;
}

.sidebar li .tit {
    position: relative;
    height: 100%;
    font-size: .2rem;
    color: #FFF;
    padding: .15rem;
}

.sidebar li.s2.on .tit,
.sidebar li.s2:hover .tit {
    background: #F6541B;
}

.sidebar li .tit a{
    color: #ffffff;
}

.sidebar li .arrow {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    background: url(../images/arrow.png) no-repeat  center;
    background-size: 80%;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    transition: all .3s;
}

.sidebar li.open .arrow {
    transform: rotate(90deg)
}

.sidebar li.on .tit {
    font-size: .21rem;
    font-weight: bold;
    background: #F6541B url(../images/arrow1.png)no-repeat 95% center;
    background-size: .2rem;
}

.sidebar li ul {
    display: none;
    position: relative;
    padding-left: .24rem;
    padding-top: .1rem;
    margin-top: .1rem;
    border-top: 1px dashed rgba(255, 255, 255, .3);
}

.sidebar li.on ul {
    display: block;
}

.sidebar li ul li {
    padding: 0;
    border: 0;
    margin: .4em 0;
}

.sidebar li ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8em;
    color: #ffffff;
}

.sidebar li ul li a::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(../images/arrow3.png) no-repeat center left;
    background-size: contain;
    margin-right: .5em;
    flex-shrink: 0;
}

.sidebar li ul li a::after {
    opacity: 0;
    content: "";
    display: block;
    width: 1.4em;
    height: .8em;
    background: url(../images/arrow1.png) no-repeat center right;
    background-size: contain;
    margin-left: auto;
    flex-shrink: 0;
}

.sidebar li ul li.on a,
.sidebar li ul li:hover a{
    background: #F6541B;
}

.sidebar li ul li.on a::after,
.sidebar li ul li:hover a::after {
    opacity: 1;
}

.pub-title {
    border-bottom: 1px #E4E4E4 solid;
    padding-bottom: .2rem;
    align-items: flex-end;
}

.pub-title span {
    font-size: .32rem;
    font-weight: bold;
    line-height: 1;
}

.crumbs {
    background: url(../images/home.png)no-repeat left center;
    font-size: .14rem;
    color: #666;
    padding-left: .25rem;
    background-size: .18rem;
}

.crumbs a {
    color: #666;
}

.page {
    margin-top: .5rem;
    font-size: .16rem;
}

.page a {
    line-height: .32rem;
    background-color: #FFF;
    border: 1px #cccccc solid;
    height: .34rem;
    padding: 0 .13rem;
    margin-left: -1px;
}

.page span {
    margin-left: .05rem;
    margin-right: .05rem;
}

.page .prev {
    margin-right: .05rem;
}

.page .next {
    margin-right: .05rem;
    margin-left: .05rem;
}

.page .txt {
    border: 1px #cccccc solid;
    padding-left: .05rem;
    padding-right: .05rem;
}

.page .on {
    background-color: #1E52CB;
    color: #FFF;
    border-color: #0B318F;
}

.page input[type='text'] {
    width: .4rem;
    height: .34rem;
    border-left: 1px #cccccc solid;
    border-right: 1px #cccccc solid;
    margin-left: .1rem;
    margin-right: .1rem;
}

.page input[type='submit'] {
    color: #FFF;
    background-color: #1E52CB;
    height: .34rem;
    padding: 0 .2rem;
    margin-left: .1rem;
    border: 1px #0B318F solid;
}


/* 图文 */

.image-list {
    overflow: hidden;
    margin-top: .2rem;
}

.image-list .item {
    background-color: #F2F7FE;
    padding: .3rem;
    margin-top: .2rem;
}

.image-list .item .pic {
    width: 3.2rem;
    padding-top: 18%;
    overflow: hidden;
    margin-right: .4rem;
}

.image-list .item .pic img {
    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%);
}

.image-list .item .tit {
    font-size: .2rem;
    font-weight: bold;
    margin-top: .15rem;
    line-height: 1.7;
}

.image-list .item .date {
    color: #1E52CB;
    font-size: .16rem;
    margin-top: .2rem;
    padding-bottom: .1rem;
}

.image-list .item .date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: .5rem;
    background-color: #B4C1D4;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.image-list .item .des {
    color: #6C6865;
    font-size: .14rem;
    line-height: 1.8;
    margin-top: .15rem;
}

.text-list .item {
    margin-top: .6rem;
}

.text-list .item .date {
    border: 1px #1E52CB solid;
    background-color: #1E52CB;
    color: #FFF;
    font-size: .14rem;
    width: .86rem;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: .95rem;
    margin-right: .4rem;
}

.text-list .item .date span {
    background-color: #FFF;
    color: #1E52CB;
    font-size: .42rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: .05rem;
}

.text-list .item .tit {
    font-size: .2rem;
    font-weight: 550;
}

.text-list .item .des {
    opacity: .7;
    font-size: .14rem;
    line-height: 1.7;
    margin-top: .1rem;
}

.details {
    margin-top: .6rem;
}

.details .title {
    font-size: .36rem;
    font-weight: bold;
}

.details .info {
    font-size: .14rem;
    color: #8C8C8C;
    margin-top: .3rem;
    padding-bottom: .3rem;
    border-bottom: 1px #D9D1CB solid;
}

.details .info span {
    margin: 0 .2rem;
}

.details .body {
    line-height: 2;
}

.details .body p {
    text-indent: .36rem;
    margin-top: .3rem;
}

.details .body video {
    max-width: 100% !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.details .body img {
    max-width: 100% !important;
    margin-top: .3rem;
    /* margin-left: -0.36rem; */
    display: block;
    margin: 0 auto;
  height:auto!important;
}

.details .text {
    background-color: #F2F7FE;
    border-left: 4px #1E52CB solid;
    padding: .2rem;
    line-height: 2;
    margin-top: .4rem;
}

.details .prev-next {
    margin-top: .7rem;
    padding-top: .4rem;
    line-height: 2.4;
    border-top: 1px #D9D1CB solid;
    font-size: .2rem;
}

.details .prev-next span {
    color: #1E52CB;
    font-weight: bold;
}

.picture-list .first {
    background: url(../images/bg1.png) no-repeat left top;
    padding-top: .9rem;
    margin-top: .55rem;
    background-size: cover;
}

.picture-list .first .pic {
    width: 8.5rem;
    padding-top: 30%;
    overflow: hidden;
}

.picture-list .first .pic img {
    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%);
}

.picture-list .first .tit {
    font-size: .3rem;
    font-weight: bold;
    color: #FFF;
}

.picture-list .p1 {
    width: 66%;
    height: 4.5rem;
    margin-top: .23rem;
    overflow: hidden;
}

.picture-list .pic-con {
    width: 32%;
}

.picture-list .p2 {
    width: 100%;
    height: 2.14rem;
    overflow: hidden;
    margin-top: .23rem;
}

.picture-list .item {
    width: 32%;
    margin-top: .3rem;
    margin-right: 2%;
    height: 2.14rem;
    overflow: hidden;
}

.picture-list .item:nth-of-type(3n) {
    margin-right: 0;
}

.picture-list .con .pic::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    z-index: 1;
}

.picture-list .con .text {
    position: absolute;
    left: 0;
    bottom: .1rem;
    font-size: .16rem;
    color: #FFF;
    z-index: 10;
    width: 100%;
    line-height: 2;
}

@media (min-width:1025px) {
    .sidebar li:hover .tit {
        font-size: .21rem;
        font-weight: bold;
        background: #F6541B url(../images/arrow1.png)no-repeat 95% center;
        background-size: .2rem;
    }
    .page a:hover {
        background-color: #1E52CB;
        color: #FFF;
        border-color: #95000a;
    }
    .image-list .item:hover {
        background: url(../images/hoverbg.png)no-repeat center;
        background-size: cover;
        color: #FFF;
    }
    .image-list .item:hover .pic img,
    .picture-list .first:hover .pic img {
        transform: scale(1.05) translate(-50%, -50%);
        -webkit-transform: scale(1.05) translate(-50%, -50%);
        -moz-transform: scale(1.05) translate(-50%, -50%);
        -ms-transform: scale(1.05) translate(-50%, -50%);
        -o-transform: scale(1.05) translate(-50%, -50%);
    }
    .image-list .item:hover .date,
    .image-list .item:hover .des {
        color: #FFF;
    }
    .image-list .item:hover .des {
        opacity: .7;
    }
    .image-list .item:hover .date::after {
        width: 1.1rem;
    }
    .text-list .item:hover .date span {
        background-color: #1E52CB;
        color: #FFF;
    }
    .picture-list .item:hover img,
    .picture-list .p2:hover img,
    .picture-list .p1:hover 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);
    }
}

@media (max-width:1199px) {
    .sidebar li .tit,
    .image-list .item .tit,
    .text-list .item .tit,
    .details .prev-next,
    .picture-list .con .text {
        font-size: 14px;
    }
    .crumbs,
    .page,
    .image-list .item .date,
    .image-list .item .des,
    .text-list .item .des,
    .text-list .item .date,
    .details .info {
        font-size: 12px;
    }
    .pub-title span {
        font-size: 22px;
    }
    .text-list .item .date span,
    .picture-list .first .tit {
        font-size: 20px;
    }
    .details .title {
        font-size: 18px;
    }
    .sidebar {
        margin-right: .3rem;
    }
    .page .txt,
    .page input[type='submit'] {
        display: none;
    }
    .pub-content {
        padding: .5rem .2rem;
    }
    .text-list .item .date {
        width: 1rem;
        height: 1.1rem;
    }
    .text-list .item .date span {
        line-height: .7rem;
    }
    .details .info span {
        margin: 0 .1rem;
    }
}

@media (max-width:767px) {
    .wrap {
        padding-bottom: .9rem;
    }
    .sidebar {
        display: none;
    }

    .page a {
        height: .4rem;
        line-height: .38rem;
    }
    .image-list .item .pic {
        margin-right: 0;
        width: 100%;
        padding-top: 55%;
    }
    .picture-list .first .pic {
        width: 100%;
        margin-right: 0;
        padding-top: 55%;
    }
    .picture-list .first .tit {
        font-size: 18px;
        margin-top: .2rem;
        margin-bottom: .2rem;
    }
    .picture-list .p1,
    .picture-list .pic-con,
    .picture-list .item {
        width: 100%;
    }
    .picture-list .item {
        margin-right: 0;
    }
    .picture-list .p2,
    .picture-list .item {
        height: 3.8rem;
    }
}


.body_b {
    height: 0;
    transition: height 0.7s cubic-bezier(0.5,0,0.2,1) 0s;
    overflow: hidden;
}
.body_b.showdiv{
    height: 100vh;
}

.banner,
.banner .swiper-slide {
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
}

.banner .swiper-pagination {
    z-index: 10;
    color: #FFF;
    left: 3rem;
    bottom: .6rem;
    flex-wrap: wrap;
}

.banner .swiper-slide-active 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);
}

.banner .swiper-pagination::after {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    height: 1px;
    width: 2.9rem;
    background-color: rgba(255, 255, 255, .6);
}

.banner .swiper-pagination::before {
    content: '';
    position: absolute;
    left: -.1rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border: 1px rgba(255, 255, 255, .6) solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.banner .swiper-pagination-bullet {
    margin: 0 .15rem !important;
    width: auto;
    height: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    opacity: 1;
    background: none;
    position: relative;
}

.banner .swiper-pagination-bullet-active {
    /* width: .67rem; */
    /* height: .67rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    background: url(../images/banner-icon.png)no-repeat center;
    background-size: 100%;
    /* line-height: .67rem; */
    line-height: 1;
    font-size: .32rem;
    font-family: 'Impact';
    margin: 0 1.1rem 0 .3rem !important;
}

.banner .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    height: 1px;
    width: .6rem;
    background-color: rgba(255, 255, 255, .6);
}

.banner .swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    right: -1.05rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border: 1px rgba(255, 255, 255, .6) solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: .53rem;
    height: .53rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    top: auto;
    margin-top: auto;
    bottom: .5rem;
    z-index: 10;
}

.banner .swiper-button-prev {
    background-image: url(../images/prev.png);
    left: auto;
    right: 3.3rem;
}

.banner .swiper-button-next {
    background-image: url(../images/next.png);
    right: 2.6rem;
}

.banner .mouse {
    position: absolute;
    left: 50%;
    bottom: .4rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: .9rem;
    height: .9rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px rgba(255, 255, 255, .6) solid;
    z-index: 11;
    cursor: pointer;
}

.banner .mouse::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: .37rem;
    height: .37rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: url(../images/mouse.png)no-repeat center;
    background-size: 100%;
    animation: 2s linear infinite mouse;
    -webkit-animation: 2s linear infinite mouse;
}

@keyframes mouse {
    0% {
        margin-top: -.1rem;
    }
    50% {
        margin-top: 0;
    }
    100% {
        margin-top: -.1rem;
    }
}

.home-title {
    padding-left: .3rem;
    background: url(../images/tit-icon.png)no-repeat left center;
    background-size: .99rem;
}

.home-title .title {
    font-size: .42rem;
    font-weight: bold;
}

.home-title .more {
    background-color: #1E52CB;
    color: #FFF;
    position: absolute;
    right: 0;
    bottom: .2rem;
    font-size: .18rem;
    font-weight: 550;
    line-height: .4rem;
    border-radius: .2rem;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
    padding: 0 .3rem;
}

.home-title .more::after {
    content: '';
    width: .09rem;
    height: .14rem;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.home-news {
    background: url(../images/bg2.jpg)no-repeat center;
    background-size: cover;
    padding-top: 1.05rem;
    padding-bottom: 1.3rem;
    padding-top: 1.5rem;
}

.home-news .content {
    margin-top: .2rem;
}

.home-news .gallery-top {
    width: 8.2rem;
    margin: 0;
}

.home-news .gallery-top .swiper-slide {
    overflow: hidden;
}

.home-news .gallery-top .pic {
    width: 100%;
    height: 5.5rem;
    overflow: hidden;
}

.home-news .gallery-top .text-con {
    margin-right: .6rem;
    padding: .3rem .5rem .2rem .3rem;
    background-color: #FFF;
}

.home-news .gallery-top .tit {
    font-size: .2rem;
    font-weight: bold;
}

.home-news .gallery-top .des {
    color: #697589;
    line-height: 1.7;
    margin-top: .1rem;
}

.home-news .gallery-top .swiper-button-white {
    width: .52rem;
    height: .5rem;
    margin-top: 0;
    background-size: .15rem;
}

.home-news .gallery-top .swiper-button-next {
    right: 0;
    top: 5.5rem;
    background-color: #F6541B;
}

.home-news .gallery-top .swiper-button-prev {
    right: .52rem;
    top: 5.5rem;
    left: auto;
    background-color: #1E52CB;
}

.home-news .gallery-thumbs {
    width: 7.2rem;
    height: 7.35rem;
    margin: 0;
}

.home-news .gallery-thumbs li {
    border-bottom: 1px #DFE7EF solid;
    padding-top: .3rem;
    padding-bottom: .3rem;
    padding-left: .3rem;
    padding-right: .3rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-news .gallery-thumbs .date {
    color: #1E52CB;
    font-size: .14rem;
    margin-right: .3rem;
    z-index: 10;
    width: .6rem;
    flex-shrink: 0;
}

.home-news .gallery-thumbs .date+.flex-1 {
    flex-basis: auto;
}

.home-news .gallery-thumbs .date::before {
    content: '';
    position: absolute;
    left: 0;
    top: -.4rem;
    width: 100%;
    height: 0;
    z-index: -1;
    background-color: #1E52CB;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-news .gallery-thumbs .date span {
    font-size: .36rem;
    font-weight: 550;
    line-height: 1;
}

.home-news .gallery-thumbs .date::after {
    content: '';
    background-color: #E0E0E0;
    height: .5rem;
    width: 1px;
    position: absolute;
    right: -.15rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-news .gallery-thumbs .date em {
    display: none;
}

.home-news .gallery-thumbs .tit {
    font-size: .2rem;
    /* max-height: .6rem; */
    line-height: 1.2;
}

.home-news .gallery-thumbs .des {
    color: #666;
    font-size: .16rem;
    margin-top: .08rem;
   line-height: .26rem;
   height: .26rem;
}

.home-news .gallery-thumbs li {
    cursor: pointer;
}

.home-news .gallery-thumbs .active {
    background-color: #FFF;
}

.home-news .gallery-thumbs .active .date::after {
    display: none;
}

.home-news .gallery-thumbs .active .date::before {
    height: 1.2rem;
}

.home-news .gallery-thumbs .active .date {
    color: #FFF;
}

.home-news .gallery-thumbs .active .date p {
    display: none;
}

.home-news .gallery-thumbs .active .date em {
    display: block;
    font-style: normal;
    padding-bottom: .1rem;
    margin-top: -.2rem;
    margin-bottom: .1rem;
    font-size: .14rem;
}

.home-news .gallery-thumbs .active .date em::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, .6);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: .26rem;
}
.home-news .gallery-thumbs .active .tit{
 -webkit-line-clamp: 2;
} 
.home-news .gallery-thumbs .active .des {
    -webkit-line-clamp: 2;
    height: .52rem;
}

.home-media {
    background: url(../images/bg3.jpg)no-repeat center;
    background-size: cover;
    padding-bottom: .8rem;
}

.home-media .title-con .title {
    position: absolute;
    left: 50%;
    top: -1.05rem;
    width: 2.11rem;
    height: 2.11rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    box-shadow: 0 .05rem .15rem rgba(0, 0, 0, .1);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.home-media .title-con .title img {
    z-index: 10;
    width: .82rem;
}

.home-media .title-con .title::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.885rem;
    margin-top: -.885rem;
    width: 1.77rem;
    height: 1.77rem;
    background: url(../images/c1.png)no-repeat center;
    background-size: 100% 100%;
    animation: 20s linear infinite ani_turn2;
    -webkit-animation: 20s linear infinite ani_turn2;
}

.home-media .title-con .title::before {
    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: 1.3rem;
    height: 1.3rem;
    background: #1E52CB;
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-media .title-con .more {
    position: absolute;
    color: #1E52CB;
    font-size: .22rem;
    left: 3.9rem;
 left: 2.9rem;
    top: .85rem;
}

.home-media .sns {
    position: absolute;
    top: .6rem;
}

.home-media .sns a>img {
    width: .82rem;
}

.home-media .sns a {
    position: relative;
    z-index: 2;
}

.home-media .sns a .code-box {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
}

.home-media .sns a:hover .code-box {
    display: block;
}

.home-media .t1 {
    position: absolute;
    top: .6rem;
    right: 0;
    z-index: 1;
}

.home-media .t1 img {
    width: 4.99rem;
}

.home-media .focus {
    width: 7.2rem;
    height: 5.4rem;
    overflow: hidden;
    margin-top: 1.6rem;
    margin-right: 2px;
}

.home-media .focus .swiper-slide {
    overflow: hidden;
}

.home-media .focus .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    z-index: 1;
}

.home-media .focus .swiper-button-white {
    border: 1px #FFF solid;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: url(../images/prev1.png)no-repeat center;
    background-size: .18rem;
    margin-top: 0;
    top: auto;
    bottom: .4rem;
}

.home-media .focus .swiper-button-prev {
    left: .4rem;
}

.home-media .focus .swiper-button-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    right: auto;
    left: 1.1rem;
}

.home-media .text-con {
    margin-top: 1.6rem;
}

.home-media .text-con .item {
    padding-left: 1.2rem;
    padding-top: .3rem;
    padding-bottom: .3rem;
    z-index: 10;
}

.home-media .text-con .item .media {
    font-family: 'SourceHanSerifCN-Bold';
    font-size: .2rem;
    color: #FFE871;
}

.home-media .text-con .item .tit {
    font-size: .2rem;
    margin-top: .1rem;
    color: #FFF;
}

.home-media .text-con .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(105, 192, 255, .9), rgba(105, 192, 255, 0));
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

@keyframes ani_turn2 {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.home-notice {
    padding-top: .9rem;
    padding-bottom: .9rem;
    background: url(../images/bg4.png)no-repeat center;
    background-size: cover;
}

.home-notice .home-title .more {
    color: #1E52CB;
    background: none;
    padding: 0;
}

.home-notice .content {
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    margin-top: .45rem;
}

.home-notice .item {
    width: 25%;
    background-color: #FFF;
    padding-top: .6rem;
    padding-bottom: .7rem;
    padding-left: .35rem;
    padding-right: .35rem;
}

.home-notice .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 1.78rem;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, .2);
}

.home-notice .item .date {
    font-family: 'PingFang SC';
}

.home-notice .item .date span {
    font-size: .42rem;
    font-weight: 500;
}

.home-notice .item .tit {
    margin-top: 1.1rem;
    font-size: .2rem;
}

.home-notice .item .dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: .2rem;
    height: .2rem;
    background-color: #FFF;
    border: 2px #9BB4CF solid;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 1.7rem;
}

.home-notice .item .dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: .36rem;
    height: .36rem;
    background: url(../images/hover.png)no-repeat center;
    background-size: 100%;
    opacity: 0;
    margin-left: -.18rem;
    margin-top: -.18rem;
}

.home-yinxiang {
    background: url(../images/bg5.png)no-repeat right bottom;
    background-size: cover;
    align-items: flex-end;
}

.home-yinxiang .title-con {
    position: absolute;
    left: 1.6rem;
    top: .7rem;
}

.home-yinxiang .title-con .title img {
    width: 1.65rem;
}

.home-yinxiang .title-con .more {
    color: #FFF;
    font-size: .22rem;
    opacity: .9;
    /* transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg); */
    position: absolute;
    right: .28rem;
    bottom: .2rem;
    line-height: 1.2;
    width: 1em;
    padding-top: .3rem;
    text-decoration: none;
}
.home-yinxiang .title-con .more:hover {
    text-decoration: none !important;
}

.home-yinxiang .title-con .more::after {
    content: '';
    position: absolute;
    height: .15rem;
    width: 1px;
    background-color: #FFF;
    top: .12rem;
    left: 50%;
}

.home-yinxiang .txt {
    position: absolute;
    left: 1.8rem;
    bottom: 1.4rem;
}

.home-yinxiang .txt img {
    width: 1.72rem;
}

.home-yinxiang .l-con {
    width: 9.1rem;
    background: url(../images/bg6.png)no-repeat center;
    background-size: cover;
    padding-left: .4rem;
    justify-content: flex-end;
}

.home-yinxiang .focus {
    width: 5.2rem;
}

.home-yinxiang .focus .swiper-container {
    padding-bottom: 1.35rem;
}

.home-yinxiang .focus .swiper-slide {
    height: 7.6rem;
}

.home-yinxiang .focus .swiper-button-white {
    border: 1px #FFF solid;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: url(../images/prev1.png)no-repeat center;
    background-size: .18rem;
    margin-top: 0;
    top: auto;
    bottom: .4rem;
}

.home-yinxiang .focus .swiper-button-prev {
    left: 38%;
}

.home-yinxiang .focus .swiper-button-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    right: 38%;
}

.home-yinxiang .play-con {
    margin-top: .4rem;
    width: 7.67rem;
    padding-bottom: .38rem;
    margin-right: auto;
    margin-left: .84rem;
}

.home-yinxiang .play-con .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.home-yinxiang .play-con .title {
    position: absolute;
    background-image: linear-gradient(90deg, #1E52CB, rgba(30, 82, 203, 0));
    height: 1.25rem;
    width: 3.6rem;
    top: 2.15rem;
    left: -.84rem;
    z-index: 10;
}

.home-yinxiang .play-con .title img {
    height: .71rem;
}

.home-yinxiang .play-con span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border: 1px #FFF solid;
    background: rgba(0, 0, 0, .2) url(../images/play.png)no-repeat center;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-size: .35rem;
}

.home-yinxiang .play-con .pic {
    width: 100%;
    height: 5.55rem;
    overflow: hidden;
}

.home-yinxiang .play-con .text-con {
    padding-right: .6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-yinxiang .play-con .tit {
    font-size: .2rem;
    margin-top: .5rem;
}

.home-yinxiang .play-con .des {
    color: #555;
    opacity: .7;
    line-height: 1.7;
    margin-top: .2rem;
    margin-bottom: .5rem;
}

.home-yinxiang .play-con .arrow {
    width: .5rem;
    height: .5rem;
    background: #1E52CB url(../images/prev1.png)no-repeat center;
    background-size: .18rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /* margin-top: .5rem; */
    margin-top: auto;
}

.home-yinxiang .play-con .swiper-slide .pic::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    z-index: 2;
}

.home-yinxiang .play-con .text {
    position: absolute;
    z-index: 10;
    color: #FFF;
    left: 0;
    width: 100%;
    bottom: .2rem;
    padding: 0 .2rem;
    font-size: .2rem;
}

.home-yinxiang .play-con .swiper-button-prev,
.home-yinxiang .play-con .swiper-button-next {
    background: url(../images/prev1.png)no-repeat center;
    background-size: .25rem;
    margin-top: 0;
    top: 5rem;
}

.home-yinxiang .play-con .swiper-button-prev {
    left: auto;
    right: .9rem;
}

.home-yinxiang .play-con .swiper-button-next {
    right: .3rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-special {
    background: url(../images/bg7.png)no-repeat center bottom;
    background-size: cover;
    padding-top: .7rem;
    padding-bottom: .7rem;
}

.home-special .home-title .more {
    background: none;
    color: #1E52CB;
    padding: 0;
}

.home-special .swiper-container {
    /* margin-top: .5rem; */
    padding-top: .5rem;
    padding-bottom: .8rem;
}

.home-special .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
}

.home-special .swiper-slide img {
    width: 100%;
    height: 2.6rem;
}

.home-special .swiper-slide-prev img{
    -webkit-clip-path: polygon(0 0, 100% 6%, 100% 94%, 0% 100%);
    clip-path: polygon(0 0, 100% 6%, 100% 94%, 0% 100%);
}

.home-special .swiper-slide-next img{
    -webkit-clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 940%);
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 94%);
}

.home-special .swiper-pagination {
    bottom: 0;
}

.home-special .swiper-pagination-bullet {
    width: .12rem;
    height: .12rem;
    background-color: #1E52CB;
    margin: 0 .2rem !important;
    opacity: 1;
}

.home-special .swiper-pagination-bullet-active {
    width: .36rem;
    height: .36rem;
    background: url(../images/hover.png)no-repeat center;
    background-size: 100%;
}

.home-special .tool {
    margin-top: .9rem;
}

.home-special .tool .icon img {
    width: 1.2rem;
}

.home-special .tool .text {
    font-size: .2rem;
    margin-top: .2rem;
}

#nav {
    right: .3rem;
    position: fixed;
    bottom: 10%;
    width: .68rem;
    background-color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    z-index: 20;
}

#nav a {
    display: block;
    font-size: .14rem;
    color: #666;
    line-height: .48rem;
}

#nav .current a {
    background: #1E52CB;
    color: #FFF;
}

.home-media .text-con .item.on::after {
    width: 100%;
}

@media (min-width:1025px) {
    .home-title .more:hover,
    .home-media .title-con .more:hover,
    .home-yinxiang .title-con .more:hover {
        text-decoration: underline;
    }
    .home-news .gallery-top .swiper-slide:hover .pic img,
    .home-media .focus .swiper-slide:hover img,
    .home-yinxiang .play-con .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-media .focus .swiper-button-white:hover {
        background-color: #1E52CB;
        border-color: #1E52CB;
    }
    /* .home-media .text-con .item:hover::after {
        width: 100%;
    } */
    .home-media .text-con .item:hover .media,
    .home-media .text-con .item:hover .tit {
        color: #FFF;
    }
    .home-notice .item:hover {
        background-color: #F3F8FF;
    }
    .home-notice .item:hover .tit {
        font-weight: bold;
    }
    .home-notice .item:hover .dot {
        background: none;
        border-width: 0;
    }
    .home-notice .item:hover .dot::before {
        opacity: 1;
        animation: 10s linear infinite ani_turn2;
        -webkit-animation: 10s linear infinite ani_turn2;
    }
    .home-yinxiang .focus .swiper-button-white:hover {
        background-image: url(../images/prev2.png);
        background-color: #FFF;
    }
}

@media (max-width:1199px) {
    .banner .swiper-button-next {
        right: .3rem;
    }
    .banner .swiper-button-prev {
        right: .9rem;
    }
    .banner .swiper-pagination {
        left: .5rem;
        right: .5rem;
    }
    .banner .mouse {
        display: none;
    }
    .home-news .gallery-top .tit,
    .home-news .gallery-thumbs .tit,
    .home-media .text-con .item .media,
    .home-media .text-con .item .tit,
    .home-media .title-con .more,
    .home-title .more,
    .home-notice .item .tit,
    .home-yinxiang .play-con .text,
    .home-yinxiang .play-con .tit,
    .home-special .tool .text {
        font-size: 14px;
    }
    .home-news .gallery-top .des,
    .home-news .gallery-thumbs .date,
    .home-news .gallery-thumbs .active .date em,
    .home-news .gallery-thumbs .des,
    .home-notice .item .date,
    .home-yinxiang .play-con .des {
        font-size: 12px;
    }
    .home-news .gallery-thumbs .date span,
    .home-notice .item .date span {
        font-size: 20px;
    }
    .home-news .gallery-thumbs .date {
        /* width: .8rem; */
        min-width: 4em;
        width: auto;
    }
    .home-yinxiang .title-con {
        left: .3rem;
    }
    .home-yinxiang .txt {
        left: .5rem;
    }
    .home-yinxiang .l-con {
        width: 7.4rem;
    }
    .home-yinxiang .play-con {
        width: 6.5rem;
    }
    #nav {
        display: none;
    }
    .body_b,.body_b.showdiv {
        height: auto;
    }
    .banner img {
        height: auto;
    }
    .home-news {
        padding-top: 1.05rem;
    }
}

@media (max-width:767px) {
    .banner img {
        width: auto;
        height: 6rem;
    }
    .home-title .title {
        font-size: 24px;
    }
    .home-news .content {
        display: block;
    }
    .home-news .gallery-top,
    .home-news .gallery-thumbs,
    .home-media .focus {
        width: 100%;
    }
    .home-news .gallery-thumbs {
        margin-top: .4rem;
     height: auto;
    }
    .home-media {
        background-position: left top;
    }
    .home-media .sns,
    .home-media .t1 {
        display: none;
    }
    .home-media .text-con {
        margin-top: .3rem;
        background-color: rgba(30, 82, 203, .8);
        margin-left: -.2rem;
        margin-right: -.2rem;
        padding-left: .3rem;
        padding-right: .3rem;
    }
    .home-media .text-con .item {
        padding-left: 0;
    }
    .home-media .title-con .more {
        right: 0;
        left: auto;
        top: .3rem;
    }
    .home-notice .item {
        width: 50%;
    }
    .home-yinxiang {
        display: block;
        padding-bottom: .6rem;
    }
    .home-yinxiang .l-con,
    .home-yinxiang .play-con {
        width: 100%;
    }
    .home-yinxiang .play-con {
        margin-top: 0;
        padding-left: .2rem;
        padding-right: .2rem;
        padding-bottom: 0;
        margin-left: 0;
    }
    .home-yinxiang .play-con .title {
        position: initial;
        left: auto;
        top: auto;
    }
    .home-special .tool {
        margin-top: .4rem;
    }
    .home-special .tool .item {
        width: 33.333%;
        margin-top: .3rem;
    }
    .home-special .swiper-slide img{
        height: auto;
    }
    .home-special .swiper-slide-next img,
    .home-special .swiper-slide-prev img {
        clip-path: unset;
    }
}

@media (max-width:600px) {
   .pub-title.flex{
   display: inline-block;
}
.pub-title span{
  display: block;
}
.crumbs{
  display: inline-block;
 margin-top: 0.15rem;
}
}

@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {
    .body_b {
        height: 100vh;
    }
    .home-news {
        padding-top: 1.05rem;
    }
}

@media (max-width:520px) {
  .footer .f-nav .item{
      line-height: 1.4;
    margin-bottom: 0.6em;
}
}


/* 2025-2-24新增 */
@media (max-width: 767px) {
    .home-news .gallery-thumbs .tit {
        line-height: 1.2;
        max-height: unset;
    }
    .home-news .gallery-thumbs .des {
        line-height: 1.2;
        max-height: unset;
        height: auto !important;
    }
    .home-news .gallery-thumbs .active .date::before {
        font-size: 20px;
        height: calc(2em + .7rem);
    }
}

@media (max-width: 350px) {
    /* .home-news .gallery-thumbs .active .date::before {
        height: 1.4rem;
    } */
    .footer .f-nav>div:last-child .item:nth-child(even) {
        width: 58%;
        margin-left: 4%;
    }
}

@media (max-width: 320px) {
    .footer .f-nav>div:last-child .item {
        width: auto !important;
        margin-left: 0 !important;
        margin-right: .2rem;
    }
}