:root {
    --color-gray: #333333;
    --color-yellow: #E6FF00;
    --color-blue: #1E2D4F;
    --color-orange: #EF5B1E;
    --color-light-orange: rgba(239, 91, 30, 0.9);
    --color-lightgray: #E5E5E5;
    --color-theme: #2370a4;
    --color-light-theme: #3190d0;

    --color-white: #FFF;
    --color-black: #000;

    --margin-normal: 1rem;
    --margin-large: 2rem;
    --margin-40: 2.3rem;
    --padding-normal: 10px;

    --line-height-normal: 1.5;

    --font-size-normal: 1rem;
    --font-size-middle: 1.25rem;
    --font-size-large: 1.5rem;

    --bg-yellow: #FFFCF2;
}
* {
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
.center-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.self-response-width {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - calc(100% - 90rem));
}

.marginRight25 {
    margin-right: .5rem !important;
}
.form-box .input-box input {
    max-width: 35rem;
}
.padding-lr-normal {
    padding: 0;
}
.margin-bottom-48 {
    margin-bottom: 3rem;
}
.padding-10 {
    padding: 0 10px;
}
.margin-bottom-normal {
    margin-bottom: var(--margin-normal);
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-theme);
    width: 25px;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    background: #000;
    height: 10px;
    border-radius: 30px;
}
.swiper-pagination span {
    margin: 0 .4rem;
}
.swiper-slide {
    transition: all 1s;
}
.background-white {
    background: var(--color-white);
}

@media (max-width: 768px) {
    .self-response-width {
        width: 100%;
    }
    .center-box {
        box-sizing: border-box;
    }
    .padding-lr-normal {
        padding: 0 var(--padding-normal);
    }
}
/* top banner */
.top-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 300px;
}
.top-banner picture {
    height: 100%;
}
.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .top-banner {
        height: auto;
        margin-top: 60px;
    }
    .top-banner img {
        aspect-ratio: 790 / 240;
    }
}
@media (min-width: 1980px) {
    .top-banner img {
        width: auto;
        margin-left: -30rem;
    }
}
@media (min-width: 2560px) {
    .top-banner img {
        width: auto;
        margin-left: -60rem;
    }
}

.header-container {
    width: 100%;
    margin-top: var(--margin-normal);
}
.common-title,
.single-title
{
    font-size: 2rem;
    color: var(--color-theme);
    position: relative;
    box-sizing: border-box;
    text-align: center;
    line-height: var(--line-height-normal);
}
.sub-title {
    font-size: 1.5rem;
    color: var(--color-theme);
    text-align: center;
    line-height: var(--line-height-normal);
}
@media (max-width: 768px) {
    .common-title,
    .single-title {
        font-size: 1.5rem;
    }
    .sub-title {
        font-size: 1rem;
        text-indent: 2em;
    }
}
.common-title::after {
    content: "";
    width: 5rem;
    height: 4px;
    background: var(--color-blue);
    position: absolute;
    left: calc((100% - 5rem) / 2);
    bottom: -1rem;
}

.sub-title sup {
    vertical-align: super;
    font-size: 0.8em;
    margin-left: 2px;
    line-height: 0;
}
.common-description {
    font-size: 1rem;
    line-height: var(--line-height-normal);
}
.margin-top-40 {
    margin-top: var(--margin-40);
}
.margin-bottom-40 {
    margin-bottom: var(--margin-40);
}
.margin-top-normal {
    margin-top: var(--margin-normal);
}

/* part 1 start*/
.liver-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) {
    .liver-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.liver-box .image {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.liver-box .image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: .5rem;
}
.q-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}
@media (max-width: 768px) {
    .q-list {
        gap: 1rem;
    }
}
.q-list li {
    color: var(--color-gray);
    font-size: 1.1rem;
}
.q-list li::before {
    content: "✓";
    width: 1rem;
    height: 1rem;
    background: var(--color-theme);
    border-radius: 50%;
    display: inline-block;
    margin-right: .5rem;
    color: var(--color-white);
    text-align: center;
    line-height: 1rem;
    font-size: .8rem;
}
/* part 1 end */

