﻿@charset "utf-8";

        /* 基础重置与全局变量继承 */
        :root {
            --primary-green: #49ac35;
            --dark-green: #003429;
            --primary-red: #c00941;
            --accent-red: #eb5767;
            --danger-red: #f44336;
            --dark-red: #8b0030;
            --light-bg: #fdf6f7;
            --white: #ffffff;
            --text-dark: #333;
            --text-gray: #666;
            --text-light: #da90a6;
            --border-color: rgba(192, 9, 65, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
        }
        a { text-decoration: none; }
        ul { list-style: none; }
        img { max-width: 100%; }
        html { scroll-behavior: smooth; }

        /* 导航栏样式 (模拟小程序风格) */
        .case-hero {
            min-height: 100vh;
            padding-top: 60px;
            background: linear-gradient(135deg, var(--light-bg) 0%, #fce4e8 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 950px;
            padding: 2rem;
            z-index: 1;
            margin-top: -60px;
        }
        .case-brand-badge {
            position: fixed;
            top: 2rem;
            left: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 190px;
            height: 190px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.93);
            backdrop-filter: blur(14px);
            border: 2px solid rgba(192, 9, 65, 0.18);
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 6px 30px rgba(192, 9, 65, 0.1);
        }
        .case-brand-badge:hover {
            border-color: #c00941;
            box-shadow: 0 10px 40px rgba(192, 9, 65, 0.2);
            transform: translateY(-3px);
        }
        .badge-icon-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.5rem;
        }
        .badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #c00941 0%, #8b0030 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(192, 9, 65, 0.3);
        }
        .badge-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: #fff;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .badge-star {
            display: flex;
            gap: 2px;
        }
        .badge-star svg {
            width: 12px;
            height: 12px;
            fill: #f5a623;
            stroke: none;
        }
        .badge-name {
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: 3px;
            line-height: 1.2;
        }
        .badge-name .b1 { color: #c00941; }
        .badge-name .b2 { color: #8b0030; }
        .badge-name .b3 { color: #eb5767; }
        .badge-divider {
            width: 36px;
            height: 2px;
            background: linear-gradient(90deg, #c00941, transparent);
            border-radius: 1px;
            margin: 0.4rem 0 0.5rem;
        }
        .badge-label {
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
            letter-spacing: 3px;
        }
        .badge-label .hl {
            color: #c00941;
            font-weight: 600;
        }
        .hero-case-tag {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--primary-red);
            color: white;
            border-radius: 30px;
            font-weight: normal;
            font-size: 1rem;
            margin-bottom: 3rem;
            margin-top: -0.5rem;
        }
        .case-hero h1 {
            font-size: 3.6rem;
            color: var(--dark-red);
            line-height: 1.2;
            margin-bottom: 2rem;
        }
        .case-subtitle {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 4rem;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 1.3rem 3rem;
            background: linear-gradient(135deg, #c00941 0%, #a00838 100%);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(192, 9, 65, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(192, 9, 65, 0.4);
        }

        /* 核心数据概览 */
        .case-stats {
            padding: 4rem 2rem;
            background: white;
            border-bottom: 1px solid var(--border-color);
        }
        .stats-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }
        .stat-item p {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* 小程序界面模拟展示 */
        .weapp-demo {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }
        .weapp-demo-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .weapp-demo-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .weapp-demo-header h2 {
            font-size: 2.5rem;
            color: var(--dark-red);
            margin-bottom: 1rem;
        }
        .weapp-demo-header p {
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        .weapp-phone-frame {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .phone-mockup {
            width: 320px;
            background: #1a1a1a;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .phone-screen {
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            height: 580px;
        }
        .phone-header {
            background: linear-gradient(135deg, var(--primary-red) 0%, #a00838 100%);
            padding: 15px 20px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .phone-header-title {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .phone-header-nav {
            display: flex;
            gap: 15px;
            font-size: 0.9rem;
        }
        .phone-header-nav span {
            opacity: 0.8;
        }
        .phone-header-nav .active {
            opacity: 1;
            font-weight: 600;
        }
        .phone-month-bar {
            background: var(--accent-red);
            padding: 10px 20px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
        }
        .phone-month-bar .nav-arrow {
            cursor: pointer;
            padding: 5px 10px;
        }
        .phone-month-bar .today-btn {
            background: rgba(255,255,255,0.2);
            padding: 3px 12px;
            border-radius: 10px;
            font-size: 0.85rem;
        }
        .phone-week-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background: var(--accent-red);
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 0.8rem;
        }
        .phone-week-header span {
            text-align: center;
        }
        .phone-calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 14px;
            padding: 10px;
            background: #f8f8f8;
        }
        .phone-day {
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #333;
            position: relative;
            cursor: pointer;
            transition: all 0.2s;
        }
        .phone-day:hover {
            background: #fce4e8;
        }
        .phone-day.empty {
            background: transparent;
            cursor: default;
        }
        .phone-day.has-task {
            color: var(--primary-red);
        }
        .phone-day .lunar {
            font-size: 0.65rem;
            color: #999;
            margin-top: -1px !important;
            line-height: 1;
        }
        .phone-day .task-badge {
            display: none;
        }
        .phone-day.today {
            background: var(--primary-red);
            color: white;
        }
        .phone-day.today .lunar {
            color: rgba(255,255,255,0.8);
        }
        .phone-tabs {
            display: flex;
            border-bottom: 1px solid #eee;
            background: white;
        }
        .phone-tab {
            flex: 1;
            padding: 12px;
            text-align: center;
            color: #666;
            font-size: 0.95rem;
            cursor: pointer;
            position: relative;
        }
        .phone-tab.active {
            color: var(--primary-red);
            font-weight: 600;
        }
        .phone-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 3px;
            background: var(--primary-red);
            border-radius: 3px 3px 0 0;
        }
        .phone-task-list {
            padding: 15px;
            max-height: 200px;
            overflow-y: auto;
        }
        .phone-task-item {
            background: #f8f8f8;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 10px;
            border-left: 3px solid var(--accent-red);
        }
        .phone-task-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .phone-task-type {
            font-size: 0.85rem;
            color: var(--accent-red);
            font-weight: 600;
        }
        .phone-task-time {
            font-size: 0.8rem;
            color: #999;
        }
        .phone-task-info {
            font-size: 0.85rem;
            color: #333;
            margin-bottom: 4px;
        }
        .phone-task-price {
            font-size: 0.9rem;
            color: var(--primary-red);
            font-weight: 600;
        }

        /* 服务流程与故事 */
        .case-story {
            padding: 5rem 2rem;
            background: var(--white);
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--dark-red);
            margin-bottom: 1.5rem;
        }
        .section-desc {
            text-align: center;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto 4rem;
            font-size: 1.1rem;
        }

        .story-steps {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
        }
        .step {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            align-items: center;
            background: var(--light-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(192, 9, 65, 0.08);
            padding: 2rem;
            transition: transform 0.3s ease;
        }
        .step:hover {
            transform: translateY(-5px);
        }
        .step-img {
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 12px;
        }
        .step-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .step:hover .step-img img {
            transform: scale(1.05);
        }
        .step-content {
            padding: 1rem;
        }
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .step-content h3 {
            font-size: 2.2rem;
            color: var(--dark-red);
            margin-bottom: 1rem;
        }

        /* 功能亮点模块 */
        .case-details {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }
        .details-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .detail-card {
            background: linear-gradient(135deg, #fff 0%, #fce4e8 100%);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .detail-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
        }
        .detail-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .detail-card h4 {
            font-size: 1.3rem;
            color: var(--dark-red);
            margin-bottom: 1rem;
        }

        /* ==================== 安全与权限设计 ==================== */
        .security-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: white;
        }
        .security-section .section-title {
            color: white;
        }
        .security-section .section-desc {
            color: rgba(255,255,255,0.9);
        }
        .security-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .security-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        .security-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .security-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .security-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }
        .security-card p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* ==================== 客户案例展示模块 ==================== */
        .cases-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #fce4e8 100%);
            position: relative;
            overflow: hidden;
        }

        .cases-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: linear-gradient(135deg, rgba(192, 9, 65, 0.05), rgba(192, 9, 65, 0.08));
            transform: rotate(30deg);
            pointer-events: none;
        }

        .cases-section .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cases-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .cases-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-red);
            margin-bottom: 1rem;
        }

        .cases-subtitle {
            font-size: 1.4rem;
            color: var(--text-gray);
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .case-card {
            position: relative;
            display: block;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 52, 41, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            border: 2px solid rgba(73, 172, 53, 0.1);
            backdrop-filter: blur(10px);
        }

        .case-card:hover {
            border-color: #49ac35;
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 52, 41, 0.15);
            background: white;
        }

        .case-number {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #49ac35 0%, #3d8a2b 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .case-image-wrapper {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: #f5f5f5;
        }

        .case-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .case-card:hover .case-image {
            transform: scale(1.05);
        }

        .case-content {
            padding: 1.2rem;
        }

        .case-title {
            font-size: 1rem;
            font-weight: 700;
            color: #003429;
            margin-bottom: 0.6rem;
            line-height: 1.4;
        }

        .case-tag {
            display: inline-block;
            padding: 0.25rem 0.8rem;
            background: #f0f9f5;
            color: #49ac35;
            font-size: 0.85rem;
            border-radius: 4px;
            font-weight: 600;
            border: 1px solid #49ac35;
        }

        .cases-footer {
            text-align: center;
            padding: 3rem 2.5rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 52, 41, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(73, 172, 53, 0.1);
        }

        .cases-footer-text {
            font-size: 1.1rem;
            color: #4e6266;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .cases-footer-quote {
            font-size: 1.3rem;
            font-weight: 700;
            color: #49ac35;
            margin-bottom: 2rem;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, #f0f9f5 0%, #e8f5ed 100%);
            border-radius: 12px;
            letter-spacing: 1px;
        }

        .cases-footer-btn {
            display: inline-block;
            padding: 1.1rem 2.8rem;
            background: linear-gradient(135deg, #c00941 0%, #a00838 100%);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(192, 9, 65, 0.3);
        }

        .cases-footer-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(192, 9, 65, 0.4);
        }

        /* ==================== 用心服务理念 ==================== */
        .service-philosophy {
            padding: 5rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .philosophy-quote {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1.6;
            margin-bottom: 0.6rem;
            position: relative;
            display: inline-block;
        }
        .philosophy-quote::before,
        .philosophy-quote::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red), transparent);
            border-radius: 2px;
            margin: 0.8rem auto;
        }
        .philosophy-quote::after {
            background: linear-gradient(90deg, transparent, var(--primary-red));
        }
        .philosophy-desc {
            font-size: 1.0rem;
            color: #777;
            line-height: 1.9;
            max-width: 600px;
            margin: 1rem auto 2rem;
        }
        .case-counter-wrap {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem 3rem;
            background: #fff;
            border-radius: 20px;
            border: 2px solid rgba(192, 9, 65, 0.12);
            box-shadow: 0 6px 30px rgba(192, 9, 65, 0.06);
        }
        .case-counter-number {
            font-size: 2.4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .case-counter-label {
            font-size: 0.9rem;
            color: #999;
            letter-spacing: 2px;
            margin-top: 0.3rem;
        }

        /* ==================== 底部CTA ==================== */
        .bottom-cta {
            background: linear-gradient(135deg, var(--dark-red) 0%, #6b0028 100%);
            border-radius: 48px;
            padding: 3rem 2rem;
            text-align: center;
            color: white;
            margin: 1.5rem auto 2.5rem;
            max-width: 1280px;
        }
        .bottom-cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .bottom-cta p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: #f97316;
            padding: 1.1rem 2.4rem;
            border-radius: 60px;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: 0.2s;
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
        }
        .cta-btn:hover {
            background: #ff8024;
            transform: scale(1.02);
        }

/* 响应式设计 */
        @media (max-width: 768px) {
            .analysis-grid { grid-template-columns: 1fr !important; overflow-x: hidden; }
            .nav-container { padding: 0 1rem; height: 60px; background: transparent; }
            .logo { font-size: 1.4rem; }
            .case-hero { margin-top: 0; padding-top: 60px; }
            .case-hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, var(--light-bg) 0%, #fce4e8 100%);
                z-index: -1;
            }
            .case-hero h1 { font-size: 2rem; }
            .section-title { font-size: 1.8rem; }
            .case-review h2 { font-size: 1.8rem !important; }
            .security-grid { max-width: 92%; margin: 0 auto; grid-template-columns: 1fr !important; }
            .analysis-title, .analysis-grid, .summary-section { max-width: 92%; margin-left: auto; margin-right: auto; }
            .philosophy-quote { font-size: 1.6rem; }
            .case-counter-number { font-size: 1.8rem; }
            .stats-grid, .details-container { grid-template-columns: 1fr; }
            .step { grid-template-columns: 1fr; }
            .step-img { order: -1; height: 200px; }
            .btn-primary { width: auto; padding-left: 2rem; padding-right: 2rem; }
            .case-brand-badge {
                width: 95px;
                height: auto;
                min-height: 95px;
                padding: 0.5rem 0.3rem;
                top: 0.7rem;
                left: 0.7rem;
                border-radius: 12px;
            }
            .badge-icon-row {
                gap: 0.1rem;
                margin-bottom: 0.2rem;
            }
            .badge-icon {
                width: 27px;
                height: 27px;
            }
            .badge-icon svg {
                width: 16px;
                height: 16px;
            }
            .badge-star {
                gap: 1px;
            }
            .badge-star svg {
                width: 10px;
                height: 10px;
            }
            .badge-name {
                font-size: 1rem;
                letter-spacing: 0.15em;
                margin: 0.2rem 0;
            }
            .badge-divider { width: 22px; height: 1px; margin: 0.15rem 0; }
            .badge-label { font-size: 0.55rem; }
            .badge-label .hl { font-size: 0.55rem; }
            .cases-title { font-size: 1.8rem; }
            .cases-subtitle { font-size: 1rem; }
            .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
            .case-image-wrapper { height: 120px; }
            .case-number { width: 28px; height: 28px; font-size: 0.75rem; top: 8px; right: 8px; }
            .case-content { padding: 0.8rem; }
            .case-title { font-size: 0.85rem; }
            .case-tag { font-size: 0.7rem; padding: 2px 8px; }
            .bottom-cta { width: 88%; margin: 0 auto; }
            .bottom-cta h2 { font-size: 1.6rem; }
            .bottom-cta p, .bottom-cta .cta-btn { width: 90%; margin-left: auto; margin-right: auto; text-align: center; display: block; }
            .weapp-phone-frame { gap: 2rem; }
            .phone-mockup { width: 280px; }
            .phone-screen { height: 500px; }
        }
        /* ==================== 案例卡片悬停效果 ==================== */
        a[style*="display: block; position: relative"]:hover {
            border-color: var(--primary-red) !important;
            transform: translateY(-5px) !important;
            box-shadow: 0 8px 24px rgba(192, 9, 65, 0.15) !important;
            background: white !important;
        }
        a[style*="display: block; position: relative"]:hover img {
            transform: scale(1.05);
        }

        /* ==================== 客户评价模块 ==================== */
        .customer-testimonial blockquote {
            text-align: left;
            padding-left: 20px;
            padding-right: 20px;
        }
        .customer-testimonial blockquote + p,
        .customer-testimonial [style*="text-align: right"] {
            text-align: right;
        }
