@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 !important;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw !important;
    }
}


/*= 清除浮动=*/

.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: 'SourceHanSerifCN-Bold';
    src: url('../fonts/SourceHanSerifCN-Bold.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('../fonts/SourceHanSerifCN-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-SemiBold';
    src: url('../fonts/SourceHanSerifCN-SemiBold.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Medium';
    src: url('../fonts/SourceHanSerifCN-Medium.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Heavy';
    src: url('../fonts/SourceHanSerifCN-Heavy.otf');
}

@font-face {
    font-family: 'AlibabaPuHuiTi-2-55-Regular';
    src: url('../fonts/AlibabaPuHuiTi-2-55-Regular.ttf');
}


/*原文件配置*/

body {
    color: #333;
    background: #FFFFFF;
    font: .2rem 'SourceHanSerifCN-SemiBold', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #4b929b;
}


/*块级转化*/

.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: 2.4rem;
    padding-right: 2.4rem;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 1.4rem;
    z-index: 999;
    padding-left: 2%;
    padding-right: 2%;
    border-bottom: 1px rgba(255, 255, 255, .9) solid;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 180%;
    background-image: linear-gradient(rgba(96, 167, 174, 1) 40%, rgba(96, 167, 174, 0));
    z-index: -1;
}

.header .logo img {
    height: .75rem;
}

.header .top {
    margin-top: .25rem;
    justify-content: flex-end;
}

.header .top a {
    color: #FFF;
    font-size: .18rem;
}

.header .top .home,
.header .top .book, 
.header .top .ai{
    font-family: 'SourceHanSerifCN-SemiBold';
    background-size: .17rem;
    padding-left: .25rem;
    margin-right: .3rem;
}
.header .top .home{
    background: url(../images/home.png)no-repeat left center;
}
.header .top .book {
    background: url(../images/book.png)no-repeat left center;
}
.header .top .ai{
   background: url(../images/AIgy.png)no-repeat left center;
}
.header .top .search-con {
    width: 2.4rem;
    height: .38rem;
    border-radius: .2rem;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
    background-color: rgba(255, 255, 255, .15);
    border: 1px rgba(255, 255, 255, .2) solid;
    overflow: hidden;
}

.header .top .search-con input[type='text'] {
    width: 100%;
    background: none;
    padding-left: .2rem;
    color: #FFF;
}

.header .top .search-con input[type='submit'] {
    width: .48rem;
    background: url(../images/search.png)no-repeat center;
    background-size: .2rem;
}

.header.fixed {
    background-color: #60a7ae;
}

.header.fixed::after {
    display: none;
}

.menu-btn {
    display: none;
    background: url(../images/menu.png)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 20px;
    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 li {
    margin-right: .2rem;
}


.nav li>a {
    line-height: .7rem;
    font-family: 'SourceHanSerifCN-Bold';
    color: #FFF;
    font-size: .22rem;
    white-space: nowrap;
    padding: 0 .16rem;
}

.nav li:last-child {
    margin-right: 0;
}

.nav li:last-child>a {
    padding-right: 0;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: .7rem;
    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.4;
    white-space: nowrap;
    font-size: .16rem;
}

.footer {
    background: url(../images/footer-bg.jpg)no-repeat left top;
    background-size: cover;
    padding-top: .55rem;
}

.copyright {
    font-size: .16rem;
    line-height: 1.7;
    font-family: 'SourceHanSerifCN-Regular';
    padding: .25rem 0;
    border-top: 1px #8dccd5 solid;
    margin-top: .3rem;
}

.footer .logo img {
    height: .74rem;
}

.footer .erwma {
    width: .95rem;
    overflow: hidden;
}

.footer .erwma img {
    width: 100%;
}

.footer .links {
    width: 5.1rem;
}

.footer .links .tit {
    font-family: 'SourceHanSerifCN-Bold';
    /* writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl; */
    margin-right: .4rem;
    width: 26px;
    line-height: 1;
}

.footer .links .con {
    font-size: .16rem;
}

.footer .links a {
    width: 40%;
    line-height: 1.7;
}

.footer .links a:nth-child(even) {
    width: 60%;
}
.text-list,
.img-list,
.details .body{
    min-height:4.5rem;
}
@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);
    }
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
   width: 100%;
          box-sizing: border-box;
    }
    .header {
        height: 1.2rem;
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .menu-btn,
    .nav li:first-child {
        display: block;
    }
    .header .top>a {
        display: none;
    }
    .header .top #divu2{
   width: 100%;
}
    .header .top .search-con {
        width: 100%;
        height: 40px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }
    .header .top .search-con input[type='submit'] {
        width: 50px;
        background-size: 20px;
    }
    .header .top .search-con input[type='text'] {
        font-size: 14px;
    }
    .header.on {
        background-color: #60a7ae;
    }
    .header.on::after {
        display: none;
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: rgba(96, 167, 174, 1);
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem;
    }
    .nav {
        margin-top: .3rem;
    }
    .nav li {
        width: 100%;
        margin-right: 0;
    }
    .nav li>a {
        font-size: 16px;
        line-height: 60px;
        padding: 0;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 60px;
        width: 30px;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.png)no-repeat center;
        background-size: 100%;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        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;
        font-size: 14px;
    }
    .nav .drop a {
        color: #FFF;
        padding-left: 20px;
    }
    .copyright,
    .footer .links .con {
        font-size: 12px;
    }
}

@media (max-width:950px) {
    .footer .links {
        width: 6.6rem;
    }
}

@media (max-width:767px) {
    .header {
        height: 65px;
    }
    .nav-con {
        top: 65px;
        height: calc(100vh - 65px);
    }
    .header .top {
        margin-top: 0;
    }
    .header .logo img {
        height: 35px;
    }
    .footer {
        padding-top: .3rem;
    }
  .footer .logo{
   display:block;
 margin:auto;
}
    .footer .logo img {
        height: 40px;
    }
    .footer .links {
        margin-top: .2rem;
        width: 100%;
    }
    .footer .erwma {
        margin: .2rem auto 0;;
        /* margin-left: auto;
        margin-right: auto; */
    }
.copyright{
  margin-top:0;
}
}