/* part 2 start */
.part-2 {
    background-color: var(--bg-yellow);
}
.part-2-box {
    width: 100%;
}
.part-2-content {
    padding: 2rem 0;
    display: flex;
    gap: 1rem;
}
@media (max-width: 768px) {
    .part-2-content {
        flex-direction: column;
        box-sizing: border-box;
        padding: 0 10px;
    }
}
.text-content p {
    line-height: var(--line-height-normal);
    margin-bottom: var(--margin-normal);
    font-size: 1.1rem;
}
.img-content img {
    border-radius: .5rem;
}
@media (max-width: 768px) {
    .img-content img {
        max-width: 100%;
    }
}
/* part 2 end */

/* part 3 start */
.part-3-box {
    width: 100%;
}
.part-3-content {
    background-color: var(--bg-yellow);
    display: flex;
    gap: 1rem;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.02);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 1.5rem;
    color: #333333;
}
@media (max-width: 768px) {
    .part-3-content {
        flex-direction: column;
        box-sizing: border-box;
        box-shadow: none;
    }
}

.part-3-content .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.text-content li {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: var(--line-height-normal);
}
.text-content li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--color-theme);
    border-radius: 50%;
    display: inline-block;
    margin-right: .5rem;
}
.part-3-content .img-content img {
    max-height: 18.5rem;
}
@media (max-width: 768px) {
    .part-3-content .img-content img {
        height: auto;
        max-height: 100%;
        max-width: 100%;
    }
}
.part-3-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}
@media (max-width: 768px) {
    .part-3-list {
        grid-template-columns: 1fr;
        box-sizing: border-box;
        padding: 0 10px;
    }
}
.part-3-list dl {
    background: #FFFFFF;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.02);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 1.8rem 1rem;
    position: relative;
}
@media (max-width: 768px) {
    .part-3-list dl {
        padding: 1.5rem;
        box-shadow: none;
    }
}
.part-3-list dl dt {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.part-3-list dl::after {
    content: "";
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    top: 2rem;
    left: 50%;
}
.jr-icon::after {
    background-image: url("../../images/bidding/liver_cancer_topic/icon/jieru.webp");
}
.yhd-icon::after {
    background-image: url("../../images/bidding/liver_cancer_topic/icon/yhd.webp");
}
.lz-icon::after {
    background-image: url("../../images/bidding/liver_cancer_topic/icon/lz.webp");
}
.kf-icon::after {
    background-image: url("../../images/bidding/liver_cancer_topic/icon/kf.webp");
}

/* part 3 end */

/* part 4 start */
.part-4-bg {
    background-image: url("../../images/bidding/liver_cancer_topic/bg/pc-bg-1.webp");
    background-size: cover;
}
.color-white {
    color: #FFFFFF;
}
.hidden-decoration-line::after {
    display: none;
}

.layout-scroll {
    width: 100%;
    padding-bottom: 2rem;
}
.layout-scroll .layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.layout .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}
.layout .row .card {
    flex: 1;
    max-width: 20rem;
    min-width: 14rem;
}
.layout .label {
    font-size: 1.1rem;
    color: var(--color-white);
}
.row .card {
    text-align: center;
}
.row .card img {
    width: 100%;
    height: auto;
    display: block;
}
.row .label-top {
    min-height: 6rem;
}
.row .label-bottom {
    margin-top: 1rem;
}
.layout .row-bottom {
    margin-top: -9.5rem;
}
@media (max-width: 768px) {
    .layout .row-bottom {
        margin-top: -5.5rem;
        margin-left: 7.5rem;
    }
}

.user-header-box {
    margin-bottom: 2.3rem;
}
@media (max-width: 768px) {
    .user-header-box {
        margin-bottom: 1rem;
        margin-top: 1.8rem;
    }
}

@media (max-width: 768px) {
    .part-4-bg {
        background-image: url("../../images/bidding/liver_cancer_topic/bg/mc-bg-1.webp");
    }
    .part-4-box {
        width: 100%;
    }
    .part-4-box .layout-scroll {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        padding: 12px 0;
        scroll-behavior: smooth;
        margin: 0;
    }
    .part-4-box .layout-scroll .layout {
        display: inline-flex;
        flex-direction: column;
        flex-wrap: nowrap;
        scroll-snap-align: center;
        align-items: flex-start;
        justify-content: flex-start;
        min-width: max-content;
        box-sizing: border-box;
        padding: 0 16px;
    }
    .layout-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .layout-scroll::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.35);
        border-radius: 999px;
    }

    .layout-scroll .layout .row {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1rem;
        width: auto;
        min-width: max-content;
    }

    .layout-scroll .layout .row .card {
        flex: 0 0 auto;
        width: 14rem;
        max-width: 14rem;
    }
}
/* part 4 end */

