@charset "utf-8";

.content-box {
    background: #EFF1F3;
}

.content-box .book-box {
    /* display: flex;  */
    justify-content: space-between; /* 子元素均匀分布，首尾贴边 */
    gap: 3vw; /* 设置子元素之间的间隙 */
    width: 100%; /* 父容器占满一行 */
    box-sizing: border-box; /* 确保 padding 不影响宽度计算 */
}

.content-box .book-card-img {
    background: #FDFDFD;
    text-align: center; /* 文字居中 */
}

.content-box .book-card-img img{
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-box .book-card-img:hover img {
    transform: scale(1.05); /* 鼠标悬停时放大图片 */
}

.content-box .book-box .book-card {
    flex: 1; /* 子元素平均分配剩余空间 */
    padding: 0 2vw 2vw 2vw;
    min-height: 585px;
}

.content-box .book-box .book-card .book-card-tag {
    font-family: "IBM Plex Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    margin-top: 1vw;
    width: auto;
    height: 20px;
    line-height: 20px;
    text-align: left;
    padding: 0 5px;
    margin-top: 1vw;
}

.content-box .book-box .book-card .book-card-tag2 {
    color: #D09D10;
    font-family: "IBM Plex Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    margin-top: 1vw;
    background: #FDEAB2;
    width: 94px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.content-box .book-box .book-card .book-card-tag3 {
    color: #2F6FAC;
    font-family: "IBM Plex Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    margin-top: 1vw;
    background: #9ECBF5;
    width: 92px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.content-box .book-box .book-card .book-card-tag4 {
    color: #58B0BB;
    font-family: "IBM Plex Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    margin-top: 1vw;
    background: #BAE9F3;    
    width: 92px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.content-box .book-box .book-card .book-card-title {
    color: #166AC9;
    font-family: "IBM Plex Sans";
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    margin-top: 1vw;
    height: 1vw;
}

.content-box .final-box .book-card-img:hover img {
    transform: scale(1.1);
}

.content-box .final-box .book-card-img {
    padding: 0;
}

.content-box .publish-book-title {
    margin: 5vw 0;
}

.content-box .tag-box {
    background: #FDFDFD;
    padding: 2vw;
}

.content-box .tag-box .title {
    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    margin-bottom: 1vw;
}

.content-box .tag-box ul {
    list-style-type: none;

    color: #166AC9;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
    text-decoration: none;
}

.content-box .tag-box ul li:hover {
    text-decoration: underline;
}

.content-box .tag-box2 {
    background: #FDFDFD;
    padding-top: 2vw;
}

.content-box .tag-box2 .title {
    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    margin-bottom: 1vw;
    padding: 0 2vw;
}

.content-box .tag-box2 ul {
    list-style-type: none;

    color: #166AC9;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
    text-decoration: none;
}

.content-box .tag-box2 ul li {
    padding: 1vw 2vw;
}

.content-box .page-box {
    text-align: center;
}

.tag {
    font-family: "IBM Plex Sans";
    font-size: 1vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

:root {
    --homepick-font: "Saira",sans-serif;
    --homepick-reey-font: "reeyregular";
    --homepick-gray: #87898e;
    --homepick-gray-rgb: 135,137,142;
    --homepick-white: #fff;
    --homepick-white-rgb: 255,255,255;
    --homepick-base: #25384a;
    --homepick-base-rgb: 206,174,146;
    --homepick-black: #25384a;
    --homepick-black-rgb: 50,52,59;
    --homepick-primary: #25384a;
    --homepick-primary-rgb: 244,239,235;
    --homepick-bdr-color: #25384a;
    --homepick-bdr-color-rgb: 226,218,211;
    --homepick-orange: #FF7500;
    --homepick-orange-rgb: #00
}

.news-one {
    position: relative;
    display: block;
    padding: 0 0 90px
}

.news-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px
}

.news-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    background-color: #fff;
}

.news-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    /* background: rgba(var(--homepick-black-rgb),0.8); */
    opacity: 0;
    z-index: 1;
    content: ""
}

.news-one__single:hover .news-one__img:before {
    opacity: 1;
    opacity: .8
}

.news-one__img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
    padding: 1vw 3vw;
    max-height: 400px;
}

.news-one__single:hover .news-one__img img {
    transform: scale(1)
}

.news-one__content-box {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 10px 60px 0 rgba(0,0,0,0.05);
    /* margin-top: -110px; */
    z-index: 2
}

.news-one__date {
    position: absolute;
    top: -34px;
    right: 0;
    background-color: var(--homepick-base);
    padding: 12px 20px
}

.news-one__date p {
    font-size: 10px;
    color: var(--homepick-white);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    line-height: 10px
}

.news-one__content {
    position: relative;
    display: block;
    padding: 28px 40px 29px
}

.news-one__author {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--homepick-base)
}

