html,body{
    min-width: 1200px;
}
.l-page{
    background: rgba(244, 238, 232, 0.21);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    justify-content: space-between;
    min-height: 100vh;
}
.l-header{
    width: 100vw;
    background: rgba(244, 238, 232, 0.21);
    z-index: 1000;
}
.l-container{
    width: 1200px;
    margin: 0 auto;
}
.header{
    position: fixed;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100vw;
    height: 82px;
    min-width: 1200px;
    padding: 15px 32px;
    background: #ffffff;
    box-shadow: 0px 2px 20px 0px rgba(227, 218, 200, 0.5);
    z-index: 1000;
}
.header-empty{
    width: 100%;
    height: 82px;
}
.l-header.fixed .header{
    position: fixed;
    width: 100vw;
    min-width: 1200px;
}
.l-header.fixed .header-empty{
    display: block;
}
.header-logo{
    width: 416px;
    height: 56px;
}
.header-logo img{
    width: 100%;
    height: 100%;
}
.header-search{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    align-items: center;
    position: relative;
    width: 270px;
    height: 44px;
    border: 1px solid #D71718;
    border-radius: 16px;
}
.header-search_tool{
    height: 100%;
}
.header-search_tool__text{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    font-size: 14px;
    font-weight: normal;
    color: #D91204;
    line-height: 16px;
    cursor: pointer;
}
.header-search_tool__text i{
    display: block;
    width: 12px;
    height: 6px;
    margin-left: 6px;
    background: url(../img/down.png) no-repeat;
    /* transform: rotate(180deg); */
    transition: transform  .3s;
}
.header-search_tool.expand .header-search_tool__text i{
    transform: rotate(180deg);
}
.header-search_tool.expand .header-search_tool__type{
    opacity: 1;
    visibility: visible;
}
.header-search_tool__type{
    position: absolute;
    width: 80px;
    height: 60px;
    background: #FDFCFB;
    box-shadow: 0px 2px 20px 0px rgba(227, 218, 200, 0.5);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.header-search_tool__type li{
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #D71718;
    text-align: center;
    cursor: pointer;
}
.header-search_tool__type li:last-child{
    border-bottom: 0;
}
.header-search_tool__type li.checked{
    color: #D71718;
}
.header-search input{
    flex: 1;
    width: 100%;
}
.header-search>i{
    /* position: absolute; */
    /* top: 1px; */
    /* right: 1px; */
    display: block;
    width: 50px;
    height: 40px;
    margin: 0 1px 0 5px;
    background: url(../img/search.png) no-repeat;
    cursor: pointer;
}
.menu{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    flex: 1;
    margin-right: 20px;
    /* padding: 10px 20px 20px; */
}
.menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.menu>ul>li{
    margin-left: 16px;
}
.menu ul li a{
    padding: 8px 10px;
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
}
.menu ul li a{
    color: #333333;
}
.menu ul li.checked{
    background: rgba(215, 23, 24, 0.2);
    border-radius: 12px;
}
.menu ul li.checked a{
    color: #D71718;
}
.menu ul li{
    position: relative;
}
.menu ul li ul{
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #f7d0d0;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.menu ul li ul li a{
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid #D71718;
}
.menu ul li ul li a{
    display: block;
    width: 100%;
    padding: 10px 0;
}
.menu ul li ul li:last-child a{
    border: 0;
}
.menu ul li ul li:hover a{
    color: #D71718;
}
.menu>ul>li{
    transition: all .3s;
    border-radius: 12px;
}
.menu>ul>li:hover {
    background: rgba(215, 23, 24, 0.2);
}
.menu>ul>li>a{
    display: block;
    transition: all .3s;
}
.menu>ul>li:hover >a{
    color: #D71718;
}
.menu>ul>li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 40px;
}
@media screen and (max-width: 1200px)  {
    .header{
        padding-left: 10px;
        padding-right: 10px;
    }
    .header-logo{
        width: 358px;
        height: 48px;
    }
    .header-search{
        width: 200px;
    }
    .menu{
        margin-right: 6px;
    }
    .menu>ul>li{
        margin-left: 2px;
    }
    .menu ul li{
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px)  {
    .header{
        padding-left: 10px;
        padding-right: 10px;
    }
    .header-logo{
        width: 358px;
        height: 48px;
    }
    .header-search{
        width: 200px;
    }
    .menu{
        margin-right: 6px;
    }
    .menu>ul>li{
        margin-left: 2px;
    }
    .menu ul li{
        font-size: 16px;
    }
}
@media screen and (min-width: 1440px)  {
    .header{
        padding-left: 32px;
        padding-right: 32px;
    }
    .header-logo{
        width: 358px;
        height: 48px;
    }
    .header-search{
        width: 220px;
    }
    .menu{
        margin-right: 20px;
    }
    .menu>ul>li{
        margin-left: 16px;
    }
    .menu ul li{
        font-size: 18px;
    }
}



.l-header.l-header-hide .header{
    /* height: 220px; */
    -webkit-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    transform: translateY(-92px);
}

.l-header.l-header-show .header{
    /* height: 220px; */
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.m-ads ul{
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.m-ads .mask{
    display: block;
    position: static;
    background: transparent;
}

.banner {
    position: relative;
    /* height: 770px; */
    /* margin-top: 102px; */
}
/* .m-banners .swiper-slide-active img,.m-banners .swiper-slide-duplicate-active img,.m-banners .swiper-slide-prev img{
    -webkit-animation:zoomUp 12s linear;animation:zoomUp 12s linear;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both
}
@-webkit-keyframes zoomUp{
    0%{
        transform:scale(1)
    }
    100%{
        transform:scale(1.15);
    }
}
@keyframes zoomUp{
    0%{
        transform:scale(1)
    }
    100%{
        transform:scale(1.15);
    }
} */
.m-ads {
    position: absolute;
    width: 100%;
    height: 50px;
    padding: 0 32px;
    overflow: hidden;
    background: rgba(215, 23, 24, 0.4);
    z-index: 10;
}
.m-ads ul li{
    float: left;
    margin-right: 100px;
    font-size: 20px;
    font-weight: normal;
    font-family: "FZYanSJW";
    color: #fff;
    line-height: 50px;
}

.m-banners,
.swiper-container {
    height: 100%;
}
.m-banners .swiper-container img{
    height: 100%;
    width: auto;
}
.m-banners .m-banners_img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate3d(0, 0, 0);
    transform-origin: center center;
    -moz-animation:inherit;
    -webkit-animation:inherit;
    -o-animation:inherit;
    animation: inherit;
    -moz-animation-timing-function:linear;
    -webkit-animation-timing-function:linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-duration: 7s;
    -webkit-animation-duration: 7s;
    -o-animation-duration: 7s;
    animation-duration: 7s;
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* .m-banners .swiper-slide-prev .m-banners_img{
    animation-name: hideTranslateBG;
}
.m-banners .swiper-slide-active .m-banners_img{
    animation-name: showTranslateBG;
}
@keyframes showTranslateBG {
    0% {
        transform: translate3d(50px, 0, 0);
    }
    
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes hideTranslateBG {
    0% {
        transform: translate3d(0, 0, 0);
    }
    
    100% {
        transform: translate3d(-50px, 0, 0);
    }
} */
.m-banners_bottom{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90px;
    padding-right: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}
.m-banners_bottom .swiper-button-prev,
.m-banners_bottom .swiper-button-next{
    position: relative;
}
.m-banners_bottom ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.m-banners_bottom ul li{
    position: relative;
    display: inline-block;
    width: 30px;
    margin-right: 0;
    font-size: 20px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    transition: margin 1s;
    cursor: pointer;
}
.m-banners_bottom ul li::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    width: 0;
    height: 2px;
    background: #D71718;
    transition: width 1s;
    transform: translateY(-50%);
}
.m-banners_bottom ul li.checked{
    margin-right: 60px;
    font-size: 26px;
    font-weight: normal;
    color: #D71718;
}
.m-banners_bottom ul li.checked::after{
    width: 60px;
}
.m-banners_bottom .button-prev{
    width: 51px;
    height: 24px;
    background: url(../img/arrow.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.m-banners_bottom .button-prev:hover{
    background: url(../img/arrow_hover.png) no-repeat;
}
.m-banners_bottom .button-next{
    width: 51px;
    height: 24px;
    background: url(../img/arrow.png) no-repeat;
    transform: rotate(180deg);
    background-size: 100% 100%;
    background-position-y: -1px;
    cursor: pointer;
}
.m-banners_bottom .button-next:hover{
    background: url(../img/arrow_hover.png) no-repeat;
    background-position-y: -1px;
}
.l-section {
    margin-top: 70px;
}

.section-tit .section-tit_img1 {
    position: relative;
    width: 120px;
    height: 78px;
    margin: 0 auto 32px;
}

.section-tit .section-tit_img1 img {
    width: 100%;
    height: 100%;
}

.section-tit .section-tit_img1::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 132px;
    width: 527px;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
}

.section-tit .section-tit_img1::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 132px;
    width: 527px;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
}

.section-news_itempro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
}

.section-news_itempro__img {
    width: 479px;
    height: 300px;
    overflow: hidden;
}
.section-news_itempro__img img{
    transition: transform .4s ease-in-out;
}

.section-news_itempro__cont {
    padding: 20px 30px 20px 0;
    flex-direction: column;
    flex: 1;
    margin-left: 30px;
}

.section-news_itempro__cont .section-news_itempro__tit {
    height: 52px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: normal;
    color: #2D2D2D;
    line-height: 26px;
    overflow: hidden;
}
.section-news_itempro__cont .section-news_itempro__tit a{
    color: #2D2D2D;
}

.section-news_itempro__cont .section-news_itempro__des {
    margin-bottom: 12px;
    height: 158px;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    line-height: 20px;
    overflow: hidden;
}

.section-news_itempro__cont .section-news_itempro__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content:flex-end;
    font-weight: normal;
    color: #CBB584;
    text-align: right;
    line-height: 16px;
    font-size: 0;
}
.section-news_itempro__cont .section-news_itempro__link a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    color: #CBB584;
    vertical-align: middle;
    align-items: center;
    transition: all .3s;
}
.section-news_itempro__cont .section-news_itempro__link span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/more.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    transition: all .3s;
}
.section-news_itempro:hover .section-news_itempro__img img{
    transform: scale(1.05);
    
}
.section-news_itempro:hover .section-news_itempro__cont  .section-news_itempro__tit a,
.section-news_itempro:hover .section-news_itempro__cont .section-news_itempro__link a{
    color: #D71718;
    cursor: pointer;
}
.section-news_itempro:hover .section-news_itempro__cont .section-news_itempro__link span{
    background-image: url(../img/moreh.png);
    transform: translateX(6px);
}

