@charset "utf-8";

/* ============================================
   首页美化样式 - 高端医院风格（暖色版）
   长沙中研皮肤病医院
   依赖: index4.css, responsive.css
   主色调: 品牌暗红 #860d2c / 玫红 #c41e3a / 金色点缀 #c5a55a
   全暖色系，无冷色
   ============================================ */

/* ---- 全局 ---- */
html {
    scroll-behavior: smooth;
}
body {
    background: #fdf8f6 !important;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif !important;
}

/* ============================================
   顶部信息条 Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, #5c0820 0%, #860d2c 50%, #5c0820 100%);
    color: #f0d5d5;
    font-size: 13px;
    line-height: 36px;
    height: 36px;
    overflow: hidden;
}
.top-bar-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}
.top-bar-welcome {
    letter-spacing: 0.5px;
}
.top-bar-welcome::before {
    content: "\2729";
    margin-right: 6px;
    color: #e8c068;
}
.top-bar-info {
    display: flex;
    align-items: center;
}
.top-bar-item {
    padding: 0 2px;
}
.top-bar-divider {
    color: rgba(255,255,255,0.25);
    margin: 0 8px;
}

/* ============================================
   Header 头部
   ============================================ */
#header {
    background: #ffffff !important;
    height: auto !important;
    padding: 18px 0 !important;
    overflow: visible !important;
    box-shadow: 0 2px 20px rgba(134, 13, 44, 0.08) !important;
    border-bottom: none;
    position: relative;
}
#header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #860d2c 0%, #a01538 30%, #c41e3a 60%, #e8c068 100%);
}
#header .m {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: auto !important;
}
#header .logo {
    float: none !important;
    width: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    flex-shrink: 0;
}
#header .logo img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}
#header .logo:hover img {
    transform: scale(1.02);
}

/* 头部右侧 */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fef5f3 0%, #fce8e8 100%);
    border: 1px solid #f0d0d0;
    border-radius: 8px;
}
.badge-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #860d2c 0%, #a01538 100%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
}
.badge-text {
    font-size: 13px;
    line-height: 1.4;
    color: #860d2c;
    font-weight: 600;
}

/* 电话区 */
#header .tel {
    float: none !important;
    margin-top: 0 !important;
    line-height: 1.3 !important;
    padding-left: 0 !important;
    background: none !important;
    text-align: right;
    display: flex;
    flex-direction: column;
}
.tel-label {
    font-size: 13px;
    color: #b08080;
    margin-bottom: 2px;
}
.tel-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}
#header .tel span.s1 {
    font-family: "Impact", "Arial Narrow", sans-serif;
    font-size: 24px !important;
    color: #860d2c !important;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
#header .tel:hover span.s1 {
    color: #c41e3a !important;
}
.tel-sep {
    color: #d5b0b0;
    font-size: 20px;
}

/* ============================================
   导航栏
   ============================================ */
