/* ============================================================
   凉嗖嗖空调服务网 liangsousou.cn 全局样式表
   基于易急速样式框架，增加项目特有样式
   版本：V1.0
   最后更新：2026-08-10
   ============================================================ */

/* ========== 一、CSS 变量与重置 ========== */
:root {
    --primary: #0d37f0;
    --primary-dark: #0a2dc7;
    --secondary: #f59e0b;
    --success: #10b981;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #6b7280;
    --light-gray: #e5e7eb;
    --wechat-green: #07C160;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #f9fafb;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 二、全局链接样式 ========== */
a {
    text-decoration: none;
}

/* ========== 三、通用组件 ========== */

/* ---- 按钮 ---- */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 55, 240, 0.3);
}

.btn-outline-card {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-outline-card:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-light {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* ---- 卡片 ---- */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.brand-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
}
.brand-card:hover {
    transform: translateY(-5px);
}
.brand-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.brand-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.brand-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}
.brand-cities {
    font-size: 0.85rem;
    color: #475569;
    background: #f8fafc;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    display: inline-block;
}

/* ---- 城市展示 ---- */
.city-showcase {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #e5e7eb;
}
.city-showcase h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.city-showcase-desc {
    color: #6b7280;
    margin-bottom: 1.5rem;
}
.city-showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.city-active {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.6rem 1.6rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
}
.city-active i {
    color: #10b981;
    margin-right: 6px;
}
.city-more {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ---- 高亮框 ---- */
.highlight-box {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid #0d37f0;
    margin: 1rem 0;
}
.highlight-box p {
    margin: 0;
    color: #1e293b;
}
.highlight-box i {
    color: #0d37f0;
    margin-right: 6px;
}
.highlight-box strong {
    color: #0d37f0;
}

.highlight-box-warning {
    background: #fffbeb;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid #f59e0b;
    margin: 1rem 0;
}
.highlight-box-warning p {
    margin: 0;
    color: #1e293b;
}
.highlight-box-warning i {
    color: #f59e0b;
    margin-right: 6px;
}
.highlight-box-warning strong {
    color: #92400e;
}

/* ---- 更新时间 ---- */
.update-time {
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px dashed #e5e7eb;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ---- 签名 ---- */
.signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    text-align: right;
    font-size: 0.95rem;
    color: #475569;
}
.signature .company {
    font-weight: 600;
    color: #1e293b;
}

/* ---- 返回链接 ---- */
.back-links {
    text-align: center;
    margin: 0 0 3rem;
}
.back-links a {
    color: #0d37f0;
    text-decoration: none;
    font-weight: 500;
}
.back-links a:hover {
    text-decoration: underline;
}
.back-links .sep {
    color: #94a3b8;
    margin: 0 10px;
}

/* ---- 业务声明框 ---- */
.business-declare {
    background: #f0fdf4;
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    border-left: 4px solid #10b981;
    margin: 1rem 0 1.8rem;
}
.business-declare p {
    margin: 0.3rem 0;
    color: #1e293b;
}
.business-declare strong {
    color: #0d37f0;
}
.business-declare .highlight {
    background: #fef3c7;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    color: #92400e;
}

/* ---- 信任背书 ---- */
.trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.trust-badge {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e5e7eb;
}
.trust-badge i {
    font-size: 1.8rem;
    color: #0d37f0;
    width: 40px;
    text-align: center;
}
.trust-badge div {
    display: flex;
    flex-direction: column;
}
.trust-badge strong {
    font-size: 0.9rem;
    color: #1e293b;
}
.trust-badge span {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ---- 面包屑导航 ---- */
.breadcrumb {
    padding: 0.8rem 0;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}
.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    color: #6b7280;
}
.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 0.3rem;
    color: #9ca3af;
}
.breadcrumb a {
    color: #0d37f0;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
    color: #1e293b;
    font-weight: 500;
}

