
:root {
    --color-bg:        #fffcf1;
    --color-bg2:       #111111;
    --color-surface:   #1a1a1a;
    --color-border:    #2a2a2a;
    --color-purple:    #d61f21;
    --color-purple-lt: #ee4b50;
    --color-purple-dk: #d2b44a;
    --color-white:     #ffffff;
    --color-gray:      #aaaaaa;
    --color-gray-lt:   #404040;
    --font-main:       'Noto Sans SC', 'Microsoft YaHei', '微软雅黑', sans-serif;
    --nav-height:      70px;
    --transition:      0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--color-bg);
    color: var(--color-gray-lt);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-purple-lt); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   HEADER / NAV
============================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(124,58,237,0.25);
    transition: background var(--transition);
}

#site-header .header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

/* Logo */
#site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 150px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

#site-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-purple);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

/* Main Nav */
#main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

#main-nav ul li a {
    display: block;
    padding: 0 18px;
    height: var(--nav-height);
    line-height: var(--nav-height);
    color: #d1d5db;
    font-size: 14px;
    position: relative;
    transition: color var(--transition);
}

#main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--color-purple);
    transition: left var(--transition), right var(--transition);
}

#main-nav ul li a:hover,
#main-nav ul li.current-menu-item > a,
#main-nav ul li.current-menu-ancestor > a {
    color: var(--color-white);
}

#main-nav ul li a:hover::after,
#main-nav ul li.current-menu-item > a::after {
    left: 12px;
    right: 12px;
}

/* Dropdown */
#main-nav ul li {
    position: relative;
}

#main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: rgba(15,15,15,0.97);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-purple);
    min-width: 160px;
    z-index: 999;
    flex-direction: column;
    gap: 0;
}

#main-nav ul li:hover > ul {
    display: flex;
}

#main-nav ul li ul li a {
    height: auto;
    line-height: 1.5;
    padding: 10px 20px;
    font-size: 13px;
    color: #bbb;
    border-bottom: 1px solid var(--color-border);
}

#main-nav ul li ul li a:hover {
    color: #fff;
    background: rgba(124,58,237,0.15);
}

#main-nav ul li ul li a::after { display: none; }

/* Header Phone */
.header-phone {
    white-space: nowrap;
    min-width: 150px;
    text-align: right;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-phone a {
    color: var(--color-purple-lt);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

/* =============================================
   HERO SLIDER
============================================= */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--nav-height);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.slide.active .slide-bg { transform: scale(1); }

/* Gradient overlays */
.slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;

}

/* SVG grid pattern overlay */
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(124,58,237,0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.6) 1px, transparent 1px);
    background-size: 60px 60px;
}

.slide-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.slide-left {
    max-width: 600px;
}

.text-wrap-bg {
    /* 白色半透明底色 */
    background: rgba(255, 255, 255, 0.18);
    /* 核心磨砂模糊 */
    backdrop-filter: blur(5px);
    /* 细微白色描边增强玻璃质感 */
    border: 1px solid rgba(255, 255, 255, 0.25);

    padding: 30px 32px;
    border-radius: 12px;
    display: inline-block;
    max-width: 620px;
}

/* 按钮上边距 */
.text-wrap-bg .slide-btns {
    margin-top: 24px;
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-purple-lt);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgb(238 75 80 / 40%);
    border-radius: 20px;
    background: rgb(238 75 80 / 8%);
}

.slide-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.slide-title span { color: var(--color-purple-lt); }



.slide-sub {
    font-size: 18px;
    color: rgb(0 0 0 / 70%);
    margin-bottom: 36px;
    letter-spacing: 1px;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}

.slide-features li {
    font-size: 14px;
    color: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-features li::before {
    content: '›';
    color: var(--color-purple-lt);
    font-size: 18px;
    line-height: 1;
}

.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-purple);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgb(238 75 80 / 50%);
}

.btn-primary:hover {
    background: var(--color-purple-lt);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgb(171 27 29 / 55%);
}

.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid rgb(147 88 0 / 35%);
    color: rgb(165 108 0 / 85%);
    font-size: 15px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-outline:hover {
    border-color: var(--color-purple-dk);
    color: #000;
    background: rgb(182 137 50 / 35%);
}