.news-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    margin-top: 12px;
    height: 120px;
}

.news-one__title a {
    color: var(--homepick-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.news-one__title a:hover {
    color: var(--homepick-base)
}

.news-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px 10px;
    background-color: var(--homepick-primary)
}

.news-one__more {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--homepick-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.news-one__more:hover {
    color: var(--homepick-orange)
}

.news-one__more i {
    height: 20px;
    width: 20px;
    background-color: var(--homepick-gray);
    color: var(--homepick-white);
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.news-one__more:hover i {
    background-color: var(--homepick-orange);
    color: var(--homepick-white)
}

.news-one__comments {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--homepick-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.news-one__comments i {
    font-size: 15px;
    color: var(--homepick-white);
    padding-right: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.news-one__comments:hover,.news-one__comments:hover i {
    color: var(--homepick-orange)
}
.news-page {
    position: relative;
    display: block;
    /* padding: 100px 0 70px */
}

.news-details {
    position: relative;
    display: block;
    padding: 50px 0 100px
}

.news-details__left {
    position: relative;
    display: block
}

.news-details__img {
    position: relative;
    display: block
}

.news-details__img img {
    width: 100%
}

.news-details__date {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--homepick-base);
    padding: 12px 20px
}

.news-details__date p {
    font-size: 10px;
    color: var(--homepick-white);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    line-height: 10px
}

.news-details__content {
    position: relative;
    display: block;
    margin-top: 28px
}

.news-details__author {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--homepick-base)
}

.news-details__title {
    font-size: 29px;
    line-height: 40px;
    margin-top: 9px;
    margin-bottom: 11px;
    font-weight: 700
}

.news-details__text-1 {
    font-size: 16px;
    font-weight: 400
}

.news-details__text-2 {
    font-size: 16px;
    padding-top: 31px;
    font-weight: 400;
    padding-bottom: 31px
}

.news-details__text-3 {
    font-size: 16px;
    font-weight: 400
}

.news-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 51px;
    border-top: 1px solid var(--homepick-bdr-color)
}

@media(max-width: 991px) {
    .sidebar {
        margin-top:50px
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 800
}

.sidebar__search {
    position: relative;
    display: block
}


.pagebar {
    color: #166AC9;
}
.pagebar, .cmtpagebar {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    clear: both;
}
.pagebar li, .cmtpagebar li {
    display: inline
}
.pagebar a, .cmtpagebar a {
    margin: 2px;
    padding: 5px 8px;
    font-weight: bolder;
    color: #166AC9;
}
.filter-box li{
    padding: 0;
}

@media (max-width: 768px) {
    .content-box .tag-box {
        background: #EFF1F3;
    }
    .content-box .book-box .book-card .book-card-title{
        font-size: 5vw;
        margin: 2vw 0 10vw 0;
        width: 92%;
        height: 18vw;
    }
    .content-box .book-box .book-card .book-card-tag {
        height: auto;
        display: block;
        letter-spacing: 0px;
        
    }

    .mobile-tag-box2 {
        padding: 20px;
    }
    .mobile-tag-box2 .navbar-header {
        font-weight: 600;
    }
    .mobile-tag-box2 .navbar-brand {
        color: #E62A26;
        padding: 20px;
    }

    .mobile-tag-box2 .navbar-nav{
        margin: 0;
    }

    .mobile-tag-box2 .navbar-nav li {
        padding: 10px 20px;
    }
    .mobile-tag-box2 .navbar-nav>li>a {
        padding-left: 0;
    }
    .mobile-tag-box2 .tag {
        font-size: 4vw;
    }

    .content-box .publish-book-title {
        margin: 15vw 0 10vw 0;
    }
    .filter-box li{
        padding: 0 15px;
    }
}