/* part 5 start */
.part-5-bg {
    background-color: var(--bg-yellow);
}
.part-5-box {
    width: 100%;
}
@media (max-width: 768px) {
    .part-5-box {
        box-sizing: border-box;
        padding: 0 10px;
    }
}
.part-5-box iframe {
    width: 100%;
    display: block;
    margin: 2rem auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}
@media (min-width: 1980px) {
    .part-5-box iframe {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .part-5-box iframe {
        width: 100%;
        aspect-ratio: 4 / 3;
        height: 14rem;
    }
}
/* part 5 end */

/* part 6 start */
.part-6-box {
    width: 100%;
    margin: 3rem 0 2rem;
}
@media (max-width: 768px) {
    .part-6-box {
        margin: 1rem 0;
    }
}
.part-6-box .patient-case {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background-color: var(--bg-yellow);
    box-sizing: border-box;
    padding: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.02);
    border-radius: 8px;
}
@media (max-width: 768px) {
    .part-6-box .patient-case {
        box-shadow: none;
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }
}
.patient-case .case-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case-item img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.case-item p {
    line-height: 1.5;
    margin-bottom: 1rem;
}
/* part 6 end */

/* part 7 start */
.part-7-bg {
    background-color: var(--bg-yellow);
}
.part-7-box {
    padding-bottom: 2rem;
}
.part-7-content {
    width: 100%;
}
@media (max-width: 768px) {
    .part-7-content {
        box-sizing: border-box;
        padding: 0 1.2rem;
    }
}
.part-7-content p {
    line-height: 1.8;
    font-size: 1.1rem;
}
.part-7-content h2 {
    font-size: 1.1rem;
    margin: 1rem 0 .5rem;
}
.part-7-content .schedule-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 768px) {
    .part-7-content .schedule-container {
        grid-template-columns: 1fr;
        margin: 1rem 0;
    }
}
.schedule-container .schedule-item {
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 6px 1px rgba(0,0,0,0.05);
    margin: 1rem 0;
}
@media (max-width: 768px) {
    .schedule-container .schedule-item {
        margin: 0;
    }
}
.schedule-item p:first-child {
    margin-bottom: 1rem;
}
/* part 7 end */