.banner,
.n-banner {
    overflow: hidden;
}

.banner img,
.n-banner img {
    width: 100%;
}

.sidebar {
    width: 3.6rem;
    background-image: linear-gradient(#88c9d0, #FFF);
    min-height: 8rem;
    z-index: 11;
    padding: 0 .3rem .3rem .3rem;
}

.sidebar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(#88c9d0, #FFF);
}

.sidebar::after {
    content: '';
    position: absolute;
    left: 0;
    top: -.4rem;
    width: 100%;
    height: 2.5rem;
    border-radius: 30% 30% 40% 40%;
    -webkit-border-radius: 30% 30% 40% 40%;
    -moz-border-radius: 30% 30% 40% 40%;
    -ms-border-radius: 30% 30% 40% 40%;
    -o-border-radius: 30% 30% 40% 40%;
    box-shadow: 0 .1rem .4rem rgba(0, 0, 0, .3);
    z-index: -2;
}

.sidebar .title {
    color: #FFF;
    font-size: .36rem;
    font-family: 'SourceHanSerifCN-Bold';
    line-height: 1;
    border-bottom: 2px #FFF solid;
    padding-bottom: .2rem;
}

.sidebar .title::before {
    content: '';
    position: absolute;
    left: -.3rem;
    right: -.3rem;
    height: .45rem;
    background: url(../images/s-bg.png)no-repeat right top;
    background-size: 100%;
    top: -.45rem;
}

.sidebar li>a {
    font-size: .22rem;
    line-height: .75rem;
    border-bottom: 1px #cae7ea solid;
}

.sidebar .arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: .6rem;
    height: .75rem;
    cursor: pointer;
}

.sidebar .arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: .2rem;
    height: .2rem;
    background: url(../images/arrow.png)no-repeat center;
    background-size: 100%;
    margin-left: -.1rem;
    margin-top: -.1rem;
}

.sidebar .submenu {
    padding: 0 .1rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.sidebar .submenu a {
    color: #FFF;
    line-height: .5rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #8bcad1;
    font-size: .18rem;
}

.sidebar li.on>a {
    background: url(../images/tbg1.png)no-repeat center;
    background-size: 100% 100%;
    color: #FFF;
    border-bottom: 0;
}

.sidebar li.on .arrow::after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.pub-content {
    background-color: #FFF;
    padding: 0 .45rem .55rem .55rem;
}

.pub-content::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: .45rem;
    background: url(../images/p-bg.png)no-repeat right top;
    background-size: 100%;
    top: -.45rem;
}

.pub-title {
    border-bottom: 1px #cfd3d4 solid;
    padding-bottom: .2rem;
}

.pub-title .title {
    font-size: .32rem;
    color: #6ab6bd;
    line-height: 1;
    font-family: 'SourceHanSerifCN-Bold';
    padding-left: .65rem;
}

.pub-title .title::before {
    content: '';
    position: absolute;
    left: .1rem;
    top: 0;
    width: .33rem;
    height: .34rem;
    background: url(../images/icon.png)no-repeat center;
    background-size: 100%;
}

.crumbs {
    font-size: .16rem;
    padding-left: .25rem;
    background: url(../images/home1.png)no-repeat left center;
    background-size: .17rem;
}

.crumbs a {
    margin-right: .05rem;
}

.crumbs a::after {
    content: '-';
    margin-left: .05rem;
}
 .crumbs a:nth-last-of-type(1):after{
        display: none;
    }
 .crumbs.nry a:nth-last-of-type(1):after{
  display: inline;
}

.crumbs span {
    color: #6ab6bd;
}

.pic:before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .6;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.page {
    margin-top: .5rem;
    line-height: .3rem;
    font-size: .16rem;
}

.page a {
    border: 1px #83C6CD solid;
    width: .3rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    height: .3rem;
    margin: 0 .05rem;
}

.page .idx,
.page .last {
    width: .48rem;
}

.page .prev,
.page .next {
    background: url(../images/arrow0.png)no-repeat center;
    background-size: .1rem;
}

.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: #6ab6bd;
    color: #FFF;
    border-color: #6ab6bd;
}

.img-list {
    margin-top: .4rem;
}

.img-list .item {
    padding: 0 .2rem .35rem .2rem;
    margin-bottom: .35rem;
    border-bottom: 1px #d4d4d4 solid;
}

.img-list .item .date {
    color: #6ab6bd;
    font-size: .14rem;
    line-height: 1;
    margin-right: .25rem;
}

.img-list .item .date span {
    font-size: .3rem;
    font-family: 'SourceHanSerifCN-Bold';
    line-height: 1.4;
}

.img-list .item .date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: .1rem;
    width: 100%;
    height: .21rem;
    background: url(../images/icon1.png)no-repeat center;
    background-size: auto 100%;
}

.img-list .item .pic {
    width: 1.75rem;
    overflow: hidden;
    padding-top: 11%;
    margin-right: .2rem;
}

.img-list .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.img-list .item .tit,
.txt-list .item .tit {
    font-size: .22rem;
    line-height: 1.2;
    height: .27rem;
}

.img-list .item .des,
.txt-list .item .des {
    font-size: .16rem;
    color: #666;
    line-height: 1.6;
    margin-top: .1rem;
    height: .52rem;
}

.txt-list .item {
    border-bottom: 1px #d4d4d4 solid;
    padding-top: .35rem;
    padding-bottom: .35rem;
}

.txt-list .item .date {
    width: 1.02rem;
    height: 1.02rem;
    background: url(../images/date1.png)no-repeat center;
    background-size: 100%;
    color: #83c7ce;
    font-size: .14rem;
    line-height: 1;
    margin-right: .35rem;
}