/* ---- 页面内页 Hero ---- */
.page-hero {
    background: linear-gradient(135deg, #0a2dc7 0%, #0d37f0 100%);
    color: white;
    padding: 2.5rem 0 2.5rem;
    text-align: center;
}
.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}
.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.page-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.section-title-center {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* ========== 四、头部导航 ========== */
.header {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    align-items: center;
}
.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-external {
    color: #0d37f0;
    font-weight: bold;
}

/* ========== 五、Hero 主视觉 ========== */
.hero {
    background: linear-gradient(135deg, #0a2dc7 0%, #0d37f0 100%);
    color: white;
    padding: 2.5rem 0 3rem;
    text-align: center;
}
.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}
.hero .subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 0.3rem;
}
.hero .hero-phone {
    display: inline-block;
    margin-top: 1.2rem;
    background: var(--wechat-green);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(7, 193, 96, 0.4);
    transition: transform 0.25s, box-shadow 0.25s;
}
.hero .hero-phone:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(7, 193, 96, 0.5);
}
.hero .hero-phone i {
    margin-right: 10px;
}
.hero .hero-phone-small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.85;
}
.hero .hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}
.hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.hero-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero-cta-phone {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.hero-cta-phone:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.hero-cta-wechat {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.hero-cta-wechat:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ========== 六、页脚 ========== */
.footer {
    background: #0f172a;
    color: white;
    padding: 2rem 0 1.5rem;
    margin-top: 2rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-container h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}
.footer-container p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}
.footer-contact {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.8;
}
.footer-contact i {
    width: 20px;
    color: #64748b;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-info {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-info .beianhao {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ========== 七、悬浮电话按钮 ========== */
.floating-phone-wrap {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    pointer-events: none;
}
.floating-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0d37f0;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(13, 55, 240, 0.45);
    pointer-events: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.floating-phone-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(13, 55, 240, 0.55);
}
.floating-phone-btn:active {
    transform: scale(0.94);
}
.floating-phone-btn::before,
.floating-phone-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(13, 55, 240, 0.35);
    transform: translate(-50%, -50%);
    animation: phoneRipple 2.2s ease-out infinite;
    z-index: -1;
    pointer-events: none;
}
.floating-phone-btn::after {
    animation-delay: 1.1s;
    background: rgba(13, 55, 240, 0.2);
}
@keyframes phoneRipple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.9;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* ========== 八、首页专用样式 ========== */
.qualification-highlight {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 28px;
    padding: 2rem 2rem;
    margin: 2rem 0;
    border: 2px solid #f59e0b;
}
.qualification-highlight h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #1e293b;
}
.qualification-highlight .section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* 公安备案公示 */
.ba-section {
    background: #fefce8;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #f59e0b;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ba-section .ba-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #1e293b;
}
.ba-section .ba-left i {
    font-size: 1.4rem;
    color: #f59e0b;
}
.ba-section .ba-left strong {
    color: #92400e;
}
.ba-section .ba-right {
    font-size: 0.8rem;
    color: #6b7280;
}

/* 无直营店声明 */
.no-store-declare {
    background: #f0f7ff;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #0d37f0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.no-store-declare i {
    font-size: 1.4rem;
    color: #0d37f0;
    flex-shrink: 0;
}
.no-store-declare p {
    margin: 0;
    font-size: 0.92rem;
    color: #1e293b;
}
.no-store-declare strong {
    color: #0d37f0;
}

/* 用户安全提示 */
.safety-tip {
    background: #f0fdf4;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #10b981;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.safety-tip i {
    font-size: 1.4rem;
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}
.safety-tip p {
    margin: 0;
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.7;
}
.safety-tip strong {
    color: #065f46;
}

/* 服务卡片网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}
.service-card {
    background: white;
    border-radius: 20px;
    padding: 1.6rem 1.2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.service-card .s-icon {
    font-size: 2.2rem;
    color: #0d37f0;
    margin-bottom: 0.4rem;
}
.service-card h3 {
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
}
.service-card p {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0;
}
.service-card .service-area {
    font-size: 0.75rem;
    color: #0d37f0;
    margin-top: 0.4rem;
    background: #eff6ff;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* 区域标签 */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1rem 0 1.5rem;
}
.area-tags span {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}
.area-tags .core {
    background: #fef3c7;
    color: #92400e;
    font-weight: 600;
}