/* Slide right card */
.slide-right {
    background: rgba(20,10,40,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 8px;
    padding: 36px 32px;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.slide-right h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.slide-right p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.slide-right ul { display: flex; flex-direction: column; gap: 10px; }

.slide-right ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-right ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--color-purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    bottom: 48px; right: 80px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-nav button {
    width: 48px; height: 48px;
    background: rgb(243 204 89);
    border: 1px solid rgb(243 203 82 / 45%);
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.slider-nav button:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
}

.slider-dots {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dots span {
    display: block;
    width: 28px; height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
}

.slider-dots span.active {
    background: var(--color-purple);
    width: 48px;
}

/* Left accent bar */
.hero-accent-bar {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 200px;
    z-index: 10;
    background: linear-gradient(to bottom, transparent, var(--color-purple), transparent);
}

/* =============================================
   SECTION COMMONS
============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--color-bg2); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-purple-lt);
    margin-bottom: 12px;
    padding: 4px 14px;
    border: 1px solid rgb(213 178 98);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--color-gray);
    max-width: 560px;
    margin: 0 auto;
}

/* =============================================
   row GRID
============================================= */

.section-precious-intro {
    background-image: url('https://prostatic.vvvava.cn/static/images/index/app_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* 模块上下内边距，撑开高度 */
    padding: 80px 0;
}

.intro-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0.5rem; /* 和 rounded-lg 对应圆角 */
    box-shadow: 0 4px 6px -1 rgba(0,0,0,0.1); /* shadow-md 阴影 */
}


.intro-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 核心：按比例填充，超出部分裁剪 */
    object-position: center; /* 图片居中裁剪 */
    display: block;
}
.row.flex-row {
    display: flex;
    flex-wrap: nowrap;;
}
.gap-4 {
    gap: 2rem;
}
.col-lg-6 {
    flex: 0 0 calc(50% - 1rem);
}
.col-md-12 {
    width: 100%;
}

.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.rounded-lg {
    border-radius: 12px;
}
.shadow-md {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.w-100 {
    width: 100%;
}



/* 卡片容器两列布局 */
.choose-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

/* 卡片基础：纯白背景 */
.choose-card {
    padding: 22px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    /* 过渡动画 */
    transition: all 0.3s ease;
}

/* 鼠标悬浮动画效果 */
.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(212, 160, 56, 0.18);
}

.choose-card h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #D4A038;
}

.choose-card p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: #333333;
}

/* 按钮居中 */
.text-center {
    text-align: center;
}

/* =============================================
   SERVICES GRID
============================================= */
/* 模块基础间距 */
.section-lingfeng-advantage {
    padding: 80px 0;
    background-color: #fff;
}
.mb-5 {
    margin-bottom: 3rem;
}

/* 六宫格网格：桌面3列 */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 卡片容器核心 */
.advantage-card {
    position: relative;
    min-height: 232px;
    border-radius: 16px;
    overflow: hidden; /* 裁切圆角背景图 */
    padding: 30px 26px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* hover悬浮上浮效果 */
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(212, 160, 56, 0.16);
}

/* 整张背景铺满卡片 核心自适应代码 */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.card-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 自动等比例铺满容器，裁剪多余部分，不变形 */
    object-position: center; /* 图片居中显示 */
}

/* 所有文字按钮层级高于背景图 */
.advantage-card h3,
.advantage-card p,
.advantage-card .card-btn,
.advantage-card .btn-group {
    position: relative;
    z-index: 2;
}

/* 标题样式 */
.advantage-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 14px;
}

/* 描述文字 */
.advantage-card p {
    font-size: 15px;
    color: #444444;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 80%;
}

/* 单个按钮样式 */
.card-btn {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #bbbbbb;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: 0.25s ease;
    background: rgba(255,255,255,0.7);
}
.card-btn:hover {
    background-color: #D4A038;
    border-color: #D4A038;
    color: #ffffff;
}

/* 双按钮并排组 */
.btn-group {
    display: flex;
    gap: 12px;
}

