/*
 * @Date: 2024-03-10 09:24:46
 * @LastEditTime: 2026-09-17 10:12:47
 * @FilePath: \newWeb\templets\new\css\cancer_type_details.css
 * @Description: 癌症栏目详情页样式
 */
@charset "utf8";

.banner-box {
    width: 100%;
    height: 300px;
    padding: 30px 0;
    background: url("https://img.asiancancer.com/images/newvietnam/cancer_type_banner.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 {
    width: calc(1400px - 250px);
    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 .parameter {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.content .main ul.tab-navigation-list {
    width: 100%;
    padding: 20px 15px 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
}

ul.tab-navigation-list li.tab-navigation-item {
    margin-right: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

ul.tab-navigation-list li.tab-navigation-item:last-child {
    margin-right: 0;
}

ul.tab-navigation-list li.tab-navigation-item a {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #666;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    display: block;
}

ul.tab-navigation-list li.tab-navigation-item.checked a {
    background: #055f87;
    color: #fff;
    border-color: #055f87;
}

.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: 18px !important;
    /* padding: 20px; */
    box-sizing: border-box;
}

.content .main .introduce a {
    font-size: 20px;
}

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

.introduce a {
    text-decoration: underline !important;
}


.introduce iframe {
    width: 100%;
    height: auto;
}

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

/*上一页 下一页*/

.content .main .page {
    width: 100%;
    /* border-bottom: 1px solid #e5e5e5; */
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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; */
    padding: 20px 0;
    margin-top: 20px;
    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;
    }

    .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: 16px !important;
        padding: 15px;
        box-sizing: border-box;
    }

    .content .main .introduce a {
        font-size: 18px;
    }

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

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

    /* .content .main .page {
        width: 100%;
        padding: 0 15px;
    } */

    .content .main .page {
        padding: 15px 0;
    }

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

    .page .prev,
    .page .next {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
    }

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

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