@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%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .16rem 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #1F50B2;
}


/*块级转化*/

.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; */
    overflow: hidden;
    /* 确保超出的文本被隐藏 */
    white-space: nowrap;
    /* 防止文本换行 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
}

.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: 2.1rem;
    padding-right: 2.1rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

@font-face {
    font-family: 'SourceHanSans-Medium';
    src: url('/tsg/fonts/SourceHanSans-Medium.otf');
}

@font-face {
    font-family: 'SourceHanSans-Regular';
    src: url('/tsg/fonts/SourceHanSans-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url('/tsg/fonts/SourceHanSerifCN-Bold.otf');
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px rgba(255, 255, 255, .2) solid;
    height: 1.38rem;
    padding-left: 2.1rem;
    padding-right: 1rem;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1.9rem;
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
    z-index: -1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .logo img {
    height: .651rem;
}

.header .top {
    color: #CDCDCD;
    justify-content: flex-end;
}

.header .top a {
    color: #CDCDCD;
    margin-left: .4rem;
}

.header .top .icon,
.header .top .search-btn {
    border: 1px dotted rgba(255, 255, 255, .3);
    background-position: center;
    background-repeat: no-repeat;
    width: .42rem;
    height: .42rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: .1rem;
    background-size: .24rem;
}

.header .top .home .icon {
    background-image: url(/tsg/images/icon1.svg);
}

.header .top .email .icon {
    background-image: url(/tsg/images/icon2.svg);
}

.header .top .my .icon {
    background-image: url(/tsg/images/icon3.svg);
}

.header .top .lang {
    border: 1px dotted rgba(255, 255, 255, .3);
    background-position: center;
    background-repeat: no-repeat;
    width: .42rem;
    height: .42rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: .1rem;
    text-transform: uppercase;
}

.header .top .search-btn {
    background-image: url(/tsg/images/search.svg);
    background-size: .2rem;
    margin-left: .2rem;
    cursor: pointer;
    margin-right: 0;
}

.header.fixed::after {
    height: 100%;
}

.menu-btn {
    display: none;
    background: url(/tsg/images/menu.svg)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(/tsg/images/close.svg);
}

.nav {
    justify-content: flex-end;
}

.nav li {
  margin-left:0.4rem;
}

.nav li:last-child {
    margin-right: 0;
}

.nav li>a {
    line-height: .7rem;
    color: #FFF;
    font-size: .2rem;
    font-weight: 500;
    height: .7rem;
    font-family: 'SourceHanSans-Medium';
}

.nav .drop {
    left: -.4rem;
    right: -.4rem;
    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;
}

.nav .drop::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px transparent solid;
    border-right: 10px transparent solid;
    border-bottom: 10px #FFF solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.search-content {
    background: #103259;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10001;
    display: none;
    width: 100%;
    height: 100%;
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(/tsg/images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 8rem;
    height: .8rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(/tsg/images/search.svg)no-repeat center;
    background-size: .3rem;
}

.copyright {
    background-color: #303030;
    color: #FFF;
    padding-top: .2rem;
    padding-bottom: .2rem;
    line-height: 1.8;
}

.copyright a {
    color: #FFF;
    margin: 0 .4rem;
}

.footer {
    background: #135490;
    color: #FFF;
    padding-top: .3rem;
    padding-bottom: .3rem;
}

.footer .logo img {
    height: .85rem;
}

.footer .link {
    width: 2.6rem;
    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;
}

.footer .link .title {
    line-height: .5rem;
    background: url(/tsg/images/link.svg)no-repeat .2rem center;
    background-size: .2rem;
    padding-left: .6rem;
    color: #FFF;
    cursor: pointer;
}

.footer .link .title::after {
    content: '';
    position: absolute;
    right: .2rem;
    top: 0;
    height: 100%;
    width: .15rem;
    background: url(/tsg/images/arrow.svg)no-repeat center;
    background-size: 100%;
}

.footer .link .text {
    position: absolute;
    left: 0;
    width: 100%;
    background: #FFF;
    max-height: 2.6rem;
    overflow-y: auto;
}

.footer .link .text a {
    line-height: 2;
    padding-left: .2rem;
}

.footer .link:hover .text {
    display: block;
}

.footer .info {
    border-top: 1px rgba(255, 255, 255, .6) solid;
    margin-top: .3rem;
    padding-top: .4rem;
}

.footer .info .erwma {
    width: 1.12rem;
    margin-right: .4rem;
}

.footer .info .erwma:last-child {
    margin-right: 0;
}

.footer .info .erwma .pic {
    width: 100%;
    height: 1.12rem;
    overflow: hidden;
}

.footer .info .erwma .pic img {
    width: 100%;
}

.footer .info .erwma .txt {
    margin-top: .1rem;
}

.footer .info .address {
    background: url(/tsg/images/address.svg)no-repeat left center;
    background-size: .13rem;
    padding-left: .25rem;
}

.footer .info .email {
    background: url(/tsg/images/email.svg)no-repeat left center;
    background-size: .15rem;
    padding-left: .25rem;
    margin-top: .15rem;
}

.footer .info .tel {
    background: url(/tsg/images/tel.svg)no-repeat left center;
    background-size: .13rem;
    padding-left: .25rem;
    margin-top: .15rem;
}

.banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner .swiper-pagination {
    bottom: .4rem;
}

.banner .swiper-pagination-bullet {
    background-color: #FFF;
    opacity: .5;
    width: .1rem;
    height: .1rem;
    margin: 0 .1rem !important;
}

.banner .swiper-pagination-bullet-active {
    background: url(/tsg/images/banner-icon.png)no-repeat center;
    background-size: 100%;
    width: .4rem;
    height: .3rem;
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.search-book {
    position: absolute;
    left: 2.1rem;
    right: 2.1rem;
    height: 3.72rem;
    background: url(/tsg/images/bg.png)no-repeat;
    background-size: 100% 100%;
    top: -7.4rem;
    z-index: 9;
    padding-bottom: .7rem;
}

.search-book .btn {
    position: absolute;
    bottom: .3rem;
    width: .55rem;
    height: .21rem;
    background: #CDB06C url(../images/arrow2.svg)no-repeat center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.search-book .title {
    line-height: .7rem;
    font-size: .24rem;
    background-color: #115590;
    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;
    overflow: hidden;
}

.search-book .title span {
    color: #FFF;
    cursor: pointer;
}

.search-book .title .on {
    color: #115590;
    font-weight: bold;
    background: url(/tsg/images/tbg.jpg);
}

.search-book .title span:nth-child(1).on {
    margin-right: 1.6rem;
}

.search-book .title .on::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -1px;
    width: 1.6rem;
    right: -1.6rem;
    background: url(/tsg/images/right.png)no-repeat left bottom;
    background-size: 100% 100%;
}

.search-book .title span:nth-child(2).on {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
}

.search-book .title span:nth-child(3).on {
    margin-left: 1.6rem;
}

.search-book .title span:nth-child(2).on::before,
.search-book .title span:nth-child(3).on::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -1px;
    width: 1.6rem;
    left: -1.6rem;
    background: url(/tsg/images/left.png)no-repeat left bottom;
    background-size: 100% 100%;
}

.search-book .text-con {
    padding: .3rem .7rem;
}

.search-book .text {
    font-size: .18rem;
}

.search-book .text span {
    color: #103259;
    font-weight: bold;
}

.search-book .search {
    width: 100%;
    margin-top: .4rem;
}

.search-book select {
    display: none;
}
.text-con form{position: absolute;}
.search-book .select_box {
    width: 2.6rem;
    line-height: .45rem;
    position: relative;
    border: 1px #C0C0C0 solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: .4rem;
}

.search-book .select_showbox {
    position: relative;
    padding-right: .15rem;
    padding-left: .4rem;
    font-size: .18rem;
}

.search-book .select_showbox::after {
    content: '';
    position: absolute;
    right: .1rem;
    top: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px transparent solid;
    border-right: 5px transparent solid;
    border-top: 5px #054D99 solid;
}

.search-book .select_showbox::before {
    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: .2rem;
    border-right: 1px dashed #dcdcdc;
}

.search-book .select_option {
    border: 1px solid #dcdcdc;
    border-top: none;
    display: none;
    left: -1px;
    top: .44rem;
    position: absolute;
    z-index: 99;
    background: #fff;
    width: 100%;
}

.search-book .select_option li {
    cursor: pointer;
    padding-left: .4rem;
    overflow: hidden;
    /* 确保超出的文本被隐藏 */
    white-space: nowrap;
    /* 防止文本换行 */
    text-overflow: ellipsis;
}

