:root {
    --sidebar-bg: #e1f0eb;
    --sidebar-border: #dde7f3;
    --content-bg: #fff;
    --radius: 20px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --transition: 0.3s;
    --top-gap: 40vh;
    --top-gap-button: 18vh;
    --max-content-width: 960px;
}







/* ==================================-- 子页面顶部 (新添加了图标样式，后面的就复制这个，记得修改聚光灯里的“文字部分”) --============================== */
.top-holder {
    position: relative;
    top: 9vh;
    width: 100%;
    height: 85vh;
    background-color: #e6f2ff;
}

.top-box {
    width: 100%;
    height: 100%;
    background-color: #e6f2ff;
    position: relative;
}

/* 装饰性背景图（保持不变） */
.top-box .sub-top-left {
    position: absolute;
    top: 8vh;
    left: -2vw;
    z-index: 2;
}

.top-box .sub-top-left img {
    width: 120%;
    height: auto;
}

.top-box .sub-top-right {
    position: absolute;
    top: -5vh;
    right: 22vw;
    z-index: 2;
}

.top-box .sub-top-right img {
    width: 230%;
    height: auto;
}

.top-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 90%;
    margin: 0 auto;
    gap: 20px;
    padding-top: 18vh;
    padding-left: 9vw;
    box-sizing: border-box;
}

/* 标题 + 图片 横向排列 */
.top-text-content {
    display: flex;
    align-items: center;
    gap: 4vw;
    width: 100%;
    z-index: 5;
}

.top-img {
    /* position: absolute; */
    /* top: 8vh; */
    right: 5vw;
    z-index: 3;
    border-radius: 20px;
}

.top-img img {
    width: 30vw;
    height: auto;
    border-radius: 20px;
}

.top-title {
    font-size: 9vw;
    font-weight: 700;
    /* color: #4d6297; */
    color: #d4902f;
    margin: 0;
    position: relative;
}

/* 聚光灯效果（保持不变） */
.top-title:after {
    content: 'Awards';
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background-image: linear-gradient(to right, #cb7c8e, rgb(204, 177, 135), #7faa9d, #94b0cd, #3f669a);
    background-clip: text;
    -webkit-background-clip: text;
    clip-path: circle(100px at 0% 50%);
    -webkit-clip-path: circle(100px at 0% 50%);
    animation: move 5s infinite;
}

@keyframes move {
    0% {
        clip-path: circle(100px at 0% 50%);
        -webkit-clip-path: circle(100px at 0% 50%);
    }

    50% {
        clip-path: circle(100px at 100% 50%);
        -webkit-clip-path: circle(100px at 100% 50%);
    }

    100% {
        clip-path: circle(100px at 0% 50%);
        -webkit-clip-path: circle(100px at 0% 50%);
    }
}

/* 图片容器：宽度自适应，不再固定 10% */
.top-img-content {
    flex-shrink: 0;
}

/*  ==============  图片用width修改大小 ============== */
.top-img-content img {
    width: 50%;
    display: block;
}

.top-title-desc {
    padding-left: 12px;
    font-size: 2vw;
    font-weight: 500;
    color: #4d6297;
    margin: 0;
    z-index: 10;
}

/* ====================================  子页面 顶部  ====================================== */












/* ===========================================   awards-holder   ================================== */

.awards-holder {
    position: relative;
    top: 9vh;
    /* background-color: #e6f2ff; */
    /* background: linear-gradient(#e6f2ff, #c1d7f0); */
    background: linear-gradient(#e6f2ff, #cbd3ef);
    width: 100%;
}

.awards-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* background-color: #e6f2ff; */
    /* background: linear-gradient(#e6f2ff, #c1d7f0); */
    background: linear-gradient(#e6f2ff, #cbd3ef);
}

/* 左、中盒子：图片上，文字下 */
.award-item-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
    padding: 25px 0px;
    background: white;
    border-radius: 20px;
}

.award-item-vertical img {
    width: 260px;
    height: auto;
    margin-bottom: 8px;
}

.award-text1 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 16px;
    line-height: 1.5;
}

/* 右侧主容器 */
.award-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 20px;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 50px;
    max-width: 320px;
}

/* 右侧内部小盒子：图片左，文字右 */
.award-sub-item-horizontal {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: white;
    border-radius: 12px;
    width: 100%;
    padding: 10px 20px;
}

.award-sub-item-horizontal img {
    width: 120px;
    height: auto;
}

.award-text2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.color1 {
    color: #bc7283;
    font-size: 20px;
    font-weight: 700;
}

.color2 {
    color: #2c5c9f;
    font-size: 20px;
    font-weight: 700;
}

/* 平板：让左、中并排，右边换行 */
@media (max-width: 767px) {
    .awards-holder {
        gap: 14px;
    }

    .award-item-vertical,
    .award-item-right {
        max-width: none;
        flex: 1 1 45%;
    }

    /* 右边盒子单独占一行 */
    .award-item-right {
        flex: 1 1 100%;
        order: 3;
    }
}

/* 手机：全部垂直堆叠 */
@media (max-width: 479px) {

    .award-item-vertical,
    .award-item-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* 右侧内部也转为竖排 */
    .award-sub-item-horizontal {
        flex-direction: column;
        text-align: center;
    }

    .award-sub-item-horizontal img {
        margin-bottom: 6px;
    }
}






/* ============================================   pictures-holder   ================================== */
.pictures-holder {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    position: relative;
    top: 9vh;
    width: 100%;
    height: auto;
    /* height: 200vh; */
    /* background-color: #e6f2ff; */
    /* background: linear-gradient(#c1d7f0, #a9b5e3, #e6f2ff); */
    background: linear-gradient(#cbd3ef, #c1d7f0, #e6f2ff);
    padding: 50px 0px 100px;
}


/* ----------------------------- p1 ------------------------------ */
.p1 {
    width: 60%;
    border: #e8ecf5 20px solid;
    margin: 30px 0px 60px 0px;
    padding: 0px;
    border-radius: 12px;
}

.p1 img {
    width: 100%;
    border-radius: 12px;
}


/* ----------------------------- p2 ------------------------------ */
.p2 {
    width: 1000px;
    margin: 50px auto;
    padding: 40px 16px;
    box-sizing: border-box;
    background-color: rgb(246, 237, 237);
    border-radius: 20px;
}

.p2a {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
}

/* 左上：占据左侧整列（第1列），高度由内容决定 */
.img-lu {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* 右上：占据右侧（第2列），高度尽量与左上接近 */
.img-ru {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.p2b {
    display: grid;
    grid-template-columns: 1.1fr 1.8fr;
    grid-template-rows: auto auto;
    gap: 0px;
    /* 图片间距 */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
}

/* 左下：占据第1列第2行 */
.left-bottom-stack {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* object-fit: cover; */
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex: 1;
}

/* 左下两张图 */
.left-bottom-stack img {
    width: 90%;
    height: auto;
    border-radius: 12px;
}

/* 右下：占据第2列第2行 */
.img-rd {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}


/* -------------------------------- p3 -------------------------------- */
.p3 {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 900px;
    margin: 60px auto 40vh auto;
}

.p3 img {
    flex: 1;
    max-width: 50%;
    border-radius: 12px;
    border: #596e9e 6px dashed;
}