@charset "utf-8";

.content-box {
    background: #EFF1F3;
}

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

.content-box .publications-title2 {
    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
}

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

.content-box .sub-menu {
    padding: 2vw 4vw;
    line-height: 3vw;

    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 1vw;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.48px;
}

.content-box .sub-menu .sub-menu-title:hover {
    color: #166AC9;
    letter-spacing: -0.48px;
    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;
}

.content-box .sub-menu .sub-menu-title {
    margin-right: 2vw;
}

.content-box .sub-menu .search-input {
    border-radius: 30px;
    background: #FDFDFD;
    width: 20vw;
    padding-left: 1vw;
}

.content-box .sub-menu .search-btn {
    border-radius: 100%;
    background-color: #166AC9;
    width: 3vw; /* 按钮宽度 */
    height: 3vw; /* 按钮高度 */
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    padding: 0; /* 去除默认内边距 */
    border: none; /* 去除默认边框 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
}
.content-box .sub-menu .search-btn svg {
    width: 1vw; /* SVG 宽度 */
    height: 1vw; /* SVG 高度 */
    fill: white; /* SVG 填充颜色 */
}

.content-box .breadcrumb {
    background-color: transparent; /* 移除背景颜色 */
    padding-left: 4vw;
}

.content-box .article-title {
    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px; /* 137.5% */
    letter-spacing: -1.2px;
}

.content-box .article-sub-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;
}
.content-box .article-img-box {
    padding: 2vw 4vw;
}

.content-box .submit-btn {
    border-radius: 2vw;
    background: var(--Button, linear-gradient(270deg, #2EAFFF 0%, #166AC9 83.3%));
    padding: 1vw;
    color: #FDFDFD;
}

.logo-bars {
    width: 100%; /* 容器宽度 */
    height: 10vw; /* 容器高度 */
    padding: 3vw;
    margin-top: 4vw;
    position: relative;
    background-color: #FDFDFD; /* 背景色 */

    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 水平间隔 */
    height: 200px;
    padding: 0 50px; /* 左右内边距50px */
    box-sizing: border-box;
    overflow: hidden;
}

.logo-bars > div {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%;
}

.logo-bars .logo-box{
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%;
}



.logo-bars .logo-box img{
    max-height: 80px; /* 限制图片的最大高度 */
    width: auto; /* 宽度自适应，保持图片比例 */
    object-fit: contain; /* 保持图片比例，避免变形 */
    transition: transform 0.3s ease;
}

.logo-bars .logo-box img:hover {
    transform: scale(1.1);
}


.logo-bars2 {
    width: 100%; /* 容器宽度 */
    height: 10vw; /* 容器高度 */
    padding: 3vw;
    margin-top: 4vw;
    position: relative;
    background-color: #FDFDFD; /* 背景色 */

    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 水平间隔 */
    height: 200px;
    /*padding: 0 50px;  左右内边距50px */
    box-sizing: border-box;
    overflow: hidden;
}

.logo-bars2 > div {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%;
}

.logo-bars2 .logo-box{
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%;
}

.logo-bars2 .logo-box img{
    max-height: 160px; /* 限制图片的最大高度 */
    width: auto; /* 宽度自适应，保持图片比例 */
    object-fit: contain; /* 保持图片比例，避免变形 */
}

.news-box {
    padding: 0 5vw;
}

.news-box .news-card {
    padding: 2vw;
    background-color: #FDFDFD;
    width: 46%;
    margin: 2% 2%;
}

.news-box .news-card .tag-box {
    margin-bottom: 1vw;
}

.news-box .news-card .tag-box span{
    color: #E62A26;
    background: #FFD0CF;

    font-family: "IBM Plex Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.news-box .news-card .title-box {
    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.78px;
    min-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-box .news-card .name-box {
    color: #141414;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    margin-bottom: 2vw;
}

.news-box .news-card .remark {
    color: #C6C6C6;
    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-bottom: 1vw;
}

.news-box .news-card .more-btn {
    padding: 0 10px;
    border-radius: 25px;
    border: 1px solid #166AC9;
    height: 2vw;
    line-height: 2vw;
}

.news-box .news-card .more-logo {
    border-radius: 100%;
    border: 1px solid #166AC9;
    width: 2vw;
    height: 2vw;
    line-height: 2vw;
    text-align: center;
    margin-right: 2vw;
}

.news-box .news-card .download-box {
    color: #166AC9;
    font-family: "IBM Plex Sans";
    font-size: 1vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.48px;
    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;
    margin-right: 0.2vw;
    display: flex;
    align-items: center; /* 垂直居中 */
    height: 2vw; /* 容器高度 */
}

.news-box .news-card .download-box svg {
    margin-left: 5px;
}

.tag1 {
    color: #E62A26;

    font-family: "IBM Plex Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    background: #FFD0CF;
    padding: 0 5px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .article-box .article-content-box{
        padding: 30px 40px;
    }
    .article-box .article-content-box .tag1 {
        padding: 5px;
    }

    .content-box .logo-bars{
        height: auto;
        display: block;
        padding: 50px 0;
    }
    .content-box .article-img-box {
        padding: 0vw 15vw;
    }
    .content-box .article-title {
        font-size: 28px;
        line-height: 36px;
        margin-top: 16px;
    }
    .content-box .logo-bars div{
        padding-bottom: 30px;
    }
    .logo-bars .logo-box {
        padding: 20px;
    }

    .news-box {
        width: 100%;
        overflow: hidden;
    }
    
    .news-box .news-card {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
        padding: 20px;
    }
    .logo-bars2 {
        height: auto;
        display: block;
        padding: 50px 0;
    }
    .news-box .news-card .more-btn{
        height: 26px;
        line-height: 26px;
    }
    .news-box .news-card .more-logo {
        height: 26px;
        width: 26px;
        line-height: 26px;
    }
    .news-box .news-card .download-box{
        font-size: 16px;
        height: 26px;
        line-height: 26px;
    }
    .news-box .news-card .title-box{
        margin: 10px 0;
        font-size: 20px;
    }
    .news-box .news-card .name-box{
        margin-bottom: 50px;
    }
    .news-box .news-card .remark{
        margin-bottom: 20px;
    }
    .content-box .publications-title2{
        font-size: 30px;
    }
    .content-box .publish-book-title {
        margin: 10vw 0 5vw 0;
    }
    .content-box .sub-menu {
        font-size: 12px;
        line-height: normal;
    }
    .content-box .sub-menu .sub-menu-title {
        width: 20%;
        margin: 2%;
    }

}