.txt-list .item .date span {
    font-size: .3rem;
    font-family: 'SourceHanSerifCN-Bold';
    margin-bottom: .1rem;
}

.details {
    margin-top: .3rem;
    margin-bottom: .6rem;
}

.details h1 {
    font-size: .24rem;
    line-height: 1.3;
    color: #6ab6bd;
}

.details .info {
    background-color: #e7f3f4;
    width: 100%;
    line-height: .45rem;
    margin-top: .3rem;
    font-size: .14rem;
    font-family: 'AlibabaPuHuiTi-2-55-Regular';
}

.details .info span {
    margin-right: .2rem;
    color: #666666;
}

.details .info span:last-child {
    margin-right: 0;
}

.details .body {
  margin-top: .4rem;
  font-family: 'AlibabaPuHuiTi-2-55-Regular';
  font-family: 'SourceHanSerifCN-Medium';
}
.details .body p{
  
    line-height: 2!important;
    text-indent: 0.36rem;
    font-size: .16rem!important;
}
.details .body img {
    max-width: 100%;
   height: auto!important;
}
.details .body p.vsbcontent_img {
    text-align: center;
    text-indent: 0rem;
}

.details .body iframe{
     margin: auto;
    display: block;
    max-width: 100%;
}

    .table-scroll {
    overflow-x: auto;
}


.details .body table{
   margin:auto;
  border-spacing:1px;background:#e6e6e6;
}
.details .body table td{
   box-sizing:border-box;padding:5px;background:#fff;
}
.details .body table td p{
    margin-bottom: 0;
    text-indent: 0rem;
}


.details .prev {
    margin-top: .4rem;
}

.details .prev a {
    background-color: #f4f9f9;
    width: 1.8rem;
    height: .5rem;
    color: #6ab6bd;
    font-size: .16rem;
}

.details .prev a.first::before {
    content: '';
    width: .16rem;
    height: .12rem;
    background: url(../images/arrow3.png)no-repeat center;
    background-size: 100%;
    margin-right: .1rem;
}

.details .prev a.last::after {
    content: '';
    width: .16rem;
    height: .12rem;
    background: url(../images/arrow3.png)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.text-list {
    margin-top: .25rem;
}

.text-list .item {
    height: .8rem;
    border-bottom: 1px #d4d4d4 solid;
    line-height: 1;
}

.text-list .item .tit {
    font-size: .22rem;
    margin-right: .2rem;
    height: .22rem;
}

.text-list .item .date {
    font-size: .18rem;
    color: #6ab6bd;
}

@media (min-width:1025px) {
    .sidebar .submenu a:hover {
        background-color: #a7d7dc;
    }
    .img-list .item:hover,
    .txt-list .item:hover,
    .text-list .item:hover {
        border-bottom-color: #6ab6bd;
    }
    .img-list .item:hover .des,
    .txt-list .item:hover .des {
        color: #6ab6bd;
    }
    .img-list .item:hover .pic::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        border: 2px #6ab6bd solid;
    }
    .img-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);
    }
    .img-list .item:hover .pic::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .txt-list .item:hover .date {
        background-image: url(../images/date2.png);
        color: #FFF;
    }
    .details .prev a:hover {
        background-color: #6ab6bd;
    }
    .details .prev a:hover {
        color: #FFF;
    }
    .details .prev a:hover:first-child::before,
    .details .prev a:hover:last-child::after {
        background-image: url(../images/arrow4.png);
    }
}

@media (max-width:1199px) {
    .sidebar .title {
        font-size: 24px;
    }
    .pub-title .title {
        font-size: 20px;
    }
    .sidebar li>a {
        line-height: 50px;
        font-size: 16px;
    }
    .sidebar .submenu a {
        font-size: 14px;
        line-height: 34px;
    }
    .crumbs,
    .img-list .item .date,
    .img-list .item .des,
    .page,
    .txt-list .item .des,
    .txt-list .item .date,
    .details .info,
    .text-list .item .date {
        font-size: 12px;
    }
    .img-list .item .date span,
    .txt-list .item .date span {
        font-size: 18px;
    }
    .img-list .item .tit,
    .txt-list .item .tit,
    .details .body,
    .details .prev a,
    .text-list .item .tit {
        font-size: 14px;
    }
    .page {
        line-height: 22px;
    }
    .page a {
        width: 24px;
        height: 24px;
    }
    .page .idx,
    .page .last {
        width: 50px;
    }
    .txt-list .item .date {
        width: 68px;
        height: 68px;
    }
    .details h1 {
        font-size: 18px;
    }
    .details .info {
        line-height: 28px;
    }
    .details .prev a {
        width: 120px;
        height: 34px;
    }
    .text-list .item {
        height: 45px;
    }
    .img-list .item .des,
    .img-list .item .tit,
    .txt-list .item .des,
    .txt-list .item .tit,
    .text-list .item .tit {
        height: auto;
    }
}

@media (max-width:950px) {
    .sidebar .title::before,
    .pub-content::before,
    .sidebar>ul,
    .sidebar::after {
        display: none;
    }
    .sidebar {
        width: 100%;
        margin-right: 0;
        min-height: auto;
    }
    .sidebar .title {
        line-height: 50px;
        padding-bottom: 0;
    }
    .sidebar .title::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 16px;
        height: 16px;
        background: url(../images/arrow.png)no-repeat center;
        background-size: 100%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .sidebar li.on>a {
        background: #83c7ce;
    }
.sidebar .title.cur::after{
   transform: translateY(-50%) rotate(90deg);
}
    .pub-content {
        padding-left: .2rem;
        padding-right: .2rem;
        margin-top: .3rem;
     width:100%;
    }
    .img-list .item .pic {
        width: 20%;
    }
}

@media (max-width:767px) {
    .sidebar .title {
        font-size: 20px;
    }
    .pub-title .title {
        font-size: 18px;
    }
    .details h1 {
        font-size: 16px;
    }
}

