/* --- 全局重置 --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Microsoft YaHei", "PingFang SC", sans-serif; }
html { scroll-behavior: smooth; }
body { background: linear-gradient(to top, #30cfd0 0%, #330867 100%); background-size: cover; background-attachment: fixed; color: #fff; overflow-x: hidden; }
a { text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 导航 --- */
.sticky-nav { position: sticky; top: 0; z-index: 1000; background: rgba(43, 86, 246, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); height: 70px; display: flex; align-items: center; width: 100%; }
.nav-content { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.nav-logo { height: 40px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { color: #fff; font-size: 15px; opacity: 0.9; transition: 0.3s; }
.nav-links a:hover { opacity: 1; font-weight: bold; }

/* --- Hero --- */
.hero-section { position: relative; width: 100%; padding-top: 20px; padding-bottom: 120px; min-height: 80vh; display: flex; justify-content: center; align-items: flex-start; }
.hero-container { width: 100%; max-width: 1200px; padding: 0 20px; position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: center; gap: 50px; }
.hero-content-left { flex: 1; max-width: 550px; margin-top: 0; }
.hero-main-img { max-width: 100%; height: auto; display: block; margin-bottom: 20px; }
.subtitle { font-size: 16px; line-height: 1.8; margin-bottom: 30px; background: rgba(0,0,0,0.1); padding: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.hero-tg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; width: 100%; }
.unified-btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 20px; color: #fff; border-radius: 50px; font-weight: bold; font-size: 16px; text-shadow: 0 1px 2px rgba(0,0,0,0.2); box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.2); width: 100%; }
.unified-btn:hover { transform: translateY(-3px); filter: brightness(1.15); }
.unified-btn i { margin-right: 10px; font-size: 20px; }
.btn-blue { background: linear-gradient(135deg, #00c6ff, #0072ff); } .btn-red { background: linear-gradient(135deg, #FF512F, #DD2476); } .btn-purple { background: linear-gradient(135deg, #8E2DE2, #4A00E0); } .btn-green { background: linear-gradient(135deg, #11998e, #38ef7d); }
@keyframes float-anim { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.phone-mockup { position: relative; width: 220px; max-width: 40%; height: auto; margin-top: 10px; animation: float-anim 4s ease-in-out infinite; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3)); }
.phone-screen-img { width: 100%; height: auto; display: block; }

/* =========================================
   佣金案例板块
   ========================================= */
.case-section { position: relative; z-index: 3; margin-top: -80px; padding-bottom: 40px; scroll-margin-top: 80px; }
.section-title-center { text-align: center; margin-bottom: 30px; }
.section-title-center h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.section-title-center p { font-size: 16px; opacity: 0.9; color: #fff; }

/* 截图墙 */
.screenshot-wall-wrapper { margin-bottom: 40px; text-align: center; }
.scroll-hint { font-size: 12px; color: #aeeeff; margin-bottom: 10px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }
.screenshot-wall { display: flex; overflow-x: auto; gap: 15px; padding: 10px 20px; scrollbar-width: none; -ms-overflow-style: none; }
.screenshot-wall::-webkit-scrollbar { display: none; }
.shot-item { flex: 0 0 auto; width: 120px; height: 220px; border-radius: 10px; overflow: hidden; border: 2px solid rgba(255,255,255,0.2); cursor: zoom-in; transition: transform 0.3s; background: #000; }
.shot-item:hover { transform: scale(1.05); border-color: #F9E267; }
.shot-item img { width: 100%; height: 100%; object-fit: cover; }

/* 轮播图 */
.carousel-container { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; padding-bottom: 20px; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; margin: 0; padding: 0; }
.carousel-slide { flex: 0 0 100%; width: 100%; padding: 0 10px; box-sizing: border-box; }
.case-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); border-radius: 20px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.case-story-content { text-align: left; background: rgba(0,0,0,0.2); padding: 20px; border-radius: 15px; width: 100%; }
.story-header { display: flex; align-items: center; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.story-avatar { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; background: #fff; padding: 2px; }
.story-header h3 { font-size: 18px; color: #F9E267; margin-bottom: 5px; }
.story-date { font-size: 12px; color: #aaa; }
.story-text p { font-size: 15px; line-height: 1.8; margin-bottom: 10px; color: #eee; }
.story-text strong { color: #fff; font-size: 18px; color: #00d2ff; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); border: none; color: #fff; font-size: 24px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: rgba(0,78,255,0.6); }
.prev { left: 0; } .next { right: 0; }
@media (max-width: 768px) { .carousel-btn { display: none; } .screenshot-wall { padding: 10px; } }
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; flex-direction: column; }
.modal-content { max-width: 90%; max-height: 80%; border-radius: 5px; box-shadow: 0 0 20px rgba(255,255,255,0.2); }
.close-btn { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; }
#caption { margin-top: 15px; color: #ccc; }

/* Support Section */
.support-section { position: relative; z-index: 4; margin-top: 30px; padding: 60px 20px 60px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.3); border-top-left-radius: 50px; border-top-right-radius: 50px; scroll-margin-top: 80px; }
.support-header { text-align: center; max-width: 900px; margin: 0 auto 50px; }
.support-header h2 { font-size: 20px; line-height: 1.6; color: #fff; font-weight: bold; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.support-card { background: #fff; border-radius: 15px; padding: 30px 20px; text-align: center; color: #333; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; }
.support-card:hover { transform: translateY(-10px); }
.icon-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.ic-blue { background: linear-gradient(135deg, #4facfe, #00f2fe); } .ic-cyan { background: linear-gradient(135deg, #43e97b, #38f9d7); } .ic-purple { background: linear-gradient(135deg, #a18cd1, #fbc2eb); } .ic-green { background: linear-gradient(135deg, #fa709a, #fee140); }
.support-card h3 { font-size: 16px; font-weight: bold; color: #0072ff; }

/* =========================================
   游戏区域：1+2+3 特殊布局
   ========================================= */
.game-section { padding: 40px 0 100px 0; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); margin-top: 20px; border-radius: 30px; position: relative; z-index: 5; }

/* 核心 Grid：6列布局 */
.game-grid-special {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6列 */
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 布局控制 */
.span-full { grid-column: span 6; } /* 占满6列 (1个) */
.span-half { grid-column: span 3; } /* 占3列 (2个) */
.span-third { grid-column: span 2; } /* 占2列 (3个) */

.game-card { border-radius: 15px; padding: 25px; position: relative; overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: center; color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.game-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 2; }
.card-bg-img { position: absolute; right: -20px; bottom: -20px; height: 110%; width: auto; opacity: 0.9; z-index: 1; pointer-events: none; }
.card-content { position: relative; z-index: 2; max-width: 70%; }
.card-title { font-size: 24px; font-weight: 800; margin-bottom: 5px; display: flex; align-items: center; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.card-title img { height: 30px; margin-right: 10px; background: #fff; border-radius: 50%; padding: 2px; }
.card-desc { font-size: 14px; opacity: 0.9; margin-bottom: 2px; }
.card-sub { font-size: 12px; margin-top: 8px; margin-bottom: 15px; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.2); display: inline-block; padding: 2px 8px; border-radius: 4px; }
.btn-gold { background: linear-gradient(180deg, #F9E267 0%, #E8B62C 100%); border: none; color: #583602; font-weight: bold; padding: 8px 20px; border-radius: 25px; cursor: pointer; font-size: 14px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); display: inline-block; }
.btn-gold:hover { transform: scale(1.05); background: linear-gradient(180deg, #fff0a5 0%, #ffc83d 100%); }
.btn-full { width: 100%; text-align: center; } /* 下面3个小卡片的按钮全宽 */

.bg-jy { background: linear-gradient(135deg, #3B2667 0%, #BC78EC 100%); } 
.bg-ky { background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%); } 
.bg-hth { background: linear-gradient(135deg, #4c11ac 0%, #8c52ff 100%); }

footer { background: #111; color: #555; text-align: center; padding: 30px; font-size: 12px; }

/* 手机适配 */
@media (max-width: 900px) {
    .hero-container { flex-direction: column; align-items: center; gap: 30px; text-align: center; }
    .hero-tg-grid { width: 100%; max-width: 400px; margin: 0 auto; }
    .phone-mockup { width: 70%; max-width: 300px; margin-top: 0; }
    .nav-links { display: none; }
    .game-grid-9, .support-grid { grid-template-columns: 1fr !important; }
    .game-card:last-child { grid-column: auto; }
    .table-wrapper { overflow-x: auto; }
    
    /* 手机端 1+2+3 全部变单列 */
    .game-grid-special { grid-template-columns: 1fr !important; }
    .span-full, .span-half, .span-third { grid-column: auto !important; }
}


/* =========================================
   页面整体美化统一：深色渐变 + 毛玻璃
   ========================================= */
:root{
  --page-bg-1:#0b1020;
  --page-bg-2:#121c39;
  --page-bg-3:#1b2a57;
  --glass-bg:rgba(255,255,255,0.08);
  --glass-border:rgba(255,255,255,0.14);
  --text-main:#ffffff;
  --text-soft:rgba(255,255,255,0.78);
  --gold-1:#f9e267;
  --gold-2:#e8b62c;
  --blue-1:#4facfe;
  --blue-2:#00c6ff;
  --purple-1:#6d5dfc;
  --purple-2:#8b5cf6;
  --shadow-soft:0 14px 40px rgba(0,0,0,0.25);
}

body{
  background:
    radial-gradient(circle at top left, rgba(79,172,254,0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(139,92,246,0.18), transparent 24%),
    linear-gradient(180deg, var(--page-bg-1) 0%, var(--page-bg-2) 45%, var(--page-bg-3) 100%);
  color: var(--text-main);
}

.sticky-nav{
  background: rgba(10,18,40,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.hero-section{
  padding-top: 45px !important;
  min-height: 70vh;
}
.subtitle,
.case-card,
.support-section,
.game-section{
  box-shadow: var(--shadow-soft);
}

.subtitle{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-title-center h2{
  letter-spacing: 0.5px;
}

.case-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.case-story-content{
  background: rgba(7,12,24,0.34);
}

.support-section{
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.game-section{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

footer{
  background: rgba(7,10,20,0.9);
  color: rgba(255,255,255,0.45);
}

/* --- 从 HTML 拆出的原内联样式 --- */
/* 保持原有样式 */
        .hero-section { padding-top: 40px !important; min-height: 70vh; }

        /* --- 游戏区域布局优化 CSS --- */
        .game-grid-special {
            display: grid;
            grid-template-columns: repeat(6, 1fr); 
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .span-full { grid-column: span 6; }
        .span-half { grid-column: span 3; }
        .span-third { grid-column: span 2; }

        .game-card {
            border-radius: 15px;
            padding: 25px;
            position: relative;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .game-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 2; }

        .card-content { position: relative; z-index: 2; width: 100%; text-align: left; }
        .span-third .card-content { text-align: center; }
        
        .card-title { 
            font-size: 24px; font-weight: 800; margin-bottom: 5px; 
            display: flex; align-items: center; 
            text-shadow: 0 2px 4px rgba(0,0,0,0.2); 
        }
        .span-third .card-title { justify-content: center; }

        .card-title img { height: 30px; margin-right: 10px; background: #fff; border-radius: 50%; padding: 2px; }
        .card-desc { font-size: 14px; opacity: 0.9; margin-bottom: 2px; }
        
        /* 去掉边框的描述样式 */
        .card-sub { 
            font-size: 12px; 
            margin-top: 5px; 
            margin-bottom: 15px; 
            color: rgba(255,255,255,0.7); 
            background: none; 
            border: none; 
            display: block; 
            padding: 0; 
        }

        .btn-full { width: 100%; display: block; margin-top: 5px; }

        /* =========================================
           新增：扶持活动卡片 (毛玻璃高级感)
           ========================================= */
        .support-card { 
            /* 背景改为半透明深色，实现毛玻璃 */
            background: rgba(255, 255, 255, 0.05); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1); /* 细微发光边框 */
            
            border-radius: 15px; 
            padding: 30px 20px; 
            text-align: center; 
            color: #fff; /* 文字改为白色 */
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
            transition: all 0.3s ease; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            min-height: 200px; 
            cursor: pointer; /* 鼠标变手型 */
        }
        
        /* 鼠标悬停效果：发光 + 上浮 */
        .support-card:hover { 
            transform: translateY(-10px); 
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .support-card h3 { 
            font-size: 18px; 
            font-weight: bold; 
            color: #fff; /* 标题白色 */
            margin-top: 15px;
            margin-bottom: 10px;
        }

        /* 点击引导文字 */
        .click-guide {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 5px;
            transition: color 0.3s;
        }
        .support-card:hover .click-guide {
            color: #F9E267; /* 悬停变金色 */
        }

        @media (max-width: 900px) {
            .game-grid-special { grid-template-columns: 1fr !important; }
            .span-full, .span-half, .span-third { grid-column: auto !important; }
            .card-content { text-align: center; }
            .card-title { justify-content: center; }
        }

/* =========================================
   顶部合作页模块（合并自上方页面）
   ========================================= */
.coop-top-section{
  position: relative;
  z-index: 4;
  padding: 26px 0 8px;
}

.coop-page-card{
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.coop-page-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 36%),
    linear-gradient(180deg, transparent 50%, rgba(79,172,254,0.06) 100%);
  pointer-events:none;
}

.coop-hero{
  position: relative;
  overflow: hidden;
  padding: 54px 36px 44px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.11), transparent 24%),
    linear-gradient(135deg, #283b90 0%, #4932b8 45%, #0ea5e9 100%);
}

.coop-hero::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-95px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  filter: blur(5px);
}

.coop-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.16);
  margin-bottom:18px;
}

.coop-hero h1{
  margin:0;
  font-size:clamp(30px, 4.1vw, 50px);
  line-height:1.28;
  font-weight:900;
  letter-spacing:0.2px;
  text-shadow:0 6px 18px rgba(0,0,0,0.18);
}

.coop-hero-sub{
  margin:16px auto 0;
  max-width:820px;
  font-size:17px;
  line-height:1.9;
  color:rgba(255,255,255,0.92);
}

.coop-content{
  position:relative;
  z-index:1;
  padding:34px 40px 40px;
}

.coop-summary-bar{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:-36px;
  margin-bottom:28px;
  position:relative;
  z-index:2;
}

.coop-summary-item{
  padding:18px 18px 16px;
  border-radius:18px;
  background: rgba(10,18,40,0.60);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.coop-summary-item .small{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.66);
  margin-bottom:8px;
  font-weight:700;
  letter-spacing:0.4px;
}

.coop-summary-item b{
  font-size:18px;
  line-height:1.55;
  color:#fff;
}

.coop-cta-inline-wrap{ margin:0 0 30px; }

.coop-cta-inline{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,0.85fr);
  gap:22px;
  align-items:stretch;
  padding:24px 26px;
  border-radius:24px;
  background: linear-gradient(135deg, rgba(79,172,254,0.10) 0%, rgba(109,93,252,0.10) 45%, rgba(14,165,233,0.10) 100%);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 38px -28px rgba(0,0,0,0.4);
}

.coop-cta-inline-kicker{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#c7d2fe;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  letter-spacing:0.5px;
}

.coop-cta-inline-title{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.2;
  font-weight:900;
  color:#fff;
}

.coop-cta-inline-desc{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,0.78);
}

.coop-cta-inline-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:22px 20px;
  border-radius:20px;
  background: rgba(7,12,24,0.30);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.coop-cta-inline-btn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:16px 20px;
  border-radius:999px;
  background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
  color:#fff;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 18px 30px -18px rgba(255,65,108,0.75);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  border:none;
  cursor:pointer;
}

.coop-cta-inline-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 22px 36px -18px rgba(255,65,108,0.88);
  filter: brightness(1.06);
}

.coop-cta-inline-contact-title{
  margin:16px 0 12px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,0.64);
}

.coop-cta-inline-tags{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.coop-section-title{
  margin:0 0 18px;
  font-size:24px;
  font-weight:900;
  color:#fff;
}

.coop-section-desc{
  margin:-4px 0 24px;
  color:rgba(255,255,255,0.76);
  font-size:15px;
  line-height:1.9;
}

.coop-features-list{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:34px;
}

.coop-line{
  margin:0;
  padding:20px 22px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 10px 28px -24px rgba(0,0,0,0.4);
  font-size:16px;
  line-height:1.9;
  color:rgba(255,255,255,0.78);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.coop-line:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 36px -24px rgba(0,0,0,0.55);
  border-color:rgba(201,210,254,0.35);
}

.coop-label{
  display:inline-block;
  margin-right:10px;
  color:#8ec5ff;
  font-weight:800;
  font-size:17px;
}

.coop-red{
  color:#ff8f8f;
  font-weight:700;
}

.coop-highlight-box{
  padding:24px;
  margin-bottom:34px;
  border-radius:22px;
  background: linear-gradient(135deg, rgba(79,172,254,0.10) 0%, rgba(109,93,252,0.09) 50%, rgba(14,165,233,0.10) 100%);
  border:1px solid rgba(255,255,255,0.12);
}

.coop-highlight-box h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.4;
  color:#fff;
}

.coop-highlight-box p{
  margin:0;
  font-size:15px;
  line-height:1.95;
  color:rgba(255,255,255,0.78);
}

.coop-copy-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 18px;
  background: rgba(255,255,255,0.10);
  color:#fff;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:all .2s ease;
  box-shadow:0 10px 24px -22px rgba(0,0,0,0.35);
  justify-content:center;
  width:100%;
  margin:0;
}

.coop-copy-tag:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.coop-copy-tag span{
  color:#8ec5ff;
  font-size:13px;
  font-weight:700;
}

.coop-footer-notes{
  margin-top:28px;
  text-align:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.05) 100%);
  border:1px solid rgba(255,255,255,0.10);
  padding:20px 18px;
  border-radius:18px;
}

.coop-footer-notes p{
  margin:8px 0;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,0.64);
}

.coop-footer-notes p strong{ color:#fff; }

.chat-guide-anchor{
  position:fixed;
  right:22px;
  bottom:22px;
  width:78px;
  height:78px;
  pointer-events:none;
  z-index:2147483000;
  opacity:0;
  transform:scale(0.82);
  transition:opacity .28s ease, transform .28s ease;
}

.chat-guide-anchor.show{
  opacity:1;
  transform:scale(1);
}

.chat-guide-ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:4px solid rgba(255, 72, 72, 0.95);
  box-shadow:
    0 0 0 8px rgba(255,72,72,0.18),
    0 0 24px rgba(255,72,72,0.35);
  animation:guidePulse 1.15s infinite;
}

.chat-guide-tip{
  position:absolute;
  right:88px;
  bottom:12px;
  min-width:220px;
  max-width:280px;
  padding:12px 16px;
  border-radius:14px;
  background: rgba(15, 23, 42, 0.94);
  color:#fff;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
  box-shadow:0 18px 38px -18px rgba(0,0,0,0.48);
  white-space:nowrap;
}

.chat-guide-tip::after{
  content:"";
  position:absolute;
  right:-8px;
  bottom:18px;
  width:14px;
  height:14px;
  background: rgba(15, 23, 42, 0.94);
  transform: rotate(45deg);
  border-radius:2px;
}

.chat-guide-tip small{
  display:block;
  margin-top:2px;
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,0.78);
  white-space:normal;
}

@keyframes guidePulse{
  0%{ transform:scale(0.92); opacity:0.95; }
  70%{ transform:scale(1.16); opacity:0.32; }
  100%{ transform:scale(1.22); opacity:0; }
}

@media (max-width: 900px){
  .coop-summary-bar{
    grid-template-columns:1fr;
    margin-top:-24px;
  }
  .coop-content{ padding:28px 22px 28px; }
  .coop-hero{ padding:42px 22px 34px; }
  .coop-cta-inline{ grid-template-columns:1fr; }
  .coop-cta-inline-title{ font-size:24px; }
}

@media (max-width: 768px){
  .coop-top-section{ padding-top:16px; }
  .coop-page-card{ border-radius:20px; }
  .coop-hero h1{ font-size:30px; }
  .coop-hero-sub{ font-size:15px; line-height:1.85; }
  .coop-section-title{ font-size:22px; }
  .coop-line{ padding:16px; font-size:15px; }
  .coop-label{
    display:block;
    margin-right:0;
    margin-bottom:4px;
    font-size:16px;
  }
  .chat-guide-anchor{
    right:16px;
    bottom:16px;
    width:74px;
    height:74px;
  }
  .chat-guide-tip{
    right:0;
    bottom:90px;
    min-width:180px;
    max-width:220px;
    white-space:normal;
  }
  .chat-guide-tip::after{
    right:22px;
    bottom:-7px;
  }
}


/* === 联系方式重排优化 === */
.btn-orange { background: linear-gradient(135deg, #ff9f43, #ff6b00); }
.hero-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-contact-grid .unified-btn {
  min-height: 58px;
  border-radius: 18px;
  justify-content: flex-start;
  padding: 16px 18px;
  background-size: 150% 150%;
}
.hero-contact-grid .unified-btn span {
  letter-spacing: .2px;
}
.coop-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.coop-copy-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 88px;
  padding: 16px 18px;
}
.coop-copy-tag strong {
  font-size: 13px;
  line-height: 1;
  color: #8ec5ff;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.coop-copy-tag em {
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.coop-copy-tag span {
  font-size: 12px;
}
@media (max-width: 768px) {
  .hero-contact-grid,
  .coop-contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-contact-grid .unified-btn {
    justify-content: center;
  }
  .coop-copy-tag {
    min-height: 76px;
  }
}
