@charset "utf-8";
/* CSS Document */

html, body {
    font-family: '思源黑体', Arial, Helvetica, sans-serif;;
}


@font-face {
    font-family: alimama;
    src: url("/static/font/AlimamaDongFangDaKai-Regular.woff2") format("woff2"),
    url("/static/font/AlimamaDongFangDaKai-Regular.woff") format("woff"),
    url("/static/font/AlimamaDongFangDaKai-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.go-top {
    position: fixed;
    width: 40px;
    height: 40px;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/top.png");
    background-size: 100% 100%;
    z-index: 50;
    display: none;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
}

.xs-show {
    display: none;
}

.u-full {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.u-flex-wrap {
    flex-wrap: wrap;
}

.u-flex-nowrap {
    flex-wrap: nowrap;
}

.u-col-center {
    align-items: center;
}

.u-col-top {
    align-items: flex-start;
}

.u-col-bottom {
    align-items: flex-end;
}

.u-row-center {
    justify-content: center;
}

.u-row-left {
    justify-content: flex-start;
}

.u-row-right {
    justify-content: flex-end;
}

.u-row-between {
    justify-content: space-between;
}

.u-row-around {
    justify-content: space-around;
}

.u-text-left {
    text-align: left;
}

.u-text-center {
    text-align: center;
}

.u-text-right {
    text-align: right;
}

.u-flex-col {
    display: flex;
    flex-direction: column;
}

.u-flex-1 {
    flex: 1;
}

.u-flex-2 {
    flex: 2;
}

.u-flex-3 {
    flex: 3;
}

.u-f-s {
    flex-shrink: 0;
}

.u-p-5 {
    padding: 5px;
}

.u-p-t-15 {
    padding-top: 15px;
}

.u-p-t-30 {
    padding-top: 30px;
}

.u-m-t-30 {
    margin-top: 30px;
}

.u-m-t-45 {
    margin-top: 45px;
}

.u-m-t-15 {
    margin-top: 15px;
}

.u-m-t-10 {
    margin-top: 10px;
}

.u-m-t-5 {
    margin-top: 5px;
}

.u-m-l-15 {
    margin-left: 15px;
}

.u-m-r-15 {
    margin-right: 15px;
}

.u-o-f {
    overflow: hidden;
}

.u-b-r {
    border-radius: 8px;
}

.u-grep {
    height: 25px;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/grep.png");
    background-size: auto 100%;
}

.text-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.content-header {
    padding-top: 100px;
    padding-bottom: 80px;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/top-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.logo {
    width: 40%;
}

.logo img {
    width: 100%;
    height: auto;
}

.contact {
    line-height: 1.6em;
}

.contact .tel {
    font-weight: bold;
}

.content-nav {
    position: relative;
    /*top: 10px;*/
    background-image: url("https://zyyimgs.scslwl.cn/static/img/ug.jpg");
    background-size: 2% 100%;
    background-repeat: repeat-x;
    z-index: 10;
    padding-bottom: 10px;
}

.content-nav-ul {
    /*background-color: #a6541e;*/
    background-image: linear-gradient(to bottom, #b95d1e, #7b4020);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
    top: -10px;
}

.content-nav-ul::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(to right bottom, transparent 50%, #502d15 50%);
    z-index: 111;
    left: -10px;
    top: 0;
}

.content-nav-ul::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(to left bottom, transparent 50%, #502d15 50%);
    z-index: 111;
    right: -10px;
    top: 0;
}

.content-nav-ul > li {
    position: relative;
}

.content-nav-ul > li > .nav-first-a {
    color: #ffddaf;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    /*font-family: alimama;*/
    position: relative;
    font-size: 20px;
}

.content-nav-ul > li  .nav-first-a.active {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/nav-active-bg.png");
    background-size: 70% 70%;
    background-position: center center;
    background-repeat: no-repeat;
    color: #7b4020;
}

.nav-sub-fx{
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #7b4020;
    display: none;
}

.content-nav-ul > li:hover .nav-first-a {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/nav-active-bg.png");
    background-size: 70% 70%;
    background-position: center center;
    background-repeat: no-repeat;
    color: #7b4020;
}

.content-nav-ul > li:hover .nav-sub-fx{
    display: block;
}

.nav-sub-fx-item{
    display: block;
    padding: 10px 0;
    color: #ffffff;
}

.nav-sub-fx-item:hover {
    background-color: #f8f2df;
    color: #A14C1B;
}

.content-nav-ul li + li .nav-first-a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 40%;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/gip.png");
    background-size: 100% 100%;
}

.nav-sub {
    background-color: rgba(161, 76, 27, .9);
    padding-top: 15px;
    padding-bottom: 15px;
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
}

.nav-sub-item {
}

.nav-sub-item:hover {
}

.nav-sub-item li a {
    display: block;
    padding: 10px 5px;
    color: rgb(248, 242, 223);
}

.nav-sub-item li a:hover {
    background-color: #f8f2df;
    color: #A14C1B;
    border-radius: 8px;
}

.content-swiper {
    position: relative;
    overflow: hidden;
}

.content-swiper .content-swiper-pd {
    padding-top: 40%;
}

.content-swiper .banner-swiper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
    color: #eee;
}

.content-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
}

.content-body {
    background-color: #F8F2DF;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/index-bg.png");
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.content-body-index {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/index-bg.png"), url("https://zyyimgs.scslwl.cn/static/img/bg.jpg");
    background-size: 100% auto, 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat, repeat-y;
}

.u-name-box {
    font-size: 28px;
    color: #A14C1B;
    font-weight: bold;
    position: relative;
}

.u-name-box::before {
    content: '';
    position: absolute;
    width: 1em;
    height: 1em;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/name-l.png");
    background-size: 100% 100%;
    left: 0;
    top: 50%;
    transform: translate(-150%, -50%);
}

.u-name-box::after {
    content: '';
    position: absolute;
    width: 1em;
    height: 1em;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/name-r.png");
    background-size: 100% 100%;
    right: 0;
    top: 50%;
    transform: translate(150%, -50%);
}

.bbs {
    background-color: #f8f2df;
    border-left: 5px solid #a14c1b;
    /*transform: translateY(-50%);*/
    position: relative;
    z-index: 8;
    padding: 5px 30px;
    margin-top: 0;
    margin-left: 30px;
    width: 0;
    display: none;
}

.bbs .bbs-icon {
    display: block;
    width: 20px;
    height: 20px;
}

.bbs .bbs-note {
    font-size: 15px;
    color: #a14c1b;
    margin-left: 15px;
    font-weight: bold;
}

.bbs .bbs-sp-section {
    overflow: hidden;
}

.bbs .bbs-start {
    line-height: 1em;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

.bbs .bbs-start::after {
    content: '';
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #aaa;
}

.bbs .bbs-swiper {

}

.bbs .bbs-text {
    max-width: 70%;
    font-size: 15px;
}

.bbs .bbs-more {
    margin-left: 15px;
    font-size: 14px;
    padding: 5px 15px;
    background-color: #a14c1b;
    color: #fff;
    border-radius: 15px;
}

.bbs .bbs-time {
    font-size: 15px;
    color: #a14c1b;
}

.quick {
    margin: 0 -30px -30px;
}

.quick .quick-item {
    padding: 30px;

}

.quick .quick-inner {
    position: relative;
}


.quick .quick-item-pd {
    padding-top: 100%;
    z-index: 1;
}

.quick .quick-item-body {
    z-index: 2;
    background-color: #a14c1b;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
    transition: all .3s;
}

.quick .quick-item-body:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}


.quick .quick-item-body img {
    display: block;
    width: 40%;
    height: auto;
}

.quick .quick-name {
    font-size: 18px;
    color: #F8F2DF;
    /*font-family: alimama;*/
}

.name-box {
}

.name-box .name-box-icon {
    width: 30px;
    height: 30px;
}

.name-box h3 {
    font-size: 16px;
    font-family: alimama;
    color: #333;
    padding-left: 10px;
    letter-spacing: 2px;
}

.name-box h3 .strong {
    color: #a14c1b;
    font-size: 20px;
}

.content-plus .name-box h3, .content-plus .name-box h3 .strong {
    color: #F8F2DF;
}

.content-about {
    width: 30%;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/about-bg.png");
    background-size: 100% 100%;
    padding: 15px;
}

.about-swiper {
    position: relative;
}

.about-swiper .about-swiper-pd {
    padding-top: 50%;
    position: relative;
    z-index: 1;
}

.about-swiper .about-swiper-self {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    overflow: hidden;
}

.about-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
}

.about-swiper .swiper-button-next, .about-swiper .swiper-button-prev {
    color: #eee;
}

.about-desc {
    font-size: 14px;
    line-height: 2em;
    color: #333333;
    text-indent: 2em;
}

.u-text-more {
    color: #a14c1b;
    font-size: 16px;
    font-family: alimama;
    display: block;
    cursor: pointer;
}

.u-text-more:hover {
    color: #7b4020;
}

.content-news {
    margin-left: 30px;
}

.u-n-head {
    position: relative;
    padding-bottom: 15px;
}

.u-n-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background-size: 100% 100%;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/line-bg.png");
}

