/*
 * @FilePath: \templets\new\css\20th_anniversary.css
 * @Description: 20周年专题
 */
@charset "utf8";


.banner-box {
    background: url("https://img.asiancancer.com/images/newvietnam/20th_anniversary_banner.webp") no-repeat center;
    background-size: cover;
    height: 300px;
    width: 100%;
}

.anniversary-content {
    width: 100%;
    background: #fff;
    padding-top: 30px;
}

/* 标题 */
.anniversary-content .title-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.anniversary-content .title-box .title-text {
    color: #C0974E;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.anniversary-content .title-box .title-text::after {
    display: inline-block;
    content: '';
    width: 80px;
    height: 4px;
    background: #3E4756;
    position: absolute;
    bottom: 0;
    left: calc((100% - 80px) / 2);
}

/*20年，共同见证成长*/
.anniversary-content .witness-growth-area {
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
}

.witness-growth-area .title-box {
    width: 100%;
    padding: 10px calc((100% - 1400px)/2);
    box-sizing: border-box;
}

.witness-growth-area .witness-growth-description {
    width: 100%;
    padding: 10px calc((100% - 1400px)/2) 30px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
    font-size: 18px;
}

.witness-growth-area .data-graph-box {
    width: 100%;
    height: auto;
    aspect-ratio: 190/27;
    background: url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_yndt.webp) no-repeat center;
    background-size: cover;
    padding: 100px calc((100% - 1400px)/2) 100px;
    box-sizing: border-box;
}

.data-graph-box .data-graph-list {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 0 0 800px;
    box-sizing: border-box;
}