@media (max-width:540px) {
    .img-list .item {
        align-items: flex-start;
    }
    .img-list .item .pic {
        width: calc(100% - 39px - .42rem);
        margin-right: 0;
        padding-top: 45%;
    }
    .img-list .item .date {
        padding-bottom: .5rem;
    }
    .img-list .item .text-con {
        padding-left: calc(39px + .25rem);
        margin-top: .3rem;
    }
}

.banner .swiper-button-white {
    background-size: .2rem;
}

.banner .sort {
    position: absolute;
    left: 2.76rem;
    bottom: 1.1rem;
    z-index: 2;
    width: 14.4rem;
}

.banner .sort .tabs {
    background-color: rgba(255, 255, 255, .8);
    line-height: .6rem;
    border-radius: .2rem .2rem 0 0;
    -webkit-border-radius: .2rem .2rem 0 0;
    -moz-border-radius: .2rem .2rem 0 0;
    -ms-border-radius: .2rem .2rem 0 0;
    -o-border-radius: .2rem .2rem 0 0;
    width: 8.4rem;
    margin-left: .5rem;
}

.banner .sort .tabs span {
    color: #666;
    cursor: pointer;
}

.banner .sort .tabs span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: .2rem;
    width: 1px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #c2cdd5;
}

.banner .sort .tabs span:last-child::after {
    display: none;
}

.banner .sort .tabs .on {
    background-color: #e3b77f;
    color: #FFF;
    border-radius: .2rem .2rem 0 0;
    -webkit-border-radius: .2rem .2rem 0 0;
    -moz-border-radius: .2rem .2rem 0 0;
    -ms-border-radius: .2rem .2rem 0 0;
    -o-border-radius: .2rem .2rem 0 0;
}

.banner .sort .search-con {
    width: 100%;
    background-color: #FFF;
    height: 1rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, .5);
    padding-right: .2rem;
    padding-left: .4rem;
}

.banner .sort .search-con .input {
    width: 100%;
    height: .75rem;
    padding-left: .2rem;
    font-size: .22rem;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.banner .sort .search-con input[type='submit'] {
    width: .73rem;
    height: .73rem;
    background: #e3b77f url(../images/search1.png)no-repeat center;
    background-size: .32rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.banner .sort .checkbox {
    padding-left: .4rem;
    margin-top: .25rem;
    z-index: 2;
}

.banner .sort input[type='checkbox'] {
    width: 0;
}

.banner .sort .checkbox li {
    margin-right: .3rem;
}

.banner .sort .checkbox li:last-child {
    margin-right: 0;
}

.banner .sort label {
    cursor: pointer;
    color: #fff;
    font-size: .18rem;
}

.banner .sort .check_container {
    width: .18rem;
    height: .18rem;
    border: 1px solid snow;
    position: relative;
}

.banner .sort input[type='checkbox']:checked+.check_container:before {
    content: '';
    position: absolute;
    width: .03rem;
    height: .1rem;
    border-right: 2px solid snow;
    border-bottom: 2px solid snow;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    left: 6px;
}

.banner .select {
    width: 1.7rem;
    padding-right: .3rem;
}

.banner .select::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: .4rem;
    background-color: #bac4c6;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.banner .select:after {
    content: "";
    position: absolute;
    top: 50%;
    right: .3rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #a1acc5;
}


/* 隐藏原生的select样式 */

.banner .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #a1acc5;
    font-size: .22rem;
    width: 1.7rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    height: .7rem;
}

.banner .select option {
    font-size: .16rem;
}

.banner .select option {
    background-color: #f9f9f9;
    color: #333;
    line-height: 2.4;
}

.ssbg {
      
      
    }
.ssbg.ssbg2,
.ssbg.ssbg3,
.ssbg.ssbg4{
 
      height: 1.5rem;
}

.ssbg .dzcx{
   font-size: .14rem;
  padding: 0.08rem 0;
    background-color: rgba(255, 255, 255, .9);
      border-radius: 76px;
}
.ssbg .dzcx table{
    width: 320px;
  margin-left:18%;
}
.ssbg .dzcx img{
    width: auto;
}
.ssbg .dzcx input{
     height: 0.3rem;
    padding: 0px 5px;
   height: 0.28rem;
    padding: 0px 5px;
    border: 1px solid #ddd;
    margin: 3px 0px;
}

.ssbg .tycx{
     padding: 0.25rem 0px;
     background-color: rgba(255, 255, 255, .9);
     border-radius: 76px;
}
.ssbg .lmcx{
    padding: 0.25rem 0;
   background-color: rgba(255, 255, 255, .9);
     border-radius: 76px;
}
.ssbg .lmcx>div{
     width:600px;
     margin:auto;
}
.ssbg .tycx iframe,
.ssbg .lmcx iframe{
    margin: auto;
    display: block;
}
.ssbg .lmcx a{
  text-decoration: none;
}

.home-title {
    background: url(../images/titbg.png)no-repeat center top;
    background-size: 1.34rem;
    padding-top: .8rem;
}

.home-title .cn {
    font-size: .4rem;
    line-height: 1;
    font-family: 'SourceHanSerifCN-Bold';
}

.home-title .cn::before {
    content: '';
    position: absolute;
    left: -.75rem;
    bottom: 0;
    width: .66rem;
    height: .3rem;
    background: url(../images/t-left.png)no-repeat left center;
    background-size: 100%;
}

.home-title .cn::after {
    content: '';
    position: absolute;
    right: -.75rem;
    bottom: 0;
    width: .66rem;
    height: .3rem;
    background: url(../images/t-right.png)no-repeat left center;
    background-size: 100%;
}

.home-title .en {
    font-size: .16rem;
    color: #e1b67f;
    line-height: 1;
    margin-top: .1rem;
    text-transform: uppercase;
}

.home-news {
    background: url(../images/bg1.jpg)no-repeat center top;
    background-size: 100%;
    padding-bottom: 1.2rem;
    padding-top: .45rem;
    z-index: 2;
}