.news-li .news-li-item {
    padding: 13px 0;
    border-top: 1px dashed #AF8167;
    font-size: 15px;
}

.news-li.plus .news-li-item {
    padding: 20px 0;
}

.news-li.plus .news-li-item:first-child {
    border-top: 0;
}

.news-li.plus .news-li-item:last-child {
    border-bottom: 1px dashed #AF8167;
}

.news-li .news-li-item:hover .news-li-name, .news-li .news-li-item:hover .news-li-time {
    color: #a14c1b;
}

.news-li .news-li-icon {
    width: 8px;
    height: 12px;
}

.news-li.plus .news-li-icon {
    width: 8px;
    height: 8px;
}

.news-li .news-li-name {
    max-width: 80%;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    color: #333333;
}

.news-first {
    padding: 15px 0;
}

.news-first .news-first-bg {
    width: 32%;
}

.news-first .news-first-bg-pd {
    padding-top: 60%;
}

.news-first .news-first-right {
    padding-left: 15px;
}

.news-first .news-first-name {
    font-weight: bold;
    font-size: 16px;
    color: #a14c1b;
}

.news-first .news-first-desc {
    font-size: 14px;
    color: #333333;
    padding: 10px 0;
    text-indent: 2em;
}

.news-first .news-first-time {
    color: #A14C1B;
    font-size: 14px;
}