/* 信任网格 */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.trust-item {
    background: white;
    border-radius: 16px;
    padding: 1rem 0.8rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}
.trust-item i {
    font-size: 1.6rem;
    color: #0d37f0;
    margin-bottom: 0.3rem;
}
.trust-item h4 {
    font-size: 0.92rem;
    color: #1e293b;
    margin-bottom: 0.2rem;
}
.trust-item p {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 0;
}

/* 服务流程 */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.flow-step {
    text-align: center;
    padding: 0.8rem 0.3rem;
}
.flow-step .step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #0d37f0;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 40px;
    margin-bottom: 0.3rem;
}
.flow-step h4 {
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 0.2rem;
}
.flow-step p {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 0;
}

/* 常见问题 */
.faq-list {
    max-width: 800px;
    margin: 1.5rem auto 2.5rem;
}
.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
    border: 1px solid #e5e7eb;
}
.faq-q {
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
}
.faq-q i {
    color: #0d37f0;
    font-size: 0.85rem;
}
.faq-a {
    color: #475569;
    font-size: 0.88rem;
    margin-top: 0.3rem;
    padding-left: 1rem;
    border-left: 3px solid #e5e7eb;
}

/* 底部 CTA */
.cta-bottom {
    background: linear-gradient(135deg, #0a2dc7 0%, #0d37f0 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin: 2rem 0 3rem;
    text-align: center;
    color: white;
}
.cta-bottom h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.cta-bottom p {
    opacity: 0.85;
    margin-bottom: 1.2rem;
}
.cta-bottom .btn-call-big {
    display: inline-block;
    background: var(--wechat-green);
    color: white;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(7, 193, 96, 0.4);
    transition: transform 0.25s;
}
.cta-bottom .btn-call-big:hover {
    transform: scale(1.04);
}
.cta-bottom .btn-call-big i {
    margin-right: 8px;
}

/* 价格表 */
.price-section {
    background: white;
    border-radius: 24px;
    padding: 2rem 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.price-section h2 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-section h2 i {
    color: #0d37f0;
}
.price-section .price-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #e5e7eb;
}
.price-section .price-note i {
    color: #10b981;
    margin-right: 4px;
}
.price-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.price-section table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}
.price-section table td {
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.price-section table tr:last-child td {
    border-bottom: none;
}
.price-section table .price-col {
    font-weight: 600;
    color: #0d37f0;
    white-space: nowrap;
}
.price-section .price-footer {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px dashed #e5e7eb;
    font-size: 0.82rem;
    color: #030303;
}
.price-section .price-footer i {
    color: #f59e0b;
    margin-right: 4px;
}

/* ========== 九、服务项目页样式 ========== */
.service-detail {
    background: white;
    border-radius: 24px;
    padding: 2rem 2.2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}
.service-detail:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-detail .sd-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0.6rem;
}
.service-detail .sd-header i {
    font-size: 2rem;
    color: #0d37f0;
    width: 44px;
    text-align: center;
}
.service-detail .sd-header h2 {
    font-size: 1.3rem;
    color: #1e293b;
    margin: 0;
}
.service-detail .sd-header .sd-badge {
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-left: auto;
}
.service-detail p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #334155;
    margin: 0.6rem 0;
}
.service-detail ul {
    padding-left: 1.8rem;
    margin: 0.6rem 0 0.8rem;
}
.service-detail ul li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 0.2rem;
}
.service-detail .sd-area {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #1e293b;
    border-left: 3px solid #0d37f0;
}
.service-detail .sd-area i {
    color: #0d37f0;
    margin-right: 6px;
}
.service-detail .sd-cta {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.service-detail .sd-cta .btn-call {
    display: inline-block;
    background: var(--wechat-green);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.service-detail .sd-cta .btn-call:hover {
    background: #06ad56;
}
.service-detail .sd-cta .btn-call i {
    margin-right: 6px;
}
.service-detail .sd-cta .btn-more {
    color: #0d37f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ========== 十、服务区域页样式 ========== */
.quyu-card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem 2rem;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}
.quyu-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.quyu-card .q-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}
.quyu-card .q-header i {
    font-size: 1.4rem;
    color: #0d37f0;
    width: 28px;
}
.quyu-card .q-header h2 {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 0;
}
.quyu-card .q-header .q-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.6rem;
    border-radius: 30px;
    font-weight: 600;
    margin-left: auto;
}
.quyu-card .q-header .q-badge.core {
    background: #fef3c7;
    color: #92400e;
}
.quyu-card .q-header .q-badge.primary {
    background: #dbeafe;
    color: #1e40af;
}
.quyu-card .q-header .q-badge.normal {
    background: #f1f5f9;
    color: #64748b;
}
.q-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
}
.q-tags .tag {
    background: #f8fafc;
    color: #334155;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.78rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}
.q-tags .tag:hover {
    background: #eff6ff;
    border-color: #0d37f0;
    color: #1e40af;
}
.q-tags .tag-road {
    background: #f0f7ff;
    border-color: #bfdbfe;
}
.q-tags .tag-xq {
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.q-sub {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #e5e7eb;
}

/* ========== 十一、关于我们页样式 ========== */
.about-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 2.2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}
.about-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.about-card h2 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-card h2 i {
    color: #0d37f0;
}
.about-card p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #334155;
    margin: 0.6rem 0;
}
.about-card ul {
    padding-left: 1.8rem;
    margin: 0.6rem 0 1rem;
}
.about-card ul li {
    font-size: 0.93rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 0.3rem;
}
.about-card .highlight-box {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid #0d37f0;
    margin: 1rem 0;
}
.about-card .highlight-box p {
    margin: 0;
    color: #1e293b;
}
.about-card .highlight-box i {
    color: #0d37f0;
    margin-right: 6px;
}
.about-card .ba-detail {
    background: #fefce8;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid #f59e0b;
    margin: 1rem 0;
}
.about-card .ba-detail p {
    margin: 0.2rem 0;
    font-size: 0.92rem;
    color: #1e293b;
}
.about-card .ba-detail strong {
    color: #92400e;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
    margin: 1rem 0;
}
.info-grid .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #334155;
    padding: 0.3rem 0;
}
.info-grid .info-item i {
    color: #0d37f0;
    width: 20px;
    text-align: center;
}