.data-graph-list .data-graph-item {
    width: 50%;
    padding: 0 15px 0 0;
    margin-bottom: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.data-graph-list .data-graph-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

/* 偶数项最后两项 */
/* .data-graph-list .data-graph-item:nth-child(even):nth-last-child(-n+2) {
    margin-bottom: 0;
} */

.data-graph-list .data-graph-item strong {
    font-size: 22px;
    color: #D8BB6A;
}

.data-graph-list .data-graph-item span {
    color: #fff;
    margin-top: 5px;
}

.witness-growth-area .witness-growth-box {
    width: 100%;
    z-index: 3;
}

.witness-growth-box .witness-growth-title {
    width: 100%;
    padding: 30px calc((100% - 1400px)/2) 30px;
    box-sizing: border-box;
    color: #5C693D;
    text-align: center;
    font-size: 25px;
}

.witness-growth-box .witness-growth-text {
    width: 100%;
    padding: 0 calc((100% - 1400px)/2);
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center;
}

.witness-growth-box .process-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.process-box .process-img {
    width: 80%;
    /* max-width: 100%;
    width: auto; */
    height: auto;
}

.process-box .process-list {
    display: none;
}


/*20年，故事因你而生*/
.anniversary-content .story-collection-area {
    width: 100%;
    padding: 30px calc((100% - 1400px)/2);
    box-sizing: border-box;
    background:
        linear-gradient(white 0 50%, transparent 50% 100%),
        /* 上半部分白色 */
        url('https://img.asiancancer.com/images/newvietnam/20th_anniversary_bgz.webp');
    /* 下半部分图片 */

    background-repeat: no-repeat;
    background-size: 100%;
    /* 让图片铺满容器 */
    background-position: bottom;
    /* 图片居中 */
}

.story-collection-area .title-box {
    width: 100%;
    padding: 10px calc((100% - 1400px)/2);
    box-sizing: border-box;
}

.story-collection-area .story-collection-description {
    width: 100%;
    padding: 10px calc((100% - 1400px)/2) 30px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
}

.story-collection-area .story-collection-description strong {
    font-size: 25px;
    color: #5C693D;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.story-collection-area .story-collection-description span {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.story-collection-area .story-collection-box {
    width: 100%;
    display: flex;
    position: relative;
    z-index: 3;
}

.story-collection-box .circle-image {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 222px;
    height: 222px;
    border-radius: 50%;
    z-index: 2;
}

.story-collection-box .circle-image img {
    width: 100%;
    height: 100%;
}

.story-collection-box .story-collection-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, calc((100% / 6) - 10px));
    /* 6列 */
    grid-template-rows: repeat(5, auto);
    /* 5行 */
    gap: 12px;
    /* 图片之间间距 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-collection-list .story-collection-item {
    width: 100%;
    height: auto;
    aspect-ratio: 112/63;
}

.story-collection-item .story-collection-info {
    display: none;
}

.story-collection-item .story-collection-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.story-collection-item .story-collection-image .click-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    display: none;
}

.story-collection-item .story-collection-image .click-text span {}

.story-collection-item .story-collection-image .click-text .click-img {
    width: 40px;
    height: auto;
}

.story-collection-item .story-collection-image .click-text.show {
    display: flex;
}

.story-collection-item .story-collection-image img {
    width: 100%;
    height: 100%;
}

.story-collection-list .empty-item {
    width: 100%;
    height: auto;
    aspect-ratio: 112/63;
}

.anniversary-content .story-collection-pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.story-collection-pop .pop-box {
    width: 900px;
    /* height: 400px; */
    height: auto;
    border-radius: 8px;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_tkbg.webp) no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.story-collection-pop .pop-box .close-image {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.story-collection-pop .pop-box .close-image img {
    width: 100%;
    height: 100%;
}

.story-collection-pop .pop-box .pop-image {
    /* width: 200px;
    height: 200px; */
    width: 210px;
    height: auto;
    margin-right: 30px;
    border-radius: 4px;
    /* border-radius: 50%; */
    /* object-fit: cover; */
}

.story-collection-pop .pop-box .pop-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-collection-pop .pop-box .pop-info .pop-title {
    font-size: 25px;
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.story-collection-pop .pop-box .pop-info .pop-text {
    width: 100%;
    font-size: 18px;
    line-height: 1.5em;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    text-overflow: ellipsis;
    overflow: hidden; */
}

.story-collection-pop .pop-box .pop-info .more-text {
    width: 100%;
    text-align: right;
    padding: 10px 0 0;
}

.story-collection-pop .pop-box .pop-info .more-text a {
    /* color: #055F87; */
    color: #C0974E;
    font-weight: bold;
}

/*20年，勇气点亮未来*/
.anniversary-content .anniversary-event-area {
    width: 100%;
    padding: 30px calc((100% - 1400px)/2);
    box-sizing: border-box;
}

.anniversary-event-area .title-box {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2); */
    box-sizing: border-box;
}

.anniversary-event-area .anniversary-event-description {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2) 30px; */
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
}

.anniversary-event-area .anniversary-event-description strong {
    font-size: 25px;
    color: #5C693D;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.anniversary-event-area .anniversary-event-description span {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.anniversary-event-area .poster-box {
    width: 100%;
    padding: 30px 0 60px;
}

.poster-box .poster-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.poster-list .poster-item {
    width: calc(20% - 12px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid #e5e5e5;
    transition: all 1s;
}

.poster-list .poster-item .poster-img {
    width: 100%;
    height: auto;
}

.poster-list .poster-item .poster-btn {
    width: calc(100% - 20px);
    display: inline-block;
    padding: 5px 15px;
    background: #C0974E;
    color: #fff;
    box-sizing: border-box;
    border-radius: 999px;
    margin: 0 10px 15px;
    text-align: center;
}

.anniversary-event-area .anniversary-event-box {
    width: 100%;
    position: relative;
    background: url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_hdbg.webp) no-repeat;
    background-size: 100%;
    border-radius: 8px;
    padding: 50px;
    box-sizing: border-box;
}

.anniversary-event-box .anniversary-event-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #A16B2B 0%, #D9BB6B 100%);
    font-size: 25px;
    color: #fff;
    padding: 10px 50px;
    box-sizing: border-box;
    border-radius: 999px;
    white-space: nowrap;
}

.anniversary-event-box .anniversary-event-list {
    width: 100%;
}

.anniversary-event-list .anniversary-event-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.anniversary-event-list .anniversary-event-item strong {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    margin-bottom: 5px;
}