.home-news .content {
    margin-top: .65rem;
}

.home-news .focus {
    width: 7.3rem;
    margin-right: .5rem;
    z-index: 9;
}

.home-news .focus .pic {
    margin-left: .41rem;
    overflow: hidden;
    padding-top: 56.714%;
}

.home-news .focus .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-news .focus .pic::after {
    content: '';
    position: absolute;
    z-index: 2;
    background: url(../images/pic-line.png)no-repeat center;
    background-size: 100% 100%;
    left: .1rem;
    top: .1rem;
    right: .1rem;
    bottom: .1rem;
    width: auto;
}

.home-news .focus .text-con {
    margin-top: .3rem;
}

.home-news .focus .tit {
    font-size: .22rem;
    line-height: 1;
    height: .22rem;
}

.home-news .focus .des {
    font-size: .16rem;
    line-height: 1.6;
    font-family: 'SourceHanSerifCN-Regular';
    color: #666;
    margin-top: .15rem;
    height: .22rem;
}

.home-news .focus .date-con {
    position: absolute;
    left: 0;
    top: 0;
    width: .4rem;
    background: url(../images/tbg.jpg);
    height: 4.14rem;
    z-index: 10;
    line-height: 1;
}

.home-news .focus .date-con .tit {
    border-bottom: 1px #fff solid;
    font-size: .16rem;
    width: 100%;
    height: 25%;
    color: #FFF;
    cursor: pointer;
}

.home-news .focus .date-con .tit:last-child {
    border-bottom: 0;
}

.home-news .focus .date-con .tit span {
    margin-bottom: .15rem;
}

.home-news .focus .date-con .tit span::after {
    content: '/';
    position: absolute;
    left: 50%;
    bottom: -.16rem;
    transform: translateX(-50%) rotate(40deg);
    -webkit-transform: translateX(-50%) rotate(30deg);
    -moz-transform: translateX(-50%) rotate(30deg);
    -ms-transform: translateX(-50%) rotate(30deg);
    -o-transform: translateX(-50%) rotate(30deg);
}

.home-news .focus .date-con .on {
    background-color: rgba(0, 0, 0, .2);
}


/* .home-news .con {
    margin-bottom: .65rem;
}

.home-news .con:last-child {
    margin-bottom: 0;
} */

.home-news .con .title-con {
    margin-right: .15rem;
    width: .4rem;
}

.home-news .con .title {
    color: #79adb3;
    font-size: .28rem;
    font-family: 'SourceHanSerifCN-Bold';
    /* writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl; */
    margin-bottom: .8rem;
    cursor: pointer;
    letter-spacing: 0;
    line-height: 1;
    width: 28px;
}

.home-news .con .title.on {
    color: #333;
}

.home-news .con .title:last-child {
    margin-bottom: 0;
}

.home-news .con .item {
    width: 48%;
    padding-left: .25rem;
    margin-bottom: .65rem;
}

.home-news .con .item:nth-child(5),
.home-news .con .item:nth-child(6) {
    margin-bottom: 0;
}

.home-news .con .item::before {
    content: '';
    position: absolute;
    left: 0;
    top: .16rem;
    bottom: 0;
    width: 1px;
    border-left: 2px dotted #78adb3;
}

.home-news .con .item::after {
    content: '';
    position: absolute;
    left: -.05rem;
    top: 0;
    width: .08rem;
    height: .08rem;
    border: 2px solid #78adb3;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.home-news .con .date {
    color: #e1b67f;
    font-size: .14rem;
    line-height: 1;
}

.home-news .con .tit {
    font-size: .18rem;
    line-height: 1.6;
    margin-top: .2rem;
    height: .58rem;
    overflow: hidden;
}

.home-news .con .more {
    color: #78adb3;
    font-size: .16rem;
    margin-top: .15rem;
}
.home-news .con .more a{
    color: #78adb3;
}
.home-news .con .more::after {
    content: '';
    position: absolute;
    right: -.45rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .34rem;
    height: .14rem;
    background: url(../images/more.png)no-repeat center;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-news::after {
    content: '';
    position: absolute;
    left: .7rem;
    top: .9rem;
    animation: 30s linear infinite ani_turn2;
    -webkit-animation: 30s linear infinite ani_turn2;
    z-index: 1;
    width: 5rem;
    height: 5rem;
    background: url(../images/q1.png)no-repeat center;
    background-size: 100%;
}

@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-duzhe {
    background: url(../images/bg2.jpg)no-repeat center top;
    background-size: cover;
    padding-bottom: 1.2rem;
    padding-top: .4rem;
}

.home-duzhe .content {
    margin-top: .6rem;
}

.home-duzhe .item {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    width: 2.2rem;
    height: 4.3rem;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: .2rem;
    overflow: hidden;
}

.home-duzhe .item:last-child {
    margin-right: 0;
}

.home-duzhe .item .icon {
    width: 1.24rem;
    height: 1.24rem;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    margin-top: .8rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-duzhe .item .icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon-bg.png)no-repeat center;
    background-size: 100%;
    z-index: -1;
}

.home-duzhe .item .icon img {
    width: .7rem;
}

.home-duzhe .item .tit {
    font-size: .3rem;
    line-height: 1;
    color: #FFF;
    margin-top: .4rem;
}

.home-duzhe .item .arrow {
    width: .2rem;
    height: .21rem;
    margin-left: auto;
    margin-right: auto;
    background: url(../images/arrow1.png)no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: .6rem;
}

.home-duzhe .item .info {
    padding-left: .6rem;
    padding-right: .6rem;
    font-size: .18rem;
    font-family: 'SourceHanSerifCN-Regular';
    line-height: 1.7;
    width: 100%;
    opacity: 0;
    margin-top: .8rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-duzhe .item .info a {
    padding-left: .1rem;
    width: 60%;
    color: #FFF;
}

.home-duzhe .item .info a:nth-child(even) {
    width: 40%;
}

.home-duzhe .item .info a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    background-color: #FFF;
}