/* ========== 移动端适配  <=768px ========== */
@media screen and (max-width: 768px) {
    .section-lingfeng-advantage {
        padding: 40px 0;
    }
    .mb-5 {
        margin-bottom: 2rem;
    }
    /* M端改为1列布局 */
    .advantage-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .advantage-card {
        min-height: 180px;
        border-radius: 12px;
        padding: 22px 18px;
    }
    /* hover上浮：移动端触摸设备关闭transform，避免点击闪烁 */
    .advantage-card:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(212, 160, 56, 0.14);
    }
    .advantage-card h3 {
        font-size: 20px;
        margin: 0 0 10px;
    }
    .advantage-card p {
        font-size: 14px;
        line-height: 1.65;
        margin: 0 0 18px;
        max-width: 100%; /* 移动端取消80%限制占满宽度 */
    }
    .card-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    .btn-group {
        gap: 10px;
    }
    .btn-group .card-btn {
        flex:1; /* 双按钮等分宽度 */
        text-align:center;
    }
}

/* ========== 小屏手机 <=480px 增强兼容 ========== */
@media screen and (max-width: 480px) {
    .section-lingfeng-advantage {
        padding: 32px 0;
    }
    .advantage-card {
        min-height: 160px;
        padding: 18px 16px;
    }
    .advantage-card h3 {
        font-size: 18px;
    }
}

/* =============================================
   STATS / COUNTERS
============================================= */
/* 模块全局基础 */
.section-live-analysis {
    padding: 90px 0;
    background-color: #f7f5f9;
    background-image: radial-gradient(#e9e6ee 8%, transparent 8%);
    background-size: 35px 35px;
    position: relative;
    overflow: hidden;
}

/* 手机图片底层：全屏层级，靠右摆放，不受container宽度限制 */
.bg-phone-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 背景层级 */
    pointer-events: none; /* 不遮挡文字点击 */
}
.bg-phone-img {
    position: absolute;
    right: -80px; /* 向右溢出屏幕，更有氛围感 */
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: auto;
    max-width: unset; /* 取消宽度限制 */
    object-fit: contain;
}

/* 内容层级高于背景图片 */
.container,
.text-wrap,
.advantage-list {
    position: relative;
    z-index: 2;
}

/* 弹性左右布局 */
.row {
    display: flex;
    flex-wrap: wrap;
}
.gap-5 {
    gap: 40px;
}
.col-lg-6 {
    width: calc(50% - 20px);
}
.col-md-12 {
    width: 100%;
}

/* 左侧文字容器 */
.text-wrap {
    padding-right: 30px;
}

/* 主标题 红色大字 */
.main-title {
    font-size: 56px;
    font-weight: 700;
    color: #d62828;
    margin: 0 0 24px;
    line-height: 1.2;
}

/* 副标题灰色文字 */
.sub-title {
    font-size: 32px;
    color: #777777;
    line-height: 1.6;
    margin: 0 0 36px;
}

/* 四点列表 仅左侧竖线，无圆点 */
.advantage-list {
    list-style: none;
    padding-left: 32px;
    margin: 0;
    position: relative;
}
/* 左侧垂直金色竖线 */
.advantage-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background-color: #D4A038;
    border-radius: 3px;
}

/* 列表项内容 */
.advantage-list li {
    font-size: 24px;
    color: #D4A038;
    line-height: 2.2;
    position: relative;
    margin-bottom: 6px;
}

/* 按钮外层容器 */
.download-btn-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* 单个按钮相对容器（承载悬浮弹窗） */
.btn-wrap {
    position: relative;
}

/* 按钮通用基础 */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 15px 30px;
    border-radius: 50px; /* 大圆角胶囊按钮 */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

/* hover轻微上浮+加深阴影 */
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.ios-btn {
    background-color: #d62828;
    color: #ffffff;
}
.ios-btn:hover {
    background-color: #e24f51;
}

/* 安卓按钮 */
.android-btn {
    background-color: #d4a038;
    color: #000000;
}
.android-btn:hover {
    background-color: #c6a061;
}

/* 按钮图标 */
.btn-icon {
    font-size: 20px;
    line-height: 1;
}

/* 二维码弹窗容器 */
.qrcode-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 170px;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* 弹窗底部小三角箭头 */
.qrcode-popup::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