/* 核心价值网格 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.value-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
}
.value-item:hover {
    transform: translateY(-3px);
}
.value-item .v-icon {
    font-size: 2.4rem;
    color: #0d37f0;
    margin-bottom: 0.5rem;
}
.value-item h4 {
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
}
.value-item p {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0;
}

/* 业务架构 */
.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.arch-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.arch-item i {
    font-size: 1.6rem;
    color: #0d37f0;
    margin-top: 2px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}
.arch-item div {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.7;
}
.arch-item div strong {
    color: #1e293b;
    display: block;
    font-size: 1rem;
}

/* ========== 十二、商家入驻表单页样式 ========== */
.join-form {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 640px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}
.join-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    color: #1e293b;
}
.join-form .form-desc {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1e293b;
    font-size: 0.95rem;
}
.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d37f0;
    box-shadow: 0 0 0 3px rgba(13,55,240,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-group .hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}
.form-submit {
    text-align: center;
    margin-top: 2rem;
}
.form-submit .btn-primary {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.1rem;
    cursor: pointer;
}
.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}
.form-note a {
    color: #0d37f0;
    text-decoration: underline;
}

/* ========== 十三、商家页面特有样式 ========== */

/* 商家版本标签 */
.version-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.version-tag.free {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.version-tag.paid {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}
.version-tag.model {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* 商家导航栏（付费四页） */
.shop-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.8rem 0;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 65px;
    z-index: 999;
}
.shop-nav .container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.shop-nav a {
    color: #334155;
    font-weight: 500;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
    font-size: 0.95rem;
}
.shop-nav a:hover,
.shop-nav a.active {
    color: #0d37f0;
    border-bottom-color: #0d37f0;
}

/* 商家信息卡片（单页/付费首页共用） */
.shop-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
}
.shop-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.shop-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #0d37f0;
    overflow: hidden;
    flex-shrink: 0;
}
.shop-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-info {
    flex: 1;
    min-width: 200px;
}
.shop-info h1 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.shop-info .shop-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}
.shop-info .shop-meta i {
    margin-right: 4px;
    color: #0d37f0;
    width: 16px;
}
.shop-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}
.shop-contact .btn-call {
    background: #07C160;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.shop-contact .btn-call:hover {
    background: #06ad56;
}
.shop-contact .btn-wechat {
    background: #f0f7ff;
    color: #0d37f0;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #bfdbfe;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 服务关键词标签 */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}
.service-tags .tag {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #bfdbfe;
}

/* 商家详情区块（付费四页） */
.shop-section {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}
.shop-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.shop-section h2 i {
    color: #0d37f0;
}
.shop-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #334155;
}
.shop-section ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}
.shop-section ul li {
    margin-bottom: 0.4rem;
    color: #334155;
}

