.header {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0 64px;
}

.head {
    height: 132px;
    border-left: 1px solid rgba(197, 197, 197, .5);
    border-right: 1px solid rgba(197, 197, 197, .5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head h1 {
    width: 23%;
    text-align: center;
}

.head h1 img {
    max-height: 75px;
    max-width: 90%;
}

.topRight {
    width: 77%;
    height: 100%;
    border-left: 1px solid rgba(197, 197, 197, .5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.topBox {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    font-size: 18px;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 30px;

}

.search {
    margin-right: 35px;
    position: relative;
}

.search-in {
    width: 253px;
    height: 35px;
    border-radius: 10000px;
    background: #EEEEEE;
    border: none;
    outline: unset;
    box-sizing: border-box;
    padding-left: 15px;
    font-size: 14px;
}

.search-btn {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: url(../img/ss.png) center no-repeat;
    position: absolute;
    right: 15px;
    top: 10px;
    border: none;
}

.search-in::placeholder {
    color: #9E9E9E;
}

.topBox .link a {
    color: #2A2A2A;
}

.topBox .link span {
    color: #2A2A2A;
    margin: 0 30px;
}

.topBox .link span:last-of-type {
    display: none;
}

.navigation {
    width: 100%;
    height: 50%;
    position: relative;
    z-index: 101;
    box-sizing: border-box;
    padding-right: 20px;
    border-top: 1px solid rgba(197, 197, 197, .5);
    display: flex;
    align-items: flex-end;
}

.navigation::before {
    content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    background: #D8D8D8;
    position: absolute;
    left: -4px;
    top: -4px;
}

.navigation::after {
    content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    background: #D8D8D8;
    position: absolute;
    right: -4px;
    top: -4px;
}

.nav {
    width: 100%;
    height: 55px;
    line-height: 55px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.nav a {
    color: #2B2B2B;
}

.nav .nli {
    /* flex: 1; */
    height: 55px;
    float: left;
    display: inline;
    text-align: center;
    position: relative;
    padding: 0 10px;
    margin-left: 50px;
    margin-bottom: 0;
}


.nav .nli h3 {
    height: 55px;
    line-height: 55px;
}

.nav .nli h3 a {
    display: inline-block;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
}

.nav .nli:hover .sub {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.nav .sub {
    width: 140%;
    top: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .6);
    line-height: 60px;
    left: -20%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.nav .sub li {
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #000;
    zoom: 1;
    float: left;
    width: 100%;
    position: relative;
}

.nav .li3 .sub {
    width: 160%;
    left: -30%;
}

.nav .sub a {
    display: block;
    color: #fff;
    font-size: 15px;
}

.nav .sub a:hover {
    background: #8A5742;
    text-decoration: none;
}


.nav .on h3 a,
.nav .nli:hover h3 a {
    font-weight: bold;
    color: #8A5742;
}

.nav .sub li .three-nav {
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
    width: 125px;
    background: rgba(0, 0, 0, .4);
}

.nav .sub li:hover .three-nav {
    display: block;
}

/* ------------------- */

.banlist {
    width: 100%;
    position: relative;
}

.banlist .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.banlist .swiper-slide img {
    width: 100%;
}

.banlist .swiper-pagination {
    bottom: 5%;
    width: 100%;
    text-align: center;
}

.banlist .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
    opacity: 1;
    background: none;
    transition: all 0.5s ease-in-out;
}

.banlist .swiper-pagination-bullet-active {
    width: 37px;
    height: 10px;
    border-radius: 90px;
    background: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

.banlist .swiper-prev,
.banlist .swiper-next {
    width: 65px;
    height: 70px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc((100% - 70px) / 2);
    left: 80px;
    z-index: 99;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.banlist .swiper-next {
    left: auto;
    right: 80px;
}

.banlist .swiper-prev:hover,
.banlist .swiper-next:hover {
    background: #8A5742;
    transition: all 0.5s ease-in-out;
}

.column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    position: relative;
    box-sizing: border-box;
    padding-left: 22px;
}

.column::after {
    content: '';
    width: 11px;
    height: 88px;
    display: inline-block;
    background: url(../img/column-ico.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    /*display: none;*/
}

.column2::after {
    background: url(../img/column-ico2.png) center no-repeat;
    background-size: cover;
}

.column a.title {
    display: inline-block;
}

.column .title .name {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    color: #3D3D3D;
    display: inline-block;
}

.column2 .title .name {
    color: #Fff;
}

.column .title .name::before {
    content: '';
    width: 62px;
    height: 42px;
    display: inline-block;
    background: url(../img/column-title-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    left: 100%;
}


.column .title .en {
    text-transform: uppercase;
    color: #8A5742;
}

.column2 .title .en {
    color: #Fff;
}

.column .more {
    font-size: 12px;
    color: #8A5742;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
}

.column2 .more {
    color: #Fff;
}

.column .more::before {
    content: '';
    width: 58px;
    height: 8px;
    display: inline-block;
    background: url(../img/column-more-ico.png) no-repeat;
    background-size: cover;
    margin-right: 9px;
}

.column2 .more::before {
    background: url(../img/column-more-ico2.png) no-repeat;
    background-size: cover;
}

.content1 {
    overflow: hidden;
    background: url("../img/content1Bg.png") center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.content1 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bsyw {
    width: 670px;
}

.newSlide {
    box-sizing: border-box;
    padding: 15px 0 0 15px;
    position: relative;
}

.newSlide::before {
    content: '';
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    display: inline-block;
    background: rgba(138, 87, 66, 0.5608);
    position: absolute;
    left: 0;
    top: 0;
}

.newSlide .swiper-slide .img {
    overflow: hidden;
}

.newSlide .swiper-slide img {
    width: 100%;
    aspect-ratio: 13/7;
    /* height: 348px; */
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.newSlide .swiper-slide .tt {
    width: 100%;
    height: 120px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/mark-ico.png) center bottom no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.newSlide .swiper-slide .title {
    color: #fff;
    line-height: 25px;
    height: 25px;
    margin-top: 5px;
}

.newSlide .swiper-slide .dete {
    color: #fff;
    display: flex;
    align-items: center;
}

.newSlide .swiper-slide .dete::before {
    content: '';
    width: 23px;
    height: 23px;
    display: inline-block;
    background: url(../img/dete-ico.svg) center no-repeat;
    background-size: cover;
}

.newSlide .swiper-slide:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.newlist .box {
    width: 100%;
    margin-top: 35px;
}

.newlist .box a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newlist .box .title {
    color: #333;
    flex: 1;
    box-sizing: border-box;
    padding-right: 15px;
    line-height: 25px;
    height: 25px;
}

.newlist .box .dete {
    color: #8A5742;
}

.newlist .box:hover .title {
    color: #6A460E;
    font-weight: bold;
}


.hyzx {
    width: calc(100% - 670px - 85px);
}

.hyzxlist .box {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(138, 87, 66, 0.34);
    padding: 20px 0 20px 30px;
    position: relative;
}

.hyzxlist .box::before {
    content: '';
    width: 0;
    height: 100%;
    background: #8A5742;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.hyzxlist .box:first-of-type {
    border-top: 1px solid rgba(138, 87, 66, 0.34);
}

.hyzxlist .box .dete {
    color: #8A5742;
}

.hyzxlist .box .title {
    color: #333;
    line-height: 25px;
    height: 25px;
    margin: 15px 0;
}

.hyzxlist .box .desc {
    color: rgba(102, 102, 102, 0.81);
    line-height: 20px;
    height: 20px;
}

.hyzxlist .box:hover {
    background: linear-gradient(270deg, rgba(138, 87, 66, 0) 0%,
    rgba(138, 87, 66, 0.56) 100%);
    border: none;
}

.hyzxlist .box:hover .title {
    font-weight: bold;
    color: #6A460E;
}

.hyzxlist .box:hover::before {
    width: 5px;
}

.hyzxlist .box:hover .desc {
    color: rgba(138, 87, 66, 0.82);
}

/* 新书推荐 */

.content2 {
    width: 100%;
    background: url(../img/content2Bg.jpg) center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.xstjSlide {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 130px;
}

.xstjSlide .swiper-slide {
    /*transition: 300ms;*/
    transition: all 0.5s ease-in-out;
    transform: scale(0.7);
}

.xstjSlide .swiper-slide-prev,
.xstjSlide .swiper-slide-next{
    transform: scale(0.85);
}

.xstjSlide .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.xstjSlide .swiper-slide img {
    width: 100%;
}

.xstjSlide .swiper-slide-active {
    transform: scale(1);
}

.xstjSlide .swiper-pagination1 {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    display: none;
}

.xstjSlide .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    opacity: 0.3;
    margin: 0 8px;
    background: #fff;
}

.xstjSlide .swiper-pagination-bullet-active {
    opacity: 1;
}

.xstjSlide .swiper-next,
.xstjSlide .swiper-prev {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 32%;
    background: url(../img/xstj-prev.svg) center no-repeat;
    background-size: cover;
    cursor: pointer;
}

.xstjSlide .swiper-next {
    left: auto;
    right: 0;
    background: url(../img/xstj-next.svg) center no-repeat;
    background-size: cover;
}

.xstjSlide .swiper-next:hover {
    background: url(../img/xstj-next2.svg) center no-repeat;
    background-size: cover;
}

.xstjSlide .swiper-prev:hover {
    background: url(../img/xstj-prev2.svg) center no-repeat;
    background-size: cover;
}

/* 图书展示 */

.content34 {
    width: 100%;
    background: url(../img/content34Bg.png) center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.content3 {
    background: url(../img/content3Bg2.png) bottom center no-repeat;
    background-size: 100% auto;
    overflow: hidden;
}

.content3 .column .more{
    display: none;
}

.content3 .container {
    position: relative;
}

.tabCount {
    width: 100%;
    margin-top: 30px;
}

.tabCount .item {
    display: none;
}

.tabCount .item.on {
    display: block;
}

.booklist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.booklist .box {
    width: calc((100% - 180px) / 3);
    margin-bottom: 70px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    margin-right: 88px;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
    border: 1px solid #f2f2f2;
}

.booklist .box:nth-child(3n) {
    margin-right: 0;
}

.booklist .box a {
    display: flex;
}

.booklist .box .img {
    width: 130px;
    /* overflow: hidden; */
    position: relative;
    top: -20px;
}

.booklist .box .img img {
    width: 100%;
    /*height: 155px;*/
    /*object-fit: cover;*/
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.booklist .box .tt {
    flex: 1;
    box-sizing: border-box;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.booklist .box .col {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 32px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    background: #8A5742;
    padding: 0 10px;
}

.booklist .box .title {
    font-weight: bold;
    color: #3D3D3D;
    line-height: 25px;
    height: 25px;
}

.booklist .box .desc {
    line-height: 25px;
    height: 50px;
    color: #999;
    margin-top: 10px;
    text-align: justify;
}

.booklist .box:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.booklist .box:hover .title {
    color: #6A460E;
}

.tabHead1 {
    width: 82%;
    position: absolute;
    right: 0;
    top: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabHead1 .name{
    display: flex;
    align-items: center;
}

.tabHead1 .more a{
    display: none;
    font-size: 12px;
    color: #8A5742;
}

.tabHead1 .more a.on{
    display: flex;
    align-items: center;
}

/*.tabHead1 .more a.on::before {*/
/*    content: '';*/
/*    width: 58px;*/
/*    height: 8px;*/
/*    display: inline-block;*/
/*    background: url(../img/column-more-ico.png) no-repeat;*/
/*    background-size: cover;*/
/*    margin-right: 9px;*/
/*}*/

.tabHead .box {
    min-width: 140px;
    width: 140px;
    margin-right: 15px;
    height: 41px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    color: #333;
    background: url(../img/box-icon7.png) no-repeat;
    background-size: 100% 100%;
}


.tabHead .box.on {
    font-weight: bold;
    color: #fff;
    background: url(../img/box-icon7-on.png) no-repeat;
    background-size: 100% 100%;
}

.content4 {
    width: 100%;
    background: url(../img/content4Bg.png) center top no-repeat;
    background-size: 100% auto;
    overflow: hidden;
}

.advlist {
    width: 100%;
    position: relative;
}

.advlist .swiper-slide img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.advlist .swiper-slide:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.advlist .swiper-pagination {
    position: absolute;
    right: 25px;
    bottom: 25px;
    z-index: 99;
}

.advlist .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
    opacity: 1;
}

.advlist .swiper-pagination-bullet-active {
    background: #fff;
}

.aboutBox {
    box-sizing: border-box;
    position: relative;
}

.aboutBox::before {
    content: '';
    width: calc(100% - 70px);
    height: 100%;
    background: #fff;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.19);
}

.about_content {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 9;
}

.about_content .img {
    width: 40%;
    overflow: hidden;
}

.about_content .img img {
    width: 100%;
    /*height: 267px;*/
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.about_content .img img:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.about_content .text {
    flex: 1;
    box-sizing: border-box;
    padding: 10px 30px;
}

.about_content .text .name {
    font-size: 24px;
    color: #333333;
}

.about_content .text .xian {
    width: 58px;
    height: 3px;
    background: #8A5742;
    display: block;
    margin: 10px 0;
}


.about_content .text .desc {
    line-height: 30px;
    height: 90px;
    color: #666;
    text-align: justify;
}

.about_btn {
    display: flex;
    margin-top: 35px;
}

.about_btn .box {
    width: 140px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    margin-right: 20px;
    background: url(../img/box-icon7.png) no-repeat;
    background-size: 100% 100%;
}

.about_btn .box a {
    font-size: 16px;
    font-weight: bold;
    color: #8A5742;
}

.about_btn .box:hover{
    background: url(../img/box-icon7-on.png) no-repeat;
    background-size: 100% 100%;
}

.about_btn .box:hover a{
    color: #fff;
}

.zyxtlink {
    width: 100%;
    height: 130px;
    background: url(../img/zyxtlink-bg.png) center no-repeat;
    background-size: 100% 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 30px 0 60px;
}

.zyxtlink .box {
    width: 40%;
}

.zyxtlink .box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zyxtlink .box .name {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.zyxtlink .box .name::before {
    content: '';
    display: inline-block;
    width: 67px;
    height: 21px;
    background: url(../img/zyxtlink-name-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    left: -24px;
    bottom: -15px;
}

.zyxtlink .box .ico {
    width: 55px;
    height: 55px;
    display: inline-block;
    background: url(../img/zyxtlink-box-bg.png) center no-repeat;
    background-size: cover;
}

.zyxtlink .box:hover .name {
    left: 10px;
    transition: all 0.5s ease-in-out;
}

/* ----------------------------- */

.foot {
    width: 100%;
    height: 330px;
    background: rgba(191, 139, 118, 0.19);
}

.ftlogo {
    width: 15%;
    display: flex;
    align-items: center;
}

.ftlogo img {
    width: 100%;
}

.foot .container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact {
    width: 556px;
    /* width: 40%; */
    height: 238px;
    background: url(../img/contactBg.jpg) center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding-left: 64px;
    display: flex;
    align-items: center;
    position: relative;
}

.contact p {
    font-size: 16px;
    color: #fff;
    margin: 18px 0;
}

.contact p img {
    margin-right: 5px;
}

.contact .code {
    position: absolute;
    right: 40px;
    top: 133px;
}

.contact .code img {
    width: 125px;
    height: 125px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 5px;
    background: #fff;
}

.contact .code p {
    text-align: center;
    color: #8A5742;
    margin-top: 15px;
}

.ftnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    flex: 1;
}

.ftnav .box {
    width: 33.3%;
    text-align: center;
    margin: 15px 0;
}

.ftnav .box a {
    font-size: 18px;
    color: #8A5742;
}

a{
    text-decoration: none !important;
}

.banq {
    width: 100%;
    background: #8A5742;
    color: rgba(255, 255, 255, 0.8);
    padding: 26px 0;
}

.banq p {
    line-height: 25px;
    text-align: center;
    font-size: 16px;
}

.banq a {
    color: rgba(255, 255, 255, 0.8);
}

/* ------------------ */

.nydt {
    position: relative;
}

.nydt .img img {
    width: 100%;
}

.crumbs {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.crumbs .name {
    width: 239px;
    height: 80px;
    line-height: 80px;
    background: rgba(138, 87, 66, .9);
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.crumbs2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #8A5742;
    margin-bottom: 30px;
    padding: 40px 0 15px 0;
}

.subnav {
    width: 75%;
    display: flex;
    align-items: center;
}

.subnav .box {
    font-size: 20px;
    margin-right: 35px;
    position: relative;
}

.subnav .box::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 3px solid #8A5742;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -16px;
    transition: all 0.5s ease-in-out;
}

.subnav .box a {
    color: #2E2E2E;
}

.subnav .box.on a,
.subnav .box:hover a {
    color: #8A5742;
    font-weight: bold;
}

.subnav .box.on::before,
.subnav .box:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}


.crumbs2 .list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.crumbs2 .list img {
    margin-right: 5px;
}

.crumbs2 .list a {
    color: #666;
}

.crumbs2 .list a:last-child {
    color: #834227;
}

.textlist .info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.textlist .box {
    width: calc((100% - 58px) / 2);
    height: 177px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
    box-sizing: border-box;
    padding: 0 30px 30px 30px;
    display: flex;
    align-items: flex-end;
    border: 1px solid #fff;
}

.textlist .box .dete {
    width: 125px;
    height: 32px;
    color: #fff;
    background: #8A5742;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textlist .box .title {
    line-height: 25px;
    height: 25px;
    color: #3D3D3D;
}

.textlist .box .desc {
    line-height: 25px;
    height: 50px;
    color: #999;
    margin-top: 20px;
}

.textlist .box:hover {
    box-sizing: border-box;
    border: 0.5px solid #834227;
}

.textlist .box:hover .title {
    font-weight: bold;

}

.textlist .box:hover .desc {
    color: #666;
}

.piclist .box {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 30px;
    position: relative;
}

.piclist .box a {
    display: flex;
    flex-wrap: wrap;
}

.piclist .box .img {
    overflow: hidden;
    width: 383px;
    width: 28.5%;
}

.piclist .box .img img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.piclist .box .tt {
    flex: 1;
    box-sizing: border-box;
    padding: 15px 40px;
}

.piclist .box .dete {
    width: 125px;
    height: 32px;
    color: #fff;
    background: #8A5742;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.piclist .box .title {
    line-height: 25px;
    height: 25px;
    color: #3D3D3D;
}

.piclist .box .desc {
    line-height: 25px;
    height: 75px;
    color: #999;
    margin: 20px 0 30px 0;
}

.piclist .box .more {
    font-size: 12px;
    color: #8A5742;
}

.piclist .box:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.piclist .box:hover .title {
    font-weight: bold;
}

.piclist .box:hover .desc {
    color: #666;
}

.picture .info {
    display: flex;
    flex-wrap: wrap;
}

.picture .box {
    width: calc((100% - 80px) / 3);
    margin-right: 39px;
    margin-bottom: 35px;
    position: relative;
    box-sizing: border-box;
    padding: 10px 0 0 10px;
}

.picture .box::before {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: rgba(138, 87, 66, 0.5608);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.picture .box a {
    position: relative;
    z-index: 9;
    display: inline-block;
}

.picture .box:nth-child(3n) {
    margin-right: 0;
}

.picture .box .img {
    overflow: hidden;
}

.picture .box .img img {
    width: 100%;
    aspect-ratio: 16/9;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.picture .box .tt {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding: 20px;
    background: url(../img/mark-ico.png) bottom center no-repeat;
    background-size: 100% auto;
    color: #fff;
}

.picture .box .tt .dete {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.picture .box:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

/* 详情页 */

.detail {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #D4D4D4;
    padding: 45px 185px;
    margin-bottom: 40px;
}

.detail .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    color: #1B1B1B;
    text-align: center;
}

.detail .timer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0 10px 0;
}

.detail .timer>div{
    margin: 0 10px;
    color: rgba(138, 87, 66, .9);
}

.timer .left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #1B1B1B;
}

.timer .left > div {
    margin-right: 60px;
    opacity: 0.4;
}

.detail .dtl {
    box-sizing: border-box;
    padding: 15px 0;
}

.danye .detail .dtl {
    padding-top: 0;
}

.detail .dtl {
    border-top: 1px solid #D8D8D8;
    /*border-bottom: 1px solid #D8D8D8;*/
}

.detail .dtl p {
    font-size: 18px;
    line-height: 40px;
    text-align: justify;
    color: #323232;
    margin: 15px 0;
}

.detail .dtl p img{
    max-width: 800px;
    height: auto;
}

.detail-page{
    display: none;
}

.detail-page .box {
    width: 100%;
    background: #FFFFFF;
    height: 60px;
    position: relative;
    border-bottom: 1px solid #D8D8D8;
    display: flex;
    align-items: center;
}


.detail-page .box a {
    color: #9E9E9E;
    font-size: 16px;
}

.detail-page .box p {
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.detail-page .box::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-bottom: 1px solid #834227;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.detail-page .box:hover a {
    color: #834227;
}

.detail-page .box:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.timer .right {
    display: flex;
    align-items: center;
    color: #9E9E9E;
}

.share {
    zoom: 1;
}

.share:after {
    content: "";
    display: block;
    clear: both;
}

.share a {
    float: left;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-left: 13px;
    cursor: pointer;
    display: block;
}

.share a i {
    display: block;
    width: 26px;
    height: 26px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    transition: .4s all;
}

.share a:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.share #share-icon {
    width: 26px;
    height: 26px;
    float: left;
    display: none;
}

.share #share-icon img {
    width: 100%;
    height: 100%;
}

.share .share-qqzone {
    background: none
}

.share .share-qqzone i {
    background: url("../img/shareqqzone.png") center center no-repeat;
    background-size: 80%;
}

.share .share-qqzone:hover {
    background-color: none;
}

.share .share-wechat {
    position: relative;
    background-color: none;
}

.share .share-wechat i {
    background: url("../img/sharewechat.png") center center no-repeat;
    background-size: 80%;
}

.share .share-wechat:hover {
    background-color: none;
}

.share .share-weibo {
    background: none;
}

.share .share-weibo i {
    background: url("../img/shareweibo.png") center center no-repeat;
    background-size: 80%;
}

.share .share-weibo:hover {
    background-color: none;
}

.share .bg-code {
    left: -36px;
    z-index: 10;
}

.share .qrcode {
    position: absolute;
    top: 36px;
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
    display: none;
    width: 100px;
    left: -130%;
    z-index: 99;
    text-align: center;
}

.share .close-btn {
    position: absolute;
    background: #fff;
    color: #000;
    font-size: 12px;
    z-index: 12;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    right: -39px;
    top: 50px;
    display: none;
    cursor: pointer;
}

.danye .dtl {
    border: none;
}

/* ---- 索引页 ----- */

.zzrySlide {
    width: 100%;
    position: relative;
}

.zzrySlide .swiper-slide {
    box-sizing: border-box;
    padding: 15px 0 0 15px;
    position: relative;
}

.zzrySlide .swiper-slide::before {
    content: '';
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    display: inline-block;
    background: rgba(138, 87, 66, 0.5608);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.zzrySlide .swiper-slide a {
    position: relative;
    z-index: 99;
}

.zzrySlide .swiper-slide .img {
    overflow: hidden;
}

.zzrySlide .swiper-slide .img img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.zzrySlide .swiper-slide:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.zzrySlide .swiper-pagination1 {
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.zzrySlide .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: #834227;
    opacity: .3;
    margin: 0 8px;
}

.zzrySlide .swiper-pagination-bullet-active {
    opacity: 1;
}

.up-bsjj {
    width: 100%;
    position: relative;
}

.up-bsjj::before {
    content: '';
    width: 100%;
    height: 323px;
    display: inline-block;
    background: rgba(191, 139, 118, 0.2);
    position: absolute;
    left: 0;
    bottom: 0;
}

.aboutBox_up::before {
    background: #8A5742;
}

.about_content2 .text .name {
    color: #fff;
}

.about_content2 .text .xian {
    background: #fff;
}

.about_content2 .text .desc {
    color: #fff;
    text-align: justify;
}

.about_content2 .about_btn .box {
    background: url(../img/btnBg.png) center no-repeat;
    background-size: 100% 100%;
}

.about_content2 .about_btn .box a {
    color: #fff;
}

/* --------------------------------------- */
.mbheader {
    width: 100%;
    display: none;
    height: 60px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}

.mbheader .header-con {
    width: 90%;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbheader .header-con h1 a {
    display: inline-block;
}

.mbheader .header-con .logo {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.mbheader .header-con .logo a {
    width: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    width: 100%;
    max-height: 35px;
}

.sp_header {
    height: 50px;
    background: #fff;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.sp_logo {
    padding: 10px;
    float: left;
    height: 50px;
    width: 70%;
}

.sp_logo img {
    margin: auto;
    width: 100%;
    height: 100%;
}

.sp_nav {
    width: 30px;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 10px;
    flex: none;
}

.sp_nav span {
    display: block;
    background: #8A5742;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: absolute;
    z-index: 9999;
    background: #eee;
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
    font-size: 14px;
    line-height: 40px;
    top: -1000%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
}

.nav_show {
    top: 80px
}

.sjj_nav > ul > li:first-child {
    overflow: hidden;
    border-top: 0
}

.sjj_nav > ul > li:first-child > a {
    float: left;
    width: calc(100% - 70px)
}

.sjj_nav > ul > li:first-child .language {
    float: right;
    width: 70px;
    overflow: hidden;
    line-height: 30px;
    margin-top: 5px
}

.sjj_nav > ul > li:first-child .language a {
    width: 35px;
    float: left;
    border-left: 1px #ddd solid;
    text-align: center;
    color: #999;
}

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    border-left: 1px #ddd solid;
    height: 30px;
    padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
    transform: rotate(-90deg);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-top: 1px #ddd solid;
    margin-left: 20px;
    position: relative;
    line-height: 40px;
    font-size: 14px
}

.sjj_nav > ul > li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #666;
    /* width: 80% */
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #01438A
}

.sjj_nav ul li ul li > ul {
    margin-left: 10px
}

/* -------------------------------------- */

.tabHead2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}

.tabHead2 .name {
    flex: 1;
    display: flex;
}

.tabHead2 .tabMore a {
    display: none;
    font-size: 12px;
    color: #8A5742;
}

.tabHead2 .tabMore a::before {
    content: '';
    width: 58px;
    height: 8px;
    display: inline-block;
    background: url(../img/column-more-ico.png) no-repeat;
    background-size: cover;
    margin-right: 9px;
}

.tabHead2 .tabMore {
    width: 130px;
    text-align: right;
}

.tabHead2 .tabMore a.on {
    display: flex;
    align-items: center;
}

.bookCount .swiper-container {
    box-sizing: border-box;
    padding: 20px;
}

.bookCount .booklist .box {
    width: 100%;
    margin: 0;
}

.bookSlide1,
.bookSlide2,
.bookSlide3,
.bookSlide4,
.bookSlide5,
.bookSlide6 {
    width: 100%;
    position: relative;
}

.bookCount .swiper-pagination1 {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.bookCount .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    background: #834227;
    opacity: .3;
}

.bookCount .swiper-pagination-bullet-active {
    opacity: 1;
}

.bookCount .booklist {
    display: none;
}

.bookCount .booklist.active {
    display: block;
}

.landing-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.landing-box .box {
    width: calc((100% - 40px) / 3);
    background: rgba(138, 87, 66, 0.09);
    height: 200px;
    box-sizing: border-box;
    border: 1px solid #D8D8D8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 20px;
}

.landing-box .box .d {
    color: #353535;
    text-align: center;
    margin: 15px 0 10px 0;
}

.landing-box .box .n {
    color: #767676;
    text-align: center;
}

.searchlist .box:hover a {
    text-decoration: none;
}

.landing-map img {
    width: 100%;
}

.pagination li {
    display: inline-block;
    margin: 0 5px;
}

.pagination li a {
    /*display: inline-block;*/
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 35px;
    height: 37px;
    border-radius: 2px;
    border: solid 1px #dddddd;
    line-height: 37px;
    text-align: center;
    font-size: 16px;
    color: #595959;
    transition: All .4s ease-in;
    -webkit-transition: All .4s ease-in;
    -moz-transition: All .4s ease-in;
    -o-transition: All .4s ease-in;
}

.pagination li a:hover,
.pagination li.active a {
    background: #8A5742;
    color: #fff;
    border: solid 1px #8A5742;
}

.booklist_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

#pdfViewer{
    width: 100%;
    position: relative;
    background: rgba(138, 87, 66, .2);
    box-sizing: border-box;
    padding: 40px;
}

.pdf-text{
    width: 100%;
    position: relative;
    font-size: 20px;
    color: red;
    margin-bottom: 30px
}

.fanye{
    width: 100%;
}