.search-book .select_option li.selected {
    background-color: #F3F3F3;
    color: #999;
}

.search-book .select_option li.hover {
    background: #BEBEBE;
    color: #fff;
}

.search-book .search input[type='text'] {
    padding: 0 .2rem;
    font-size: .18rem;
    height: .45rem;
    background: none;
    width: 2.6rem;
    line-height: .45rem;
    position: relative;
    border: 1px #C0C0C0 solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: .4rem;
}

.search-book .search input[type='submit'] {
    background: #10538F;
    width: .8rem;
    background-size: .18rem;
    color: #FFF;
    font-size: .16rem;
    height: .45rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}


/* 单选按钮*/

.frame {
    margin-top: .5rem;
}

.frame .radio input[type='radio'] {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    opacity: 0;
}

.frame .radio {
    position: relative;
    font-size: .18rem;
    margin-right: .5rem;
}

.frame .radio label {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 0;
    border: 1px solid #565656;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.frame .radio label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    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-color: #10538F;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.frame .radio input:checked+label {
    border-color: #10538F;
}

.frame .radio input:checked+label+span {
    font-weight: bold;
}

.frame .radio input:checked+label:after {
    opacity: 1;
}

.disabled-click-text {
    -moz-user-select: none;
    /* FireFox */
    -webkit-user-select: none;
    /* Webkit */
    -ms-user-select: none;
    /* IE10+ */
    -khtml-user-select: none;
    /* 奇葩浏览器 */
    user-select: none;
    /* 文本不允许被选择 */
}

.home-bg1 {
    background: url(/tsg/images/bg1.jpg)no-repeat center bottom;
    background-size: cover;
    padding-bottom: .75rem;
}

.home-title .cn,
.home-notice .home-title.on .cn {
    font-size: .36rem;
    color: #3E3E3E;
    font-family: 'SourceHanSerifCN-Bold';
}

.home-title .cn span,
.home-notice .home-title.on .cn span {
    font-size: .4rem;
    color: #115590;
}

.home-title .more {
    position: absolute;
    right: 0;
    font-family: 'SourceHanSans-Regular';
    color: #135490;
    background: url(/tsg/images/more.svg)no-repeat right bottom;
    width: .82rem;
    background-size: 100%;
    bottom: .05rem;
    padding-left: .1rem;
    line-height: 1.8;
}

.home-news {
    min-width: 0;
    margin-top: .95rem;
    margin-right: .55rem;
}

.home-news .swiper-container {
    margin-top: .6rem;
}

.home-news .swiper-slide {
    overflow: hidden;
    height: 4.76rem;
}

.home-news .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 1.4rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
}

.home-news .swiper-slide .date {
    font-family: 'SourceHanSerifCN-Bold';
    color: #FFF;
    background: url(/tsg/images/icon5.png)no-repeat center;
    width: 1.1rem;
    height: .8rem;
    background-size: 100%;
    position: absolute;
    left: .3rem;
    top: .3rem;
    font-size: .14rem;
}

.home-news .swiper-slide .date span {
    font-size: .3rem;
}

.home-news .swiper-slide .text {
    position: absolute;
    left: .3rem;
    bottom: .3rem;
    color: #FFF;
    z-index: 4;
    font-size: .18rem;
    right: 1.6rem;
}

.home-news .swiper-pagination {
    left: auto;
    right: .1rem;
    bottom: .3rem;
    width: auto;
}