.home-duzhe .item.on {
    width: 4.5rem;
    background-size: 100% 100%;
}

.home-duzhe .item.on .icon {
    margin-top: .4rem;
}

.home-duzhe .item.on .tit {
    margin-top: .3rem;
}

.home-duzhe .item.on .arrow {
    bottom: 0;
    opacity: 0;
}

.home-duzhe .item.on .info {
    opacity: 1;
    margin-top: .25rem;
}

.home-resources {
    position: relative;
    z-index: 1;
    background: url(../images/bg5.png)no-repeat center top;
    background-size: cover;
    padding-bottom: .8rem;
    padding-top: .45rem;
}

.home-resources .home-title .cn {
    color: #FFF;
}

.home-resources .swiper-container {
    margin-top: .9rem;
    padding-bottom: .4rem;
}

.home-resources .pic {
    height: .8rem;
    overflow: hidden;
    border: 1px #c0e5e9 solid;
    background-color: #FFF;
}

.home-resources .pic img {
    max-width: 100%;
    max-height: 100%;
}

.home-resources .tit {
    line-height: 1.4;
    font-family: 'SourceHanSerifCN-Regular';
    font-size: .24rem;
    margin-top: .05rem;
    height: .65rem;
    color: #FFF;
}

.home-resources .swiper-pagination {
    bottom: 0;
}

.home-resources .swiper-pagination-bullet {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    background-color: #77adb3;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    opacity: 1;
    margin: 0 .1rem !important;
    width: 8px;
    height: 8px;
}

.home-resources .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%);
    border: 1px #77adb3 solid;
    width: 12px;
    height: 12px;
}

.home-collection {
    position: relative;
    top: -.5rem;
    background: url(../images/bg4.png)no-repeat center top;
    background-size: cover;
    padding-bottom: .9rem;
    padding-top: .5rem;
}

.home-collection .content {
    margin-top: .55rem;
}

.home-collection .item {
    width: 1.35rem;
    overflow: hidden;
    height: 4.67rem;
    margin-right: .2rem;
}

.home-collection .item:last-child {
    margin-right: 0;
}

.home-collection .item .tit-con {
    width: 100%;
}

.home-collection .item .tit-con img {
    width: 100%;
}

.home-collection .item .tit-con .tit {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: .55rem;
    font-size: .3rem;
    font-family: 'SourceHanSerifCN-Bold';
    /* writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl; */
    width: 38px;
    line-height: 1.1;
}

.home-collection .item .show {
    width: 0;
    opacity: 0;
    background-color: #dfeef2;
    padding: .15rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    height: 4.67rem;
}

.home-collection .item .show::after {
    content: '';
    position: absolute;
    left: .15rem;
    right: .15rem;
    bottom: .15rem;
    height: 30%;
    background-image: linear-gradient(rgba(73, 151, 162, 0), rgba(73, 151, 162, 1));
    z-index: 2;
}

.home-collection .item .show::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: url(../images/c-line.png)no-repeat left top;
    background-size: 100% 100%;
}

.home-collection .item .show .tit {
    position: absolute;
    left: 0;
    bottom: .4rem;
    padding: 0 .5rem;
    color: #FFF;
    font-size: .3rem;
    line-height: 1;
    font-family: 'SourceHanSerifCN-Bold';
    z-index: 5;
}

.home-collection .item.on {
    width: 7.9rem;
}

.home-collection .item.on .tit-con {
    display: none;
}

.home-collection .item.on .show {
    opacity: 1;
    width: 100%;
}

.home-recommend {
    background: url(../images/bg5.jpg)no-repeat center top;
    padding-top: .4rem;
    padding-bottom: 2.2rem;
    background-size: cover;
}

.home-recommend .content {
    margin-top: .7rem;
    background: url(../images/line.png)no-repeat center bottom;
    background-size: .18rem;
}

.home-recommend .card {
    width: 46%;
}

.home-recommend .card .title {
    font-size: .36rem;
    line-height: 1;
    font-family: 'SourceHanSerifCN-Bold';
}

.home-recommend .card .title span {
    color: #4b929b;
}

.home-recommend .item {
    width: 1.65rem;
    margin-top: .4rem;
    margin-left: .25rem;
    margin-right: .4rem;
    padding-bottom: .05rem;
}

.home-recommend .item:last-child {
    margin-right: 0;
}

.home-recommend .item .pic-con {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    z-index: 9;
}

.home-recommend .item .pic-con::before {
    content: '';
    position: absolute;
    left: -7px;
    top: -5px;
    width: 7px;
    bottom: 0;
    background-color: #aeaeae;
    -webkit-clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
}

.home-recommend .item .shadow {
    width: 100%;
    height: .35rem;
    margin-top: -.2rem;
    z-index: 1;
}

.home-recommend .item .shadow::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    width: 2.6rem;
    height: .45rem;
    background: url(../images/s.png)no-repeat center;
    background-size: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: -1;
}

.home-recommend .item .pic {
    width: 100%;
    overflow: hidden;
    padding-top: 140%;
    z-index: 9;
}

.home-recommend .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-recommend .item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: #4997a2;
    width: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-recommend .item .tit {
    line-height: 1.4;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-gc {
    background: url(../images/bg6.png)no-repeat center top;
    background-size: cover;
    height: 4.6rem;
    z-index: 10;
    margin-top: -1.15rem;
}

.home-gc .home-title {
    padding-top: 0;
}

.home-gc .home-title .cn::before {
    display: none;
}

.home-gc .content {
    width: 7.2rem;
    margin-top: .7rem;
}

.home-gc .title-con {
    margin-left: .4rem;
    margin-right: .4rem;
    background-color: rgba(255, 255, 255, .8);
    height: .5rem;
    border-radius: .1rem .1rem 0 0;
    -webkit-border-radius: .1rem .1rem 0 0;
    -moz-border-radius: .1rem .1rem 0 0;
    -ms-border-radius: .1rem .1rem 0 0;
    -o-border-radius: .1rem .1rem 0 0;
    line-height: .5rem;
}

.home-gc .title-con span {
    font-size: .18rem;
    width: 25%;
    cursor: pointer;
}

.home-gc .title-con span::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: .25rem;
    background-color: #8d989d;
}

