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

:root {
    --primary-blue: #0066CC;
    --primary-orange: #FF7D00;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* 顶部横条 */
.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar .welcome-text {
    color: #333;
    font-size: 14px;
}

/* 顶部导航栏 */
.navbar {
    background: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 100%);
    color: white;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.tagline {
    color: #333;
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
    margin-right: 60px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu a:focus,
.nav-menu a:focus-visible,
.nav-menu a:active {
    outline: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 102, 204, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(0, 102, 204, 0.2);
    transform: translateY(-2px);
}

.contact-info i {
    color: var(--primary-orange);
    font-size: 20px;
}

/* 免费试用按钮 */
.btn-trial {
    background: #0066CC;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-trial:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* 首屏Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 50%, #66B3FF 100%);
    padding: 60px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 手机边框效果 - 已移除边框 */
.phone-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.phone-notch {
    display: none;
}

.phone-screen {
    flex: 1;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.phone-home-indicator {
    display: none;
}

.hero-image-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* 服务特点 */
.service-features {
    background: white;
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 20px 10px;
}

.feature-box i {
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-box span {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: translateY(-5px);
    color: var(--primary-orange);
}

.feature-box:hover span {
    color: var(--primary-orange);
}

.btn {
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: #e66f00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 125, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.hero-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-card:hover .icon-wrapper i {
    transform: scale(1.1);
    color: var(--primary-orange);
}

.hero-card .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.hero-card .icon-wrapper i {
    font-size: 48px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.hero-card .icon-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
}

.hero-card h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-card .btn-card {
    background: var(--primary-orange);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 125, 0, 0.3);
}

.hero-card .btn-card:hover {
    background: #e66f00;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 125, 0, 0.4);
}

/* 服务行业 */
.service-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* 多终端覆盖 */
.multi-terminal {
    background: var(--light-gray);
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    padding: 0;
}

.tab {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab:hover::after,
.tab.active::after {
    width: 100%;
}

.tab:hover,
.tab.active {
    color: var(--primary-orange);
}

/* Tab内容样式 */
.tab-content {
    display: none !important;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: grid !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.terminal-phones {
    position: relative;
    height: 600px;
}

.phone {
    width: 300px;
    height: 600px;
    background: white;
    border-radius: 40px;
    border: 4px solid #333;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.phone-1 {
    z-index: 1;
    left: 0;
}

.phone-2 {
    z-index: 2;
    left: 100px;
    top: 40px;
}

.phone-3 {
    z-index: 3;
    left: 200px;
    top: 80px;
}

.phone-screen {
    height: 100%;
    background: url('../img/zs4-1.jpg') no-repeat center center;
    background-size: cover;
    padding: 24px;
    color: white;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #333;
    border-radius: 0 0 20px 20px;
}

.phone-header {
    background: rgba(0, 0, 0, 0.15);
    padding: 50px 16px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    border-radius: 12px;
}

.phone-content {
    background: white;
    border-radius: 12px;
    padding: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.phone-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.phone-marketing {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9933 100%);
    border-radius: 12px;
    padding: 24px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 125, 0, 0.3);
}

.phone-marketing h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.phone-marketing .btn {
    background: white;
    color: var(--primary-orange);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.terminal-features {
    padding-top: 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.terminal-content-wrapper {
    flex: 1;
}

.terminal-feature-image {
    flex: 0 0 auto;
    max-width: 160px;
    max-height: 200px;
}

.terminal-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.feature-title {
    color: var(--primary-orange);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.feature-item {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 20px;
}

.feature-item p {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.feature-tag {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

/* 服务流程 */
.process-section {
    background: white;
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-bottom: 80px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 30px;
    font-size: 18px;
    color: var(--text-light);
}

.process-step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(255, 125, 0, 0.3);
    transition: all 0.4s ease;
}

.process-step:hover .process-step-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 125, 0, 0.4);
}

.process-step-icon i {
    color: white;
    font-size: 26px;
}

.process-step p {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.process-sidebar {
    display: flex;
    justify-content: center;
}

.sidebar-item {
    background: var(--primary-orange);
    color: white;
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 125, 0, 0.3);
}

.sidebar-item:hover {
    background: #e66f00;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 125, 0, 0.4);
}

.sidebar-item i {
    margin-right: 10px;
}

/* 系统运营模式 */
.operation-mode {
    background: #1a1a1a;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.operation-mode::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.operation-mode .section-title h2 {
    color: white;
}

.operation-mode .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.operation-image-container {
    margin-top: 60px;
    text-align: center;
}

.operation-image-placeholder {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.operation-image-placeholder:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
}

.operation-image-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.operation-image-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 500;
}

.operation-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.operation-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.operation-item h3 {
    color: var(--primary-orange);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.operation-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.operation-phone {
    width: 280px;
    height: 560px;
    background: white;
    border-radius: 30px;
    border: 3px solid #555;
    overflow: hidden;
    margin: 0 auto;
}

.operation-phone .phone-screen {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9933 100%);
}

/* 系统功能展示 */
.feature-showcase {
    background: white;
    padding: 100px 0;
}

.feature-list {
    margin-top: 60px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.feature-row:nth-child(odd) .feature-left {
    order: 1;
}

.feature-row:nth-child(odd) .feature-right {
    order: 2;
}

.feature-row:nth-child(even) .feature-left {
    order: 2;
}

.feature-row:nth-child(even) .feature-right {
    order: 1;
}

.feature-left {
    flex: 0 0 400px;
    flex-shrink: 0;
}

.feature-left img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.feature-left:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-right h3 {
    color: var(--text-primary);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-right p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
}

/* 系统展示轮播 */
.system-showcase {
    background: var(--light-gray);
    padding: 100px 0;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 25%;
    padding: 0 10px;
}

.carousel-image {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 125, 0, 0.3);
    overflow: hidden;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
    z-index: 10;
}

.carousel-arrow:hover {
    background: #e66f00;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 125, 0, 0.4);
}

.carousel-prev {
    left: -45px;
}

.carousel-next {
    right: -45px;
}

/* 轮播指示点 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* 案例展示轮播 */
.case-showcase {
    background: var(--light-gray);
    padding: 100px 0;
}

/* 资讯中心 */
.news-center {
    background: white;
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.news-card-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.news-card-item:hover {
    transform: translateY(-5px);
}

.news-card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-image i {
    font-size: 40px;
    color: white;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.news-card-content {
    padding: 0 10px;
}

.news-card-date {
    color: var(--primary-blue);
    font-size: 14px;
    margin-bottom: 10px;
}

.news-card-title {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-more-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-more-link:hover {
    opacity: 0.8;
}

.news-more-link:hover::after {
    transform: translateX(4px);
}

/* 获取方案和报价表单 */
.quote-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 50%, #66B3FF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 预约表单区域 */
.appointment-section {
    background: var(--light-gray);
    padding: 80px 0;
    margin-top: 0;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.appointment-left {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.appointment-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.appointment-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.appointment-form-inline .form-group-inline {
    margin-bottom: 18px;
}

.appointment-form-inline label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.appointment-form-inline label span {
    color: #ff4d4f;
}

.appointment-form-inline input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
    color: var(--text-primary);
}

.appointment-form-inline input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.submit-btn-inline {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.submit-btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.form-features-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.form-feature-item-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-feature-item-inline:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.form-feature-item-inline i {
    font-size: 22px;
    color: var(--primary-blue);
}

.form-feature-item-inline span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.appointment-right {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 50%, #66B3FF 100%);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.appointment-right h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.qr-code-inline {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.qr-code-inline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qr-code-inline i {
    font-size: 100px;
    color: var(--text-secondary);
}

.benefit-list-inline {
    width: 100%;
    text-align: left;
}

.benefit-list-inline .benefit-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-list-inline ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list-inline li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list-inline li i {
    color: #52c41a;
    font-size: 14px;
    font-weight: bold;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quote-left {
    color: white;
}

.quote-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.quote-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.quote-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.quote-features .feature-item i {
    color: var(--primary-orange);
    font-size: 20px;
}

.quote-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.quote-form h3 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group span {
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
}

.submit-btn:hover {
    background: #e66f00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 125, 0, 0.4);
}

/* 底部 */
.footer {
    background: #333;
    padding: 80px 0 40px;
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--primary-orange);
    font-size: 18px;
    width: 20px;
}

.footer-qr {
    text-align: center;
}

.footer-qr .qr-placeholder {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.footer-qr .qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-qr .qr-placeholder i {
    font-size: 70px;
    color: var(--primary-blue);
}

.footer-qr p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-placeholder {
        height: 300px;
    }

    .terminal-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .terminal-phones {
        height: 500px;
    }

    .operation-items {
        grid-template-columns: 1fr;
    }

    .operation-image-placeholder {
        height: 450px;
    }

    .hero-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .hero-card {
        padding: 35px 25px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .feature-image {
        margin: 0 auto;
    }

    .carousel-item {
        flex: 0 0 50%;
    }

    .carousel-arrow {
        display: none;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .appointment-left,
    .appointment-right {
        padding: 40px;
    }

    .quote-left h2 {
        font-size: 38px;
    }

    .features-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-card-image {
        height: 160px;
    }
}

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

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        right: -15px;
        font-size: 20px;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image-placeholder {
        height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .hero-card {
        padding: 25px 12px;
        width: 100%;
    }

    .hero-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-card .btn-card {
        padding: 10px 24px;
        font-size: 14px;
    }

    .terminal-phones {
        height: 400px;
    }

    .phone-1, .phone-2, .phone-3 {
        left: 0 !important;
        top: 0 !important;
        position: relative;
        margin: 0 auto 20px;
    }

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

    .process-step:not(:last-child)::after {
        display: none;
    }

    .feature-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .feature-left {
        order: 1;
        margin-bottom: 20px;
    }

    .feature-left img {
        width: 100%;
        height: auto;
    }

    .feature-right {
        order: 2;
        text-align: left;
    }

    .feature-right h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-right p {
        font-size: 15px;
        line-height: 1.6;
    }

    .section-title {
        position: relative;
        z-index: 1;
    }

    .feature-showcase {
        position: relative;
    }

    .feature-list {
        position: relative;
        z-index: 2;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .operation-image-placeholder {
        height: 300px;
    }

    .operation-image-placeholder i {
        font-size: 70px;
    }

    .operation-image-placeholder p {
        font-size: 16px;
    }

    .news-item {
        grid-template-columns: 120px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .news-image {
        width: 120px;
        height: 80px;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quote-left h2 {
        font-size: 32px;
    }

    .quote-desc {
        font-size: 16px;
    }

    .quote-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-box {
        padding: 15px 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .tabs {
        gap: 25px;
    }

    .tab {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .ui-grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .hero-card {
        padding: 20px 12px;
        width: 100%;
    }

    .hero-card .icon-wrapper {
        margin: 0 auto 15px;
    }

    .hero-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-card .icon-wrapper img {
        max-width: 60px;
    }

    .hero-card .btn-card {
        padding: 8px 20px;
        font-size: 13px;
        width: 100%;
    }

    .operation-image-placeholder {
        height: 250px;
    }

    .operation-image-placeholder i {
        font-size: 60px;
    }

    .operation-image-placeholder p {
        font-size: 14px;
    }

    .feature-row {
        gap: 20px;
    }

    .feature-image {
        width: 80px;
        height: 80px;
    }

    .feature-image i {
        font-size: 40px;
    }

    .feature-text h3 {
        font-size: 18px;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .case-showcase .carousel-item {
        flex: 0 0 20%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card-image {
        height: 180px;
    }

    .news-card-title {
        font-size: 15px;
    }

    .quote-left h2 {
        font-size: 28px;
    }

    .quote-desc {
        font-size: 15px;
    }

    .quote-form {
        padding: 40px 30px;
    }

    .quote-form h3 {
        font-size: 22px;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        padding: 15px 20px;
        text-align: left;
        border-radius: 10px;
        background: var(--light-gray);
        transition: all 0.3s ease;
    }

    .feature-box:hover {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .footer-content {
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

/* 预约方案弹窗 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 100;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-left {
    background: white;
    padding: 40px 50px;
}

.modal-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.appointment-form .form-group {
    margin-bottom: 18px;
}

.appointment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.appointment-form label span {
    color: #ff4d4f;
}

.appointment-form input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
    color: var(--text-primary);
}

.appointment-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.appointment-form .submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.appointment-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.form-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.form-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-feature-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.form-feature-item i {
    font-size: 22px;
    color: var(--primary-blue);
}

.form-feature-item span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.modal-right {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3399FF 50%, #66B3FF 100%);
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-right h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.qr-code {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-code i {
    font-size: 100px;
    color: var(--text-secondary);
}

.benefit-list {
    width: 100%;
    text-align: left;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list li i {
    color: #52c41a;
    font-size: 14px;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-content {
        max-width: 100%;
        margin: 0;
        max-height: 80vh;
        overflow: hidden;
    }

    .modal-wrapper {
        grid-template-columns: 1fr;
        max-height: calc(80vh - 60px);
        overflow-y: auto;
        padding-right: 5px;
    }

    .modal-wrapper::-webkit-scrollbar {
        width: 4px;
    }

    .modal-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

    .modal-wrapper::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }

    .modal-wrapper::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .modal-left {
        padding: 20px;
    }

    .modal-right {
        display: none;
    }

    .modal-left h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .modal-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .appointment-form .form-group {
        margin-bottom: 12px;
    }

    .appointment-form input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .appointment-form .submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .form-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 15px;
    }

    .form-feature-item {
        padding: 8px 6px;
    }

    .form-feature-item i {
        font-size: 16px;
    }

    .form-feature-item span {
        font-size: 10px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 18px;
        z-index: 100;
    }

    .appointment-left,
    .appointment-right {
        padding: 30px;
    }

    .appointment-left h2 {
        font-size: 24px;
    }

    .appointment-desc {
        font-size: 13px;
    }

    .appointment-right h3 {
        font-size: 20px;
    }

    .qr-code-inline {
        width: 140px;
        height: 140px;
    }

    .qr-code-inline i {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 8px;
    }

    .modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
        max-height: 75vh;
        overflow: hidden;
    }

    .modal-wrapper {
        grid-template-columns: 1fr;
        max-height: calc(75vh - 55px);
        overflow-y: auto;
        padding-right: 3px;
    }

    .modal-wrapper::-webkit-scrollbar {
        width: 3px;
    }

    .modal-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

    .modal-wrapper::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }

    .modal-left {
        padding: 16px;
    }

    .modal-right {
        display: none;
    }

    .modal-left h2 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .modal-desc {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .appointment-form .form-group {
        margin-bottom: 10px;
    }

    .appointment-form input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .appointment-form .submit-btn {
        padding: 11px;
        font-size: 14px;
    }

    .form-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-top: 12px;
    }

    .form-feature-item {
        padding: 7px 4px;
    }

    .form-feature-item i {
        font-size: 15px;
    }

    .form-feature-item span {
        font-size: 9px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .appointment-section {
        padding: 50px 0;
    }

    .appointment-wrapper {
        gap: 30px;
    }

    .appointment-left,
    .appointment-right {
        padding: 24px;
    }

    .appointment-left h2 {
        font-size: 20px;
    }

    .appointment-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .appointment-form-inline .form-group-inline {
        margin-bottom: 12px;
    }

    .appointment-form-inline input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .submit-btn-inline {
        padding: 11px;
        font-size: 14px;
    }

    .form-features-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .form-feature-item-inline {
        padding: 10px 8px;
    }

    .form-feature-item-inline i {
        font-size: 20px;
    }

    .form-feature-item-inline span {
        font-size: 11px;
    }

    .appointment-right h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .qr-code-inline {
        width: 120px;
        height: 120px;
    }

    .qr-code-inline i {
        font-size: 70px;
    }

    .benefit-list-inline .benefit-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .benefit-list-inline li {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* 模态框样式 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    align-items: flex-start;
    padding-top: 5vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 5vh auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 20px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.modal-close:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.appointment-modal-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.appointment-modal-left .appointment-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.appointment-modal-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #0066CC;
    border-radius: 8px;
    color: white;
}

.appointment-modal-right h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.appointment-modal-right .qr-code-inline {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.appointment-modal-right .qr-code-inline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.appointment-modal-right .qr-code-inline i {
    color: white;
}

.appointment-modal-right .benefit-list-inline {
    color: white;
}

.appointment-modal-right .benefit-list-inline .benefit-title {
    color: white;
}

.appointment-modal-right .benefit-list-inline li {
    color: white;
}

.appointment-modal-right .benefit-list-inline li i {
    color: white;
}

/* 用户端页面样式 */

/* 用户端Banner */
.user-hero {
    background: linear-gradient(90deg, #28a745 0%, #4caf50 100%);
    padding: 60px 0;
    text-align: left;
    position: relative;
    overflow: visible;
    z-index: 11;
}

.user-hero .hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.user-hero .hero-content {
    text-align: left;
    color: white;
}

.user-hero .hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.user-hero .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.user-hero .hero-buttons {
    display: flex;
    gap: 20px;
}

.user-hero .btn-primary {
    background: white;
    color: #28a745;
    border: 2px solid white;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.user-hero .btn-primary:hover {
    background: transparent;
    color: white;
}

.user-hero .hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 15;
    margin-bottom: -100px;
}

.user-hero .hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateY(100px);
}


/* 功能介绍板块 */
.feature-intro-section {
    background: white;
    padding: 100px 0;
    padding-top: 210px;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.feature-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-intro-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-intro-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-intro-icon i {
    font-size: 36px;
    color: white;
}

.feature-intro-item h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-intro-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* 界面展示板块 */
.ui-showcase-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.ui-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.ui-item:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.ui-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.ui-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.ui-info {
    padding: 24px;
}

.ui-info h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ui-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* 亮点功能板块 */
.highlight-section {
    background: white;
    padding: 100px 0;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.highlight-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.highlight-icon i {
    font-size: 32px;
    color: white;
}

.highlight-left h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-left p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.highlight-right {
    display: flex;
    gap: 40px;
}

.highlight-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-check i {
    font-size: 20px;
    color: #52c41a;
    font-weight: bold;
}

.highlight-check span {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

/* 自定义装修板块 */
.custom-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.custom-section .section-title h2 {
    color: white;
}

.custom-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.custom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.custom-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.custom-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.custom-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-item-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.custom-item-icon i {
    font-size: 28px;
    color: #667eea;
}

.custom-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.custom-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-preview {
    position: relative;
    width: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-preview img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
}

.custom-preview-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.custom-preview-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* 营销工具板块 */
.marketing-section {
    background: white;
    padding: 100px 0;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.marketing-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.marketing-card:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
    transform: translateY(-10px);
}

.marketing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.marketing-icon i {
    font-size: 32px;
    color: white;
}

.marketing-card h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.marketing-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.marketing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 14px;
}

.marketing-features li i {
    color: #52c41a;
    font-size: 14px;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .feature-intro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

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

    .custom-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .highlight-left {
        flex-direction: column;
        gap: 20px;
    }

    .highlight-right {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .feature-intro-grid {
        grid-template-columns: 1fr;
    }

    .ui-grid {
        grid-template-columns: 1fr;
    }

    .marketing-grid {
        grid-template-columns: 1fr;
    }

    .custom-left {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 30px 20px;
    }

    .highlight-left h3 {
        font-size: 18px;
    }

    .highlight-left p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-intro-item {
        padding: 30px 20px;
    }

    .ui-item {
        border-radius: 12px;
    }

    .ui-info {
        padding: 20px;
    }

    .marketing-card {
        padding: 30px 20px;
    }

    .custom-item {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .appointment-modal-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-container {
        margin: 10vh auto;
        width: 95%;
        max-width: 750px;
    }
}


/* ===== 商家端页面样式 ===== */

/* --- Banner --- */
.mc-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.mc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 50%, rgba(230,126,34,0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(243,156,18,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.mc-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mc-hero-content {
    padding: 60px 0;
    color: white;
}

.mc-hero-tag {
    display: inline-block;
    background: rgba(230,126,34,0.2);
    border: 1px solid rgba(230,126,34,0.5);
    color: #f39c12;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.mc-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.mc-hero-title span {
    color: #f39c12;
}

.mc-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 420px;
}

.mc-hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mc-btn-primary {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230,126,34,0.4);
}

.mc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230,126,34,0.5);
}

.mc-btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.mc-btn-ghost:hover {
    color: white;
    border-color: white;
}

.mc-hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mc-dashboard {
    position: relative;
    width: 100%;
}

.mc-dash-main {
    background: #111827;
    border: 1px solid rgba(243, 156, 18, 0.35);
    border-radius: 16px;
    padding: 24px;
    box-shadow:
        0 0 0 1px rgba(243, 156, 18, 0.12),
        0 4px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.mc-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mc-dash-title {
    color: #f1f5f9;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mc-dash-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
    display: inline-block;
}

.mc-dash-date {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.mc-dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mc-dash-stat {
    background: rgba(243, 156, 18, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.15);
    border-radius: 10px;
    padding: 14px;
}

.mc-dash-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mc-dash-stat-value {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.mc-dash-stat-sub {
    font-size: 11px;
    color: #2ecc71;
    margin-top: 4px;
}

.mc-chart-area {
    margin-top: 4px;
}

.mc-chart-label {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-bottom: 10px;
}

.mc-chart-box {
    height: 80px;
    position: relative;
    overflow: hidden;
}

.mc-chart-svg {
    width: 100%;
    height: 80px;
}

/* --- 数据统计条 --- */
.mc-stats {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    padding: 40px 0;
}

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

.mc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
    color: white;
}

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

.mc-stat-num {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.mc-stat-num sup {
    font-size: 20px;
    vertical-align: super;
}

.mc-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* --- 核心功能 --- */
.mc-features {
    background: #f8f9fb;
    padding: 100px 0;
}

.mc-features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.mc-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mc-feature-block-reverse {
    direction: rtl;
}

.mc-feature-block-reverse > * {
    direction: ltr;
}

/* 模拟屏幕 */
.mc-feature-screen {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.mc-screen-header {
    background: #f0f2f5;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mc-screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.mc-screen-dot:nth-child(1) { background: #ff5f57; }
.mc-screen-dot:nth-child(2) { background: #febc2e; }
.mc-screen-dot:nth-child(3) { background: #28c840; }

.mc-screen-title {
    margin-left: 8px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* 订单列表 */
.mc-order-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8f9fb;
}

.mc-order-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.mc-order-new .mc-order-badge { background: #fff3e0; color: #e67e22; }
.mc-order-doing .mc-order-badge { background: #e3f2fd; color: #1976d2; }
.mc-order-done .mc-order-badge { background: #e8f5e9; color: #388e3c; }

.mc-order-info {
    flex: 1;
    font-size: 13px;
    color: #333;
}

.mc-order-time {
    font-size: 12px;
    color: #999;
}

/* 技师列表 */
.mc-tech-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8f9fb;
}

.mc-tech-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-tech-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mc-tech-name { font-size: 13px; font-weight: 600; color: #333; }
.mc-tech-skill { font-size: 11px; color: #999; }

.mc-tech-status {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.mc-status-online { background: #e3f2fd; color: #1976d2; }
.mc-status-free   { background: #e8f5e9; color: #388e3c; }
.mc-status-off    { background: #f5f5f5; color: #999; }

/* 数据面板 */
.mc-data-panel {
    padding: 16px;
}

.mc-data-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mc-data-box {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mc-data-val {
    font-size: 20px;
    font-weight: 700;
    color: #e67e22;
}

.mc-data-key {
    font-size: 12px;
    color: #999;
}

.mc-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 0 4px;
}

.mc-bar {
    flex: 1;
    background: #f0e6d3;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.mc-bar-active { background: linear-gradient(180deg, #e67e22, #f39c12); }

.mc-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 6px 4px 0;
}

.mc-chart-labels span {
    font-size: 10px;
    color: #bbb;
    flex: 1;
    text-align: center;
}

/* 功能文字区 */
.mc-feature-text {
    padding: 10px 0;
}

.mc-feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.mc-feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.mc-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.mc-feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-feature-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.mc-feature-points li i {
    color: #e67e22;
    font-size: 14px;
    flex-shrink: 0;
}

/* --- 更多功能卡片 --- */
.mc-more-features {
    background: white;
    padding: 100px 0;
}

.mc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.mc-func-card {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    cursor: default;
}

.mc-func-card:hover {
    border-color: #f39c12;
    box-shadow: 0 8px 32px rgba(230,126,34,0.12);
    transform: translateY(-4px);
}

.mc-func-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 20px;
    margin-bottom: 16px;
}

.mc-func-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.mc-func-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* 导航高亮 */
.nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* 响应式 */
@media (max-width: 900px) {
    .mc-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mc-hero-mockup { display: flex; max-width: 500px; margin: 0 auto; }
    .mc-hero-title { font-size: 36px; }
    .mc-hero-desc { max-width: 100%; }
    .mc-hero-btns { justify-content: center; }
    .mc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-stat-item:nth-child(2) { border-right: none; }
    .mc-feature-block { grid-template-columns: 1fr; gap: 40px; }
    .mc-feature-block-reverse { direction: ltr; }
    .mc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .mc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-cards-grid { grid-template-columns: 1fr; }
}

/* ===== 首页资讯中心样式覆盖 ===== */
.news-center .news-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 60px !important;
}

.news-card-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.news-card-item:hover {
    transform: translateY(-5px);
}

.news-card-image {
    width: 100% !important;
    height: 200px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-content {
    padding: 0 10px;
}

.news-card-date {
    color: #0066CC !important;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-card-title {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-card-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .news-center .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .news-card-image {
        height: 160px !important;
    }
}

@media (max-width: 480px) {
    .news-center .news-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .news-card-image {
        height: 180px !important;
    }
}