.section-news_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.section-news_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 364px;
    margin-right: 54px;
    transition: color .3s;
}

.section-news_item:last-child {
    margin-right: 0;
}

.section-news_item__data {
    width: 44px;
}

.section-news_item__data div:first-child {
    width: 44px;
    font-size: 34px;
    font-weight: normal;
    color: #333333;
    line-height: 42px;
    text-align: center;
    border-bottom: 1px solid #999999;
}

.section-news_item__data div:last-child {
    width: 44px;
    height: 24px;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    color: #999999;
    line-height: 24px;
}

.section-news_item__cont {
    flex: 1;
    padding: 15px 0;
    margin-left: 20px;
}

.section-news_item__tit {
    height: 50px;
    font-size: 20px;
    font-weight: normal;
    color: #333333;
    line-height: 24px;
    overflow: hidden;
}
.section-news_item__tit a{
    color: #333333;
}

.section-news_item__des {
    height: 42px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    line-height: 20px;
    overflow: hidden;
}

.section-news_item__link {
    height: 16px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: normal;
    color: #CBB584;
    line-height: 16px;
}

.section-news_item__link a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #CBB584;
    transition: color .3s;
}
.section-news_item__link span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/more.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    transition: all .3s;
}
.section-news_item:hover .section-news_item__tit a{
    color: #D71718;
}
.section-news_item:hover .section-news_item__link a{
    color: #D71718;
}
.section-news_item:hover .section-news_item__link span{
    background-image: url(../img/moreh.png);
    transform: translateX(6px);
}
.section-tit_img2 {
    width: 243px;
    height: 77px;
    margin: 0 auto 32px;
}

.section-tit_img2 img {
    width: 100%;
    height: 100%;
}

.section-books {
    position: relative;
    padding: 0 70px;
}