/* 二维码图片 */
.qrcode-popup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* 弹窗底部说明文字 */
.qrcode-popup p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* hover触发弹窗弹出 */
.btn-wrap:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 移动端适配 */
@media (max-width: 576px) {
    .download-btn-group {
        flex-direction: column;
        gap: 16px;
    }
    .download-btn {
        width: 100%;
    }
    .qrcode-popup {
        width: 150px;
    }
}

/* 响应式移动端适配 */
@media (max-width: 992px) {
    .col-lg-6 {
        width: 100%;
    }
    .row {
        flex-direction: column;
    }
    .text-wrap {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .main-title {
        font-size: 40px;
    }
    .sub-title {
        font-size: 26px;
    }
    .advantage-list li {
        font-size: 20px;
    }
    .section-live-analysis {
        padding: 50px 0;
    }
    /* 手机端背景图缩小靠右 */
    .bg-phone-img {
        right: -120px;
        height: 70%;
    }
    .download-btn-group {
        justify-content: flex-start;
    }
}
@media (max-width: 576px) {
    .main-title {
        font-size: 32px;
    }
    .sub-title {
        font-size: 22px;
    }
    .bg-phone-img {
        right: -150px;
        height: 60%;
    }

}


/* =============================================
   stats-section
============================================= */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(178deg, rgb(251 250 254) 0%, rgb(255 255 255) 60%);

}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--color-border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span { color: var(--color-purple-lt); }

.stat-label {
    font-size: 13px;
    color: var(--color-gray);
    letter-spacing: 1px;
}


/* =============================================
   FAQ
============================================= */

/* FAQ 独立模块样式 */
.section-faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 34px;
    font-weight: 700;
    color: #d62828;
    margin: 0 0 12px;
}

.faq-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 两栏网格布局 */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 单个问答卡片 */
.faq-item {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 22px;
    color: #d62828;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    background: #fff3f3;
}

.faq-answer {
    padding: 0 22px 18px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 响应式：手机自动变成单列 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 28px;
    }
}


/* =============================================
   LATEST POSTS / BLOG
============================================= */
/* 自适应网格保持不变 */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* 纯文字卡片 白底基础 */
.post-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

/* hover 红色主题动画 */
.post-card:hover {
    border-color: #d62828;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(214, 40, 40, 0.15);
}

/* ========== 全部图片缩略图样式直接删除 ========== */

/* 分类标签 红色角标 */
.post-cat-badge {
    display: inline-block;
    background: #d62828;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.post-body { 
    padding: 24px; 
}