.anniversary-event-list .anniversary-event-item span {
    display: inline-block;
    width: 100%;
    line-height: 1.5em;
    margin-bottom: 5px;
}

.anniversary-event-list .anniversary-event-item a {
    /* color: #C0974E; */
    color: #055F87;
}

.anniversary-event-list .anniversary-event-item a::before {
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    background: #055F87;
    border-radius: 50%;
    margin-right: 5px;
}

.anniversary-event-area .prize-box {
    width: 100%;
    margin-top: 50px;
    position: relative;
    border-radius: 8px;
    padding: 50px 30px 30px;
    box-sizing: border-box;
    background: linear-gradient(270deg, #F5F5F5 0%, #E0CFB2 100%);
}

.prize-box .prize-img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    left: 70px;
}

.prize-box .yn-prize-img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    right: 70px;
}

.prize-box .prize-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #A16B2B 0%, #D9BB6B 100%);
    font-size: 25px;
    color: #fff;
    padding: 10px 50px;
    box-sizing: border-box;
    border-radius: 999px;
    white-space: nowrap;
}

.prize-box .prize-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prize-box .prize-text span {
    font-size: 18px;
    font-weight: bold;
}


/*20年，全球关怀 · 携手抗癌*/
.anniversary-content .event-reservations-area {
    width: 100%;
    padding: 30px calc((100% - 1400px)/2);
    box-sizing: border-box;
    background:
        linear-gradient(white 0 50%, transparent 30% 100%),
        /* 上半部分白色 */
        url('https://img.asiancancer.com/images/newvietnam/20th_anniversary_bgl.webp');
    /* 下半部分图片 */

    background-repeat: no-repeat;
    background-size: 100%;
    /* 让图片铺满容器 */
    background-position: bottom;
    /* 图片居中 */
}

.event-reservations-area .title-box {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2); */
    box-sizing: border-box;
}

.event-reservations-area .event-reservations-description {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2) 30px; */
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 30px;
}

.event-reservations-area .event-reservations-description strong {
    font-size: 25px;
    color: #5C693D;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.event-reservations-area .event-reservations-description span {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.event-reservations-area .event-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    display: none;
}

.event-reservations-area .event-img .circle-image {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 222px;
    height: 222px;
    border-radius: 50%;
    z-index: 2;
}

.event-reservations-area .event-img a {
    width: 100%;
    height: auto;
    display: flex;
}

.event-reservations-area .event-img a img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/*20年，见证医学进步*/
.anniversary-content .treatment-techniques-area {
    width: 100%;
    padding: 30px calc((100% - 1400px)/2);
    box-sizing: border-box;
}

.treatment-techniques-area .treatment-techniques-description {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2) 30px; */
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.treatment-techniques-area .treatment-techniques-description strong {
    font-size: 25px;
    color: #5C693D;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.treatment-techniques-area .treatment-techniques-description span {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.treatment-techniques-area .treatment-comparison-box {
    width: 100%;
    margin: 30px 0;
}

.treatment-techniques-box .swiper-container {
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
}

.treatment-techniques-box .treatment-techniques-list {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.treatment-techniques-list .treatment-techniques-item {
    width: calc((100% / 4) - 15px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    transition: all 1s;
}

.treatment-techniques-item dt {
    width: 100%;
}

.treatment-techniques-item dt a {
    width: 100%;
    display: flex;
}

.treatment-techniques-item dt a img {
    width: 100%;
    display: flex;
    height: auto;
    aspect-ratio: 690/450;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.treatment-techniques-item dd {
    width: 100%;
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
}

.treatment-techniques-item dd.title-text a {
    font-size: 20px;
    font-weight: bold;
    /* color: #055F87; */
    color: #333333;
}

.treatment-techniques-item dd.description-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
}

.treatment-techniques-item dd.more-text {
    width: 100%;
    padding-bottom: 15px;
    text-align: right;
}

.treatment-techniques-item dd.more-text a {
    width: 100%;
    padding-bottom: 15px;
    text-align: right;
    /* color: #055F87; */
    color: #C0974E;
}

.treatment-techniques-box .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.4);
    width: 15px;
    height: 10px;
    border-radius: 30px;
    margin: 4px;
}