.home-gc .title-con span:last-child:after {
    display: none;
}

.home-gc .title-con span.on {
    font-size: .2rem;
    background-color: #79adb3;
    color: #FFF;
    border-radius: .1rem .1rem 0 0;
    -webkit-border-radius: .1rem .1rem 0 0;
    -moz-border-radius: .1rem .1rem 0 0;
    -ms-border-radius: .1rem .1rem 0 0;
    -o-border-radius: .1rem .1rem 0 0;
}

.home-gc .title-con span.on::after {
    display: none;
}

.home-gc .box {
    width: 100%;
    background: url(../images/tbg7.jpg)no-repeat center top;
    background-size: 100% 100%;
    height: 2.33rem;
    padding: .3rem .5rem;
}

.home-gc .box a {
    width: 50%;
    font-size: .16rem;
    line-height: 2.2;
    padding-left: 15px;
}

.home-gc .box a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    width: 4px;
    height: 4px;
    background-color: #FFF;
}

.tool {
    position: fixed;
    bottom: .5rem;
    right: .1rem;
    background-color: #FFF;
    width: .8rem;
    padding: .15rem 0;
    overflow: hidden;
    border-radius: .4rem;
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .21);
    z-index: 21;
}

.tool>a {
    margin-bottom: .1rem;
}

.tool .icon {
    margin-left: auto;
    margin-right: auto;
    width: .56rem;
    height: .56rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #e9f7f8;
}

.tool .icon img {
    width: .32rem;
}

.tool .tit {
    font-size: .14rem;
    color: #588c92;
}

@media (min-width:1025px) {
    .home-news .focus .slide:hover .pic::before,
    .home-recommend .item:hover .pic:before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .home-news .focus .slide:hover .pic img,
    .home-recommend .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);
    }
    .home-news .con .item:hover .more::after {
        transform: translate(.1rem, -50%);
        -webkit-transform: translate(.1rem, -50%);
        -moz-transform: translate(.1rem, -50%);
        -ms-transform: translate(.1rem, -50%);
        -o-transform: translate(.1rem, -50%);
    }
    .home-duzhe .item .info a:hover {
        color: #6ab6bd;
    }
    .home-recommend .item:hover .pic-con {
        transform: translateY(-.25rem);
        -webkit-transform: translateY(-.25rem);
        -moz-transform: translateY(-.25rem);
        -ms-transform: translateY(-.25rem);
        -o-transform: translateY(-.25rem);
    }
    .home-recommend .item:hover .tit {
        transform: translateY(-.1rem);
        -webkit-transform: translateY(-.1rem);
        -moz-transform: translateY(-.1rem);
        -ms-transform: translateY(-.1rem);
        -o-transform: translateY(-.1rem);
    }
    .home-recommend .item:hover:after {
        width: 100%;
    }
    .tool>a:hover .tit {
        opacity: .7;
    }
}

@media (max-width:1199px) {
    .banner .swiper-button-white {
        background-size: 14px;
    }
    .banner .sort {
        left: .2rem;
        right: .2rem;
        width: auto;
    }
    .banner .sort .tabs {
        line-height: 50px;
    }
    .banner .sort .search-con {
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }
    .banner .sort .search-con,
    .banner .sort .search-con .input,
    .banner .select select {
        height: 60px;
    }
    .banner .select {
        width: 120px;
    }
    .banner .select select {
        width: 100%;
    }
    .banner .sort .search-con input[type='submit'] {
        width: 40px;
        height: 40px;
        background-size: 20px;
    }
    .banner .sort .check_container {
        width: 18px;
        height: 18px;
    }
    .banner .sort input[type='checkbox']:checked+.check_container:before {
        width: 3px;
        height: 10px;
    }
    .banner .sort label,
    .banner .select option,
    .home-news .focus .date-con .tit,
    .home-news .focus .des,
    .home-news .con .date,
    .home-news .con .more,
    .home-duzhe .item .info,
    .home-title .en,
    .home-gc .box a {
        font-size: 12px;
    }
    .banner .sort .search-con .input,
    .banner .select select,
    .home-news .focus .tit,
    .home-news .con .tit,
    .home-resources .tit,
    .home-gc .title-con span {
        font-size: 14px;
    }
    .home-news .con .title {
        font-size: 18px;
    }
    .home-duzhe .item .tit {
        font-size: 20px;
    }
    .home-news .focus .date-con {
        width: 28px;
    }
    .home-news .focus .pic {
        margin-left: 29px;
    }
    .home-news .con .title {
        letter-spacing: 4px;
    }
    .home-news .con .tit,
    .home-news .focus .tit,
    .home-news .focus .des {
        height: auto;
    }
    .home-resources .tit {
        height: 44px;
    }
    .home-news,
    .home-duzhe {
        padding-bottom: 1rem;
    }
    .home-gc {
        height: auto;
        padding-bottom: .3rem;
    }
    .home-gc .content {
        width: 60%;
    }
    .home-gc .box {
        height: auto;
    }
    .home-gc .title-con {
        height: 34px;
        line-height: 34px;
    }
    .home-gc .title-con span.on {
        font-size: 16px;
    }
    .tool {
        display: none;
    }
}

