@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap");
@charset "utf-8";
.clear {
  font-size: 0;
  line-height: 0;
  clear: both;
  overflow: hidden;
  zoom: 1;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #c01701;
  transition: all 0.2s linear 0s;
}
 /* ===== 全局重置 & 基础 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        .container {
            max-width: 88%;
            margin: 0 auto;
            padding:0px;
        }

        /* ===== 通用标题 ===== */
        .section-title {
            text-align:left;
            margin-bottom: 44px;
        }
        .section-title h2 {font-family: "Poppins", sans-serif;
            font-size: 5rem;
            font-weight: 800;
            letter-spacing: 0px;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
            padding-bottom: 0px;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 0px;
            background: linear-gradient(90deg, #c9a96e, #e8d5b5);
            border-radius: 2px;
        }
        .section-title .sub {
            font-size: 1.2rem;
            color: #000;
            margin-top: 0px;
            letter-spacing: 0px;
        }
		
		 /* ===== 通用标题1 ===== */
        .section-title1 {
            text-align:left;
            margin-bottom: 44px;
        }
        .section-title1 h2 {font-family: "Poppins", sans-serif;
            font-size: 2.5rem;
            font-weight: normal;
            letter-spacing: 0px;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
            padding-bottom: 0px;
        }
        .section-title1 h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 0px;
            background: linear-gradient(90deg, #c9a96e, #e8d5b5);
            border-radius: 2px;
        }
        .section-title1 .sub {
            font-size: 1.2rem;
            color: #000;
            margin-top: 0px;
            letter-spacing: 0px;
        }

        /* ===== 板块一：规范化服务流程 ===== */
        .process-section {
            padding:13rem 0 6rem 0;
        }
        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: wrap;
            gap: 16px;
            position: relative;
            padding: 20px 0 10px;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 6rem;
            left: 8%;
            right: 8%;
            height: 2px;
            background: linear-gradient(90deg, #c9a96e, #e8d5b5, #c9a96e);
            opacity: 0.4;
            z-index: 0;
        }
        .step-item {
            flex: 1 1 150px;
            text-align: center;
            position: relative;
            z-index: 1;
            background: #fff;
            padding: 24px 14px 20px;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(201, 169, 110, 0.12);
            min-width: 120px;
        }
        .step-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(201, 169, 110, 0.12);
            border-color: rgba(201, 169, 110, 0.3);
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(180deg, #a37bdd 0%, #7b639ec4 100%);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 12px;
            font-family: 'Georgia', serif;
            box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
        }
        .step-item h4 {
            font-size: 1.1rem;
            font-weight: normal;
            color: #1a1a1a;
            margin-bottom: 4px;
        }
        .step-item p {
            font-size: .9rem;
            color: #666;
            margin: 0;
            line-height: 1.8;
        }
        @media (max-width: 850px) {
            .process-steps::before {
                display: none;
            }
            .step-item {
                flex: 1 1 130px;
                padding: 20px 12px;
            }
        }
        @media (max-width: 550px) {
            .step-item {
                flex: 1 1 100%;
                max-width: 280px;
                margin: 0 auto;
            }
            .process-steps {
                justify-content: center;

            }
        }

        /* ===== 板块二：三个特点 ===== */
        .features-section {
            padding: 6rem 0 6rem 0;
			background: linear-gradient(180deg, #a37bdd 0%, #7b639e00 100%);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: #fff;
            border-radius: 16px;
            padding:10% 20%;
            text-align: center;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(201, 169, 110, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(201, 169, 110, 0.10);
            border-color: rgba(201, 169, 110, 0.2);
        }
        .feature-icon {
            font-size: 42px;
            margin-bottom: 16px;
            display: block;
        }
		.feature-icon img{width:2.5rem;}
        .feature-card h4 {
            font-size: 20px;
            font-weight: normal;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .feature-card p {
            font-size: 14px;
            color: #777;
            line-height: 1.7;
            margin: 0;
        }
        .feature-tag {
            display: inline-block;
    margin-top: 25px;
    font-size: 14px;
    color: #916dc7;
    letter-spacing: 1px;
    border: 0px solid rgba(201, 169, 110, 0.2);
    padding: 4px 16px;
    border-radius: 20px;
    background: #e5daf5;
}
        @media (max-width: 850px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 550px) {
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* ===== 板块三：精准医美前奏 ===== */
        .prelude-section {
            padding: 50px 0 30px;
        }
        .prelude-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .prelude-block {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .prelude-block .block-title {
            font-size: 20px;
            font-weight: normal;
            color: #1a1a1a;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(201, 169, 110, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .prelude-block .block-title .badge {
            font-size: 12px;
            background: #7b639e;
            color: #fff;
            padding: 0 12px;
            border-radius: 12px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .prelude-block ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .prelude-block ul li {
            font-size: 14px;
            color: #555;
            padding: 6px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .prelude-block ul li:last-child {
            border-bottom: none;
        }
        .prelude-block ul li .label {
            color: #777;
            font-weight: 300;
            font-size: 14px;
        }
        .prelude-block ul li .value {
            color: #2d2d2d;
            font-weight: 500;
            text-align: right;
        }
        .prelude-block .tag-group {display: block;
            flex-wrap: wrap;
            gap: 1vw 0.2vw;
            margin-top: 6px;
        }
        .prelude-block .tag-group .tag {display: block;        border-bottom: 1px solid rgba(0, 0, 0, 0.03);    
            color: #777;font-weight: 300;
            font-size:14px;
            padding: .35vw .3vw;
            border-radius: 20px;            
        }
        @media (max-width: 850px) {
            .prelude-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 550px) {
            .prelude-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 板块四：基础问诊 ===== */
        .consult-section {
            padding: 50px 0 30px;
        }
        .consult-steps {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: wrap;
            gap: 24px;
        }
        .consult-item {
            flex: 1 1 280px;
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        .consult-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(201, 169, 110, 0.08);
        }
        .consult-item .step-badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #7b639e;
            background: #e5daf5;
            padding: 4px 16px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        .consult-item .step-icon {
            font-size: 36px;
            display: block;
            margin-bottom: 12px;
        }
        .consult-item h4 {
            font-size: 20px;
            font-weight: normal;
            color: #1a1a1a;
            margin-bottom: 6px;
        }
        .consult-item p {
            font-size: 14px;
            color: #777;
            margin: 0;
            line-height: 2;
        }
        .consult-item .arrow-line {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: #e0d5c8;
            display: none;
        }
        @media (min-width: 1024px) {
            .consult-item .arrow-line {
                display: block;
            }
        }
        @media (max-width: 850px) {
            .consult-steps {
                justify-content: center;
            }
            .consult-item {
                flex: 1 1 220px;
            }
        }
        @media (max-width: 550px) {
            .consult-item {
                flex: 1 1 100%;
                max-width: 360px;
                margin: 0 auto;
            }
        }

        /* ===== 板块五：美学设计理念 ===== */
        .design-section {
            padding: 50px 0 20px;
        }

        /* 设计逻辑 */
        .design-philosophy {
            background: url('../images/liuchengbg.jpg') center / cover no-repeat;
            border-radius: 16px;
            padding:15rem 0 15rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(201, 169, 110, 0.08);
            margin-bottom: 30px;
            text-align: center;
        }
        .design-philosophy .philosophy-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .design-philosophy .philosophy-title span {
            color: #c9a96e;
        }
        .design-philosophy .philosophy-desc {
            font-size: 15px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 6px;
            line-height: 1.8;
        }
        .design-philosophy .highlight-line {
            display: inline-block;
            margin-top: 10px;
            font-size: 14px;
            color: #c9a96e;
            letter-spacing: 3px;
            font-weight: 500;
            background: rgba(201, 169, 110, 0.06);
            padding: 6px 28px;
            border-radius: 30px;
            border: 1px solid rgba(201, 169, 110, 0.12);
        }

        /* ===== 新版：专家团队 + 轮廓塑形 同行布局 ===== */
        .design-layout {
            display: flex;
            align-items: stretch;
            gap: 30px;
            margin: 6rem 0;
        }

        /* 数字加载特效 (专家团队) —— 占30% */
        .expert-stats {
            flex: 0 0 30%;
            max-width: 30%;
            background: #fff;
            border: 0px solid rgba(201, 169, 110, 0.15);
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 0;
            min-height: 200px; /* 确保卡片高度 */
        }
        .expert-stats .stats-grid {
            display: flex;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    flex-direction: row;
    text-align: left;
        }
        .expert-stats .stat-item {
            flex: 0 1 auto;
            background: transparent;
            box-shadow: none;
            padding: 0;
            border: none;
        }
        .expert-stats .stat-number {font-family: "Poppins", sans-serif;
            font-size:10rem;
            font-weight: 800;
            color:#7b639e;
            letter-spacing: 1px;           
            display: inline-block;line-height: 5rem;
        }
        .expert-stats .stat-number .suffix {
            font-size: 28px;
            font-weight: 600;
            color: #7b639e;
            margin-left: 2px;
        }
        .expert-stats .stat-label {
            color: #555;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 2px;
            margin-top: 4px;
        }

        /* 轮廓塑形 —— 占70% */
        .contour-grid {
            flex: 1; /* 自动占据剩余70% */
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 0;
        }
        .contour-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px 18px 28px;            
            border: 0px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .contour-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(201, 169, 110, 0.08);
            border-color: rgba(201, 169, 110, 0.15);
        }
        .contour-card .contour-icon {
            font-size: 34px;
            display: block;
            margin-bottom: 12px;
        }
        .contour-card h5 {
            font-size: 20px;
            font-weight:normal;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .contour-card p {
            font-size: 14px;
            color: #777;
            line-height: 1.7;
            margin: 0;
        }
        .contour-card .contour-line {
            width: 30px;
            height: 2px;
            background: #c9a96e;
            margin:1rem auto 3rem auto;
            border-radius: 2px;
            opacity: 0.5;
        }

        /* ===== 响应式调整 ===== */
        @media (max-width: 1024px) {
            .contour-grid {
                gap: 20px;
            }
            .contour-card {
                padding: 24px 14px;
            }
            .expert-stats .stat-number {
                font-size: 40px;
            }
            .expert-stats .stat-number .suffix {
                font-size: 24px;
            }
        }

        @media (max-width: 850px) {
            .design-layout {
                flex-direction: column;
                gap: 30px;
            }
            .expert-stats {
                flex: 1 1 auto;
                max-width: 100%;
                width: 100%;
                padding: 30px 20px;
                min-height: unset;
            }
            .contour-grid {
                grid-template-columns: repeat(3, 1fr);
                width: 100%;
            }
        }

        @media (max-width: 550px) {
            .contour-grid {
                grid-template-columns: 1fr;
                max-width: 380px;
                margin: 0 auto;
            }
            .expert-stats .stat-number {
                font-size: 36px;
            }
            .expert-stats .stat-number .suffix {
                font-size: 22px;
            }
        }

        /* ===== 通用分隔 ===== */
        .section-divider {
            width: 80px;
            height: 0px;
            background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
            margin: 10px auto 0;
        }

        /* ===== 响应式微调 ===== */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px 40px;
            }
            .section-title h2 {
                font-size: 24px;
            }
            .feature-card {
                padding: 28px 18px 24px;
            }
            .consult-item {
                padding: 24px 18px 22px;
            }
            .prelude-block {
                padding: 20px 16px 22px;
            }
        }

        /* ===== 页面加载淡入 ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in:nth-child(2) {
            animation-delay: 0.1s;
        }
        .fade-in:nth-child(3) {
            animation-delay: 0.2s;
        }
        .fade-in:nth-child(4) {
            animation-delay: 0.3s;
        }
        .fade-in:nth-child(5) {
            animation-delay: 0.4s;
        }
        .fade-in:nth-child(6) {
            animation-delay: 0.5s;
        }

        /* ===== 小装饰 ===== */
        .gold-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #c9a96e;
            margin: 0 6px;
            opacity: 0.4;
        }
        .text-gold {
            color: #c9a96e;
        }
        .bg-gold-light {
            background: rgba(201, 169, 110, 0.04);
        }
/* ============================================================ */
/* 移动端适配（保留电脑端所有样式不变）                          */
/* 断点：767px 及以下                                           */
/* 所有文字统一使用 vw 单位，最小不小于 3vw                     */
/* ============================================================ */

@media (max-width: 768px) {

    /* ---------- 全局容器 ---------- */
    .container {
        max-width: 92%;
        padding: 0 0;
    }

    /* ---------- 通用标题 ---------- */
    .section-title {
        margin-bottom: 4vw;
        text-align: center;
    }
    .section-title h2 {
        font-size: 7.5vw !important;
        letter-spacing: 0.2vw;
        padding-bottom: 0;
    }
    .section-title .sub {
        font-size: 3.8vw !important;
        margin-top: 0.5vw;
        letter-spacing: 0.1vw;
    }

    .section-title1 {text-align: center;
        margin-bottom: 4vw;
    }
    .section-title1 h2 {
        font-size: 7vw !important;
        letter-spacing: 0.2vw;
        padding-bottom: 0;
    }
    .section-title1 .sub {
        font-size: 3.8vw !important;
        margin-top: 0.5vw;
    }

    .section-divider {
        width: 12vw;
        margin: 1.5vw auto 0;
    }

    /* ---------- 板块一：规范化服务流程 ---------- */
    .process-section {
        padding: 25vw 0 6vw 0;
    }

    .process-steps {
        gap: 2.5vw;
        padding: 2vw 0 1vw;
        justify-content: center;
    }
    .process-steps::before {
        display: none;
    }

    .step-item {
       
        padding: 4vw 2.5vw 3.5vw;
        border-radius: 2.5vw;
        box-shadow: 0 0.6vw 3vw rgba(0, 0, 0, 0.04);
        margin: 0 auto;
    }
    .step-item:hover {
        transform: translateY(-0.4vw);
        box-shadow: 0 1.2vw 5vw rgba(201, 169, 110, 0.12);
    }

    .step-num {
        width: 8vw;
        height: 8vw;
        font-size: 3.8vw;
        margin-bottom: 2vw;
        box-shadow: 0 0.6vw 2vw rgba(201, 169, 110, 0.3);
    }

    .step-item h4 {
        font-size: 4vw !important;
        margin-bottom: 0.8vw;
        font-weight: 500;
    }
    .step-item p {
        font-size: 3.2vw !important;
        line-height: 1.6;
    }

    /* ---------- 板块二：三大核心优势 ---------- */
    .features-section {
        padding: 6vw 0 8vw 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3.5vw;
        max-width: 80vw;
        margin: 0 auto;
    }

    .feature-card {
        padding: 6vw 5vw 5.5vw;
        border-radius: 3vw;
        box-shadow: 0 0.6vw 3.5vw rgba(0, 0, 0, 0.04);
    }
    .feature-card:hover {
        transform: translateY(-0.6vw);
        box-shadow: 0 1.8vw 6vw rgba(201, 169, 110, 0.10);
    }

    .feature-icon {
        font-size: 8vw;
        margin-bottom: 2.5vw;
    }
    .feature-icon img {
        width: 7vw;
    }

    .feature-card h4 {
        font-size: 4.8vw !important;
        margin-bottom: 1.5vw;
        font-weight: 500;
    }
    .feature-card p {
        font-size: 3.6vw !important;
        line-height: 1.8;
    }
    .feature-tag {
        font-size: 3.2vw !important;
        margin-top: 3.5vw;
        padding: 0.8vw 3.5vw;
        border-radius: 4vw;
        letter-spacing: 0.2vw;
    }

    /* ---------- 板块三：精准医美前奏 ---------- */
    .prelude-section {
        padding: 6vw 0 4vw 0;
    }

    .prelude-grid {
        grid-template-columns: 1fr;
        gap: 3.5vw;
        max-width: 80vw;
        margin: 0 auto;
    }

    .prelude-block {
        padding: 4.5vw 4vw 5vw;
        border-radius: 3vw;
        box-shadow: 0 0.6vw 3vw rgba(0, 0, 0, 0.03);
    }

    .prelude-block .block-title {
        font-size: 4.6vw !important;
        margin-bottom: 2.5vw;
        padding-bottom: 2vw;
        gap: 1.5vw;
        border-bottom-width: 0.3vw;
    }
    .prelude-block .block-title .badge {
        font-size: 3vw !important;
        padding: 0 2.5vw;
        border-radius: 2.5vw;
        letter-spacing: 0.1vw;
    }

    .prelude-block ul li {
        font-size: 3.4vw !important;
        padding: 1.2vw 0;
        border-bottom-width: 0.1vw;
    }
    .prelude-block ul li .label {
        font-size: 3.4vw !important;
    }
    .prelude-block ul li .value {
        font-size: 3.4vw !important;
    }

    .prelude-block .tag-group {
        gap: 1.2vw 0.8vw;
        margin-top: 0.5vw;
    }
    .prelude-block .tag-group .tag {
        font-size: 3.2vw !important;
        padding: 1vw 1.5vw;
        border-radius: 4vw;
        border-bottom-width: 0.1vw;
    }

    /* ---------- 板块四：基础问诊 ---------- */
    .consult-section {
        padding: 6vw 0 4vw 0;
    }

    .consult-steps {
        gap: 3.5vw;
        justify-content: center;
    }

    .consult-item {
        flex: 1 1 100%;
        max-width: 80vw;
        padding: 5vw 4vw 4.5vw;
        border-radius: 3vw;
        box-shadow: 0 0.6vw 3vw rgba(0, 0, 0, 0.03);
        margin: 0 auto;
    }
    .consult-item:hover {
        transform: translateY(-0.4vw);
        box-shadow: 0 1.2vw 5vw rgba(201, 169, 110, 0.08);
    }

    .consult-item .step-badge {
        font-size: 3.2vw !important;
        padding: 0.8vw 3.5vw;
        border-radius: 4vw;
        letter-spacing: 0.2vw;
        margin-bottom: 2vw;
    }

    .consult-item .step-icon {
        font-size: 7vw;
        margin-bottom: 2vw;
    }

    .consult-item h4 {
        font-size: 4.6vw !important;
        margin-bottom: 1vw;
        font-weight: 500;
    }
    .consult-item p {
        font-size: 3.6vw !important;
        line-height: 1.9;
    }

    .consult-item .arrow-line {
        display: none !important;
    }

    /* ---------- 板块五：美学设计理念 ---------- */
    .design-section {
        padding: 6vw 0 3vw 0;
    }

    /* 设计逻辑背景 */
    .design-philosophy {
        padding: 12vw 4vw 12vw 4vw !important;
        border-radius: 3vw;
        margin-bottom: 4vw;
        background-size: cover;
        background-position: center;
    }

    .design-philosophy .philosophy-title {
        font-size: 4.8vw !important;
        letter-spacing: 0.3vw;
        margin-bottom: 2vw;
    }
    .design-philosophy .philosophy-desc {
        font-size: 3.6vw !important;
        max-width: 90%;
        margin: 0 auto 1.5vw;
        line-height: 1.9;
    }
    .design-philosophy .highlight-line {
        font-size: 3.2vw !important;
        letter-spacing: 0.4vw;
        padding: 1vw 5vw;
        border-radius: 5vw;
        margin-top: 1.5vw;
        border-width: 0.1vw;
    }

    /* 同行布局：专家 + 轮廓 */
    .design-layout {
        flex-direction: column;
        gap: 4vw;
        margin: 4vw 0;
    }

    /* 专家团队统计（数字加载） */
    .expert-stats {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
        padding: 5vw 4vw;
        border-radius: 3vw;
        min-height: unset;
        margin: 0;
    }

    .expert-stats .stats-grid {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        text-align: center;
    }

    .expert-stats .stat-item {
        flex: 0 1 auto;
        padding: 0;
    }

    .expert-stats .stat-number {
        font-size: 16vw !important;
        line-height: 1.2;
        letter-spacing: 0.2vw;
        display: inline-block;
    }
    .expert-stats .stat-number .suffix {
        font-size: 5.5vw !important;
        margin-left: 0.5vw;
    }
    .expert-stats .stat-label {
        font-size: 3.8vw !important;
        letter-spacing: 0.3vw;
        margin-top: 1vw;
    }

    /* 轮廓塑形三列 */
    .contour-grid {
        grid-template-columns: 1fr;
        gap: 3.5vw;
        max-width: 80vw;
        margin: 0 auto;
        width: 100%;
    }

    .contour-card {
        padding: 5vw 4vw 4.5vw;
        border-radius: 3vw;
        box-shadow: 0 0.6vw 3vw rgba(0, 0, 0, 0.03);
        border-width: 0.1vw;
    }
    .contour-card:hover {
        transform: translateY(-0.4vw);
        box-shadow: 0 1.2vw 5vw rgba(201, 169, 110, 0.08);
    }

    .contour-card .contour-icon {
        font-size: 7vw;
        margin-bottom: 2vw;
    }

    .contour-card h5 {
        font-size: 4.6vw !important;
        margin-bottom: 1.2vw;
        font-weight: 500;
    }
    .contour-card p {
        font-size: 3.6vw !important;
        line-height: 1.8;
    }

    .contour-card .contour-line {
        width: 8vw;
        height: 0.3vw;
        margin: 2vw auto 3vw auto;
        border-radius: 0.3vw;
    }

    /* ---------- 其他微调 ---------- */
    .gold-dot {
        width: 1.2vw;
        height: 1.2vw;
        margin: 0 1.2vw;
    }

    /* 确保所有文字不小于 3vw */
    .step-item p,
    .feature-card p,
    .feature-tag,
    .prelude-block ul li,
    .prelude-block .tag-group .tag,
    .prelude-block .block-title .badge,
    .consult-item .step-badge,
    .consult-item p,
    .design-philosophy .philosophy-desc,
    .design-philosophy .highlight-line,
    .expert-stats .stat-label,
    .contour-card p,
    .section-title .sub,
    .section-title1 .sub {
        font-size: clamp(3vw, 3.4vw, 3.8vw) !important;
    }

    /* 部分标题和正文微调 */
    .step-item h4,
    .feature-card h4,
    .prelude-block .block-title,
    .consult-item h4,
    .design-philosophy .philosophy-title,
    .contour-card h5 {
        font-size: clamp(4.2vw, 4vw, 5.2vw) !important;
    }

    .section-title h2,
    .section-title1 h2 {
        font-size: clamp(5.5vw, 5.5vw, 8vw) !important;
    }

    /* 超大数字保持醒目 */
    .expert-stats .stat-number {
        font-size: clamp(14vw, 16vw, 18vw) !important;
    }

    /* 确保所有文字最小 3vw 的兜底 */
    * {
        /* 不直接设置全局字体，以免破坏布局，仅针对具体元素覆盖 */
    }
}