.home-news .swiper-pagination-bullet {
    background-color: #FFF;
    opacity: .5;
    width: .1rem;
    height: .1rem;
    margin: 0 .1rem !important;
}

.home-news .swiper-pagination-bullet-active {
    background: url(/tsg/images/banner-icon.png)no-repeat center;
    background-size: 100%;
    width: .4rem;
    height: .3rem;
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home-news .item {
    width: 4.05rem;
    height: 1.62rem;
    margin-top: .3rem;
    background-color: #FFF;
    padding: .4rem;
    width: 48%;
}

.home-news .item .tit {
    font-size: .18rem;
}

.home-news .item .date {
    background: url(/tsg/images/date.svg)no-repeat left center;
    color: #135490;
    font-size: .14rem;
    margin-top: .15rem;
    padding-left: .25rem;
    background-size: .16rem;
}

.home-notice {
    width: 6rem;
    margin-top: .95rem;
}

.home-notice .title-con {
    align-items: flex-end;
}

.home-notice .home-title {
    margin-right: .5rem;
    padding-bottom: .05rem;
    cursor: pointer;
}

.home-notice .home-title:last-child {
    margin-right: 0;
}

.home-notice .home-title .cn,
.home-notice .home-title .cn span {
    color: #8D8D8D;
    font-size: .24rem;
}

.home-notice .home-title .more {
    display: none;
}

.home-notice .home-title.on {
    padding-bottom: 0;
}

.home-notice .home-title.on .more {
    display: block;
}

.home-notice ul {
    margin-top: .6rem;
}

.home-notice li {
    background-color: #FFF;
    margin-bottom: .2rem;
    padding: .275rem .3rem;
}

.home-notice li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #135490;
    z-index: 4;
}

.home-notice li:nth-child(2) {
    background-color: rgba(255, 255, 255, .8);
}

.home-notice li:nth-child(2)::before {
    opacity: .8;
}

.home-notice li:nth-child(3) {
    background-color: rgba(255, 255, 255, .6);
}

.home-notice li:nth-child(3)::before {
    opacity: .6;
}

.home-notice li:nth-child(4),
.home-notice li:nth-child(5) {
    background-color: rgba(255, 255, 255, .4);
}

.home-notice li:nth-child(4)::before,
.home-notice li:nth-child(5)::before {
    opacity: .4;
}

.home-notice li:nth-child(6) {
    background-color: rgba(255, 255, 255, .2);
}

.home-notice li:nth-child(6)::before {
    opacity: .2;
}

.home-notice li .date {
    background: url(/tsg/images/date.svg)no-repeat left center;
    padding-left: .2rem;
    background-size: .16rem;
    font-size: .14rem;
    color: #10538F;
    margin-right: .2rem;
}

.home-notice li .tit {
    font-size: .18rem;
    margin-right: .5rem;
}

.home-notice li .arrow {
    position: absolute;
    right: 0rem;
    top: .05rem;
    width: .17rem;
    height: .18rem;
    background: url(/tsg/images/jia.svg)no-repeat center;
    background-size: 100%;
}

.home-notice li .des {
    color: #10538F;
    font-size: .14rem;
    line-height: 1.7;
    margin-top: .1rem;
    display: none;
}

.home-notice li.on .arrow {
    background-image: url(/tsg/images/jian.svg);
}

.home-notice li.on .tit {
    order: 1;
    font-weight: bold;
    color: #10538F;
}

.home-notice li.on .date {
    order: 2;
    width: 100%;
    margin-top: .15rem;
}

.home-notice li.on .des {
    display: block;
}

.home-ser {
    background: url(/tsg/images/bg2.jpg)no-repeat center bottom;
    background-size: cover;
    padding-top: .75rem;
    padding-bottom: 1.2rem;
}

.home-ser .title-con {
    align-items: flex-end;
}

.home-ser .home-title {
    margin-right: 1.2rem;
    padding-bottom: .05rem;
    cursor: pointer;
}

.home-ser .home-title:last-child {
    margin-right: 0;
}

.home-ser .home-title .cn,
.home-ser .home-title .cn span {
    color: rgba(255, 255, 255, .5);
    font-size: .24rem;
}

.home-ser .home-title .more {
    color: #FFF;
    background-image: url(/tsg/images/more1.png);
}

.home-ser .home-title.on {
    padding-bottom: 0;
}

.home-ser .home-title.on .cn {
    color: #FFF;
    font-size: .36rem;
}

.home-ser .home-title.on .cn span {
    color: #CDB170;
    font-size: .4rem;
}

.home-ser .content {
    margin-top: .55rem;
}

.home-ser .swiper-container {
    height: 4.6rem;
}

.home-ser .swiper-slide {
    visibility: initial\9;
    opacity: 1\9;
    visibility: hidden;
    opacity: 0;
}

@media screen and(-ms-high-contrast:active),
(-ms-high-contrast: none) {
    .home-ser .swiper-slide {
        visibility: inherit;
        opacity: 1;
    }
}

.home-ser .swiper-slide .item {
    border: 1px #FFF solid;
    /* transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s; */
    overflow: hidden;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    padding-top: .55rem;
}

.home-ser .swiper-slide .text {
    color: #FFF;
    font-size: .18rem;
}

.home-ser .swiper-slide-visible {
    visibility: initial;
    opacity: 1;
    margin-top: 1.7rem;
}

.home-ser .swiper-slide-visible .item {
    width: 2rem;
    height: 2.3rem;
}

.home-ser .swiper-slide-visible .item img {
    height: .7rem;
}

.home-ser .swiper-slide.swiper-slide-visible .item {
    transform: rotate(-14deg);
    -webkit-transform: rotate(-14deg);
    -moz-transform: rotate(-14deg);
    -ms-transform: rotate(-14deg);
    -o-transform: rotate(-14deg);
    opacity: .6;
}