/* MDT Group Start */
.mdt-group-container {
    width: 100%;
}
.mdt-group-background {
    background-image:
            url("../../images/bidding/liver_cancer_topic/bg/pc-bg-2.webp"),
            linear-gradient(to bottom, #F5F5F5 45%, #F5F5F5 45%);
    background-size: 100% 50%, 100% 50%;
    background-position: top, bottom;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .mdt-group-background {
        background-image:
                url("../../images/bidding/liver_cancer_topic/bg/mc-bg-2.webp"),
                linear-gradient(to bottom, #F5F5F5 35%, #F5F5F5 35%);
        background-size: 100% 35%, 100% 35%;
    }
}
.mdt-avatar-list {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 2rem 0;
    text-align: center;
}
@media (min-width: 768px) {
    .mdt-avatar-list {
        width: 50%;
        margin: 0 auto;
    }
}
.avatar-gallery {
    width: 100%;
    height: 12rem;
}
@media (max-width: 768px) {
    .mdt-avatar-list {
        padding: 1rem 0;
    }
    .avatar-gallery {
        height: 6.5rem;
    }
}
.avatar-item {
    box-sizing: border-box;
    /*padding: 1rem 0;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.avatar-item img {
    width: 7.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    will-change: transform;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transform: translateZ(0);
}
@media (max-width: 768px) {
    .avatar-item img {
        width: 4.5rem;
    }
}
.avatar-item img:hover {
    border: 2px solid var(--color-theme);
    transform-origin: bottom center;
    transform: scale(1.1) translateZ(0);
    cursor: pointer;
}

.mdt-group-item {
    width: 100%;
}
.mdt-group-item .mdt-box {
    display: grid;
    grid-template-columns: minmax(15rem,20rem) 1fr;
    grid-template-rows: auto;
    border-radius: .5rem;
    margin: .5rem .5rem var(--margin-normal);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .mdt-group-item .mdt-box {
        grid-template-columns: 1fr;
    }

}
.mdt-box .mdt-avatar {
    width: 100%;
    box-sizing: border-box;
    padding: 0 .5rem;
    justify-content: center;
    align-items: center;
}
.mdt-avatar.swiper-slide-active img {
    border: 5px solid var(--color-theme);
    transform: scale(1.1);
}
.mdt-avatar img {
    max-width: 100%;
    height: auto;
}
.mdt-images {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.mdt-images img {
    width: 100%;
}


.more-button {
    width: 100%;
    padding: var(--margin-normal) 0 var(--margin-normal) var(--margin-normal);
    text-align: right;
    box-sizing: border-box;
}
.more-button a {
    color: var(--color-theme);
    text-decoration: none;
    font-size: var(--font-size-normal);
    font-weight: bold;
}


.mdt-context-list {
    border-radius: .5rem;
}
.mdt-info {
    padding: 1rem;
    box-sizing: border-box;
    position: relative;
}
.mdt-info .mdt-name {
    font-size: 2rem;
    color: var(--color-theme);
    line-height: var(--line-height-normal);
}
.mdt-info .mdt-label {
    color: var(--color-gray);
    font-size: var(--font-size-normal);
    margin: .5rem 0;
    line-height: var(--line-height-normal);
}
.mdt-info .mdt-title {
    font-size: var(--font-size-large);
    font-weight: 600;
    margin: 1rem 0;
}
.show-more {
    display: none;
}
@media (max-width: 768px) {
    .mdt-info .mdt-title {
        font-size: var(--font-size-normal);
        margin: .8rem 0;
    }
    .mdt-info .mdt-label {
        font-size: 0.875rem;
    }
    .m-toggle
    {
        display: none;
    }
    .m-toggle.active
    {
        opacity: 1;
        display: block;
    }
    .show-more {
        display: block;
        text-align: center;
    }
}
.mdt-info .mdt-description  p {
    line-height: var(--line-height-normal);
    font-size: var(--font-size-normal);
    margin-bottom: var(--margin-normal);
}
.mdt-image-item img {
    border-radius: .5rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02);
}
.mdt-description .talk-to-mdt {
    text-decoration: none;
    box-sizing: border-box;
    padding: .875rem 1rem;
    border-radius: .5rem;
    background: var(--color-theme);
    color: var(--color-white);
    display: block;
    text-align: center;
}
@media (min-width: 769px) {
    .mdt-description .talk-to-mdt{
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .mdt-image-item-single {
        margin-top: 5rem;
    }
}
@media (max-width: 768px) {
    .mdt-description .talk-to-mdt {
        width: 100%;
        margin: 1rem 0;
    }
    .mdt-box {
        padding-top: 0;
        padding-bottom: 0;
    }
}
/* MDT Group End */

/* new skill start */
.br {
    display: block;
}
@media (max-width: 768px) {
    .br {
        display: none;
    }
}
/* new skill end*/

/* image modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
    }
}
.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.5rem;
}

/*skill list start */
@media (min-width: 769px) {
    .swiper-slide .larger-image {
        flex: 5;
    }
}
@media (max-width: 768px) {
    .swiper-slide .larger-image {
        width: 100%;
    }
}
.swiper-slide .larger-image {
    position: relative;
}
.swiper-slide .larger-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.swiper-slide .larger-image::before {
    content: attr(data-title);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: var(--font-size-normal);
    background-color: rgba(0, 0, 0, .8);
    text-align: center;
    color: var(--color-white);
    z-index: 1;
    display: block;
    padding: .5rem;
    line-height: var(--line-height-normal);
    box-sizing: border-box;
}
/*skill list end */

.swiper-slide:hover {
    transform: none !important;
}

.more-button a.disabled {
    pointer-events: none;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}