/* 样板间提示条 */
.model-notice {
    background: #fef3c7;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #92400e;
    border: 1px solid #fcd34d;
}
.model-notice i {
    margin-right: 6px;
}

/* ========== 十四、费用说明页表格 ========== */
.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}
.pricing-card.featured {
    border: 2px solid #f59e0b;
    position: relative;
}
.pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d37f0;
    margin: 1rem 0;
}
.pricing-card .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
}
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}
.pricing-card ul li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.pricing-card ul li i.fa-check {
    color: #10b981;
}
.pricing-card ul li i.fa-times {
    color: #cbd5e1;
}
.pricing-card .btn-primary,
.pricing-card .btn-outline-card {
    width: 100%;
    text-align: center;
}

/* ========== 十五、反馈表单页样式 ========== */
.feedback-form {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 640px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}
.feedback-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.feedback-form .form-desc {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}
.feedback-info {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #1e293b;
}

/* ========== 十六、通用响应式适配 ========== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero {
        padding: 2rem 0;
    }
    .hero .hero-phone {
        font-size: 1.2rem;
        padding: 0.7rem 1.8rem;
    }
    .page-hero h1 {
        font-size: 1.6rem;
    }
    .mode-grid {
        grid-template-columns: 1fr;
    }
    .coop-highlight-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .trust {
        grid-template-columns: 1fr;
    }
    .cta-bottom {
        padding: 2rem 1.2rem;
    }
    .cta-bottom h3 {
        font-size: 1.4rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .floating-phone-wrap {
        right: 8px;
        bottom: 8px;
    }
    .floating-phone-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    .legal-content {
        padding: 1.8rem 1.5rem;
    }
    .legal-content h2 {
        font-size: 1.3rem;
    }
    .legal-content p,
    .legal-content ul li {
        font-size: 0.9rem;
    }
    .privacy-content {
        padding: 1.8rem 1.5rem;
    }
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    .privacy-content p,
    .privacy-content ul li {
        font-size: 0.9rem;
    }
    .about-card {
        padding: 1.5rem 1.2rem;
    }
    .about-card h2 {
        font-size: 1.2rem;
    }
    .arch-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .qualification-highlight {
        padding: 1.5rem 1.2rem;
    }
    .qualification-highlight h2 {
        font-size: 1.3rem;
    }
    .qualification-grid {
        grid-template-columns: 1fr;
    }
    .no-store-declare {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .safety-tip {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .flow-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ba-section {
        flex-direction: column;
        text-align: center;
    }
    .price-section {
        padding: 1.5rem 1.2rem;
    }
    .price-section table {
        font-size: 0.8rem;
    }
    .price-section table th,
    .price-section table td {
        padding: 0.4rem 0.5rem;
    }
    .page-hero h1 {
        font-size: 1.5rem;
    }
    .service-detail {
        padding: 1.5rem 1.2rem;
    }
    .service-detail .sd-header {
        flex-wrap: wrap;
    }
    .service-detail .sd-header .sd-badge {
        margin-left: 0;
    }
    .service-detail .sd-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .service-detail .sd-cta .btn-call {
        text-align: center;
    }
    .service-detail .sd-cta .btn-more {
        text-align: center;
    }
    .quyu-card {
        padding: 1.2rem 1rem;
    }
    .quyu-card .q-header {
        flex-wrap: wrap;
    }
    .quyu-card .q-header .q-badge {
        margin-left: 0;
    }
    .q-tags .tag {
        font-size: 0.72rem;
        padding: 0.15rem 0.5rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .pricing-table {
        grid-template-columns: 1fr;
    }
    .shop-card-header {
        flex-direction: column;
        text-align: center;
    }
    .shop-info {
        text-align: center;
    }
    .shop-info h1 {
        justify-content: center;
    }
    .shop-contact {
        justify-content: center;
    }
    .shop-nav .container {
        gap: 1rem;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-cta a {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 1.3rem;
    }
    .hero h1 {
        font-size: 1.2rem;
    }
    .hero p {
        font-size: 0.92rem;
    }
    .hero .hero-phone {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    .floating-phone-wrap {
        right: 6px;
        bottom: 6px;
    }
    .floating-phone-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .legal-content {
        padding: 1.2rem 1rem;
    }
    .legal-content h2 {
        font-size: 1.1rem;
    }
    .privacy-content {
        padding: 1.2rem 1rem;
    }
    .privacy-content h2 {
        font-size: 1.1rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-card {
        padding: 1rem 0.8rem;
    }
    .about-card h2 {
        font-size: 1.1rem;
    }
    .about-card p,
    .about-card ul li {
        font-size: 0.88rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .flow-grid {
        grid-template-columns: 1fr;
    }
    .area-tags span {
        font-size: 0.75rem;
        padding: 0.2rem 0.7rem;
    }
    .price-section {
        padding: 1rem 0.8rem;
    }
    .price-section table {
        font-size: 0.72rem;
    }
    .price-section table th,
    .price-section table td {
        padding: 0.3rem 0.3rem;
    }
    .price-section .price-col {
        font-size: 0.78rem;
    }
    .page-hero h1 {
        font-size: 1.2rem;
    }
    .service-detail {
        padding: 1rem 0.8rem;
    }
    .service-detail .sd-header h2 {
        font-size: 1.1rem;
    }
    .quyu-card .q-header h2 {
        font-size: 1rem;
    }
    .join-form,
    .feedback-form {
        padding: 1.5rem 1.2rem;
    }
    .pricing-card {
        padding: 1.5rem 1rem;
    }
}
  /* 补充入驻表单内的服务标签样式（确保与整体一致） */
  .service-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.service-checkbox:hover {
    border-color: #0d37f0;
    background: #eff6ff;
}
.service-checkbox input[type="checkbox"] {
    margin: 0;
    width: 15px;
    height: 15px;
    accent-color: #0d37f0;
}
.service-checkbox input[type="checkbox"]:disabled + span {
    opacity: 0.5;
    cursor: not-allowed;
}
/* 修复disabled后hover效果 */
.service-checkbox:has(input:disabled) {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.service-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.service-checkbox:hover {
  border-color: #0d37f0;
  background: #eff6ff;
}
.service-checkbox input[type="checkbox"] {
  margin: 0;
  width: 15px;
  height: 15px;
  accent-color: #0d37f0;
}
.service-checkbox input[type="checkbox"]:disabled + span {
  opacity: 0.5;
  cursor: not-allowed;
}
.service-checkbox:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