.home-ser .swiper-slide-next+.swiper-slide.swiper-slide-visible .item {
    transform: rotate(14deg);
    -webkit-transform: rotate(14deg);
    -moz-transform: rotate(14deg);
    -ms-transform: rotate(14deg);
    -o-transform: rotate(14deg);
}

.home-ser .swiper-slide-prev,
.home-ser .swiper-slide-next {
    margin-top: .9rem;
}

.home-ser .swiper-slide-prev img,
.home-ser .swiper-slide-next img {
    height: .83rem;
}

.home-ser .swiper-slide-prev .item,
.home-ser .swiper-slide-next .item {
    opacity: .9 !important;
    width: 2.3rem;
    height: 2.6rem;
    padding-top: .65rem;
}

.home-ser .swiper-slide-prev .item {
    transform: rotate(-8deg) !important;
    -webkit-transform: rotate(-8deg) !important;
    -moz-transform: rotate(-8deg) !important;
    -ms-transform: rotate(-8deg) !important;
    -o-transform: rotate(-8deg) !important;
}

.home-ser .swiper-slide-next .item {
    transform: rotate(8deg) !important;
    -webkit-transform: rotate(8deg) !important;
    -moz-transform: rotate(8deg) !important;
    -ms-transform: rotate(8deg) !important;
    -o-transform: rotate(8deg) !important;
}

.home-ser .swiper-slide-active {
    margin-top: 0;
}

.home-ser .swiper-slide-active .item {
    width: 2.54rem;
    height: 3.44rem;
    background: url(/tsg/images/tbg2.png)no-repeat center top;
    background-size: 100% 100%;
    border: 0;
    padding-top: 1.24rem;
    opacity: 1 !important;
    transform: rotate(0) !important;
    -webkit-transform: rotate(0) !important;
    -moz-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    -o-transform: rotate(0) !important;
}

.home-ser .swiper-slide-active .item img {
    height: .95rem;
}

.home-ser .swiper-slide-active .item .text {
    font-size: .2rem;
    font-weight: bold;
}

.home-ser .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: .1rem;
    width: 3.6rem;
    height: 3px;
    z-index: 9;
}

.home-ser .swiper-button-next,
.home-ser .swiper-button-prev {
    background: url(/tsg/images/next.svg)no-repeat center;
    background-size: 100%;
    width: .31rem;
    height: .24rem;
    right: -.31rem;
    margin-top: -.12rem;
}

.home-ser .swiper-button-prev {
    left: -.31rem;
    right: auto;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-ser .swiper-pagination-progressbar {
    background: none;
    height: 3px;
    width: 100%;
    z-index: 2;
    overflow: hidden;
}

.home-ser .swiper-pagination-progressbar::after {
    content: '';
    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%);
    width: 100%;
    height: 1px;
    background-color: #D8D8D8;
    z-index: -1;
}

.home-ser .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 3px;
    background: #4D9586;
    z-index: 4;
    left: 0 !important;
}

.home-bg3 {
    background: url(/tsg/images/bg3.jpg)no-repeat center bottom;
    background-size: cover;
    overflow: hidden;
    padding-top: .85rem;
    padding-bottom: 1.5rem;
}

.home-ziyuan .content {
    margin-top: -.5rem;
}

.home-ziyuan .l-con {
    width: 4.71rem;
}

.home-ziyuan .l-con .item {
    z-index: 4;
    width: 100%;
    height: 2.03rem;
    color: #FFF;
    font-weight: bold;
    font-size: .36rem;
    padding-top: .6rem;
}

.home-ziyuan .l-con .item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: .61rem;
    width: 0;
    height: 0;
    border-left: .14rem transparent solid;
    border-right: .14rem transparent solid;
    border-top: .14rem #FBFCFD solid;
    z-index: 2;
}

.home-ziyuan .l-con .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4.83rem;
    height: 100%;
    background: url(/tsg/images/tbg3.png)no-repeat right top;
    background-size: 100% 100%;
    z-index: -1;
}

.home-ziyuan .l-con .data {
    width: 100%;
    height: 4.33rem;
    background: url(/tsg/images/tbg4.png)no-repeat right bottom;
    overflow: hidden;
    margin-top: .3rem;
    padding: .3rem .35rem;
    color: #FFF;
    background-size: cover;
}

.home-ziyuan .l-con .data .title,
.home-ziyuan .c-con .title,
.home-ziyuan .r-con .item .title,
.home-ziyuan .r-con .cd .title {
    font-size: .24rem;
    font-weight: bold;
}