.section-books_item {
    position: relative;
    width: 235px;
    height: 312px;
    padding: 6px 15px;
    background: #FFFFFF;
    box-shadow: 0px 2px 20px 0px rgba(227, 218, 200, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.section-books_item__img {
    width: 206px;
    height: 298px;
    overflow: hidden;
}

.section-books_item__img img {
    width: 100%;
    height: 100%;
    transition: all 2s;
}

.section-books_item__cont {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 0px 0px 10px 10px;
    text-align: center;
    /* visibility: hidden;
    opacity: 0; */
    transition: all 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96)
}


.section-books_item__tit {
    height: 22px;
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: normal;
    color: #2D2D2D;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.section-books_item__tit a{
    color: #2D2D2D;
}

.section-books_item__author {
    height: 17px;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 17px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.section-books .swiper-button-prev {
    width: 42px;
    height: 42px;
    background: url(../img/prev.png) no-repeat;
}

.section-books .swiper-button-prev::after,
.section-books .swiper-button-next::after {
    display: none;
}

.section-books .swiper-button-next {
    width: 42px;
    height: 42px;
    background: url(../img/next.png) no-repeat;
}
.section-books_item:hover .section-books_item__img img{
    transform: scale(1.05);
}
.section-books_item:hover .section-books_item__tit a{
    color: #D71718;
}
.section-books_item:hover .section-books_item__cont {
    /* visibility: visible;
    opacity: 1; */
    bottom: 0;
}
.section-tit_img3 {
    width: 203;
    height: 81px;
    margin: 0 0 32px 52px;
}

.section-focus_list {
    width: 1232px;
}

.section-focus_item {
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 584px;
    height: 219px;
    padding: 20px 24px;
    margin-right: 32px;
    margin-bottom: 30px;
    background: url(../img/borderbg.png) no-repeat;
    background-size: 100% 100%;
}
.section-focus_item>a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.section-focus_item__img {
    width: 134px;
    height: 178px;
    overflow: hidden;
    
}
.section-focus_item__img img{
    transition: all .5s;
}

.section-focus_item__cont {
    width: 360px;
    margin-left: 40px;
    padding-top: 4px;
    font-size: 18px;
    font-weight: normal;
    color: #333333;
    line-height: 22px;
}

.section-focus_item__tit {
    height: 22px;
    font-size: 18px;
    font-weight: normal;
    color: #333333;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.section-focus_item__tit a{
    color: #333333;
}

.section-focus_item__author {
    height: 19px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    line-height: 19px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.section-focus_item__des {
    height: 58px;
    margin-top: 18px;
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: normal;
    color: #999999;
    line-height: 19px;
}

.section-focus_item__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    height: 16px;
    font-size: 14px;
    font-weight: normal;
    color: #CBB584;
    line-height: 16px;
    text-align: right;
}
.section-focus_item__cont .section-focus_item__link a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #333333;;
}
.section-focus_item__cont .section-focus_item__link span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/more.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    transition: all .3s;
}
.section-focus_item:hover .section-focus_item__img img{
    transform: scale(1.05);
    
}
.section-focus_item:hover .section-focus_item__cont  .section-focus_item__tit,
.section-focus_item:hover .section-focus_item__cont .section-focus_item__link{
    color: #D71718;
    cursor: pointer;
}
.section-focus_item:hover .section-focus_item__cont .section-focus_item__link span{
    background-image: url(../img/moreh.png);
    transform: translateX(6px);
}
.l-fixed{
    position: fixed;
    top: 142px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.l-fixed.show{
    opacity: 1;
    visibility: visible;
}
.share{
    margin-bottom: 66px;
}
.share ul li{
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
}
.share ul li:last-child{
    margin-bottom: 0;
}
.share-img{
    width: 54px;
    height: 54px;
}
.share-img img{
    width: 100%;
    height: 100%;
}

.share-img img:last-child{
    display: none;
}
.share-img_ewm{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 64px;
    width: 140px;
    height: 140px;
    background: url(../img/ewmbg.png) no-repeat;
    transform: translate(-50px,-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.share ul li:hover .share-img img:first-child{
    display: none;
}
.share ul li:hover .share-img img:last-child{
    display: block;
}
.share ul li:hover .share-img_ewm{
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}
.l-body{
    flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: auto;
    padding-bottom: 69px;
    background-image: url(../img/bg.png);
    background-repeat: repeat-y;
    background-position: top center;
}
.l-footer {
    padding: 10px 0;
    background: #A37E62;
}

.l-footer .l-container div {
    height: 14px;
    margin: 0 auto 10px;
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 14px;
    text-align: center;
}
.l-footer .l-container div:last-child{
    margin-bottom: 0;
}
.l-footer .l-container div>span{
    margin: 0 12px;
}
.breadcrumb{
    margin-top: 20px;
    margin-bottom: 50px;
}
.breadcrumb span{
    height: 14px;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    line-height: 14px;
}
.breadcrumb span:first-child{
    cursor: pointer;
}
.color_mark{
    color: #D71718 !important;
}
.l-main{
    position: relative;
}
.download .l-main,
.journal .l-main,
.consociation .l-main,
.team .l-main,
.news .l-main{
    flex-direction: column;
}
.m-tab{
    width: 100%;
    height: 50px;
    margin-bottom: 61px;
    background: url(../img/borderbg2.png) no-repeat;
    background-size: 100% 100%;
}
.m-tab ul{
    width: 100%;
    height: 100%;
}
.m-tab ul li{
    display: inline-block;
    width: 160px;
    height: 50px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    color: #666666;
    line-height: 50px;
    cursor: pointer;
}
.m-tab ul li.checked{
    color: #ffffff;
    background: url(../img/borderbg3.png) no-repeat;
    background-size: 100% 100%;
}
.news-list{
    position: relative;
    padding: 0 40px;
}
.news-list::before{
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    height: 69px;
    background-image: url(../img/borderbgt.png);
    background-size: 100%;
}
.news-list{
    padding-top: 10px;
    background-image: url(../img/borderbgm.png);
    background-size:100% 100%;
}
.news-list::after{
    content: '';
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 69px;
    background-image: url(../img/borderbgb.png);
    background-size:100% 100%;
}
.news-item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #CBB584;
}
.news-item a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
}
.news-list .news-item:last-child{
    border: 0;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.news-item .news-item_img{
    width: 332px;
    height: 208px;
    overflow: hidden;
    margin-right: 30px;
}
.news-item .news-item_img img{
    width: 100%;
    height: 100%;
    transition: transform .4s ease-in-out;
}
.news-item .news-item_cont{
    flex: 1;
}
.news-item .news-item_cont .news-item_tit{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
}
.news-item .news-item_cont .news-item_tit .news-item_tit__text{
    flex: 1;
    height: 66px;
    font-size: 24px;
    font-weight: normal;
    color: #2D2D2D;
    line-height: 36px;
    transition: color .3s;
    overflow: hidden;
}
.news-item .news-item_cont .news-item_tit .news-item_tit__data{
    height: 22px;
    margin-top: 6px;
    margin-left: 104px;
    font-size: 20px;
    font-weight: normal;
    color: #666666;
    line-height: 22px;
    transition: color .3s;
}
.news-item .news-item_cont .news-item_des{
    height: 100px;
    margin-top: 33px;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    line-height: 20px;
    overflow: hidden;
}
.news-item:hover .news-item_cont .news-item_tit .news-item_tit__data,
.news-item:hover .news-item_cont .news-item_tit .news-item_tit__text{
    color: #D71718;
}
.news-item:hover .news-item_img img{
    transform: scale(1.05);
}
.l-pagination{
    margin-top: 55px;
    text-align: right;
}
.l-pagination .pagination>.active>a,
.l-pagination .pagination>.active>a:focus,
.l-pagination .pagination>.active>a:hover, 
.l-pagination .pagination>.active>span, 
.l-pagination .pagination>.active>span:focus, 
.l-pagination .pagination>.active>span:hover{
    background-color: #CBB584;
    border-color: #CBB584;
}
.l-main{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.l-sider{
    margin-right: 50px;
}
.l-content{
    position: relative;
    flex: 1;
    min-height: 568px;
}
.category{
    width: 300px;
    height: 617px;
    padding: 10px;
    background-image: url(../img/borderbg5.png);
    background-size: 100% 100%;
}
.category-tit{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: normal;
    color: #333333;
    line-height: 60px;
    text-align: center;
    background-image:url(../img/borderbg4.png);
    background-size: 100% 100%;
}
.category-tit i{
    display: inline-block;
    width: 18px;
    height: 18px;
}
.category-tit i{
    background: url(../img/titlel.png) no-repeat;
}
.category-tit i:last-child{
    transform: rotate(180deg);
}
.category-item{
    padding-top: 20px;
    border-bottom: 1px solid #CBB584;
}
.category-item:last-child{
    border-bottom: 0;
}
.category-item_tit{
    height: 17px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: normal;
    color: #333333;
    line-height: 17px;
}
.category-item_type{
    font-size: 0;
}
.category-item_type li{
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 15px;
    font-size: 16px;
    color: #666666;
    font-weight: normal;
    line-height: 15px;
    cursor: pointer;
}
.category-item_type li:hover{
    color: rgba(215, 23, 24, 0.6);
}
.category-item_type li.checked{
    color: #D71718;
}
.booksearch .book-list .book-item{
    margin-right: 100px;
}
.booksearch .book-list .book-item:nth-child(4n){
    margin-right: 100px;
}
.booksearch .book-list .book-item:nth-child(5n){
   margin-right: 0;
}

.book-list{
    font-size: 0;
}
.book-item{
    display: inline-block;
    width: 160px;
    margin-right: 63px;
    margin-bottom: 30px;
    
}
.book-list .book-item:nth-child(4n){
    margin-right: 0;
}
.book-img{
    width: 160px;
    height: 212px;
}
.book-img img{
    width: 100%;
    height: 100%;
}
.book-tit{
    height: 30px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    line-height: 15px;
    overflow: hidden;
    transition: color .3s;
}
.book-item:hover .book-tit{
    color: #D71718;
}
.m-search{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.m-search_text{
    
    height: 17px;
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    line-height: 17px;
}
.m-search_tag{
    position: relative;
    display: inline-block;
    padding: 6px 40px 6px 4px;
    color: #D71718;
    background: #EFECE6;
    border: 1px solid #CBB584;
}
.m-search_tag i{
    position: absolute;
    top: 50%;
    right: 1px;
    width: 17px;
    height: 17px;
    background: url(../img/close.png) no-repeat;
    transform: translateY(-50%);
    cursor: pointer;
}
/* .l-body.book,
.l-body.news,
.l-body.book-detail{
    background: #FFFFFF;
} */
.l-body.news .m-search{
    margin-bottom: 56px;
}
.news-detail .l-sider,
.book-detail .l-sider{
    margin-left: 43px;
    margin-right: 0;
}
.book-detail_head{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.book-detail_img{
    margin-right: 30px;
    width: 344px;
    height: 456px;
}
.book-detail_img img{
    width: 100%;
    height: 100%;
}
.book-detail_cont{
    flex: 1;
}
.book-detail_cont__tit{
    font-size: 24px;
    font-weight: normal;
    color: #333333;
    line-height: 26px;
}
.book-detail_cont__price{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.book-detail_cont__price p{
    font-size: 34px;
    font-weight: normal;
    color: #D71A1B;
}
.book-detail_cont__price span{
    height: 17px;
    margin-left: 10px;
    font-size: 16px;
    font-weight: normal;
    color: #AAAAAA;
    line-height: 17px;
    text-decoration: line-through;
}
.book-detail_cont__value{
    margin-top: 30px;
}
.book-detail_cont__attr{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    color: #666666;
    line-height: 20px;
}
.book-detail_cont__attr>div{
    flex: 1;
}
.book-detail_cont__attr:last-child{
    margin-bottom: 0;
}
.book-detail_cont__tool{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}
.book-detail_cont__btn{
    position: relative;
    width: 170px;
    height: 40px;
    margin-right: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
}
.book-detail_cont__btnh{
    position: absolute;
    right: 0;
    top: 55px;
    width: 364px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    background: #FFFFFF;
    border: 1px solid #D82122;
    border-radius: 15px;
    transition: all .3s;
}
.book-detail_cont__btnh::before{
    content: '';
    position: absolute;
    right: 30px;
    top: -8px;
    width: 15px;
    height: 15px;
    border-top: 1px solid #D82122;
    border-left: 1px solid #D82122;
    transform: rotate(45deg);
    background: #FFFFFF;
}
.book-detail_cont__tool .btn-pbook:hover .book-detail_cont__btnh{
    opacity: 1;
    visibility: visible;
}
.book-detail_cont__btnh a{
    float: left;
    width: 160px;
    height: 50px;
    margin: 5px;
}
.book-detail_cont__btnh a img{
    display: block;
}
.btn-ebook{
    color: #FFFFFF;
    background: url(../img/btnebook.png) no-repeat;
}
.btn-pbook{
    color: #D82122;
    background: url(../img/paper.png) no-repeat;
    background-size: 100% 100%;
}
.book-detail_body{
    margin-top: 156px;
}
.book-detail_item{
    margin-bottom: 40px;
}
.book-detail_item__tit{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-bottom: 9px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: normal;
    color: #333333;
    line-height: 22px;
    border-bottom: 1px solid #D8C7A1;
}
.book-detail_item__tit i{
    display: inline-block;
    width: 18px;
    height: 18px;
}
.book-detail_item__tit i{
    background: url(../img/titlel.png) no-repeat;
}
.book-detail_item__tit i:last-child{
    transform: rotate(180deg);
}

.book-detail_item__textarea{
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: all .3s;
}
.book-detail_item__cont.more  .book-detail_item__textarea{
    max-height: none;
}
.book-detail_item__textarea::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
}
.book-detail_item__more{
    margin-top: 4px;
    text-align: center;
    color: #D91204;
    cursor: pointer;
}
.recommendedbooks {
    width: 350px;
    height: 682px;
    padding: 10px;
    background-image: url(../img/borderbg5.png);
    background-size: 100% 100%;
}
.recommendedbooks_tit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 22px;
    font-weight: normal;
    color: #333333;
    background-image: url(../img/borderbg4.png);
    background-size: 100% 100%;
}
.recommendedbooks_tit i {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.recommendedbooks_tit i {
    background: url(../img/titlel.png) no-repeat;
}

.recommendedbooks_tit i:last-child {
    transform: rotate(180deg);
}
.recommendedbooks_item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 7px 22px;
    border-bottom: 1px solid #CBB584;
}
.recommendedbooks_item:last-child{
    border-bottom: 0;
}
.recommendedbooks_item a{
    overflow: hidden;
}
.recommendedbooks_item a:hover .recommendedbooks_item__cont .recommendedbooks_item__tit{
    color: #D91204;
}
.recommendedbooks_item__img{
    float: left;
    width: 80px;
    height: 106px;
    margin-right: 15px;
}
.recommendedbooks_item__img img{
    width: 100%;
    height: 100%;
}
.recommendedbooks_item__cont{
    overflow: hidden;
}
.recommendedbooks_item__cont .recommendedbooks_item__tit{
    height: 18px;
    font-size: 14px;
    font-weight: normal;
    color: #2D2D2D;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .3s;
}
.recommendedbooks_item__author{
    margin-top: 13px;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    line-height: 15px;
}
.consociation-detail{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}
.consociation-detail_text{
    width: 580px;
}
.consociation-detail_text p{
    margin: 0 auto;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 24px;
}
.consociation-detail_text p.title{
    width: 136px;
    height: 42px;
    margin: 38px auto 13px;
    font-size: 34px;
    font-weight: normal;
    color: #333333;
    line-height: 42px;
}
.consociation-detail_text p.des{
    position: relative;
    width: 178px;
    height: 14px;
    margin: 0 auto 40px;
    font-size: 12px;
    font-weight: normal;
    color: #CBB584;
    line-height: 14px;
}
.consociation-detail_text p.des::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 80px;
    height: 1px;
    background: #999999;
    transform:translateY(-50%);
}
.consociation-detail_text p.des::after{
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 80px;
    height: 1px;
    background: #999999;
    transform:translateY(-50%);
}
.consociation-imgs{
    width: 1200px;
    height: 278px;
}
.consociation-imgs img{
    width: 100%;
}
.team-detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.team-detail_img {
    width: 92px;
    height: 206px;
}

.team-detail_img img {
    width: 100%;
    height: 100%;
}
.team-detail_logo{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.team-detail_logo img {
    margin-bottom: 28px;
    width: 180px;
    height: 180px;
}

.team-detail_logo>p {
    width: 400px;
    height: 191px;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    text-indent: 32px;
    line-height: 24px;
}
.team-detail_text{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    border-left: 1px solid #BDB8B0;
}
.team-detail_text p{
    width: 532px;
    /* height: 211px; */
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 24px;
}
.team-detail_text p>span{
    display: block;
    text-indent: 32px;
}
.team-detail_text img{
    margin-top:6px
}
.team-detail_item__select{
    font-size: 0;
    margin-bottom: 70px;
}
.team-detail_item__item{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 40px;
    margin: 0 -12px;
    background-image: url(../img/borderbgm2.png);
    background-repeat: repeat-y;
    background-size: 100%;
}
.team-detail_item__item::before{
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    display: block;
    width: 100%;
    height: 30px;
    background-image: url(../img/borderbgt2.png);
    background-repeat: no-repeat;
    background-size: 100%;

}
.team-detail_item__item::after{
    content: '';
    position: absolute;
    bottom: -38px;
    left: 0;
    display: block;
    width: 100%;
    height: 38px;
    background-image: url(../img/borderbgb2.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.team-detail_item__img{
    width: 613px;
    height: 415px;
}
.team-detail_item__img img{
    width: 100%;
    height: 100%;
}
.team-detail_item__cont{
    flex: 1;
    margin-left: 30px;
}
.team-detail_item__tit{
    margin-bottom: 18px;
    font-size: 34px;
    font-weight: normal;
    color: #333333;
    line-height: 37px;
}
.team-detail_item__textarea{
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 24px;
}
.m-select{
    display: inline-block;
    position: relative;
    width: 150px;
    height: 50px;
    margin-right: 40px;
    background: url(../img/bgselect.png);
    background-size: 100% 100%;
    z-index: 2;
}
.m-select_text{
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    font-weight: normal;
    color: #999999;
    line-height: 50px;
    cursor: pointer;
}
.m-select_text i{
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/arrow2.png) no-repeat;
    background-size: 100% 100%;
    transform: translateY(-50%);
}
.m-select_cont{
    position: absolute;
    top: 50px;
    width: 100%;
    max-height: 281px;
    background: #EFECE6;
    border: 1px solid #B5AFA5;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.m-select_cont::-webkit-scrollbar {/*滚动条整体样式*/
    width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
    scrollbar-arrow-color:red;

}
.m-select_cont::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #B5AFA5;
    scrollbar-arrow-color:red;
}
.m-select_cont::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
}

.m-select_cont ul li{
    height: 39px;
    color: #999999;
    font-size: 18px;
    line-height: 39px;
    text-align: center;
    border-bottom: 1px solid #B5AFA5;
    cursor: pointer;
}
.m-select_cont ul li:hover{
    color: #CBB583;
}
.m-select_cont ul li.checked{
    color: #CBB583;
}
.m-select_cont ul li:last-child{
    border-bottom: 0;
}
.m-select.expand .m-select_cont{
    opacity: 1;
    visibility: visible;
}
.journal-detail{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.journal-detail_img{
    width: 328px;
    height: 470px;
}
.journal-detail_img img{
    width: 100%;
    height: 100%;
}
.journal-detail_cont{
    flex: 1;
    margin-left: 26px;
}
.journal-detail_tit{
    padding: 10px 0;
    border-top: 2px solid #BCB7AE;
    border-bottom: 2px solid #BCB7AE;
}
.journal-detail_tit p{
    height: 26px;
    font-size: 24px;
    font-weight: normal;
    color: #BCA573;
    line-height: 26px;
}
.journal-detail_tit p.des{
    height: 15px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #BCB7AE;
    line-height: 15px;
}
.journal-detail_text{
    padding-top: 18px;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 24px;
}
.journal-detail_text>p{
    text-indent: 36px;
}
.journal-detail_text>p.journal-detail_text__tit{
    text-indent: 0;
}
.journal-detail_text__tit{
    margin-top: 25px;
    font-size: 24px;
    font-weight: normal;
    color: #666666;
    line-height: 29px;
}
/* .journal-detail_text__w527{
    width: 527px;
} */
.journal-detail_text>a{
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: normal;
    color: #D71B1C;
    line-height: 21px;
    text-decoration: underline;
    text-decoration-color: #D71B1C;
}
.journal-filtrate{
    margin-top: 56px;
}
.journal-filtrate_year {
    font-size: 0;
}
.journal-filtrate_year div{
    display: inline-block;
    width: 115px;
    height: 40px;
    margin-right: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
    color: #999999;
    line-height: 40px;
    text-align: center;
    background: url(../img/borderbg7.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.journal-filtrate_year div:nth-child(8n){
    margin-right: 0;
}
.journal-filtrate_year div.checked{
    color: #ffffff;
    background: url(../img/borderbg6.png) no-repeat;
}
.journal-filtrate_month{
    margin-top: 10px;
    font-size: 0;
}
.journal-filtrate_month>div{
    display: inline-block;
    margin-right: 30px;
    padding-left: 30px;
    font-size: 24px;
    font-weight: normal;
    color: #999999;
    line-height: 26px;
    cursor: pointer;
}
.journal-filtrate_month>div.checked{
    color: #D71B1C;
    background: url(../img/rchecked.png) no-repeat;
    background-position-y: 50%;
}
.journal-filtrate_text{
    width: 1200px;
    height: 80px;
    padding-left: 20px;
    margin-top: 30px;
    font-size: 24px;
    font-weight: normal;
    color: #333333;
    line-height: 80px;
    background: #EFECE6;
    border: 1px solid #CBB584;
}
.journal-detail_item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid #CBB584;
}
.journal-detail_item>div{
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    font-weight: normal;
    color: #333333;
}
.journal-detail_item>a{
    width: 115px;
    height: 40px;
    background: url(../img/borderbg7.png) no-repeat;
    background-size: 100% 100%;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 40px;
    text-align: center;
}
.journal-detail_item>a:hover{
    color: #ffffff;
    background: url(../img/borderbg6.png) no-repeat;
}
.download-text{
    width: 100%;
    height: 80px;
    margin-bottom: 14px;
    padding-left: 20px;
    line-height: 80px;
    background: #EFECE6;
    border: 1px solid #CBB584;
    font-size: 24px;
    color: #333333;
}
.download-item{

}
.download-item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid #CBB584;
}
.download-item>div{
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    font-weight: normal;
    color: #333333;
}
.download-item>a{
    width: 115px;
    height: 40px;
    background: url(../img/borderbg7.png) no-repeat;
    background-size: 100% 100%;
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    line-height: 40px;
    text-align: center;
}
.download-item>a:hover{
    color: #ffffff;
    background: url(../img/borderbg6.png) no-repeat;
}
@-webkit-keyframes shape1 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@keyframes shape1 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@-webkit-keyframes shape2 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@keyframes shape2 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@-webkit-keyframes shape3 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@keyframes shape3 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@-webkit-keyframes shape4 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

@keyframes shape4 {
    from {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    to {
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

.m-loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.m-loading .loader-inner {
    position: absolute;
    top: 200px;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    -webkit-animation: rotation 1s infinite;
    animation: rotation 1s infinite;
}

.m-loading .shape {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

.m-loading .shape.shape-1 {
    left: 0;
    background-color: #4285F4;
}

.m-loading .shape.shape-2 {
    right: 0;
    background-color: #34A853;
}

.m-loading .shape.shape-3 {
    bottom: 0;
    background-color: #FBBC05;
}

.m-loading .shape.shape-4 {
    bottom: 0;
    right: 0;
    background-color: #EA4335;
}

.m-loading .shape-1 {
    -webkit-animation: shape1 0.5s infinite alternate;
    animation: shape1 0.5s infinite alternate;
}

.m-loading .shape-2 {
    -webkit-animation: shape2 0.5s infinite alternate;
    animation: shape2 0.5s infinite alternate;
}

.m-loading .shape-3 {
    -webkit-animation: shape3 0.5s infinite alternate;
    animation: shape3 0.5s infinite alternate;
}

.m-loading .shape-4 {
    -webkit-animation: shape4 0.5s infinite alternate;
    animation: shape4 0.5s infinite alternate;
}
.news-detail_head{
    text-align:center;
    padding: 30px 40px 0;
}
.news-detail_body{
    padding: 0 40px;
}
.news-detail_tit{
    font-size: 22px;
    font-weight: normal;
    color: #2D2D2D;
    line-height: 25px;
}
.news-detail_data{
    margin-top: 24px;
}
.news-detail_textarea{
    margin-top: 34px;
}
/* 富文本容器 */
.team-detail_item__textarea video,
.news-detail_textarea video,
.team-detail_item__textarea img{
/* .news-detail_textarea img  加了block会影响居中*/
    display: block;
    max-width: 100%;
}
.news-detail_textarea img{
    max-width: 100%;
}
.about #allmap img{
    max-width: none;
}
.about .celebrate-detail{
    width: 100%;
}
.about .celebrate-detail_text .title{
    font-size: 34px;
    color: #333;
    text-align: center;
}
.about .celebrate-detail_text .des{
    font-size: 16px;
    color: #D71718;
    text-align: center;
    letter-spacing: 20px;
    margin-top: 11px;
    position: relative;
}
.about .celebrate-detail_text .des::after{
    content: '';
    width: 56px;
    height: 1px;
    background: #CBB584;
    display: inline-block;
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -28px;
}
.about .celebrate-detail_list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.about .celebrate-detail_item{
    width: 116px;
    height: 315px;
    background: url('../img/about-celebrate-item.png') no-repeat;
    background-size: 100%;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;    /*ie*/
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    font-size: 22px;
    color: #333;
    text-align: center;
    line-height: 116px;
    transition: background .3s;
}
.about .celebrate-detail_item:hover{
    background: url('../img/about-celebrate-check.png') no-repeat;
    background-size: 100%;
}
.about .celebrate-detail_item a{
    color: #333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .celebrate-detail_item p{
    min-height: 140px;
}
.celebrate-detail_icon_up{
    position: relative;
    display: inline-flex;
}
.celebrate-detail_icon_down{
    position: relative;
    display: inline-flex;
}
.celebrate-detail_icon_up::before{
    content: '';
    width: 25px;
    height: 25px;
    background: url('../img/about-celebrate-item-up.png') no-repeat;
    display: inline-block;
}
.celebrate-detail_icon_up::after{
    content: '';
    width: 25px;
    height: 25px;
    background: url('../img/about-celebrate-check-up.png') no-repeat;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(90deg);
}
.celebrate-detail_icon_down::before{
    content: '';
    width: 25px;
    height: 25px;
    background: url('../img/about-celebrate-item-down.png') no-repeat;
    display: inline-block;
}
.celebrate-detail_icon_down::after{
    content: '';
    width: 25px;
    height: 25px;
    background: url('../img/about-celebrate-check-down.png') no-repeat;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(90deg);
}
.about .celebrate-detail_item:hover .celebrate-detail_icon_up::before{
    animation:iconRotate 500ms forwards;
    -moz-animation:iconRotate 500ms forwards; /* Firefox */
    -webkit-animation:iconRotate 500ms forwards; /* Safari and Chrome */
    -o-animation:iconRotate 500ms forwards; /* Opera */
}

.about .celebrate-detail_item:hover .celebrate-detail_icon_down::before{
    animation:iconRotate2 500ms forwards;
    -moz-animation:iconRotate2 500ms forwards; /* Firefox */
    -webkit-animation:iconRotate2 500ms forwards; /* Safari and Chrome */
    -o-animation:iconRotate2 500ms forwards; /* Opera */
}

.about .celebrate-detail_item:hover .celebrate-detail_icon_up::after{
    animation:iconRotate3 500ms forwards;
    -moz-animation:iconRotate3 500ms forwards; /* Firefox */
    -webkit-animation:iconRotate3 500ms forwards; /* Safari and Chrome */
    -o-animation:iconRotate3 500ms forwards; /* Opera */
}

.about .celebrate-detail_item:hover .celebrate-detail_icon_down::after{
    animation:iconRotate4 500ms forwards;
    -moz-animation:iconRotate4 500ms forwards; /* Firefox */
    -webkit-animation:iconRotate4 500ms forwards; /* Safari and Chrome */
    -o-animation:iconRotate4 500ms forwards; /* Opera */
}
@keyframes iconRotate{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(90deg);
    }
}

/* Firefox */
@-moz-keyframes iconRotate{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(90deg);
    }
}

/* Safari 和 Chrome */
@-webkit-keyframes iconRotate{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(90deg);
    }
}

/* Opera */
@-o-keyframes iconRotate{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(90deg);
    }
}

@keyframes iconRotate2{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Firefox */
@-moz-keyframes iconRotate2{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Safari 和 Chrome */
@-webkit-keyframes iconRotate2{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Opera */
@-o-keyframes iconRotate2{
    0%{
        transform: rotateY(0deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}
@keyframes iconRotate3{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Firefox */
@-moz-keyframes iconRotate3{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Safari 和 Chrome */
@-webkit-keyframes iconRotate3{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Opera */
@-o-keyframes iconRotate3{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

@keyframes iconRotate4{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Firefox */
@-moz-keyframes iconRotate4{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Safari 和 Chrome */
@-webkit-keyframes iconRotate4{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}

/* Opera */
@-o-keyframes iconRotate4{
    0%{
        transform: rotateY(90deg);
    }
    50%{
        transform: rotateY(90deg);
    }
    100%{
        transform: rotateY(180deg);
    }
}
.about .contact-detail{
    width: 100%;
}
.about .contact-detail_text .title{
    font-size: 34px;
    color: #333;
    text-align: center;
}
.about .contact-detail_text .des{
    font-size: 16px;
    color: #D71718;
    text-align: center;
    letter-spacing: 20px;
    margin-top: 11px;
    position: relative;
}
.about .contact-detail_text .des::after{
    content: '';
    width: 56px;
    height: 1px;
    background: #CBB584;
    display: inline-block;
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -28px;
}
.about .contact-detail_cont{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 52px;
}
.about .contact-detail_cont_map{
    width: 580px;
    height: 338px;
    /* background: url('../img/about-contact-map-bg.png'); */
    /* background-size: contain; */
    position: relative;
}
.about .contact-detail_cont_text{
    width: 580px;
    height: 338px;
    background: url('../img/about-contact-text-bg.png');
    background-size: contain;
}
.about #allmap{
    margin: 10px;
    width: 560px;
    height: 318px;
    border-radius: 30px;
}
/* .about #allmap::before{
    content: '';
    display: inline-block;
    border-bottom-right-radius: 50px;
    background: #EFECE6;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    z-index: 99999;
}
.about #allmap::after{
    content: '';
    display: inline-block;
    border-bottom-left-radius: 50px;
    background: #EFECE6;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    z-index: 99999;
} */
.about .map-icon{
    width: 580px;
    height: 338px;
    position: absolute;
    /* top: 10px; */
    /* left: 10px; */
    /* border-radius: 30px; */
    /* overflow: hidden; */
    background: url('../img/about-contact-bg.png') no-repeat;
    top: 0;
    left: 0;
    background-size: 100%;
}
/* .about .map-icon::before{
    content: '';
    display: inline-block;
    border-top-right-radius: 50px;
    background: #EFECE6;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    z-index: 99999;
}
.about .map-icon::after{
    content: '';
    display: inline-block;
    border-top-left-radius: 50px;
    background: #EFECE6;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    z-index: 99999;
} */
.about .contact-detail_cont_text{
    padding: 32px;
    font-size: 16px;
    color: #666;
}
.about .contact-detail_cont_text p{
    margin-top: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.about .contact-detail_cont_text .title{
    font-size: 22px;
    color: #333;
    margin-top: 0;
    display: inline-block;
    width: 100%;
}
.about .contact-detail_cont_text .title::after{
    content: '';
    width: 100%;
    height: 1px;
    display: inline-block;
    margin-top: 20px;
    background: #D4C39C;
}
.about .recruit-width1{
    width: 100px;
}
.about .recruit-width2{
    width: 200px;
}
.about .recruit-width3{
    width: 200px;
}
.about .recruit-width4{
    width: 240px;
}
.about .recruit-width5{
    width: 245px;
}
.about .recruit-width6{
    width: 100px;
}
.about .recruit-detail{
    width: 100%;
}
.about .recruit-detail_text .title{
    font-size: 34px;
    color: #333;
    text-align: center;
}
.about .recruit-detail_text .des{
    font-size: 16px;
    color: #D71718;
    text-align: center;
    letter-spacing: 20px;
    margin-top: 11px;
    position: relative;
}
.about .recruit-detail_text .des::after{
    content: '';
    width: 56px;
    height: 1px;
    background: #CBB584;
    display: inline-block;
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -28px;
}
.recruit-detail_title{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 1200px;
    height: 80px;
    background: #EFECE6;
    border: 1px solid #CBB584;
    margin-top: 64px;
    font-size: 18px;
    color: #333;
    line-height: 80px;
    text-align: center;
}
.recruit-detail_sub{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    min-height: 80px;
    font-size: 18px;
    color: #333;
    align-items: center;
    border-bottom: 1px solid #CBB584;
}
.recruit-detail_item:first-child .recruit-detail_sub{
    border-top: 1px solid #CBB584;
    margin-top: 14px;
}
.recruit-detail_cont{
    background: #F8F6F3;
    font-size: 14px;
    color: #666;
    padding: 10px 4px;
}
.recruit-button{
    width: 115px;
    height: 40px;
    background: url('../img/about-recruit-item.png') no-repeat;
    background-size: contain;
    line-height: 40px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
}
.recruit-button:hover{
    background: url('../img/about-recruit-check.png') no-repeat;
    background-size: contain;
    color: #fff;
}
.recruit-detail_tip{
    margin-top: 30px;
    color: #D71A1B;
    font-size: 14px;
}
.recruit-detail_more{
    text-align: center;
    margin-top: 10px;
}
.recruit-detail_more i{
    cursor: pointer;
    color: #CBB584;
    font-size: 22px;
}
.about .contribution-detail{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
}
.about .contribution-detail::before{
    content: '';
    width: 574px;
    height: 506px;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    border-top: 2px solid #CBB584;
    border-left: 2px solid #CBB584;
    border-bottom: 2px solid #CBB584;
}
.about .contribution-detail::after{
    content: '';
    width: 47px;
    height: 506px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    border-top: 2px solid #CBB584;
    border-right: 2px solid #CBB584;
    border-bottom: 2px solid #CBB584;
}
.about .contribution-detail_img{
    width: 499px;
    margin-top: 2px;
    margin-left: 2px;
    font-size: 0;
}
.about .contribution-detail_title{
    width: 85px;
    margin: 118px 46px auto 33px;
    font-size: 0;
}
.about .contribution-detail_text{
    width: 516px;
    font-size: 16px;
    color: #666;
    margin-top: 56px;
}
.honor-detail{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.about .honor-detail_text .title{
    font-size: 34px;
    color: #333;
    text-align: center;
}
.about .honor-detail_text .des{
    font-size: 16px;
    color: #D71718;
    text-align: center;
    letter-spacing: 20px;
    margin-top: 11px;
    position: relative;
}
.about .honor-detail_text .des::after{
    content: '';
    width: 56px;
    height: 1px;
    background: #CBB584;
    display: inline-block;
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -28px;
}
.about .honor-detail_cont{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 52px;
}
.about .honor-detail_item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 70px;
    font-size: 20px;
    color: #333;
    position: relative;
}
.about .honor-detail_item:hover{
    color: #D71A1B;
}
.about .honor-detail_item:hover .honor-detail_item_icon{
    width: 64px;
    height: 64px;
    border: none;
    background: #D71A1B;
    /* transition: background 500ms; */
   
    
}
@keyframes iconScale{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

/* Firefox */
@-moz-keyframes iconScale{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

/* Safari 和 Chrome */
@-webkit-keyframes iconScale{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

/* Opera */
@-o-keyframes iconScale{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
.about .honor-detail_item:hover .honor-detail_item_icon::after{
    width: 31px;
    height: 33px;
    background: url('../img/about-honor.png');
    background-size: 100%;
    animation:iconScale 500ms forwards;
    -moz-animation:iconScale 500ms forwards; /* Firefox */
    -webkit-animation:iconScale 500ms forwards; /* Safari and Chrome */
    -o-animation:iconScale 500ms forwards; /* Opera */
    border-radius: 0;
}
.about .honor-detail_item.check{
    color: #D71A1B;
}
.about .honor-detail_item.check .honor-detail_item_icon{
    width: 64px;
    height: 64px;
    border: none;
    background: #D71A1B;
    transition: background 500ms;
    -moz-transition: background 500ms; /* Firefox 4 */
    -webkit-transition: background 500ms; /* Safari 和 Chrome */
    -o-transition: background 500ms; /* Opera */
}
.about .honor-detail_item.check .honor-detail_item_icon::after{
    width: 31px;
    height: 33px;
    background: url('../img/about-honor.png');
    background-size: 100%;
    border-radius: 0;
}
.about .honor-detail_item:first-child{
    margin-top: 0;
}
.about .honor-detail_item_left{
    flex: 1;
    text-align: right;
}
.about .honor-detail_item_center{
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 32px;
}
.about .honor-detail_item_center::before{
    content: '';
    width: 2px;
    height: 50%;
    position: absolute;
    top: 0%;
    left: 50%;
    margin-left: -1px;
    background: #979797;
}
.about .honor-detail_item.first .honor-detail_item_center::before{
    content: none;
}
.about .honor-detail_item_center::after{
    content: '';
    width: 2px;
    height: calc(50% + 70px);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1px;
    background: #979797;
}
.about .honor-detail_item.last .honor-detail_item_center::after{
    content: none;
}
.about .honor-detail_item_icon{
    width: 14px;
    height: 14px;
    border: 1px solid #979797;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 2;
}
.about .honor-detail_item_icon::after{
    content: '';
    width: 8px;
    height: 8px;
    background: #d8d8d8;
    display: inline-block;
    border-radius: 100%;
}
.about .honor-detail_item_right{
    flex: 1;
}
.about .honor-detail-button{
    font-size: 14px;
    color: #D91204;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.about .honor-detail-button p{
    cursor: pointer;
}
.about .honor-detail_text.book{
    margin-top: 60px;
}
.about .honor-detail_booklist{
    margin-top: 63px;
}
.about .honor-detail_bookitem{
    width: 280px;
    height: 450px;
    background: url('../img/about-honor-item.png');
    background-size: 100%;
    padding: 0 18px;
    text-align: center;
    transition: background .3s;
}
.about .honor-detail_bookitem:hover{
    background: url('../img/about-honor-check.png');
    background-size: 100%;
}
.about .honor-detail_bookitem:hover .label{
    color: #fff;
}
.about .honor-detail_bookitem .label{
    color: #CEBA8B;
    letter-spacing: 4px;
    font-size: 12px;
    padding: 29px 0 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
}
.about .honor-detail_bookitem .awards{
    color: #D71718;
    font-size: 16px;
}
.about .honor-detail_bookitem .awardsname{
    color: #D71718;
    font-size: 16px;
    padding: 0 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
}
.about .honor-detail_bookitem .title{
    color: #333;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    margin-top: 12px;
}
.about .honor-detail_bookitem .author{
    color: #666;
    font-size: 12px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
}
.about .honor-detail_bookitem .time{
    color: #666;
    font-size: 12px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
}
.about .honor-detail_bookitem .edit{
    color: #666;
    font-size: 12px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
}
.about .honor-book{
    width: 119px;
    height: 173px;
    overflow: hidden;
    margin: 0 auto;
}
.about .swiper-container{
    padding-bottom: 50px;
}

.about .swiper-scrollbar-drag{
    background: #A37E62;
    height: 4px;
    top: -1px;
}
.about .swiper-scrollbar{
    background: #A37E62;
    height: 1px;
}
.about .press-detail{
    width: 100%;
}
.about .press-detail_text .title{
    font-size: 34px;
    color: #333;
    text-align: center;
}
.about .press-detail_text .des{
    font-size: 16px;
    color: #D71718;
    text-align: center;
    letter-spacing: 20px;
    margin-top: 11px;
    position: relative;
}
.about .press-detail_text .des::after{
    content: '';
    width: 56px;
    height: 1px;
    background: #CBB584;
    display: inline-block;
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -28px;
}
.about .press-detail_cont{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 45px;
    font-size: 16px;
    color: #666;
}
.about .press-detail_cont>img{
    width: 75px;
    margin: 3px 68px auto 146px;
}
.about .press-detail_cont>p{
    width: 797px;
    text-indent: 32px;
}
.about .press-imgs-bg{
    display: none;
    width: 1006px;
    background: url('../img/about-press-bg.png') no-repeat;
    background-size: 100%;
    margin: 24px auto 0;
}
.about .press-imgs-bg .press-imgs{
    padding: 11px 12px 9px;
}

.details-book-main-right-button{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}
.details-book-main-right-button .btn{
    display: none;
}
.details-book-main-right-button .link{
    display: block;
    position: relative;
    width: 170px;
    height: 40px;
    margin-right: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
} 
.details-book-main-right-button .link.details-buy-book{
    color: #D82122;
    background: url(../img/paper.png) no-repeat;
    background-size: 100% 100%;
}
.dialog-view-channel .view-body .view-title{
    padding-bottom: 0;
}