.hdao {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
.hdao ul {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(134, 13, 44, 0.08) !important;
    background: #fff;
    display: flex;
}
.hdao li {
    transition: background 0.3s ease;
}
.hdao li a {
    transition: all 0.3s ease !important;
    position: relative;
    font-size: 18px !important;
    font-weight: 500;
    color: #555 !important;
    border-right: 1px solid #f5f0f0 !important;
}
.hdao li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #860d2c, #c41e3a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.hdao li a:hover {
    background: #fdf6f3 !important;
    color: #860d2c !important;
}
.hdao li a:hover::after {
    width: 70%;
}
.hdao li.on a {
    background: linear-gradient(135deg, #860d2c 0%, #a01538 100%) !important;
    color: #fff !important;
}
.hdao li.on a::after {
    width: 0;
}

/* 预约挂号导航项 */
.hdao li:last-child a {
    background: linear-gradient(135deg, #c41e3a 0%, #e63946 100%) !important;
    color: #fff !important;
    font-weight: bold !important;
    border-right: none !important;
}
.hdao li:last-child a::after {
    display: none;
}
.hdao li:last-child a::before {
    content: "\2605";
    margin-right: 6px;
    font-size: 15px;
}
.hdao li:last-child a:hover {
    background: linear-gradient(135deg, #e63946 0%, #ff5a6a 100%) !important;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
}

/* ============================================
   Hero 横幅区
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #4a0618 0%, #860d2c 35%, #a01538 65%, #c41e3a 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(232,192,104,0.12) 0%, transparent 50%);
}
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e8c068, #c41e3a, #e8c068);
}
.hero-inner {
    position: relative;
    z-index: 1;
}
.hero-content {
    text-align: center;
    color: #fff;
}
.hero-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-subtitle {
    font-size: 20px;
    color: #f5d5d5;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.hero-btn {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.hero-btn-primary {
    background: linear-gradient(135deg, #e8c068 0%, #d4a843 100%);
    color: #4a0618 !important;
    box-shadow: 0 4px 15px rgba(232, 192, 104, 0.4);
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 192, 104, 0.55);
    background: linear-gradient(135deg, #f0c878 0%, #e8c068 100%);
    color: #4a0618 !important;
}
.hero-btn-outline {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ============================================
   Hero 动画效果
   ============================================ */

/* 背景渐变流动动画 */
.hero-section {
    background-size: 200% 200% !important;
    animation: heroBgFlow 8s ease-in-out infinite;
}
@keyframes heroBgFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 光晕脉冲动画 */
.hero-section::before {
    animation: heroGlowPulse 4s ease-in-out infinite alternate;
}
@keyframes heroGlowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* 底部装饰线流光 */
.hero-section::after {
    background-size: 200% 100% !important;
    animation: heroLineShine 3s linear infinite;
}
@keyframes heroLineShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* 标题入场动画 */
.hero-title {
    animation: heroFadeDown 1s ease-out both;
}
@keyframes heroFadeDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 副标题入场动画 */
.hero-subtitle {
    animation: heroFadeUp 1s ease-out 0.3s both;
}
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 描述文字入场动画 */
.hero-desc {
    animation: heroFadeUp 1s ease-out 0.6s both;
}

/* 按钮组入场动画 */
.hero-actions {
    animation: heroFadeUp 1s ease-out 0.9s both;
}

/* 主按钮持续脉冲发光 */
.hero-btn-primary {
    animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(232, 192, 104, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(232, 192, 104, 0.7); }
}

/* 描边按钮呼吸效果 */
.hero-btn-outline {
    animation: btnBreathe 3s ease-in-out infinite;
}
@keyframes btnBreathe {
    0%, 100% { border-color: rgba(255,255,255,0.5); }
    50% { border-color: rgba(255,255,255,0.9); }
}

/* 移动端关闭脉冲动画以节省性能 */
@media screen and (max-width: 480px) {
    .hero-section { animation: none !important; }
    .hero-section::before { animation: none !important; }
    .hero-section::after { animation: none !important; }
    .hero-btn-primary { animation: none !important; }
    .hero-btn-outline { animation: none !important; }
}

/* ============================================
   快捷服务入口
   ============================================ */
.quick-services {
    margin-top: -28px;
    position: relative;
    z-index: 10;
    padding-bottom: 10px;
}
.quick-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(134, 13, 44, 0.08);
}
.quick-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.quick-item:hover {
    background: #fdf6f3;
    transform: translateY(-3px);
}
.quick-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(134, 13, 44, 0.1);
}
.quick-icon-1 { background: linear-gradient(135deg, #860d2c, #a01538); }
.quick-icon-2 { background: linear-gradient(135deg, #c41e3a, #e63946); }
.quick-icon-3 { background: linear-gradient(135deg, #d4731f, #e8923a); }
.quick-icon-4 { background: linear-gradient(135deg, #c5a55a, #e8c068); }
.quick-item:hover .quick-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(134, 13, 44, 0.15);
}
.quick-label {
    font-size: 15px;
    color: #555;
    font-weight: 600;
}
.quick-item:hover .quick-label {
    color: #860d2c;
}

/* ============================================
   内容区域
   ============================================ */
#content {
    padding-top: 15px !important;
}

/* ---- 标题美化 ---- */
.yyjsbt {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #860d2c !important;
    padding: 30px 0 15px !important;
    position: relative;
    padding-left: 18px !important;
    line-height: 1.4 !important;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.yyjsbt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg, #860d2c 0%, #c41e3a 100%);
    border-radius: 3px;
}
.yyjsbt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #e8d0d0 0%, transparent 100%);
}
.yyjsbt-sub {
    font-size: 13px;
    font-weight: normal;
    color: #d5b0b0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   关于我们 - 卡片
   ============================================ */
.yyjsbox1 {
    border: 1px solid #f0e0e0 !important;
    border-top: 3px solid #860d2c !important;
    border-radius: 12px !important;
    padding: 28px !important;
    background: #ffffff !important;
    box-shadow: 0 3px 15px rgba(134, 13, 44, 0.05) !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
    display: flex;
    align-items: center;
}
.yyjsbox1:hover {
    box-shadow: 0 8px 30px rgba(134, 13, 44, 0.12) !important;
    transform: translateY(-3px);
}
.yyjsbox1 dd {
    width: 800px;
    float: none !important;
    flex: 1;
}
.yyjsbox1 dd p {
    font-size: 15px !important;
    line-height: 30px !important;
    color: #666 !important;
    text-indent: 2em !important;
    letter-spacing: 0.5px;
}
.yyjsbox1 dt {
    width: 255px !important;
    float: none !important;
    flex-shrink: 0;
    margin-left: 25px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(134, 13, 44, 0.1);
}
.yyjsbox1 dt img {
    border-radius: 10px;
    transition: transform 0.4s ease;
    width: 100%;
    height: auto;
}
.yyjsbox1 dt:hover img {
    transform: scale(1.05);
}

/* ============================================
   便民绿色通道 - 卡片
   ============================================ */
.yyjsbox5 {
    border: 1px solid #f0e0e0 !important;
    border-top: 3px solid #d4731f !important;
    border-radius: 12px !important;
    padding: 0 28px 25px !important;
    background: #ffffff !important;
    box-shadow: 0 3px 15px rgba(134, 13, 44, 0.05) !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
    overflow: hidden;
}
.yyjsbox5:hover {
    box-shadow: 0 8px 30px rgba(212, 115, 31, 0.15) !important;
    transform: translateY(-3px);
}
.yyjsbox5 > div {
    padding-top: 22px !important;
    text-align: center;
}
.yyjsbox5 img {
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(134, 13, 44, 0.08);
}
.yyjsbox5 img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(134, 13, 44, 0.12);
}
.yyjsbox5 p {
    font-size: 15px !important;
    line-height: 30px !important;
    color: #666 !important;
    padding-top: 18px !important;
    letter-spacing: 0.3px;
}
.yyjsbox5 p b {
    color: #d4731f !important;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 4px;
    padding: 2px 10px;
    background: rgba(212, 115, 31, 0.08);
    border-radius: 4px;
}

/* ============================================
   一对一诊疗 - 卡片
   ============================================ */
.yyjsbox6 {
    border: 1px solid #f0e0e0 !important;
    border-top: 3px solid #c5a55a !important;
    border-radius: 12px !important;
    padding: 0 28px 25px !important;
    background: #ffffff !important;
    box-shadow: 0 3px 15px rgba(134, 13, 44, 0.05) !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
    overflow: hidden;
}
.yyjsbox6:hover {
    box-shadow: 0 8px 30px rgba(197, 165, 90, 0.15) !important;
    transform: translateY(-3px);
}
.yyjsbox6 > div {
    padding-top: 22px !important;
    text-align: center;
}
.yyjsbox6 img {
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(134, 13, 44, 0.08);
}
.yyjsbox6 img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(134, 13, 44, 0.12);
}
.yyjsbox6 p {
    font-size: 15px !important;
    line-height: 30px !important;
    color: #666 !important;
    text-indent: 2em !important;
    padding-top: 18px !important;
    letter-spacing: 0.3px;
}

/* ============================================
   信任数据区
   ============================================ */
.trust-section {
    margin: 35px 0 0;
    background: linear-gradient(135deg, #4a0618 0%, #860d2c 50%, #a01538 100%);
    padding: 45px 0;
    position: relative;
    overflow: hidden;
}
.trust-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(232,192,104,0.12) 0%, transparent 60%);
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}
.trust-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.trust-number {
    font-size: 38px;
    font-weight: bold;
    color: #e8c068;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.trust-unit {
    font-size: 18px;
    color: rgba(232,192,104,0.8);
    margin: 0 2px;
}
.trust-label {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
}

/* ============================================
   页脚
   ============================================ */
.foot {
    background: linear-gradient(135deg, #2a0610 0%, #3a0a14 50%, #4a0618 100%) !important;
    padding: 45px 0 !important;
    margin-top: 0 !important;
    border-top: 3px solid #e8c068;
}
.footnr {
    background: transparent !important;
    height: auto !important;
}
.w1160 {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
}
.yyxx {
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.yyxx img.fl {
    margin: 0 !important;
    float: none !important;
    max-width: 140px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}
.yyxx img.fl:hover {
    transform: scale(1.05);
}
.yyxx p {
    font: 14px/28px "Microsoft YaHei" !important;
    color: rgba(255,255,255,0.75) !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    line-height: 30px !important;
}
.yyxx p a {
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.3s ease;
}
.yyxx p a:hover {
    color: #e8c068 !important;
}
.yyxx p a img {
    vertical-align: middle;
    opacity: 0.8;
}

/* ============================================
   响应式适配
   ============================================ */
@media screen and (max-width: 1024px) {
    .top-bar-item:nth-child(3),
    .top-bar-divider:nth-child(4),
    .top-bar-item:nth-child(5) {
        display: none;
    }
    .header-right {
        gap: 20px;
    }
    .header-badge {
        display: none;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 17px;
    }
    .quick-grid {
        padding: 16px;
        gap: 10px;
    }
    .quick-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .yyjsbox1 {
        flex-direction: column;
        gap: 20px;
    }
    .yyjsbox1 dt {
        margin-left: 0;
        width: 100% !important;
    }
    .trust-number {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    /* 导航ul默认隐藏（覆盖全局 display:flex） */
    .hdao ul {
        display: none !important;
        flex-direction: column !important;
        border-radius: 0 !important;
        box-shadow: 0 4px 10px rgba(134, 13, 44, 0.15) !important;
    }
    .hdao ul.show {
        display: block !important;
    }

    /* 顶部条 */
    .top-bar {
        font-size: 12px;
        line-height: 30px;
        height: 30px;
    }
    .top-bar-inner {
        justify-content: center;
        height: 30px;
    }
    .top-bar-info {
        display: none;
    }

    /* Header */
    #header {
        padding: 12px 0 !important;
    }
    #header .logo img {
        max-height: 42px !important;
    }
    .header-right {
        gap: 12px;
    }
    .header-badge {
        display: none;
    }
    #header .tel span.s1 {
        font-size: 16px !important;
    }
    .tel-label {
        font-size: 11px;
    }
    .tel-sep {
        display: none;
    }
    .tel-numbers {
        flex-direction: column;
        gap: 0;
        align-items: flex-end;
    }
    #header .tel span.s1:last-of-type {
        font-size: 14px !important;
    }

    /* Hero */
    .hero-section {
        padding: 35px 0;
    }
    .hero-title {
        font-size: 22px !important;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 15px;
        letter-spacing: 1px;
    }
    .hero-desc {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 22px;
    }
    .hero-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* 快捷服务 */
    .quick-services {
        margin-top: -20px;
    }
    .quick-grid {
        padding: 12px;
        gap: 6px;
        border-radius: 10px;
    }
    .quick-item {
        padding: 10px 4px;
    }
    .quick-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .quick-label {
        font-size: 12px;
    }

    /* 标题 */
    .yyjsbt {
        font-size: 18px !important;
        padding: 20px 0 10px !important;
        padding-left: 14px !important;
    }
    .yyjsbt-sub {
        display: none;
    }

    /* 卡片 */
    .yyjsbox1,
    .yyjsbox5,
    .yyjsbox6 {
        padding: 18px !important;
        border-radius: 10px !important;
    }
    .yyjsbox1 {
        flex-direction: column;
        gap: 15px;
    }
    .yyjsbox1 dt {
        margin-left: 0;
        width: 100% !important;
    }
    .yyjsbox1 dd p,
    .yyjsbox5 p,
    .yyjsbox6 p {
        font-size: 14px !important;
        line-height: 26px !important;
    }
    .yyjsbox5 p b {
        padding: 1px 6px;
        font-size: 13px;
    }

    /* 取消hover位移 */
    .yyjsbox1:hover,
    .yyjsbox5:hover,
    .yyjsbox6:hover,
    .quick-item:hover {
        transform: none !important;
    }

    /* 信任数据区 */
    .trust-section {
        padding: 30px 0;
        margin-top: 25px;
    }
    .trust-grid {
        flex-wrap: nowrap !important;
        gap: 0;
    }
    .trust-item {
        width: 33.33%;
        padding: 0 5px;
    }
    .trust-item:not(:last-child)::after {
        display: block;
        top: 20%;
        height: 60%;
    }
    .trust-number {
        font-size: 26px;
    }
    .trust-label {
        font-size: 13px;
    }

    /* 页脚 */
    .foot {
        padding: 30px 0 !important;
    }
    .yyxx {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .yyxx p {
        text-align: center !important;
        font-size: 12px !important;
        line-height: 26px !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 18px !important;
    }
    .hero-desc {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero-btn {
        padding: 9px 20px;
        font-size: 13px;
    }
    .quick-label {
        font-size: 11px;
    }
    .yyjsbt {
        font-size: 16px !important;
    }
    .yyjsbox5 p b,
    .yyjsbox6 p {
        font-size: 13px !important;
    }
    .trust-item {
        width: 33.33% !important;
        padding: 0 3px !important;
    }
    .trust-grid {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }
    .trust-number {
        font-size: 20px !important;
    }
    .trust-label {
        font-size: 11px !important;
    }
    .trust-unit {
        font-size: 14px !important;
    }
}