.home-ziyuan .l-con .data .title::after,
.home-ziyuan .c-con .title::after,
.home-ziyuan .r-con .item .title::after,
.home-ziyuan .r-con .cd .title::after {
    content: '';
    position: absolute;
    left: -.35rem;
    top: 50%;
    width: 0;
    height: 0;
    border-top: .14rem transparent solid;
    border-bottom: .14rem transparent solid;
    border-left: .14rem #FDFDFE solid;
    z-index: 2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-ziyuan .l-con .data .text,
.home-ziyuan .c-con .text,
.home-ziyuan .r-con .item .text {
    line-height: 2.5;
    margin-top: .2rem;
}

.home-ziyuan .l-con .data .text a,
.home-ziyuan .c-con .text a,
.home-ziyuan .r-con .item .text a {
    color: #FFF;
}

.home-ziyuan .c-con {
    width: 4.7rem;
    height: 4.83rem;
    background: url(/tsg/images/tbg5.png)no-repeat center;
    background-size: cover;
    overflow: hidden;
    margin-top: 1.5rem;
    padding: .3rem .35rem;
    color: #FFF;
}

.home-ziyuan .r-con {
    width: 4.7rem;
    margin-top: .64rem;
}

.home-ziyuan .r-con .item {
    width: 100%;
    height: 3.14rem;
    background: url(/tsg/images/tbg6.png)no-repeat center top;
    background-size: 100% 100%;
    padding: .3rem .35rem;
    color: #FFF;
}

.home-ziyuan .r-con .cd {
    width: 100%;
    margin-top: .3rem;
    height: 2.54rem;
    background: url(/tsg/images/tbg7.png)no-repeat right center;
    background-size: 100% 100%;
    padding: .3rem .35rem;
    color: #FFF;
}

.home-ziyuan .r-con .cd .icon {
    width: .53rem;
    margin-left: -8px;
}

.home-ziyuan .r-con .cd .icon img {
    width: 100%;
}

.home-ziyuan .r-con .cd .title {
    margin-top: .5rem;
}

.home-ziyuan .r-con .cd .title::before {
    content: '';
    position: absolute;
    left: 0;
    top: -.25rem;
    width: .2rem;
    height: 3px;
    background-color: #FFF;
}

.home-read {
    margin-top: .95rem;
}

.home-read .swiper-container {
    margin-top: .6rem;
}

.home-read .swiper-slide {
    overflow: hidden;
    justify-content: flex-end;
}

.home-read .swiper-slide .pic {
    width: 11.15rem;
    height: 6.4rem;
    overflow: hidden;
}

.home-read .swiper-slide .text-con {
    width: 5.12rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    background-color: #135490;
    padding: .6rem .4rem;
    color: #FFF;
    height: 4.5rem;
}

.home-read .swiper-slide .tit {
    font-size: .18rem;
    font-weight: bold;
    line-height: 1.6;
}

.home-read .swiper-slide .text {
    color: #CBCBCB;
    font-size: .14rem;
    line-height: 2;
    margin-top: .4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.home-read .swiper-slide .gd {
    font-size: .14rem;
    color: #DADADA;
    margin-top: .3rem;
    text-decoration: underline;
}

.home-read .swiper-button-prev {
    left: 0;
    height: .96rem;
    width: 1.85rem;
    background: #135490 url(/tsg/images/next.svg)no-repeat center;
    background-size: .54rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    margin-top: 0;
    top: .94rem;
}

.home-read .swiper-button-next {
    left: 0;
    height: .96rem;
    width: 1.85rem;
    background: #CDB06C url(/tsg/images/next.svg)no-repeat center;
    background-size: .54rem;
    margin-top: 0;
    top: .94rem;
    right: auto;
    left: 1.85rem;
}

.home-book {
    margin-top: .3rem;
    height: 4.9rem;
    z-index: 9;
}

.home-book::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 17.42rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: -.2rem;
    background: url(/tsg/images/tbg8.png)no-repeat center bottom;
    height: 100%;
    background-size: 100%;
}

.home-book .swiper-container {
    padding-bottom: .3rem;
}

.home-book .swiper-slide {
    padding-top: .2rem;
    padding-bottom: .4rem;
}

.home-book .item {
    width: 2.66rem;
    box-shadow: 0 0 .15rem rgba(0, 0, 0, .3);
}

.home-book .item .pic {
    overflow: hidden;
    height: 3.74rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-book .item .text-con {
    background: url(/tsg/images/tbg9.png)no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    color: #FFF;
    padding: .5rem .3rem 0 .3rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    opacity: 0;
}

.home-book .item .text-con .tit {
    font-size: .18rem;
    font-weight: bold;
    line-height: 1.6;
}

.home-book .item .text-con .des {
    font-size: .14rem;
    margin-top: .15rem;
    line-height: 2;
    color: #DCDCDC;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.home-book .item .text-con .btn {
    position: absolute;
    right: -.25rem;
    bottom: -.25rem;
    width: .77rem;
    height: .77rem;
    background: url(/tsg/images/btn.svg)no-repeat center;
    background-size: 100%;
}

.home-book .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: .2rem;
    min-width: .9rem;
}

.home-book .swiper-pagination {
    position: inherit;
    width: auto;
    bottom: auto;
    left: auto;
}

.home-book .swiper-pagination-bullet {
    background-color: #973406;
    opacity: .5;
    width: 5px;
    height: 5px;
    margin: 0 5px !important;
    position: relative;
}

.home-book .swiper-pagination-bullet-active {
    opacity: 1;
    margin: 0 10px !important;
}

.home-book .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    border: 1px #973406 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
}

.home-book .swiper-button-next,
.home-book .swiper-button-prev {
    width: 9px;
    height: 16px;
    background: url(/tsg/images/next2.svg)no-repeat center;
    background-size: 100%;
    margin-top: -8px;
    right: -20px;
}

.home-book .swiper-button-prev {
    right: auto;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    left: -20px;
}

@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);
    }
    .header .top a:hover,
    .home-news .item:hover .tit,
    .footer .link .text a:hover,
    .home-news .item:hover .date {
        color: #FFF;
    }
    .copyright a:hover,
    .home-ziyuan .l-con .item:hover,
    .home-title .more:hover,
    .home-ziyuan .l-con .data .text a:hover,
    .home-ziyuan .c-con .text a:hover,
    .home-ziyuan .r-con .item .text a:hover,
    .home-ziyuan .r-con .cd:hover .title,
    .home-read .swiper-slide:hover .tit {
        text-decoration: underline;
    }
    .footer .link .text a:hover {
        background-color: #135490;
    }
    .home-news .item:hover {
        background: url(/tsg/images/tbg1.png)no-repeat center;
        background-size: cover;
    }
    .home-news .item:hover .tit,
    .home-ziyuan .l-con .data .text a:hover,
    .home-ziyuan .c-con .text a:hover,
    .home-ziyuan .r-con .item .text a:hover,
    .home-ziyuan .r-con .cd:hover .title {
        font-weight: bold;
    }
    .home-news .item:hover .date {
        background-image: url(/tsg/images/date1.svg);
    }
    .home-read .swiper-slide:hover .pic img,
    .home-news .swiper-slide: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);
    }
    .home-book .swiper-slide:hover .item .text-con {
        opacity: 1;
    }
    .home-book .swiper-slide:hover .item .pic {
        opacity: 0;
    }
}