@media (max-width:950px) {
    .banner .sort {
        bottom: .3rem;
    }
    .banner .sort .tabs {
        width: 80%;
        margin-left: .3rem;
    }
    .home-news .focus {
        width: 100%;
        margin-right: 0;
    }
    .home-news .box {
        margin-top: .4rem;
    }
    .home-news .focus .date-con {
        height: calc(100% - .3rem - 60px);
    }
    .home-duzhe .item .tit {
        font-size: 18px;
    }
    .home-duzhe .item .info {
        padding-left: .3rem;
        padding-right: .3rem;
    }
    .home-duzhe .item.on .icon {
        margin-top: .3rem;
    }
    .home-duzhe .item.on .tit {
        margin-top: .2rem;
    }
    .home-duzhe .item.on .info {
        margin-top: .1rem;
    }
    .home-duzhe .item .info a {
        padding-left: 10px;
    }
    .home-gc .content {
        width: 80%;
    }
    .home-gc {
        margin-top: -1.4rem;
    }

.ssbg .dzcx table{
  margin: auto;
}

}

@media (max-width:767px) {

    .home-news .content {
        margin-top: .4rem;
    }
    .home-duzhe .item {
        background-size: 100% 100%;
        margin-top: .15rem;
    }
    .home-duzhe .item,
    .home-duzhe .item.on {
        width: 100%;
        margin-right: 0;
        height: auto;
        display: flex;
        align-items: center;
        padding: .1rem .2rem .2rem .2rem;
    }
    .home-duzhe .item:nth-child(even) {
        margin-right: 0;
    }
    .home-duzhe .item .tit {
        font-size: 16px;
    }
    .home-duzhe .item .icon {
        margin-top: 0;
        width: 58px;
        height: 58px;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
    }
    .home-duzhe .item .icon img {
        width: 30px;
    }
    .home-duzhe .item>div:first-child {
        width: 100px;
        margin-right: .2rem;
    }
    .home-duzhe .item .tit,
    .home-duzhe .content {
        margin-top: .2rem;
    }
    .home-duzhe .item .arrow {
        display: none;
    }
    .home-duzhe .item .info,
    .home-duzhe .item.on .info {
        opacity: 1;
        margin-top: .2rem;
        flex: 1;
        padding-right: 0;
        padding-left: 0;
    }
    .home-resources .swiper-container {
        margin-top: .5rem;
    }
    .home-title .cn {
        font-size: 20px;
    }
    .home-news,
    .home-duzhe {
        padding-bottom: .7rem;
    }
    .home-duzhe,
    .home-collection,
    .home-recommend {
        background-size: 300%;
    }
    .home-collection .item,
    .home-collection .item.on {
        width: 48.5%;
        margin-right: 2%;
        margin-top: .2rem;
        height: auto;
    }
    .home-collection .item:nth-child(even) {
        margin-right: 0;
    }
    .home-collection .item.on .tit-con,
    .home-collection .item .tit-con {
        display: none;
    }
    .home-collection .item .show {
        opacity: 1;
        width: 100%;
    }
    .home-collection .item .show .tit,
    .home-recommend .card .title {
        font-size: 18px;
    }
    .home-collection .content {
        margin-top: .2rem;
    }
    .home-collection .item .show {
        height: auto;
    }
    .home-collection {
        padding-bottom: .5rem;
    }
    .home-recommend .content {
        background: none;
        margin-top: .3rem;
    }
    .home-recommend .card {
        width: 100%;
    }
    .home-recommend .item {
        margin-top: .3rem;
        margin-left: 10%;
        width: 80%;
    }
    .home-recommend .card:last-child {
        margin-top: .3rem;
    }
    .home-gc .box {
        padding: .2rem .3rem;
    }
}

@media (max-width:540px) {
    .ssbg.ssbg2{
         height: auto;
    padding-bottom: 0.1rem;
}
    .banner img {
        width: auto;
        height: 5.4rem;
    }
    .banner .sort .checkbox {
        padding-left: 0;
    }
    .banner .sort .checkbox li {
        margin-right: .2rem;
    }
    .banner .sort .search-con,
    .banner .sort .search-con .input,
    .banner .select select {
        height: 40px;
    }
    .banner .sort .tabs {
        width: 90%;
        line-height: 40px;
    }
    .banner .select {
        width: 100px;
    }
    .banner .select:after {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #a1acc5;
    }
    .banner .sort .search-con input[type='submit'] {
        width: 30px;
        height: 30px;
        background-size: 15px;
    }
    .home-resources .swiper-container {
        margin-top: .3rem;
    }
    .home-news .content {
        margin-top: .3rem;
    }
    .home-collection .item,
    .home-collection .item.on {
        width: 100%;
        margin-right: 0;
    }
    .home-collection .item .show .tit {
        font-size: 16px;
    }
    .home-gc .title-con span {
        font-size: 12px;
    }
    .home-gc .title-con span.on {
        font-size: 14px;
    }
    .home-gc .content {
        width: 100%;
    }
    .home-gc .title-con {
        margin-left: .1rem;
        margin-right: .1rem;
    }
    .home-gc .box a::before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        top: 10px;
    }
    .crumbs {
        display: none;
    }
}

.pb_sys_style1 .p_no_d {
    border: 1px solid #6ab6bd!important;
    background-color: #6ab6bd!important;
}
.pb_sys_common .p_t{
    margin-bottom:5px!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,
.pb_sys_common .p_goto input, .pb_sys_common .p_search input,
.pb_sys_common .p_goto a, .pb_sys_common .p_search a{
  margin-bottom:5px!important;
  border: 1px solid #6ab6bd!important;
}


.ie-tip{
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  background-color: #fff;
  z-index:999998;
  display: none;
}
.ie-tip .i-cont{
  width:600px;
  height:300px;
  position:fixed;
  top:50%;
  left:50%;
  margin:-150px 0 0 -300px;
  line-height: 1.8;
  color:#000;
  z-index:999999;
  text-align:center;
}
.ie-tip p{
  padding-top:10px;
  color:#000;
  width: 420px;
  margin:10px auto;
  font-size: 14px;
  line-height: 1.8;
}

@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {
  
  .home-news .focus .pic img,
  .img-list .item .pic img {
    font-family: 'object-fit: cover;';
  }
}