.adv {
    width: 100%;
    padding-bottom: 20%;
    background: url(../images/adv.png) no-repeat center/cover;
    position: relative;
    margin-top: -82px;
    z-index: -1;
}

.advCon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.advCon h1 {
    font-family: Source Han Serif CN, Source Han Serif CN;
    font-weight: bold;
    font-size: 50px;
    color: #FFFFFF
}

.bread {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D8D8D8;
}

.bread h2 {
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    position: relative;
    padding: 20px 0;
}

.bread h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 8px;
    background: #AE0C2A;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bread-txt,
.bread-txt a {
    font-size: 16px;
    color: #666666;
}

.bread-txt span {
    margin: 0 5px;
}

.book-base {
    width: 100%;
    padding: 0 40px 20px 40px;
    margin-top: 30px;
    background: url(../images/garybg.png) no-repeat right bottom;
    background-size: 100% 70%;
    display: flex;
    height: 310px;
}

.book-base i {
    width: 221px;
    height: 290px;
    position: relative;
    display: block;
    background: url(../images/book-bg.png) no-repeat center/cover;
    padding: 7px 4px 8px 13px;
}

.book-base i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-base-mess {
    margin-left: 40px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.book-base-mess h2 {
    font-weight: bold;
    font-size: 26px;
    color: #333333;
    padding-left: 38px;
    background: url(../images/icon-redbook.png) no-repeat left center;
}

.book-base-txt p {
    font-size: 18px;
    color: #333333;
}

.book-base-txt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-desc {
    width: 100%;
    height: fit-content;
    padding: 50px;
    border: 1px solid #DADADA;
    background: #fff;
    margin-top: 70px;
    margin-bottom: 50px;
    padding-top: 0;
}

.book-mess-con p {
    font-size: 16px;
    color: #333333;
    line-height: 2;
}

.book-mess-tab>ul {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.book-mess-tab>ul li {
    width: 33.333%;
    background: url(../images/tab-default-bg.png) no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333333;
    padding: 20px 40px;
    cursor: pointer;
}

.book-mess-tab>ul li.active,
.book-mess-tab>ul li:hover {
    background: url(../images/tab-on-bg.png) no-repeat center/contain;
    color: #fff;
    font-weight: bold;
}

.book-mess-con {
    display: none;
}

.contentBox {
    position: relative;
}

.relative {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 10px 10px;
    max-width: 290px;
}

.relative-con {
    padding: 0 20px;
}

.relative h2 {
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    background: url(../images/relatBg.png) no-repeat center/cover;
    padding: 25px 10px;
    text-align: center;
}

.relative a {
    padding: 15px 0;
    padding-left: 20px;
    background: url(../images/icon-relat.png) no-repeat left center;
    display: block;
    font-size: 16px;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.relative a+a {
    border-top: 1px solid #E3E3E3;
}

.relative a:hover {
    color: #AE0C2A;
}


/* 列表页 */

.contentCon {
    padding-bottom: 40px;
}

.sec-nav {
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 30px 0;
    position: relative;
    transform: translateY(-60%);
    z-index: 1;
}

.sec-nav ul {
    width: 100%;
    display: flex;
}

.sec-nav ul li {
    flex: auto;
}

.sec-nav ul li+li {
    border-left: 1px solid #DBDBDB;
}

.sec-nav ul li {
    text-align: center;
}

.sec-nav ul li a {
    padding: 10px 0;
    display: inline-block;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    transition: all 0.3s ease-in-out;
    position: relative;
    white-space: nowrap;
    padding: 0 10px;
}

.sec-nav ul li a::after {
    content: '';
    display: block;
    width: 56px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    transition: all 0.3s ease-in-out;
}

.sec-nav ul li.active a,
.sec-nav ul li:hover a {
    color: #AE0C2A;
    transition: all 0.3s ease-in-out;
}

.sec-nav ul li.active a::after,
.sec-nav ul li:hover a::after {
    background: rgba(226, 125, 82, 0.29);
    transition: all 0.3s ease-in-out;
}

.contentBox {
    width: 100%;
    padding-top: 10px;
}

.listBox,
.listBox>ul li {
    width: 100%;
}

.listBox>ul li a {
    width: 100%;
    display: flex;
    padding: 15px 40px;
    height: 120px;
    position: relative;
    align-items: center;
}

.listBox>ul li+li a {
    border-top: 1px solid #E8E8E8;
}

.listBox>ul li a h6,
.listBox>ul li a span {
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    position: relative;
    z-index: 2;
}

.listBox>ul li a span {
    color: #AE0C2A;
    flex-shrink: 0;
    margin-left: 30px;
}

.listBox>ul li a h6 {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listBox>ul li a:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/listBg.png) no-repeat left center/cover;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.listBox>ul li a:hover::after {
    opacity: 1;
    /* transform: translateX(10px); */
}

.listBox>ul li a:hover h6,
.listBox>ul li a:hover span {
    color: #fff;
}

.listBox>ul li a:hover span {
    background-image: url(../images/icon-timeW.png);
}

.listItem {
    width: 100%;
    display: flex;
    background: #F7F7F7;
    align-items: center;
}

.listItem>a {
    width: 320px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.listItem>a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C2C2C2;
}

.listItem>a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
}

.listItem .listImg-txt {
    flex: 1;
    overflow: hidden;
    padding: 15px 50px;
}

.listItem .listImg-txt h6::before {
    content: "";
    width: 37px;
    height: 5px;
    background: #AE0C2A;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.listItem .listImg-txt h6 a {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.listItem .listImg-txt p {
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listItem:hover .listImg-txt h6 a {
    color: #AE0C2A;
    transition: 0.3s;
}

.listItem:hover a::after {
    background: #AE0C2A;
    transition: 0.3s;
}

.listItem+.listItem {
    margin-top: 30px;
}

.articleBox {
    padding: 30px 0;
    width: 100%;
}

.articleTit {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDEDE;
    text-align: center;
}

.articleTit h1 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 5px;
}

.articleTit p {
    font-size: 16px;
    color: #666666;
}

.articleCon {
    width: 100%;
    padding-top: 20px;
}

.articleCon p {
    font-size: 16px!important;
    color: #333333!important;
    text-align: justify;
    margin-bottom: 10px;
}

.paperCheck {
    border-top: 1px dashed #e598a6;
    padding: 30px 0;
    display: grid;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    column-gap: 40px;
    margin-top: 40px;
}

.paperCheck a {
    width: 100%;
}

.paperCheck a p {
    font-size: 14px;
    color: #333333;
    background: url(../images/icon-left.png) no-repeat left center;
    padding-left: 20px;
    margin-bottom: 6px;
}

.paperCheck a:nth-child(2) {
    text-align: right;
}

.paperCheck a:nth-child(2) p {
    background-image: url(../images/icon-right.png);
    background-position: right center;
    padding-right: 20px;
}

.paperCheck a span {
    font-size: 16px;
    color: #AE0C2A;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
}


/* 分页 */

.pageBox {
    margin: 40px 0 20px 0;
    width: 100%;
    padding: 0 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

.pagination>li>a,
.pagination>li>span,
.pagination>select {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: #333;
    padding: 3px 12px !important;
    width: 100%;
    display: inline-block;
    font-size: 14px;
}

.pagination>select {
    width: 60px;
}

.pagination>li>a.active {
    color: #fff!important;
    border-color: #AE0C2A;
    background: #AE0C2A;
}