@media (max-width:1199px) {
    .header {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .header .top .txt,
    .header .top .home,
    .header .top .email,
    .header.on::after,
    .nav .drop::after {
        display: none;
    }
    .header .top {
        margin-right: .8rem;
    }
    .header.on {
        background-color: #135490;
    }
    .menu-btn {
        display: block;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.38rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #135490;
        z-index: 999;
        height: calc(100vh - 1.38rem);
        padding: .2rem .3rem;
    }
    .nav li {
        margin-right: 0;
    }
    .nav li>a {
        font-size: 16px;
        line-height: .9rem;
        height: .9rem;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 1.1rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(/tsg/images/arrow.svg)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;
        padding-top: 0;
        background: none;
        padding-bottom: 0;
    }
    .nav .drop a {
        color: #FFF;
        padding-left: .2rem;
    }
    .home-notice .home-title .cn,
    .home-notice .home-title .cn span,
    .home-ser .home-title .cn,
    .home-ser .home-title .cn span,
    .home-ziyuan .l-con .item {
        font-size: 18px;
    }
    .home-title .cn,
    .home-notice .home-title.on .cn,
    .home-ser .home-title.on .cn {
        font-size: 20px;
    }
    .home-title .cn span,
    .home-notice .home-title.on .cn span,
    .home-ser .home-title.on .cn span {
        font-size: 24px;
    }
    .search-content .content input[type='text'],
    .search-book .title,
    .home-ziyuan .l-con .data .title,
    .home-ziyuan .c-con .title,
    .home-ziyuan .r-con .item .title,
    .home-ziyuan .r-con .cd .title,
    .home-read .swiper-slide .tit {
        font-size: 16px;
    }
    .search-book .select_showbox,
    .search-book .text,
    .frame .radio,
    .home-title .more,
    .home-news .swiper-slide .text,
    .home-news .item .tit,
    .home-notice li .tit,
    .search-book .search input[type='text'],
    .search-book .search input[type='submit'],
    .home-ser .swiper-slide .text,
    .home-ser .swiper-slide-active .item .text,
    .home-read .swiper-slide .text,
    .home-read .swiper-slide .gd {
        font-size: 14px;
    }
    .home-notice li .date,
    .home-news .item .date,
    .home-notice li .des {
        font-size: 12px;
    }
    .search-book {
        top: -5.8rem;
        left: .6rem;
        right: .6rem;
    }
    .home-notice li {
        padding-top: .24rem;
        padding-bottom: .24rem;
    }
    .home-ziyuan .l-con .data,
    .home-ziyuan .c-con {
        height: auto;
    }
    .home-read .swiper-slide .text-con {
        padding-top: .3rem;
    }
    .home-read .swiper-slide .text {
        margin-top: .3rem .4rem;
    }
    .home-read .swiper-slide .text {
        margin-top: .1rem;
    }
    .home-read .swiper-slide .text {
        -webkit-line-clamp: 5;
    }
}

@media (max-width:950px) {
    .header .top .icon,
    .header .top .search-btn,
    .header .top .lang {
        width: .5rem;
        height: .5rem;
    }
    .footer .info .erwma {
        width: 1.4rem;
    }
    .footer .info .erwma .pic {
        height: 1.4rem;
    }
    .footer .info .address,
    .footer .info .email,
    .footer .info .tel {
        background-size: .24rem;
        padding-left: .4rem;
    }
    .footer .link {
        width: 3.4rem;
    }
    .footer .link .title {
        line-height: .6rem;
    }
    .home-news {
        min-width: 100%;
        margin-right: 0;
    }
    .home-news .item {
        height: auto;
    }
    .home-notice {
        width: 100%;
    }
    .home-ziyuan .r-con .item {
        height: auto;
    }
    .home-read .swiper-slide .text {
        -webkit-line-clamp: 4;
    }
}

@media (max-width:767px) {
    .header .top .my {
        display: none;
    }
    .search-content .content {
        width: 90%;
    }
    .footer .logo,
    .footer .link,
    .footer .info .erwma-con,
    .home-news .item,
    .home-ziyuan .l-con,
    .home-ziyuan .c-con,
    .home-ziyuan .r-con,
    .home-ziyuan .l-con .item::after,
    .home-read .swiper-slide .pic {
        width: 100%;
    }
    .footer .link,
    .footer .info .erwma-con,
    .home-news,
    .home-notice {
        margin-top: .4rem;
    }
    .footer .info {
        border-top: 0;
    }
    .home-news .swiper-container,
    .home-notice ul,
    .search-book .text,
    .frame,
    .home-ziyuan .content,
    .home-ziyuan .c-con,
    .home-ziyuan .r-con {
        margin-top: .3rem;
    }
    .home-notice .home-title {
        margin-right: .3rem;
    }
    .search-book {
        position: initial;
        top: auto;
        margin-top: .3rem;
        left: auto;
        right: auto;
        width: 100%;
        height: auto;
        overflow: hidden;
        padding-bottom: 0;
        z-index: 20;
    }
    .search-book .title {
        margin-top: .2rem;
    }
    .search-book .title .on::before,
    .search-book .title .on::before,
    .search-book .title .on::after {
        display: none !important;
    }
    .search-book .title span:nth-child(1).on,
    .search-book .title span:nth-child(2).on {
        margin-right: 0;
    }
    .search-book .title span:nth-child(2).on,
    .search-book .title span:nth-child(3).on {
        margin-left: 0;
    }
    .search-book .text-con {
        padding: .3rem 0;
    }
    .search-book .select_box {
        width: 48%;
        margin-right: 4%;
        line-height: .6rem;
        height: 0.55rem;
    }
    .search-book .select_option {
        top: .6rem;
        max-height: 145px;
        overflow-y: auto;
    }
    .search-book .select_box:nth-of-type(2) {
        margin-right: 0;
    }
    .search-book .search input[type='text'] {
        width: 80%;
        margin-right: 4%;
      
        height: .6rem;
    }
    .search-book .search input[type='submit'] {
       
        width: 14%;
        height: .6rem
    }
    .search-book .btn {
        display: none;
    }
    .frame .radio {
        margin-right: .2rem;
        margin-top: .2rem;
    }
    .home-bg3 {
        padding-top: .4rem;
        padding-bottom: .7rem;
    }
    .home-ser .swiper-slide-prev .item,
    .home-ser .swiper-slide-next .item {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .home-ser .title-con,
    .home-ziyuan .home-title {
        justify-content: flex-start;
    }
    .home-ser .home-title {
        margin-right: .6rem;
    }
    .home-read .swiper-slide {
        display: block;
    }
    .home-read .swiper-slide .pic {
        height: 5rem;
    }
    .home-read .swiper-slide .text-con {
        position: initial;
        width: 100%;
    }
    .home-read .swiper-button-prev,
    .home-read .swiper-button-next {
        width: .8rem;
        background-size: .4rem;
        top: 2rem;
    }
    .home-read .swiper-button-next {
        right: 0;
        left: auto;
    }
}

.pub-banner {
    overflow: hidden;
}

.pub-banner img {
    height: 5rem;
}

.pub-wrap {
    padding-bottom: .7rem;
}

.leftNav {
    width: 2.8rem;
    margin-top: .3rem;
    margin-right: .4rem;
}

.leftNav h2 {
    line-height: 0.8rem;
    color: #fff;
    background: #103259;
    font-family: 'SourceHanSerifCN-Bold';
    font-size: 0.26rem;
    font-weight: bold;
    overflow: hidden;
    text-align: center;
}

.leftNav>ul {
    background: #fff;
    box-shadow: 0px 0.02rem 0.05rem 0px rgba(0, 0, 0, 0.1);
}

.leftNav ul li a {
    display: block;
    line-height: 0.66rem;
    padding-left: 0.4rem;
    border-bottom: 1px solid #e5e5e5;
}

.leftNav>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-left: 0.03rem solid #103259;
    transform: scaleY(0);
    z-index: 1;
    transition: all 0.3s;
}

.leftNav>ul>li>a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.2rem;
    background: url(/tsg/images/left-sj.png) no-repeat;
    background-size: cover;
    width: 0.16rem;
    height: 0.16rem;
    display: none;
}