.treatment-techniques-box .swiper-pagination-bullet-active {
    width: 25px;
    background: #C0974E !important;
}

.treatment-techniques-box .swiper-pagination-treatment {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
}

/*mdt-team*/
.anniversary-content .mdt-team-area {
    width: 100%;
    padding: 30px calc((100% - 1400px)/2);
    box-sizing: border-box;
    background: #f5f5f5;
}

.mdt-team-area .image-banner-box {
    width: 100%;
    margin: 30px 0 0;
    position: relative;
}

.image-banner-box .image-banner-list {
    width: 100%;
}

.image-banner-list .image-banner-item {
    width: 100%;
    position: relative;
}

.image-banner-item img {
    width: 100%;
    border-radius: 4px;
}

.image-banner-item .image-text {
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 8px 8px;
}

.image-banner-box .swiper-pagination-image {
    width: 100%;
    margin-top: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 4;
}

.image-banner-box .swiper-pagination-bullet {
    background: #fff;
    width: 15px;
    height: 10px;
    border-radius: 30px;
}

.image-banner-box .swiper-pagination-bullet-active {
    background: #C0974E !important;
    width: 25px;
}

.image-banner-box .swiper-pagination-image span {
    margin: 5px;
}

.mdt-team-area .mdt-team-description {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2) 30px; */
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
}

.mdt-team-area .mdt-team-description strong {
    font-size: 25px;
    color: #5C693D;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.mdt-team-area .mdt-team-description span {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.mdt-team-area .mdt-team-box {
    width: 100%;
    margin-top: 30px;
}

.mdt-team-box .swiper-container {
    width: 100%;
    padding: 5px 5px 30px 5px;
    box-sizing: border-box;
    position: relative;
}