.leader-swiper {
    position: relative;
}

.leader-swiper .leader-pd {
    padding-top: 25%;
}

.leader-swiper .leader-swiper-self {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.leader-box {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #A14C1B;
    border-top-width: 5px;
    padding: 10px;
    background-color: #F8F2DF;
}

.leader-box:hover .leader-name {
    color: #a14c1b;
}

.leader-cover {
    width: 100%;
    /*border: 1px dashed #A14C1B;*/
    position: relative;
    padding-top: 140%;
}

.leader-work {
    position: absolute;
    background-color: #A14C1B;
    color: #ffffff;
    z-index: 5;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 15px;
    transform: translateY(100%);
    transition: all .3s;
}

.leader-box:hover .leader-work {
    transform: translateY(0);
}

.leader-cover-img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.leader-name {
    padding-top: 5px;
    padding-bottom: 7px;
    font-size: 16px;
    position: relative;
    font-weight: bold;
}

.leader-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5em;
    height: 2px;
    background-color: #a14c1b;
}

.leader-position {
    font-size: 14px;
    color: #8A8A8A;
}

.uc-swiper-dot {
    width: 30px;
    height: 30px;
    position: absolute;
    background-size: 100% 100%;
    top: 50%;
    z-index: 5;
    cursor: pointer;
}