.leftNav>ul>li:first-child {
    border-top: none;
}

.leftNav>ul>li>a {
    position: relative;
}

.leftNav>ul>li.on>a {
    color: #103259;
    font-weight: 600;
}

.leftNav>ul>li.on>a::after,
.leftNav>ul>li:hover>a::after {
    display: block;
}

.leftNav>ul>li:hover>a {
    color: #103259;
    font-weight: 600;
}

.leftNav>ul>li.on::before,
.leftNav>ul>li:hover::before {
    transform: none;
}

.leftNav ul li a:hover {
    background-position: 0.31rem center;
    color: #103259;
}

.leftNav>ul>li>ul {
    display: none;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    padding-right: 0;
    border-bottom: 1px solid #e5e5e5;
}

.leftNav>ul>li>ul>li>a {
    font-size: 0.15rem;
    line-height: 0.46rem;
    padding-left: 0.6rem;
    color: #666666;
    border-bottom: none;
}

.pub-content {
    padding: .2rem .4rem .4rem .4rem;
    box-shadow: 0px 0.02rem 0.05rem 0px rgba(0, 0, 0, 0.1);
    margin-top: .3rem;
    border-top: 2px #009169 solid;
}

.pub-title {
    line-height: 0.66rem;
    border-bottom: 1px solid #d2d2d2;
}

.pub-title h3 {
    font-size: 0.26rem;
    font-weight: bold;
}

.position {
    font-size: 0.14rem;
    color: #888;
}

.position a {
    color: #888;
    margin: 0 0.05rem;
    vertical-align: middle;
}

.page {
    margin-top: .4rem;
}

.page a {
    line-height: .3rem;
    border: 1px #c5b7b7 solid;
    font-size: .16rem;
    padding: 0 .1rem;
    margin-right: .1rem;
}

.page a:last-child {
    margin-right: 0;
}

.page a.on {
    background-color: #103259;
    color: #FFF;
    border-color: #103259;
}

.text-list .item {
    padding: .3rem 0;
    width: 100%;
    border-bottom: 1px dashed #ccc;
}

.text-list .item:first-child {
    margin-top: 0;
}

.text-list .item .date {
    width: 1.2rem;
    height: .8rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    margin-right: .3rem;
}

.text-list .item .date span {
    font-weight: bold;
    color: #103259;
    font-size: .36rem;
}

.text-list .item .date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 70%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #103259;
}

.text-list .item .tit {
    font-size: .22rem;
    padding-left: 0;
}

.text-list .item .des {
    color: #666;
    margin-top: .15rem;
    font-size: .16rem;
}

.news-list .item {
    padding: .3rem 0;
    border-bottom: 1px #c5c5c5 dashed;
}

.news-list .item .pic {
    width: 2.6rem;
    height: 1.8rem;
    overflow: hidden;
    margin-right: .3rem;
}

.news-list .item .tit {
    font-size: .22rem;
    line-height: 1.8;
}

.news-list .item .des {
    color: #666;
    line-height: 1.8;
    margin-top: .1rem;
    font-size: .16rem;
}

.news-list .item .date {
    position: absolute;
    left: 0;
    bottom: .1rem;
    font-size: .18rem;
    color: #9E9E9E;
    font-family: Arial, Helvetica, sans-serif;
}

.details {
    padding-top: .5rem;
    padding-bottom: 1rem;
}

.details h1 {
    font-weight: normal;
    font-size: .26rem;
}

.details .info {
    color: #A8A8A8;
    font-size: .14rem;
    line-height: 2;
    border-bottom: 1px rgba(141, 141, 141, .3) solid;
    margin-top: .2rem;
    padding-bottom: .1rem;
}

.details .body {
    line-height: 2;
    font-size: .16rem;
    color: #2C2C2C;
}

.details .body p {
    margin-top: .3rem;
    text-indent: .32rem;
}

.details .body img {
    max-width: 100%;
    margin-top: .3rem;
    height: auto !important;
}

.details .prev-next {
    line-height: 2;
    margin-top: .6rem;
    font-size: .16rem;
}