.post-meta {
    font-size: 12px;
    color: #888888;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}

/* 标题纯黑色 */
.post-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 标题hover变红 */
.post-card h3 a:hover { 
    color: #d62828; 
}

/* 摘要深灰色 */
.post-card p {
    font-size: 13px;
    color: #555555;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 阅读更多红色 */
.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    color: #d62828;
}

/* =============================================
   CATEGORY PAGE
============================================= */
.category-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
    background: linear-gradient(135deg, rgba(180,40,40,0.08) 0%, transparent 60%);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,30,30,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,30,30,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.category-hero .container { position: relative; z-index: 2; }

.category-hero-badge {
    display: inline-block;
    background: rgba(200,30,30,0.12);
    border: 1px solid rgba(200,30,30,0.35);
    color: #c82424;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.category-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #111111;
    margin-bottom: 14px;
    line-height: 1.15;
}

.category-hero p {
    font-size: 16px;
    color: #555555;
    max-width: 600px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.breadcrumb a { color: #666666; }
.breadcrumb a:hover { color: #c82424; }
.breadcrumb .sep { color: #999999; }
.breadcrumb .current { color: #222222; }

/* Category Layout */
.category-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 56px 0;
}

.category-posts { display: flex; flex-direction: column; gap: 28px; }

.cat-post-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.cat-post-item:hover {
    border-color: #d4a038;
    box-shadow: 0 8px 30px rgba(212,160,56,0.22);
}

.cat-post-thumb {
    height: 170px;
    overflow: hidden;
    background: #f4f4f4;
}

.cat-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-post-item:hover .cat-post-thumb img { transform: scale(1.05); }

.cat-post-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f8f8, #eeeeee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a038;
    font-size: 40px;
}

.cat-post-body {
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-post-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #777777;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cat-post-body h2 {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cat-post-body h2 a { color: #111111; }
.cat-post-body h2 a:hover { color: #c82424; }

.cat-post-body p {
    font-size: 13px;
    color: #555555;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    color: #c82424;
    transition: gap var(--transition);
}
.read-more:hover { gap: 10px; color: #d4a038; }
/* =============================================
   SIDEBAR
============================================= */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

.widget {
    background: #ffffff; /* 白色背景 */
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #111111; /* 黑色标题 */
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.widget-title::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #d62828; /* 左侧红竖条 */
}

.widget-body { padding: 20px; color: #222222; }

/* Recent posts widget */
.widget-posts { display: flex; flex-direction: column; gap: 14px; }

.widget-post {
    display: flex;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.widget-post:last-child { border-bottom: none; padding-bottom: 0; }

.widget-post-thumb {
    width: 70px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.widget-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
    margin-bottom: 4px;
}

.widget-post-info h4 a { color: #222; }
.widget-post-info h4 a:hover { color: #d62828; } /* hover红色 */

.widget-post-info span { font-size: 11px; color: #666; }

/* Categories widget */
.widget-cats { display: flex; flex-direction: column; gap: 2px; }

.widget-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 4px;
    transition: background 0.25s ease;
}

.widget-cat-item:hover { background: #fff2f2; } /* 浅红底色hover */

.widget-cat-item a {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-cat-item a::before {
    content: '';
    width: 5px; height: 5px;
    background: #d62828;
    border-radius: 50%;
}

.widget-cat-item a:hover { color: #d62828; }

.widget-cat-count {
    font-size: 12px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2px 8px;
    color: #555;
}

/* Contact widget */
.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #333;
}

.contact-info-icon {
    width: 32px; height: 32px;
    background: #fff2f2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d62828;
    font-size: 14px;
}

/* Tag cloud 标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    font-size: 12px;
    padding: 5px 12px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    transition: all 0.25s ease;
}

.tag-cloud a:hover {
    background: #d62828;
    border-color: #d62828;
    color: #ffffff;
}
/* =============================================
   PAGINATION
============================================= */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--color-gray-lt);
    background: var(--color-surface);
    transition: all var(--transition);
}

.pagination a:hover {
    border-color: var(--color-purple);
    color: var(--color-purple-lt);
    background: rgba(124,58,237,0.08);
}

.pagination .current {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: #fff;
    font-weight: 700;
}

/* =============================================
   SINGLE POST
============================================= */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 56px 0;
}

.single-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
    background: linear-gradient(135deg, rgb(217 34 34 / 12%) 0%, #fffcf100 60%);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.single-hero .container { position: relative; z-index: 2; }

.single-hero h1 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-bottom: 16px;
}

.single-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--color-gray);
    flex-wrap: wrap;
}

.single-meta a { color: var(--color-purple-lt); }

.post-content {
    color: var(--color-gray-lt);
    line-height: 1.9;
    font-size: 15px;
}

.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 {
    color: #000000;
    font-weight: 700;
    margin: 32px 0 14px;
    line-height: 1.3;
}

.post-content h2 { font-size: 24px; border-left: 3px solid var(--color-purple); padding-left: 14px; }
.post-content h3 { font-size: 20px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; }
.post-content li { margin-bottom: 6px; }

.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }

.post-content a { color: var(--color-purple-lt); text-decoration: underline; }

.post-content img {
    border-radius: 6px;
    margin: 20px 0;
    width: 100%;
}

.post-content blockquote {
    border-left: 3px solid var(--color-purple);
    padding: 16px 20px;
    background: rgba(124,58,237,0.05);
    margin: 24px 0;
    border-radius: 0 6px 6px 0;
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

.post-content code {
    background: rgba(124,58,237,0.1);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 13px;
    color: var(--color-purple-lt);
}

.post-content pre {
    background: var(--color-bg);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    overflow-x: auto;
    margin: 20px 0;
}

.post-tags { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.post-tags h4 { font-size: 13px; color: var(--color-gray); margin-bottom: 10px; }

/* =============================================
   WHY CHOOSE US / FEATURES
============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
    border-color: rgba(124,58,237,0.4);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px; height: 64px;
    background: rgba(124,58,237,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--color-purple-lt);
    border: 1px solid rgba(124,58,237,0.25);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* =============================================
   CTA BAND
============================================= */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-purple-dk) 0%, #1a0a40 60%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-band .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 28px;
    display: block;
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
    background: #0a0a0a;
    border-top: 1px solid var(--color-border);
}

.footer-main {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-phone {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-purple-lt);
    letter-spacing: 1px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 28px; height: 2px;
    background: var(--color-purple);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 13px;
    color: var(--color-gray);
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-purple);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--color-purple-lt);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--color-purple-lt); }

/* =============================================
   PAGE 404
============================================= */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.page-404-inner h1 {
    font-size: 120px;
    font-weight: 900;
    color: var(--color-purple);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.page-404-inner h2 {
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 14px;
}

.page-404-inner p {
    color: var(--color-gray);
    margin-bottom: 32px;
}

/* =============================================
   SEARCH FORM
============================================= */
.search-form {
    display: flex;
    gap: 0;
}

.search-form input {
    flex: 1;
    padding: 10px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
}

.search-form input:focus {
    border-color: rgb(214 31 33 / 50%);;
}

.search-form button {
    padding: 10px 18px;
    background: var(--color-purple);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition);
}

.search-form button:hover { background: var(--color-purple-lt); }

/* =============================================
   BACK TO TOP
============================================= */
#back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    background: var(--color-purple);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    z-index: 999;
}

#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--color-purple-lt); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-item:nth-child(2) { border-right: none; }
    .stats-grid .stat-item:nth-child(3) { border-top: 1px solid var(--color-border); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .category-layout, .single-layout { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 60px; }

    #main-nav, .header-phone { display: none; }
    .hamburger { display: flex; }

    #main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height); left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        padding: 20px 0;
        border-bottom: 1px solid var(--color-border);
        z-index: 999;
    }

    #main-nav.open ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    #main-nav.open ul li a {
        height: auto;
        line-height: 1.5;
        padding: 14px 24px;
        width: 100%;
    }

    #main-nav.open ul li a::after { display: none; }

    #main-nav.open ul li ul {
        display: none;
        position: static;
        background: rgba(20,10,40,0.5);
        border: none;
        border-top: none;
    }

    .slide-content { flex-direction: column; }
    .slide-right { display: none; }
    .slider-nav { right: 20px; bottom: 30px; }

    .cat-post-item { grid-template-columns: 1fr; }
    .cat-post-thumb { height: 200px; }
    .cat-post-body { padding: 20px; }

    .footer-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .section { padding: 56px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
    .stats-grid .stat-item:last-child { border-bottom: none; }
}


.common_bottomFloat {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--float-gap);
    padding: 12px 20px;
    background: rgb(189 150 94 / 11%);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(248, 208, 151, 0.25);
    box-shadow: 0 -4px 30px rgb(201 156 91 / 29%);
}
.common_bottomFloat .companyLink {
    display: inline-block;
    text-decoration: none;
    flex: 0 1 auto;
    min-width: 250px;
}
.common_bottomFloat .bottomFloat_link_acetop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 40px;
    background: #c99c5b;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(248, 208, 151, 0.25);
    cursor: pointer;
}
.common_bottomFloat .bottomFloat_link_acetop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(248, 208, 151, 0.4);
}
.common_bottomFloat .link_right {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .common_bottomFloat {
        flex-direction: column;
        gap: 10px;
        padding: 10px 16px 12px;
    }
    .common_bottomFloat .companyLink {
        width: 100%;
        min-width: unset;
    }
    .common_bottomFloat .bottomFloat_link_acetop {
        padding: 12px 16px;
        width: 100%;
        justify-content: center;
    }
    .common_bottomFloat .link_right {
        font-size: 13px;
        white-space: normal;
    }
}
@media (min-width: 641px) {
    .common_bottomFloat {
        flex-direction: row;
        gap: var(--float-gap);
        padding: 12px 24px;
    }
    .common_bottomFloat .companyLink {
        flex: 0 1 auto;
    }
}