.uc-swiper-dot.uc-swiper-dot-next {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/right.png");
    left: 0;
    transform: translateX(-150%);
}

.uc-swiper-dot.uc-swiper-dot-next.swiper-button-disabled {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/right-ban.png");
}

.uc-swiper-dot.uc-swiper-dot-prev {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/left.png");
    right: 0;
    transform: translateX(150%);
}

.uc-swiper-dot.uc-swiper-dot-prev.swiper-button-disabled {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/left-ban.png");
}


.make-swiper {

    position: relative;
}

.make-swiper .make-swiper-pd {
    padding-top: 12%;
}

.make-swiper .make-swiper-self {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.make-swiper .make-swiper-self .swiper-slide {
    background-size: 100% 100%;
}

.ks {
    border: 1px solid #A14C1B;
    height: 250px;
    padding: 5px;
}

.ks .ks-li {
    height: 100%;
}

.ks .ks-li-item {
    padding: 5px;
    height: 100%;
}

.ks .ks-li-inner {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: alimama;
    background-image: linear-gradient(to bottom, #A14C1B, #C79470, #F8F2DF);
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 20px 20px;
    color: #fff;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ks .ks-li-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.ks .ks-cover {
    height: 100%;
    padding: 5px;
}

.ks .ks-cover-inner {
    height: 100%;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/yao/gui.png");
    background-size: cover;
    position: relative;
}

.info {
    background-color: #5a2b0f;

}

.info-fired {
    padding: 15px 0;
}

.info-fired span {
    color: #F8F2DF;
    font-size: 16px;
    padding: 5px 15px;
}

.info-fired a {
    color: #F8F2DF;
    font-size: 14px;
    padding: 5px 15px;
}

.info-gep {
    height: 4px;
    border-top: 1px solid rgba(248, 242, 223, .2);
    border-bottom: 1px solid rgba(248, 242, 223, .2);
}

.foot {
    background-color: #000000;
}

.foot .foot-inner {
    margin: 0 -30px;
}

.foot a {
    color: #F8F2DF;
    font-size: 14px;
    padding: 15px 30px;
}

.ift {
    padding: 30px 0;
}

.ift .ift-logo {
    width: 80%;
}

.ift .ift-option {
    color: #F8F2DF;
}

.ift .ift-value {
    font-size: 17px;
    margin-top: 5px;
}

.ift .ift-label {
    font-size: 14px;
}

.ift .ift-option + .ift-option {
    margin-top: 15px;
}

.ift .ift-mate {
    justify-content: flex-end;
}

.ift .ift-mate img {
    width: 100px;
    height: 100px;
}

.ift .ift-mate img:first-child {
    margin-right: 30px;
}


.star-swiper {
    position: relative;
}

.star-swiper .star-pd {
    padding-top: 10%;
}

.star-swiper .star-swiper-self {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.star-swiper .star-box {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #A14C1B;
    padding: 5px;
    background-color: #F8F2DF;
}

.star-swiper .star-cover {
    height: 100%;
    width: 45%;
    border: 2px dashed #F8F2DF;
}

.star-swiper .star-cover-inner {
    background-size: cover;
    height: 100%;
    width: 100%;
}

.star-swiper .star-name {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

.star-swiper .star-desc {
    font-size: 14px;
    color: #868686;
}

.content-plus {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/plus-bg.png");
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-color: #5a2b0f;
}

.plus-swiper {
    position: relative;
}

.plus-swiper .plus-pd {
    padding-top: 27%;
}

.plus-swiper .plus-swiper-self {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.plus-box {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #F8F2DF;
}

.plus-inner {
    padding: 12px;
    width: 100%;
    height: 100%;
}

.plus-swiper .plus-box:hover .plus-name {
    color: #a14c1b;
}

.plus-cover {
    width: 100%;
    padding-top: 125%;
    /*border: 2px dashed #F8F2DF;*/
    position: relative;
}

.plus-cover-inner, .plus-cover-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.plus-box .plus-name {
    padding-top: 5px;
    padding-bottom: 7px;
    font-size: 16px;
    position: relative;
    font-weight: bold;
}

.plus-box .plus-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5em;
    height: 2px;
    background-color: #a14c1b;
}

.plus-box .plus-position {
    font-size: 14px;
    color: #8A8A8A;
    text-align:center;
    height: 32px;
}
.plus-box .plus-position-mingyi{
    font-size: 14px;
    color: #8A8A8A;
    height: 60px;
}

.plus-box .plus-jet {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/plus-jet.png");
    width: 100%;
    background-size: 100% 100%;
    font-size: 14px;
}

.plus-box:hover .plus-jet {
    background-color: #A14C1B;
    color: #fff;
}

.plus-swiper .uc-swiper-dot.uc-swiper-dot-next {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/right-d.png");
}

.plus-swiper .uc-swiper-dot.uc-swiper-dot-next.swiper-button-disabled {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/right-ban.png");
}

.plus-swiper .uc-swiper-dot.uc-swiper-dot-prev {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/left-d.png");
}

.plus-swiper .uc-swiper-dot.uc-swiper-dot-prev.swiper-button-disabled {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/swiper/left-ban.png");
}

.content-skill {
    padding: 45px 0;
}

.skill-section {
    margin: -10px;
}

.skill-col {
    padding: 10px;
}

.skill-col-inner {
    background-image: url("https://zyyimgs.scslwl.cn/static/img/about-bg.png");
    background-size: 100% 100%;
    height: 450px;
    width: 100%;
    padding: 15px;
    background-color: #F8F2DF;
}

.skill-pro .skill-pro-cover {
    width: 40%;
    position: relative;
}

.skill-pro .skill-pro-cover-pd {
    padding-top: 70%;
    background-size: cover;
    background-repeat: no-repeat;
}

.skill-pro .skill-pro-name {
    font-size: 14px;
    color: #333333;
    font-weight: bold;
}

.skill-pro .skill-pro-time {
    font-size: 14px;
    color: #999999;
}

.skill-pro-section {
    border-top: 1px dashed #AF8167;
}

.skill-pro-li {
    padding: 15px 15px 15px 30px;
    position: relative;
    display: block;
    border-bottom: 1px dashed #AF8167;
    font-size: 14px;
    color: #333333;
}

.skill-pro-li:hover {
    color: #a14c1b;
}

.skill-pro-li::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/icon-li.png");
    background-size: 100% 100%;
}

.content-header-xs {
    padding: 10px 30px;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-header-xs .xs-logo {
    width: 60%;
}

.content-header-xs .xs-menu {
    width: 7%;
}

.sub-menu-pd {
    padding: 45px 0;
}

.sub-menu {
    border-bottom: 1px solid #A14C1B;
}

.sub-menu .sub-menu-li {
    font-size: 18px;
    color: #333333;
    padding: 10px 0;
    position: relative;
    margin: 0 30px;
}

.sub-menu .sub-menu-li:hover {
    color: #A14C1B;
}

.sub-menu .sub-menu-li.active {
    color: #A14C1B;
    font-weight: bold;
}

.sub-menu .sub-menu-li.active::before {
    content: "";
    height: 4px;
    width: 100%;
    background-color: #A14C1B;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.honor-box {
    margin: -10px;
}

.honor-box .honor-name {
    font-size: 16px;
    color: #333333;
    height: 3em;
    margin-top: 15px;
}

.honor-box .honor-item {
    width: 33.333333%;
    padding: 10px;
}

.honor-box .honor-cover {
    position: relative;
    padding-top: 65%;
}

.honor-box .honor-cover-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.leader-main-box {
    margin: -15px;
}

.leader-pd {
    width: 16.666666%;
    padding: 15px;
}

.desc-box {
    background-color: #A14C1B;
    padding: 30px 0;
}

.desc-name {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);;
}

.desc-name.plus {
    border-bottom-color: rgba(175, 129, 103, .3);
}

.desc-name-text {
    padding: 15px 0;
    font-size: 20px;
    color: #ffffff;
    position: relative;
}

.desc-name-text.plus {
    color: #A14C1B;
}

.desc-name-text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
}

.desc-name-text.plus::before {
    background-color: #A14C1B;
}

.plus-item {
    width: 16.666666%;
    padding: 15px;
}

.plus-main {
    margin: -15px;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 15px;
}

.pagination li {
    background-color: rgba(161, 76, 27, .6);
    margin: 5px;
}

.pagination li.active {
    background-color: #A14C1B;
}

.pagination li a, .pagination li span {
    color: #ffffff;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: baseline;
    line-height: 2em;
}

.pagination li.disabled span {
    color: #666666;
    cursor: not-allowed;
}

.my-main {
    background-color: #A14C1B;
}

.my-info {
    padding: 30px 0;
}

.my-info-cover {
    width: 200px;
    height: auto;
}

.my-desc {
    flex: 1;
    margin-left: 30px;
    color: #ffffff;
}

.my-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.my-item {
    font-size: 16px;
}

.my-item + .my-item {
    margin-top: 5px;
}

.news-cc-swiper {
    position: relative;
    margin-bottom: 30px;
}

.news-cc-swiper .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -30px;
}

.news-cc-swiper .swiper-pagination-bullet-active {
    background-color: #A14C1B;
}

.news-cc-swiper .news-cc-swiper-pd {
    padding-top: 20%;
}

.news-cc-swiper .news-cc-swiper-self {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

.news-cc-cover {
    width: 30%;
    height: 100%;
}

.news-cc-cover-img {
    width: 100%;
    height: 100%;
    display: block;
}

.news-cc-info {
    margin-left: 30px;
}

.news-cc-name {
    font-size: 20px;
    color: #A14C1B;
    font-weight: bold;
}

.news-cc-author {
    color: #AF8167;
    font-size: 15px;
    margin-top: 15px;
}

.news-cc-desc {
    color: #666666;
    font-size: 15px;
    margin-top: 30px;
}

.news-cc-time {
    font-size: 15px;
    color: #A14C1B;
    margin-top: 30px;
}

.news-cc-swiper .swiper-slide {
    padding: 5px;
}

.news-cc-list-cover {
    width: 15%;
}

.news-cc-list-item {
    padding: 15px 0;
    border-bottom: 1px dashed #A14C1B;
}

.news-cc-list-inner {
    padding-top: 60%;
    position: relative;
}

.news-cc-list-name {
    color: #333333;
    font-size: 16px;
}

.news-cc-list-item:hover .news-cc-list-name {
    color: #A14C1B;
}

.news-cc-list-time {
    font-size: 15px;
    color: #666666;
}

.news-page-name {
    font-size: 24px;
    font-weight: bold;
    color: #A14C1B;
}

.news-page-info-item {
    font-size: 13px;
    color: #666666;
    padding: 5px 15px;
}

.news-page-info {
    padding: 15px 0;
    border-bottom: 1px dashed #A14C1B;
}

.news-page-next {
    padding: 25px 0;
    border-top: 1px dashed #A14C1B;
}

.news-page-next-item {
    color: #666666;
    font-size: 16px;
    padding: 5px 0;
}

.news-page-next-item:hover {
    color: #A14C1B;
}

.my-title {
    padding: 15px;
    position: relative;
    font-size: 20px;
    color: #A14C1B;
    border-bottom: 2px solid rgba(175, 129, 103, .2);
    font-weight: bold;
}

.my-title::before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: .9em;
    background-color: #A14C1B;
    top: 50%;
    transform: translateY(-50%);
}

.my-section {
    margin: -15px;
}

.my-section-item {
    width: 33.333333%;
    padding: 15px;
}

.my-section-inner {
    background-color: #ffffff;
    position: relative;
    display: block;
    height: 165px;
}

.my-section-inner:hover {
    background-color: #A14C1B;
}

.my-section-inner:hover .ug-name {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.my-section-inner:hover .ug-name::before {
    background-color: #ffffff;
}

.my-section-inner:hover .my-mark {
    color: #ffffff;
}

.my-section-ug {
    padding: 15px;
}

.ug-name {
    color: #333333;
    font-size: 16px;
    border-bottom: 1px dashed #A14C1B;
    position: relative;
    padding-bottom: 10px;
}

.ug-name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 2em;
    height: 3px;
    background-color: #A14C1B;
}

.my-mark {
    color: #888888;
    font-size: 14px;
    line-height: 2em;
}

.my-int {
    margin: -15px;
}

.my-int-item {
    width: 25%;
    padding: 15px;
}

.my-int-inner {
    background-color: #ffffff;
    position: relative;
    display: block;
    padding: 15px;
    transition: all .3s;
}

.my-int-head {
    height: 90px;
}

.my-int-cover {
    width: 25%;
    height: 100%;
}

.my-int-info {
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.my-int-name {
    font-size: 20px;
    color: #A14C1B;
    font-weight: bold;
}

.my-int-pos-item {
    font-size: 14px;
    color: #333333;
}

.my-int-pos-item + .my-int-pos-item {
    margin-top: 5px;
}

.my-int-pos-item span:first-child {
    color: #8A8A8A;
}

.my-int-mark {
    border-top: 1px dashed #A14C1B;
    height: 7.2em;
}

.my-int-inner:hover {
    background-color: #A14C1B;
}

.my-int-inner:hover .my-int-name {
    color: #ffffff;
}

.my-int-inner:hover .my-int-pos-item {
    color: #ffffff;
}

.my-int-inner:hover .my-int-pos-item span:first-child {
    color: #ffffff;
}

.my-int-inner:hover .my-int-mark {
    color: #ffffff;
    border-top-color: #ffffff;
}

.shep-cate {
    margin-bottom: 30px;
    position: relative;
}

.shep-cate-name {
    position: relative;
    padding: 5px 25px 5px 15px;
    border: 1px solid #A14C1B;
    border-radius: 5px;
    color: #A14C1B;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.shep-cate-name::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url("https://zyyimgs.scslwl.cn/static/img/down-plus.png");
    background-size: 100% 100%;
    top: 55%;
    right: 10px;
    transform: translateY(-50%);
    transition: all .3s;
}

.shep-cate-name.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.shep-box {
    position: absolute;
    top: 120%;
    z-index: 5;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    min-width: 100%;
    border-radius: 5px;
    display: none;
}

.shep-box-item {
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
}

.shep-box-item:hover {
    background-color: #A14C1B;
    color: #ffffff;
}
@media (max-width: 768px) {
    .pagination {
        display: block !important;
    }
    .pagination li {
        float:left !important;
    }
    .clean{
        clear:both;
    }
    img{
        width:100%;
    }
}


  table, th, td {
    border: 1px solid black; /* 设置边框为1像素实线，颜色为黑色 */
    padding: 5px;
  }
  
  
  
  
  .str_wrap {
	overflow:hidden;
	//zoom:1;
	width:100%;
	font-size:12px;
	line-height:16px;
	position:relative;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;  
	white-space:nowrap;
}


.str_move { 
	white-space:nowrap;
	position:absolute; 
	top:0; 
	left:0;
	cursor:move;
}
.str_move_clone {
	display:inline-block;
	//display:inline;
	//zoom:1;
	vertical-align:top;
	position:absolute; 
	left:100%;
	top:0;
}
.str_vertical .str_move_clone {
	left:0;
	top:100%;
}
.str_down .str_move_clone {
	left:0;
	bottom:100%;
}
.str_vertical .str_move,
.str_down .str_move {
	white-space:normal;
	width:100%;
}
.str_static .str_move,
.no_drag .str_move,
.noStop .str_move{
	cursor:inherit;
}
.str_wrap img {
	max-width:none !important;	
}