.details .prev-next span {
    color: #103259;
}

.about {
    margin-top: .4rem;
}

.about .con {
    align-items: flex-end;
}

.about .pic {
    width: 5.3rem;
    height: 3.4rem;
    overflow: hidden;
}

.about .con .text-con {
    background-color: #103259;
    color: #FFF;
    padding: .6rem .3rem;
    font-size: .16rem;
    line-height: 1.8;
    text-indent: .28rem;
    clip-path: polygon(95% 0%, 100% 20px, 100% 100%, 0% 100%, 0% 0%);
}

.about .body {
    font-size: .16rem;
    line-height: 1.8;
}

.about .body p {
    margin-top: .3rem;
    text-indent: .28rem;
}

.teacher .item {
    margin-top: .6rem;
    width: 23%;
    margin-right: 2.5%;
}

.teacher .item:nth-of-type(4n) {
    margin-right: 0;
}

.teacher .item .pic {
    width: 100%;
    overflow: hidden;
    height: 3.4rem;
}

.teacher .item .name {
    font-size: .24rem;
    font-weight: bold;
    margin-top: .2rem;
}

.teacher .item .des {
    margin-top: .15rem;
    color: #666;
    line-height: 1.6;
}

.teacher-details .content {
    margin-top: 50px;
}

.teacher-details .pic-con {
    width: 2.8rem;
    margin-left: .2rem;
    margin-top: .2rem;
    z-index: 2;
    margin-right: .6rem;
}

.teacher-details .pic img {
    width: 100%;
}

.teacher-details .pic::after {
    content: '';
    position: absolute;
    left: -.2rem;
    top: -.2rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    width: 2.3rem;
    height: 3rem;
    z-index: -1;
    background-color: #103259;
}

.teacher-details .name {
    font-size: .24rem;
    font-weight: bold;
    color: #103259;
    margin-top: .3rem;
}

.teacher-details .des {
    margin-top: .2rem;
    color: #666;
}

.teacher-details .body {
    border-left: 1px #dcdcdc solid;
    padding-left: .3rem;
    padding-top: .2rem;
}

.teacher-details .body .item {
    margin-bottom: .6rem;
}

.teacher-details .body .item:last-child {
    margin-bottom: 0;
}

.teacher-details .body .title {
    line-height: .6rem;
    font-size: .26rem;
    color: #103259;
    font-family: 'sySong';
}

.teacher-details .body .title::after {
    content: '';
    position: absolute;
    left: -.45rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .3rem;
    height: .3rem;
    background: url(/tsg/images/sz-dot.png)no-repeat center;
    background-size: 100%;
}

.teacher-details .body .text {
    margin-top: .1rem;
    line-height: 1.8;
    opacity: .8;
}

@media (min-width:1025px) {
    .page a:hover {
        background-color: #103259;
        color: #FFF;
        border-color: #103259;
    }
    .news-list .item:hover {
        border-color: #103259;
    }
    .news-list .item:hover .pic img,
    .teacher .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);
    }
}

@media (max-width:1199px) {
    .leftNav {
        width: 3.2rem;
    }
    .leftNav>ul>li>a,
    .text-list .item .tit,
    .news-list .item .tit,
    .about .body,
    .about .con .text-con {
        font-size: 14px;
    }
    .leftNav>ul>li>ul>li>a {
        font-size: 13px;
    }
    .leftNav>h2 {
        font-size: 16px;
        line-height: .9rem;
        height: .9rem;
    }
    .leftNav ul li a {
        line-height: .8rem;
    }
    .text-list .item .date span {
        font-size: 20px;
    }
    .text-list .item .des,
    .news-list .item .date,
    .news-list .item .des,
    .details .info,
    .details .body,
    .details .prev-next,
    .page a {
        font-size: 12px;
    }
    .pub-title h3,
    .details h1,
    .teacher .item .name,
    .teacher-details .body .title,
    .teacher-details .name {
        font-size: 18px;
    }
    .position {
        display: none;
    }
    .about {
        padding: 0 .2rem;
    }
    .about .con .text-con {
        padding: .2rem;
    }
    .page a {
        line-height: .6rem;
        padding: 0 .2rem;
    }
}

@media (max-width:950px) {
    .news-list .item .pic {
        width: 3.4rem;
        height: 2.2rem;
    }
    .about {
        padding: 0;
    }
    .about .pic {
        width: 6.5rem;
        height: auto;
    }
    .about .pic {
        width: 100%;
        margin-right: 0;
    }
    .about .con .text-con {
        clip-path: none;
        padding: .2rem;
        line-height: 2;
    }
}

@media (max-width:767px) {
    .leftNav {
        width: 100%;
        margin-right: 0;
    }
    .leftNav>ul {
        display: none;
    }
    .leftNav>h2 {
        text-align: left;
        padding-left: 0.15rem;
        font-weight: 600;
    }
    .leftNav>h2::before,
    .leftNav>h2::after {
        display: none;
    }
    .leftNav>h2 span {
        width: 0.7rem;
        height: 0.7rem;
        background: url(/tsg/images/sub_left_down2.png) no-repeat center center;
        background-size: .2rem;
        cursor: pointer;
        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%);
    }
    .pub-content {
        padding: .2rem;
    }
    .news-list .item .pic {
        width: 100%;
        margin-right: 0;
        height: 3.8rem;
    }
    .news-list .item .tit {
        margin-top: .2rem;
    }
    .news-list .item .date {
        position: inherit;
        left: auto;
        bottom: auto;
        margin-top: .15rem;
        background-size: .24rem;
    }
    .about .body {
        line-height: 2;
    }
    .teacher .item {
        width: 49%;
        margin-right: 2%;
    }
    .teacher .item:nth-of-type(2n) {
        margin-right: 0;
    }
    .teacher-details {
        display: block;
        margin-top: .6rem;
    }
    .teacher-details .pic-con {
        margin-right: 0;
        margin-left: auto;
        margin-right: auto;
    }
}