/*
 * @Date: 2024-03-10 09:24:46
 * @LastEditTime: 2026-01-16 11:24:56
 * @FilePath: \newWeb\templets\new\css\sci_article.css
 * @Description: sci文章页详情页样式
 */
@charset "utf8";

.banner-box {
    width: 100%;
    height: 300px;
    padding: 30px 0;
    background: url("https://img.asiancancer.com/images/newvietnam/abouts_us.jpg") no-repeat center;
    background-size: cover;
    box-sizing: border-box;
}

.banner-box .banner-text {
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.banner-box .banner-text .text-style {
    color: #fff;
    font-size: 52px;
    position: relative;
}

.banner-box .banner-text .text-style::after {
    display: inline-block;
    content: '';
    width: 100px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 30px;
}

.content .sidebar {
    width: 250px;
}

.content .main {
    flex: 1;
    padding-left: 40px;
    background: #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
}

.content .main .title {
    width: 100%;
    /* padding: 0 20px; */
    color: #055f87;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    box-sizing: border-box;
}

.content .main .description-box {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .main .description-box span {
    font-size: 18px;
}

.content .main .parameter {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.parameter ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parameter ul li {
    padding: 0 20px;
    box-sizing: border-box;
    line-height: initial;
    display: flex;
    align-items: center;
}

.parameter ul li img {
    display: inline-block;
    margin-right: 8px;
    width: 25px;
    height: auto;
}

.parameter ul li .share {
    margin-left: 10px;
}

.parameter ul li .share ul li {
    padding: 0px;
    display: flex;
    align-items: center;
}

.content .main .introduce {
    width: 100%;
    font-size: 16px;
    /* padding: 20px; */
    box-sizing: border-box;
}

.introduce p,
.introduce span,
.introduce div,
.introduce a {
    text-wrap: wrap;
    max-width: 100%;
}

.introduce iframe {
    max-width: 100%;
}

.introduce img {
    max-width: 100% !important;
}

.content .main .other-articles {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    height: 10px;
    position: relative;
    margin-top: 15px;
}

.other-articles span {
    position: absolute;
    top: 10px;
    left: 15px;
    transform: translate(0, -50%);
    color: #055f87;
    display: inline-block;
    padding: 0 10px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 18px;
    background: #fff;
}


/*上一页 下一页*/

.content .main .page {
    width: 100%;
    /* border-bottom: 1px solid #e5e5e5; */
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page span {
    display: block;
}

.page a {
    width: 100%;
    margin: 5px 0;
    color: #055f87;
    font-size: 16px;
    padding-left: 30px;
    box-sizing: border-box;
    font-weight: bold;
}

.page .prev {
    width: 50%;
    padding-right: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.page .prev span {
    width: 100%;
    background: url(/templets/new/images/left-pre.png) no-repeat left center;
    background-size: 25px 25px;
    padding-left: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.page .next {
    padding-left: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}

.page .next span {
    width: 100%;
    background: url(/templets/new/images/right-next.png) no-repeat left center;
    background-size: 25px 25px;
    padding-left: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.content .main .keywords {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 16px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.keywords span {
    font-weight: bold;
}

/* 取消移动端的hover效果 只有pc端的生效 */
@media (any-hover: hover) {}

/*移动端样式*/
@media screen and (max-width: 768px) {
    .banner-box {
        display: none;
    }

    .content {
        width: 100%;
        padding-top: 0;
    }

    .content .sidebar {
        display: none;
    }

    .content .main {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .content .main .title {
        width: 100%;
        padding: 0 15px;
        font-size: 25px;
        margin: 15px 0 0 0;
    }

    .content .main .description-box span {
        font-size: 16px;
    }

    .content .main .parameter {
        margin: 15px 0 0 0;
    }

    .parameter ul {
        width: 100%;
        flex-wrap: wrap;
    }

    .parameter ul li {
        margin-bottom: 10px;
    }

    .parameter ul li .share ul li {
        margin-bottom: 0;
    }

    .content .main .introduce {
        width: 100%;
        font-size: 14px;
        padding: 15px;
        box-sizing: border-box;
    }

    .introduce img {
        width: auto !important;
        height: auto !important;
    }

    .introduce iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .content .main .keywords {
        width: 100%;
        padding: 15px;
        margin-top: 0;
    }

    .other-articles span {
        font-size: 16px;
    }

    .content .main .page {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .page .prev {
        margin-bottom: 10px;
    }

    .page .prev,
    .page .next {
        width: 100%;
        padding: 0;
    }

    .page .prev span,
    .page .next span {
        width: auto;
        height: 20px;
        background-size: 20px 20px;
        padding-left: 25px;
        margin-bottom: 5px;
    }

    .page a {
        margin: 0;
        width: auto;
        padding-left: 5px;
        font-size: 14px;
    }

    .keywords span {
        font-weight: bold;
        display: inline-block;
    }
}