.mdt-team-box .mdt-team-list {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

.mdt-team-list .mdt-team-item {
    background: #ffffff;
    border-radius: 16px;
    padding-top: 15px;
    height: auto;
    box-shadow: 0 0 10px #e5e5e5;
    transition: all 1s;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.mdt-team-box .mdt-team-item:last-child {
    margin-right: 0 !important;
}


.mdt-team-list .mdt-team-item dt {
    text-align: center;
    width: 100%;
}

.mdt-team-list .mdt-team-item dt a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*padding: 0 15px;*/
    box-sizing: border-box;
}

.mdt-team-list .mdt-team-item dt a img {
    display: inline-block;
    width: 66%;
    /* width: 300px; */
    /*width: 100%;*/
    aspect-ratio: 1;
}

.mdt-team-list .mdt-team-item dd,
.mdt-team-list .mdt-team-item p {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.mdt-team-list .mdt-team-item .title {
    /* color: #1E2D4F; */
    color: #333333;
    font-size: 20px;
    padding-top: 10px;
    text-align: left;
    font-weight: bold;
}

.mdt-team-list .mdt-team-item dd.position-job-text {
    width: 100%;
    margin: 5px 0;
    box-sizing: border-box;
    border-radius: 5px;
}

.mdt-team-list .mdt-team-item dd.position-job-text span {
    display: inline-block;
    color: #C0974E;
    font-size: 16px;
    /* padding: 0 5px; */
    margin: 0 5px 5px 0;
    box-sizing: border-box;
    white-space: normal;
    border-radius: 4px;
}

.mdt-team-list .mdt-team-item dd.position-job-text span:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

.mdt-team-list .mdt-team-item .description-text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mdt-team-list .mdt-team-item .description-text strong {
    /* color: #055f87; */
    color: #C0974E;
    font-weight: bold;
}

.mdt-team-list .mdt-team-item .more-text {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px;
}

.mdt-team-list .mdt-team-item .more-text a {
    color: #fff;
    background: #C0974E;
    border-radius: 4px 4px 4px 4px;
    padding: 5px 10px;
}

.mdt-team-box .swiper-pagination-mdt {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.mdt-team-box .swiper-pagination-bullet {
    background: #c5c5c5;
    width: 15px;
    height: 10px;
    border-radius: 30px;
}

.mdt-team-box .swiper-pagination-bullet-active {
    background: #C0974E !important;
    width: 25px;
}

.mdt-team-box .swiper-pagination-mdt span {
    margin: 5px;
}

/* 20年，继续同行的承诺 */
.anniversary-content .hospital-photos-area {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 30px calc((100% - 1400px)/2);
}

.hospital-photos-area .mdt-team-description {
    width: 100%;
    /* padding: 10px calc((100% - 1400px)/2) 30px; */
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
}

.hospital-photos-area .hospital-photos-description strong {
    font-size: 25px;
    color: #5C693D;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
    text-align: center;
}

.hospital-photos-area .hospital-photos-description span {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.hospital-photos-area .hospital-photos-box {
    width: 100%;
    margin-top: 30px;
}

.hospital-photos-box .hospital-photos-list {
    width: 100%;
}

.hospital-photos-list .hospital-photos-item {
    width: 700px;
    height: auto;
}

.hospital-photos-list .hospital-photos-item a {
    width: 100%;
}

.hospital-photos-list .hospital-photos-item a img {
    width: 100%;
    height: auto;
}

.hospital-photos-list .hospital-photos-item.swiper-slide-active a img {
    border-radius: 8px;
}

.hospital-photos-box .swiper-pagination-hospital {
    width: 100%;
    margin-top: 0;
    padding: 30px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hospital-photos-box .swiper-pagination-bullet {
    background: #c5c5c5;
    width: 15px;
    height: 10px;
    border-radius: 30px;
}

.hospital-photos-box .swiper-pagination-bullet-active {
    background: #C0974E !important;
    width: 25px;
}

.hospital-photos-box .swiper-pagination-hospital span {
    margin: 5px;
}

/* 预约表单 */
/* .anniversary-content .form-area {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 30px calc((100% - 1400px)/2);
    background: url(https://img.asiancancer.com/images/newvietnam/content_form_bg.png) no-repeat center;
    background-size: cover;
} */

.event-reservations-area .form-box {
    width: 100%;
}

.form-area .form-box {
    width: 100%;
}

.anniversary-content .language-form-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 calc(50% - 700px);
    box-sizing: border-box;
    margin-bottom: 15px;
}

.anniversary-content .language-form-box .language-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.anniversary-content .language-list .language-item {
    padding: 5px 15px;
    color: #C0974E;
    border: 1px solid #C0974E;
    box-sizing: border-box;
    cursor: pointer;
    background: #fff;
}

.anniversary-content .language-list .language-item:first-child {
    border-radius: 999px 0 0 999px;
}

.anniversary-content .language-list .language-item:last-child {
    border-radius: 0 999px 999px 0;
}

.anniversary-content .language-list .language-item.checked-item {
    background: #C0974E;
    color: #fff;
    font-weight: bold;
}

.anniversary-content #anniversary-form-en {
    display: none;
}

.form-box .form {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.form-box .form-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-box .form-title .title-text {
    color: #000;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.form-box .form .form-item {
    width: calc(50% - 10px);
    margin: 10px 0;
}

.form-box .form .radio-item {
    width: calc(25% - 15px);
    margin: 10px 0;
}

.form-box .form .click-submit {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.form-box .form .click-submit .submit-form-btn {
    width: 446px;
    height: 48px;
    background: #C0974E;
    border-radius: 4px 4px 4px 4px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    border: none;
}

.form-box .form .form-item input,
.form-box .form .form-item select {
    background: #f0f0f0;
    /*width: 455px;*/
    width: 100%;
    height: 40px;
    padding: 5px;
    box-sizing: border-box;
    border: 0px;
    color: #3f3d3d;
    border-radius: 4px;
}

.form-box .form input {
    background: #FFFFFF;
    width: 300px;
    height: 40px;
}

.form-box .form .form-item .join {
    background: #FFFFFF;
    /*width: 455px;*/
    width: 100%;
    height: 40px;
    border: 0px;
}

.form-box .form .phone-input {
    width: 100%;
    display: flex;
    align-items: center;
}

.form-box .form .phone-input select {
    background: #f0f0f0;
    width: 150px;
    height: 40px;
    border: 0px;
    border-right: 1px solid #f5f5f5;
    border-radius: 4px 0 0 4px;
}

.form-box .form .form-item .phone-input .phone-input {
    flex: 1;
    height: 40px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 0 4px 4px 0;
}

.form-box .form .label-text {
    margin-bottom: 10px;
    font-weight: bold;
    display: inline-block;
}

.form-box .form .form-item .radio {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form-box .form .form-item .radio .radio-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    color: #3f3d3d;
}

.form-box .form .form-item .radio .radio-inline .radio-val {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}


/* 取消移动端的hover效果 只有pc端的生效 */
@media (any-hover: hover) {
    .treatment-techniques-list .treatment-techniques-item:hover {
        transform: translate(0, -5px);
        box-shadow: 0 0 5px #055F87;
        cursor: pointer;
    }

    .story-collection-item .story-collection-image:hover .click-text {
        cursor: pointer;
        display: flex;
    }

    .poster-list .poster-item:hover {
        cursor: pointer;
        transform: translate(0, -10px);
        box-shadow: 0 0 5px #C0974E;
    }
}

/*移动端样式*/
@media screen and (max-width:768px) {
    .banner-box {
        /* display: none; */
        background: url("https://img.asiancancer.com/images/newvietnam/20th_anniversary_banner_bg.webp") no-repeat center;
        background-size: cover;
        height: auto;
        width: 100%;
        aspect-ratio: 79/24;
        object-fit: cover;
    }

    /* 乳腺癌专题页 */
    .anniversary-content {
        width: 100%;
        padding-top: 0;
    }

    .anniversary-content .title-box {
        width: 100%;
        padding: 10px 15px;
        box-sizing: border-box;
    }

    .anniversary-content .title-box .title-text {
        font-size: 25px;
    }

    /*20年，共同见证成长*/
    .anniversary-content .witness-growth-area {
        width: 100%;

    }

    .witness-growth-area .witness-growth-description {
        width: 100%;
        padding: 10px 15px 15px;
        box-sizing: border-box;
        font-size: 16px;
    }

    .witness-growth-area .data-graph-box {
        width: 100%;
        height: 580px;
        /* height: auto; */
        padding: 15px;
        box-sizing: border-box;
        background: url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_yndtyd.webp) no-repeat center;
        /* aspect-ratio: 1/1.41; */
        background-size: 100% 100%;
        display: flex;
        align-items: flex-end;
    }

    .data-graph-box .data-graph-list {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .data-graph-list .data-graph-item {
        width: calc(50% - 7.5px);
        padding: 0;
        margin-bottom: 8px;
    }

    .data-graph-list .data-graph-item strong {
        font-size: 18px;
    }

    .witness-growth-box .witness-growth-title {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        font-size: 20px;
    }

    .witness-growth-box .witness-growth-text {
        width: 100%;
        font-size: 16px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .witness-growth-box .process-box {
        width: 100%;
        height: 500px;
        overflow-y: hidden;
        justify-content: flex-start;
        overflow-x: auto;
        margin-top: 15px;
    }

    .process-box .process-img {
        max-width: 3840px;
        width: auto;
        height: 100%;
        aspect-ratio: 2057/823;
        margin-top: 0;
    }

    /*20年，故事因你而生*/
    .story-collection-area .story-collection-description {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .story-collection-area .story-collection-description strong {
        font-size: 20px;
    }

    .story-collection-area .story-collection-description span {
        font-size: 16px;
    }

    .story-collection-area .story-collection-box {
        width: 100%;
        padding: 0 15px 15px;
        box-sizing: border-box;
    }

    .story-collection-box .story-collection-list {
        gap: 6px;
        grid-template-columns: repeat(6, calc((100% / 6) - 5px));
    }


    .story-collection-box .circle-image {
        width: 80px;
        height: 80px;
        right: 15px;
        top: 0;
        transform: translate(15px, -50%);
    }

    .story-collection-item .story-collection-image .click-text span {
        display: none;
    }


    .story-collection-item .story-collection-image .click-text .click-img {
        width: 25px;
    }

    .anniversary-content .story-collection-pop {
        align-items: flex-start;
        padding-top: 130px;
        box-sizing: border-box;
        z-index: 99999;
    }

    .story-collection-pop .pop-box {
        width: calc(100% - 30px);
        height: auto;
        padding: 30px 15px;
        background: url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_tkbgyd.webp) no-repeat;
        background-size: 100% 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .story-collection-pop .pop-box .pop-image {
        /* width: 150px;
        height: 150px; */
        width: 200px;
        height: auto;
        margin-right: 0;
    }

    .story-collection-pop .pop-box .close-image {
        top: 10px;
        right: 10px;
    }

    .story-collection-pop .pop-box .pop-info {
        width: 100%;
        padding: 15px 0 0;
    }

    .story-collection-pop .pop-box .pop-info .pop-title {
        font-size: 20px;
    }

    .story-collection-pop .pop-box .pop-info .pop-text {
        font-size: 16px;
        display: inline-block;
    }


    /*20年，勇气点亮未来*/
    .anniversary-content .anniversary-event-area {
        width: 100%;
        padding: 15px 15px;
        box-sizing: border-box;
    }

    .anniversary-event-area .anniversary-event-description strong {
        font-size: 20px;
    }

    .anniversary-event-area .anniversary-event-description span {
        font-size: 16px;
    }

    .anniversary-event-area .poster-box {
        width: 100%;
        padding: 15px 0 40px;
        box-sizing: border-box;
        overflow-x: auto;
        /* 父容器要允许横向滚动 */
        overflow-y: hidden;
    }

    .poster-box .poster-list {
        display: flex;
        /* 横向排列 */
        flex-wrap: nowrap;
        /* 不换行 */
    }

    .poster-list .poster-item {
        flex: 0 0 auto;
        /* 固定宽度，不被压缩 */
        width: 300px;
        margin-right: 15px;
    }

    .anniversary-event-area .anniversary-event-box {
        width: 100%;
        height: auto;
        padding: 30px 15px 15px;
        box-sizing: border-box;
        background: url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_hdbgyd.webp) no-repeat;
        background-size: 100% 100%;
    }

    .anniversary-event-box .anniversary-event-title {
        width: 90%;
        white-space: wrap;
        font-size: 18px;
        padding: 5px 20px;
    }

    .anniversary-event-list .anniversary-event-item strong {
        font-size: 16px;
    }

    .anniversary-event-list .anniversary-event-item {
        width: 100%;
        margin-bottom: 5px;
    }

    .anniversary-event-list .anniversary-event-item a::before {
        display: inline-block;
        content: '';
        width: 8px;
        height: 8px;
        background: #055F87;
        border-radius: 50%;
        margin-right: 5px;
    }

    .anniversary-event-area .prize-box {
        width: 100%;
        margin-top: 30px;
        padding: 30px 15px;
        box-sizing: border-box;
    }

    .prize-box .prize-img {
        width: 80px;
        height: 80px;
        left: 0;
        top: 0;
    }

    .prize-box .yn-prize-img {
        width: 60px;
        height: 60px;
        right: 0;
        top: 0;
    }

    .prize-box .prize-text {
        width: 100%;

    }

    .prize-box .prize-text span {
        font-size: 16px;
    }

    .prize-box .prize-title {
        max-width: 90%;
        width: auto;
        white-space: wrap;
        font-size: 18px;
        padding: 5px 20px;
    }

    /*20年，全球关怀 · 携手抗癌*/
    .anniversary-content .event-reservations-area {
        width: 100%;
        padding: 15px 0;
        background: linear-gradient(white 0 70%, transparent 30% 100%),
            /* 上半部分白色 */
            url(https://img.asiancancer.com/images/newvietnam/20th_anniversary_bglyd.webp);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: bottom;
    }

    .event-reservations-area .event-img .circle-image {
        width: 60px;
        height: 60px;
        left: 15px;
        transform: translate(-15px, -50%);
    }

    .event-reservations-area .event-reservations-description {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .event-reservations-area .event-reservations-description strong {
        font-size: 20px;
    }

    .event-reservations-area .event-reservations-description span {
        font-size: 16px;
    }

    .event-reservations-area .event-img {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .event-reservations-area .form-box {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /*20年，见证医学进步*/
    .anniversary-content .treatment-techniques-area {
        width: 100%;
        padding: 15px 0 0;
    }

    .treatment-techniques-area .treatment-techniques-description strong {
        font-size: 20px;
    }

    .treatment-techniques-area .treatment-techniques-description span {
        font-size: 16px;
    }

    .treatment-techniques-area .treatment-techniques-box {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .treatment-techniques-area .treatment-techniques-list {
        width: 100%;
        box-sizing: border-box;
    }

    .treatment-techniques-list .treatment-techniques-item {
        width: 100%;
    }

    .specialties-text-list .specialties-text-item:last-child {
        margin-bottom: 0;
    }

    .treatment-techniques-list .treatment-techniques-item:last-child {
        margin-bottom: 0;
    }

    .treatment-techniques-item dt a img {
        width: 100%;
    }

    .treatment-techniques-box .swiper-pagination-treatment {
        width: 100%;
        box-sizing: border-box;
        padding: 0 0 10px;
    }

    /* 20年，专家汇聚力量 */
    .anniversary-content .mdt-team-area {
        width: 100%;
        padding: 15px 0;
    }

    .mdt-team-area .mdt-team-description {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .mdt-team-area .mdt-team-description strong {
        font-size: 20px;
    }

    .mdt-team-area .mdt-team-description span {
        font-size: 16px;
    }

    .mdt-team-area .mdt-team-box {
        width: 100%;
        margin: 15px 0;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .mdt-team-box .swiper-container {
        width: 100%;
        padding: 5px;
        box-sizing: border-box;
    }

    .mdt-team-box .swiper-pagination-mdt {
        width: 100%;
        padding: 15px 0 0;
    }

    .mdt-team-area .image-banner-box {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .image-banner-box .swiper-pagination-image {
        width: 100%;
        padding: 10px 15px;
        box-sizing: border-box;
    }

    .image-banner-item .image-text {
        height: 100px;
        font-size: 18px;
    }

    /*20年，继续同行的承诺*/

    .anniversary-content .hospital-photos-area {
        width: 100%;
        padding: 15px 0 0;
    }

    .hospital-photos-area .hospital-photos-description {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .hospital-photos-area .hospital-photos-description strong {
        font-size: 18px;
    }

    .hospital-photos-area .hospital-photos-description span {
        font-size: 16px;
    }

    .hospital-photos-area .hospital-photos-box {
        width: 100%;
        margin-top: 15px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .hospital-photos-box .swiper-pagination-hospital {
        padding: 15px 0 0;
    }

    .hospital-photos-list .hospital-photos-item {
        width: 100%;
    }


    /* 表单 */
    .anniversary-content .form-area {
        width: 100%;
        padding: 15px 15px;
        box-sizing: border-box;
    }

    .form-description-area .form-description-title {
        font-size: 18px;
    }

    .form-box .form {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .form-box .form .form-item {
        width: 100%;
    }

    .form-box .form select {
        /*width: 95%;*/
        width: 100%;
    }

    .form-box .form-title .title-text {
        font-size: 18px;
    }

    /* .form-box .form  select{width: 95%;} */
    .form-box .form select {
        width: 148px;
    }

    .form-box .form input {
        width: 100%;
    }

    .form-box .form .form-item .join {
        width: 333px;
    }

    .form-box .form .form-item .phone-input .input {
        width: 180px;
        margin: 0;
    }

    .form-box .form .click-submit .submit-form-btn {
        width: 100%;
        font-size: 16px;
        height: 40px;
    }

}