﻿/* ========================================
   信美移民 - PC端样式表
   包含10条整改后的样式
   ======================================== */

/* CSS变量定义 */
:root {
    --primary-color: #8B0000;
    --primary-dark: #660000;
    --accent-color: #FF8C00;
    --accent-gradient: linear-gradient(135deg, #FF8C00, #FF6347);
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-dark: #1A1A1A;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-padding {
    padding: 80px 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-white {
    background-color: var(--bg-white);
}

/* ========================================
   顶部大Logo区域 - 整改1
   ======================================== */
/* ========================================
   顶部大Logo区域 - 整改1：改为Hero轮播样式
   ======================================== */
.top-logo-area {
    position: relative;
    aspect-ratio: 1920 / 250;
    overflow: hidden;
    width: 100%;
}

.top-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top-logo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;    display: block;
}

/* ========================================
   顶部导航栏
   ======================================== */
.header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-placeholder a {
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
}

.main-nav ul li {
    white-space: nowrap;
}

.main-nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 100%;
}

.main-nav ul li.active a {
    color: var(--primary-color);
}

/* ========================================
   下拉菜单样式 - 动态动画效果
   ======================================== */
.main-nav ul li.has-submenu {
    position: relative;
}

.main-nav ul li.has-submenu > a {
    cursor: pointer;
}

.main-nav ul li.has-submenu > a i {
    transition: transform 0.3s ease;
}

.main-nav ul li.has-submenu:hover > a i {
    transform: rotate(180deg);
}

/* 下拉菜单容器 */
.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

/* 下拉菜单小三角箭头 */
.main-nav .submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

/* 悬停显示下拉菜单 */
.main-nav ul li.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 下拉菜单项 */
.main-nav .submenu li {
    white-space: nowrap;
}

.main-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    position: relative;
}

.main-nav .submenu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.main-nav .submenu li a:hover {
    background: linear-gradient(90deg, rgba(139, 0, 0, 0.05) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 28px;
}

.main-nav .submenu li a:hover::before {
    opacity: 1;
    left: 15px;
}

/* 下拉菜单项分隔线 */
.main-nav .submenu li:not(:last-child) a {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

/* 菜单项入场动画 */
@keyframes submenuFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.main-nav ul li.has-submenu:hover .submenu {
    animation: submenuFadeIn 0.3s ease forwards;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-size: 14px;
    color: var(--text-light);
    padding: 5px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.lang-switch:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.search-icon {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.search-icon:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-dark);
}

/* 搜索遮罩层 */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

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

.search-box {
    display: flex;
    width: 80%;
    max-width: 800px;
}

.search-box input {
    flex: 1;
    padding: 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-box button {
    padding: 20px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 18px;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* ========================================
   Hero轮播区
   ======================================== */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

/* 轮播图文字区域渐变遮罩：右侧深色渐变，让白色文字在任何背景下都清晰 */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 800px;
}

.hero-flag {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
    -webkit-text-stroke: 2px #FF8C00;
    text-stroke: 2px #FF8C00;
    paint-order: stroke fill;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 2px #FF8C00;
    text-stroke: 2px #FF8C00;
    paint-order: stroke fill;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gradient);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

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

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background-color: white;
    transform: scale(1.2);
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* ========================================
   通用区块标题
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ========================================
   为什么选择信美 - 整改3：图标占位图，背景白色
   ======================================== */
.chinese-border-wrapper {
    position: relative;
    padding: 40px;
    background: var(--bg-white);
}

.chinese-border-top,
.chinese-border-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.chinese-border-top {
    top: 0;
}

.chinese-border-bottom {
    bottom: 0;
}

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

.feature-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.chinese-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(145deg, #ffffff 0%, #fef9f9 100%);
    overflow: hidden;
}

.chinese-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.chinese-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
}

.chinese-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.chinese-corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.chinese-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.chinese-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* 图标占位图样式 */
.feature-icon-placeholder {
    border-radius: 50%;
    position: relative;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   资质荣誉 - 整改4：区域背景占位图，证书滚动+悬停放大
   ======================================== */
.certificates {
    position: relative;
    padding-top: 40px;
}

.certificates-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.certificates-content {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.certificates-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.certificates-slider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    animation: scrollLeft 20s linear infinite;
}

.certificates-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.certificate-item {
    min-width: 240px;
    flex-shrink: 0;
    transition: var(--transition);
}

.certificate-img-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.certificate-img {
    transition: transform 0.5s ease;
    cursor: pointer;
}

.certificate-item:hover .certificate-img {
    transform: scale(1.05);
}

/* 证书放大弹窗 */
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

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

.certificate-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.certificate-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.certificate-modal-img {
    max-width: 100%;
    max-height: 80vh;
}

/* ========================================
   服务流程 - 整改5：图标占位图
   ======================================== */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.step-icon-placeholder {
    border-radius: 50%;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-desc {
    font-size: 14px;
    color: var(--text-light);
}

.process-arrow {
    color: var(--accent-color);
    font-size: 24px;
}

/* ========================================
   移民项目 - 整改6：按钮占位图
   ======================================== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn-placeholder {
    transition: var(--transition);
}

.filter-btn-placeholder:hover {
    opacity: 0.8;
}

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

.project-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.project-img {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

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

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.project-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-price {
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-right: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

/* 项目卡片 — 查看详情按钮（醒目的CTA） */
.btn-project {
    display: block;
    width: calc(100% + 50px);
    margin: auto -25px -25px -25px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--accent-color), #e07800);
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    border-top: 3px solid rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.btn-project::after {
    content: ' →';
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.35s ease;
}

.btn-project:hover {
    background: linear-gradient(135deg, #e07800, #cc6a00);
    color: #fff;
    letter-spacing: 3px;
}

.btn-project:hover::after {
    transform: translateX(6px);
}

/* 保留占位样式 */
.btn-project-placeholder {
    transition: var(--transition);
}

.btn-project-placeholder:hover {
    opacity: 0.9;
}

.btn-view-more-placeholder {
    transition: var(--transition);
    cursor: pointer;
}

.btn-view-more-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ========================================
   免费定制方案表单 - 整改7：横排单行全宽
   ======================================== */
.custom-form-section {
    position: relative;
    color: white;
    overflow: hidden;
}

/* 背景占位图层 */
.form-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* 深色遮罩 */
.custom-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.form-content-wrapper {
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.form-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

/* 单行横排表单 */
.form-inline-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.form-inline-row .form-field {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.form-inline-row .form-field:last-child {
    border-right: none;
}

.form-inline-row .form-field input,
.form-inline-row .form-field select {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
}

.form-inline-row .form-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-inline-row .form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

.form-inline-row .form-field select option {
    background-color: #1a1a1a;
    color: #fff;
}

/* 提交按钮列 */
.form-inline-row .form-submit-field {
    flex: 0 0 auto;
    border-right: none;
}

.btn-form-submit {
    height: 60px;
    padding: 0 40px;
    background: linear-gradient(135deg, #FF8C00, #FF6347);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, #FF6347, #FF8C00);
    opacity: 0.9;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.consult-form {
}

/* 整改7：横排表单布局（旧版兼容） */
.consult-form.form-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.consult-form.form-horizontal .form-group {
    flex: 1;
    min-width: 150px;
}

.consult-form.form-horizontal .form-btn-group {
    flex: 0 0 auto;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: white;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ========================================
   特价专区 - 整改8：背景占位图，按钮占位图
   ======================================== */
.special-offers {
    position: relative;
}

.special-offers-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.special-offers-content {
    position: relative;
    z-index: 1;
}

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

.special-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.special-img {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

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

.special-info {
    padding: 25px;
    position: relative;
    text-align: center;
}

.special-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--accent-gradient);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.special-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.special-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.special-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #fff5f0, #fef0e8);
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #888;
}

.price-original-value {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.price-special-value {
    font-size: 22px;
    color: #e74c3c;
    font-weight: 800;
}

.special-btn-wrap {
    text-align: center;
    margin-top: 12px;
}

.btn-special {
    display: inline-block;
    padding: 10px 36px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.btn-special:hover {
    opacity: 0.9;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-special-placeholder {
    transition: var(--transition);
}

.btn-special-placeholder:hover {
    opacity: 0.9;
}

/* ========================================
   最新动态 - 整改9：第一条新闻图文放大
   ======================================== */
.news-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-column {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.news-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.5s ease;
}

.news-column:hover::before {
    height: 100%;
}

.news-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.news-column-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.news-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

/* 第一条新闻图文放大样式 */
.news-featured {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.news-featured-img {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    transition: var(--transition);
}

.news-featured-img:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-featured-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
    transition: var(--transition);
}

.news-featured-title:hover {
    color: var(--primary-color);
}

.news-list {
    margin-bottom: 20px;
}

.news-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
}

.news-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.news-content {
    flex: 1;
}

.news-title {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.5;
    transition: var(--transition);
}

.news-title:hover {
    color: var(--primary-color);
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-lighter);
}

.news-date i {
    font-size: 11px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-more:hover {
    color: var(--accent-color);
    gap: 12px;
}

.btn-more:hover i {
    transform: translateX(3px);
}

.news-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.news-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.news-animate[data-delay="0"] { transition-delay: 0s; }
.news-animate[data-delay="1"] { transition-delay: 0.2s; }
.news-animate[data-delay="2"] { transition-delay: 0.4s; }

/* ========================================
   经典案例 - 整改10：数字效果+背景占位图，按钮滚动
   ======================================== */
.classic-cases {
    position: relative;
    /* 不设置 overflow:hidden，避免裁切内容 */
    padding: 50px 0 60px;
}

/* 复古标签造型外框 - 仅包裹数字统计区域，圆角设计 */
.case-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 0 auto 60px;
    position: relative;
    max-width: 700px;
    padding: 35px 60px;
    background: #ffffff;
}

/* 外层金线边框 - 圆角 */
.case-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border: 2px solid #c9a96e;
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

/* 内层金线边框 - 圆角 */
.case-stats::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: transparent;
    border: 1px solid #d4b97a;
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.cases-content {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-bg-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 12px;
}

/* 案例卡片滚动外层 */
.cases-carousel-section {
    position: relative;
    z-index: 1;
    padding: 20px 0 40px;
    overflow: hidden;
}

/* 左右渐变遮罩 */
.cases-carousel-section::before,
.cases-carousel-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.cases-carousel-section::before {
    left: 5%;
    background: linear-gradient(to right, #ffffff, transparent);
}
.cases-carousel-section::after {
    right: 5%;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* 滚动轨道 */
.cases-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.cases-slider {
    display: flex;
    gap: 30px;
    padding: 15px 0 25px;
    width: max-content;
    /* animation 由JS动态注入，精确控制平移距离 */
}

.cases-slider:hover {
    animation-play-state: paused;
}

/* 案例卡片 */
.case-card {
    min-width: 320px;
    max-width: 320px;
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.case-card:hover {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    z-index: 5;
}

.case-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    margin: 0 auto 15px;
    border: 3px solid rgba(139, 0, 0, 0.15);
}

/* 案例头像容器 - 圆形渐变背景 */
.case-avatar-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000 0%, #C41E3A 50%, #FF6B6B 100%);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

/* 案例详情页主图头像容器 */
.case-main-avatar {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(212, 185, 122, 0.1));
    border-radius: 12px;
    margin-bottom: 30px;
}

.case-main-avatar .avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #D4B97A);
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.case-main-avatar .case-avatar-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(139,0,0,0.2);
    box-shadow: 0 8px 32px rgba(139,0,0,0.15);
}

/* CSS首字母头像 */
.avatar-initial {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 案例头像图片 - 覆盖在渐变背景上 */
.case-avatar-wrapper .case-avatar-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.case-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.case-country {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.case-country i {
    margin-right: 4px;
}

.case-story {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

.case-story::before {
    content: '"';
    font-size: 48px;
    color: rgba(139, 0, 0, 0.1);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ========================================
   经典案例列表页样式（独立于首页跑马灯）
   ======================================== */

/* 案例列表容器 */
.cases-page-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* 单条案例卡片 → 左图右文 */
.case-list-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
}

.case-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 左侧图片 */
.case-list-img {
    position: relative;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
    display: block;
}

.case-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-list-card:hover .case-list-img img {
    transform: scale(1.08);
}

/* 分类标签 */
.case-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.tag-client {
    background: var(--primary-color);
}

.tag-story {
    background: #e67e22;
}

/* 右侧信息区 */
.case-list-info {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-list-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-lighter);
}

.case-list-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.case-list-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.case-list-title a {
    color: inherit;
    transition: var(--transition);
}

.case-list-title a:hover {
    color: var(--primary-color);
}

.case-list-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 案例卡片底部 */
.case-list-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* 小程序标签 */
.case-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 12px;
    font-size: 12px;
}

/* ========================================
   案例详情页样式
   ======================================== */

.case-detail-section {
    padding: 60px 0;
}

.case-detail-main {
    max-width: 860px;
    margin: 0 auto;
}

.case-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.case-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.case-detail-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.case-detail-meta span {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.case-detail-meta i {
    color: var(--primary-color);
}

/* 导语 */
.case-intro {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.case-intro p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

/* 客户信息卡片 */
.case-client-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
}

.client-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
}

.client-card-header i {
    margin-right: 8px;
}

.client-card-body {
    padding: 20px;
}

.client-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 14px;
    line-height: 1.6;
}

.client-row:last-child {
    border-bottom: none;
}

.client-label {
    color: var(--text-light);
    min-width: 90px;
    flex-shrink: 0;
}

.client-value {
    color: var(--text-dark);
    font-weight: 500;
}

/* 时间轴 */
.case-timeline {
    position: relative;
    padding-left: 30px;
    margin: 25px 0;
}

.case-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color) 60%, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 18px;
    padding-left: 25px;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.timeline-content strong {
    color: var(--text-dark);
}

/* 案例亮点 */
.case-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
}

.highlight-item {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: #16a34a;
    font-size: 18px;
    flex-shrink: 0;
}

/* 案例图片 */
.case-image-row {
    margin: 25px 0;
}

.case-image-row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.image-caption {
    text-align: center;
    font-size: 13px;
    color: var(--text-lighter);
    margin-top: 10px;
}

/* 客户感言 */
.case-testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.case-testimonial p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* 内容通用样式（案例详情也复用） */
.case-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

.case-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 35px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.case-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.case-content ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.case-content ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* 响应式 */
@media (max-width: 992px) {
    .case-list-card {
        grid-template-columns: 1fr;
    }

    .case-list-img {
        min-height: 200px;
        height: 200px;
    }

    .case-main-img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .case-list-info {
        padding: 20px;
    }

    .case-list-title {
        font-size: 18px;
    }

    .case-main-img {
        height: 220px;
    }

    .case-content h2 {
        font-size: 24px;
    }

    .case-content h3 {
        font-size: 20px;
    }

    .case-client-card .client-row {
        flex-direction: column;
        gap: 4px;
    }

    .case-testimonial {
        padding: 25px;
    }
}/* ========================================
   页脚
   ======================================== */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}
.footer-logo img {
    display: block;
    margin: 0 auto 20px;
}
.footer-column:first-child .footer-desc {
    text-align: center;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

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

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 3px;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ========================================
   返回顶部按钮
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cases-slider {
        animation-duration: 20s;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

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

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

    .cases-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        animation: none;
        -webkit-overflow-scrolling: touch;
    }

    .case-card {
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }

    /* 手机端轮播图渐变遮罩覆盖更大面积 */
    .hero-slide::after {
        width: 70%;
        background: linear-gradient(to left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    }

    .hero-title {
        font-size: 36px;
        text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-subtitle {
        font-size: 20px;
        text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
        -webkit-text-stroke: 1px #FF8C00;
        text-stroke: 1px #FF8C00;
        paint-order: stroke fill;
    }

    .hero-desc {
        font-size: 16px;
        text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
        -webkit-text-stroke: 1px #FF8C00;
        text-stroke: 1px #FF8C00;
        paint-order: stroke fill;
    }

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

    .case-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .chinese-border-wrapper {
        padding: 20px;
    }

    .hero-nav {
        display: none;
    }

    .certificates-slider {
        animation-duration: 10s;
    }
}

/* ========================================
   动画效果
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   新样式：服务流程 - 简洁占位图+文字
   ======================================== */
.service-process {
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.process-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-item {
    text-align: center;
}

.process-item .process-img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.process-item:hover .process-img {
    transform: scale(1.02);
}

.process-item .process-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-item .process-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   新样式：为什么选择信美 - 简洁占位图+文字
   ======================================== */
.why-choose-us {
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
    padding-bottom: 40px;
}

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

.feature-simple {
    text-align: center;
}

.feature-simple .feature-img {
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    cursor: pointer;
    margin: 0 auto;
}

.feature-simple:hover .feature-img {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.feature-simple .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-simple .feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 占位图通用样式 */
.placeholder-img {
    cursor: pointer;
    transition: var(--transition);
}

.placeholder-img:hover {
    opacity: 0.8;
}

/* ========================================
   新闻页面样式优化
   ======================================== */

/* 页面横幅 */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-top: 0;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 16px;
    opacity: 0.9;
}

/* 面包屑导航 */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 500;
}

/* 新闻筛选按钮 */
.news-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* 新闻网格布局 - 优化为单列大卡片 */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* 新闻卡片 - 优化样式 */
.news-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 新闻图片 */
.news-card .news-img {
    position: relative;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.08);
}

/* 新闻分类标签 */
.news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

/* 新闻信息 */
.news-card .news-info {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-lighter);
}

.news-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-title:hover {
    color: var(--primary-color);
}

.news-title a {
    color: inherit;
}

.news-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 新闻卡片底部 */
.news-footer {
    margin-top: auto;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* 分页样式优化 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num, .page-prev, .page-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-prev, .page-next {
    width: 40px;
}

.page-num:hover, .page-prev:hover, .page-next:hover {
    background: var(--primary-color);
    color: #fff;
}

.page-num.active {
    background: var(--primary-color);
    color: #fff;
}

/* ========================================
   新闻详情页样式优化
   ======================================== */

.news-detail-section {
    padding: 60px 0;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* 新闻主图 */
.news-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* 新闻内容区 */
.news-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.news-content .news-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.news-content .news-meta span {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content .news-meta i {
    color: var(--primary-color);
}

.news-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

.news-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 35px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

/* ===== 项目详情内容排版 ===== */
.project-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 35px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
    line-height: 1.4;
}

.project-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 16px;
    text-align: justify;
}

.project-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.project-content ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.project-content ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.news-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.news-content ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.news-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* 相关新闻推荐 */
.related-news {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.related-news h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.related-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card-info {
    padding: 20px;
}

.related-card-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
    transition: var(--transition);
}

.related-card:hover .related-card-info h4 {
    color: var(--primary-color);
}

.related-card-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* 响应式优化 */
@media (max-width: 992px) {
    .news-card {
        grid-template-columns: 1fr;
    }
    
    .news-card .news-img {
        min-height: 200px;
        height: 200px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .news-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .news-card .news-info {
        padding: 20px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .news-main-img {
        height: 250px;
    }
    
    .news-content h2 {
        font-size: 24px;
    }
    
    .news-content h3 {
        font-size: 20px;
    }
}

/* ========================================
   新闻详情页新增样式
   ======================================== */

/* 导语 */
.news-intro {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.news-intro p {
    margin-bottom: 0 !important;
}

/* 高亮提示 */
.news-highlight {
    display: flex;
    gap: 15px;
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 24px;
    color: #ff8f00;
    flex-shrink: 0;
}

.highlight-content {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* FAQ样式 */
.news-faq {
    margin: 30px 0;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA按钮区 */
.news-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.news-cta h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.news-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #fff !important;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

/* 分享按钮 */
.news-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.share-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.share-wechat {
    background: #07c160;
    color: #fff;
}

.share-weibo {
    background: #e6162d;
    color: #fff;
}

.share-qq {
    background: #12b7f5;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 侧边栏卡片（如果后续需要） */
.sidebar-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.related-news-list {
    list-style: none;
    padding: 0;
}

.related-news-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.related-news-list li:last-child {
    border-bottom: none;
}

.related-news-list a {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    transition: var(--transition);
    display: block;
}

.related-news-list a:hover {
    color: var(--primary-color);
}

.related-news-list .news-date {
    display: block;
    font-size: 12px;
    color: var(--text-lighter);
    margin-top: 5px;
}
}

/* 在线客服悬浮框 */
.online-customer-service {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    animation: servicePulse 2s ease-in-out infinite;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: serviceBadge 2s ease-in-out infinite;
}

.service-icon:hover {
    background: var(--primary-dark);
    animation: none;
}

@keyframes servicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(139, 0, 0, 0); }
}

@keyframes serviceBadge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.service-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--primary-color);
    color: white;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0 0 0 8px;
    width: 50px;
    box-sizing: border-box;
    text-align: center;
}

.service-qrcode-wrapper {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    min-width: 200px;
    text-align: center;
}

.online-customer-service:hover .service-qrcode-wrapper {
    opacity: 1;
    visibility: visible;
}

.service-qrcode {
    width: 180px;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.service-tip {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    line-height: 1.4;
}

/* ========================================
   占位图样式 - 圆角效果
   ======================================== */
img[src*="placeholders"] {
    border-radius: 4px;
}

/* ========================================
   页面横幅
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/placeholders/page-banner-bg.png') center/cover;
    opacity: 0.1;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========================================
   招贤纳士 - 岗位列表页
   ======================================== */
.careers-section {
    background-color: var(--bg-light);
}

.careers-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.career-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.career-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.career-card-header {
    padding: 25px 30px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.career-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.tag i {
    font-size: 12px;
}

.tag-dept {
    background-color: rgba(139, 0, 0, 0.1);
    color: var(--primary-color);
}

.tag-location {
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--accent-color);
}

.tag-salary {
    background-color: rgba(212, 175, 55, 0.15);
    color: #b8860b;
    font-weight: 600;
}

.career-card-body {
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.career-requirements h4,
.career-desc h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.career-requirements h4 i,
.career-desc h4 i {
    color: var(--accent-color);
}

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

.career-requirements ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.career-requirements ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.career-desc p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.career-card-footer {
    padding: 20px 30px;
    background: linear-gradient(90deg, rgba(139, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 1px dashed var(--border-color);
}

.btn-career {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-career:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.btn-career i {
    transition: transform 0.3s ease;
}

.btn-career:hover i {
    transform: translateX(4px);
}

/* ========================================
   招贤纳士 - 职位详情页
   ======================================== */
.career-detail-section {
    background-color: var(--bg-light);
}

.career-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.career-detail-main {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.career-detail-header {
    padding: 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.career-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.career-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.career-detail-tags .tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.career-detail-tags .tag-dept {
    background-color: rgba(255, 255, 255, 0.2);
}

.career-detail-tags .tag-location {
    background-color: rgba(255, 255, 255, 0.2);
}

.career-detail-tags .tag-salary {
    background-color: rgba(212, 175, 55, 0.4);
}

.career-detail-content {
    padding: 35px;
}

.career-detail-block {
    margin-bottom: 35px;
}

.career-detail-block:last-child {
    margin-bottom: 0;
}

.career-detail-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-detail-block h3 i {
    color: var(--accent-color);
}

.career-detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-detail-block ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.career-detail-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li::before {
    display: none;
}

.benefits-list li i {
    color: #28a745;
    font-size: 16px;
}

.career-detail-actions {
    padding: 25px 35px;
    background: linear-gradient(90deg, rgba(139, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 1px dashed var(--border-color);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    transition: var(--transition);
}

.btn-back:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 0, 0, 0.05);
}

.btn-back i {
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-4px);
}

/* ========================================
   应聘表单
   ======================================== */
.career-apply-sidebar {
    position: sticky;
    top: 20px;
}

.career-apply-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 4px solid var(--accent-color);
}

.career-apply-card h3 {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-apply-card h3 i {
    color: var(--accent-color);
}

.career-apply-form {
    padding: 30px;
}

.career-apply-form .form-group {
    margin-bottom: 22px;
}

.career-apply-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.career-apply-form .form-group label i {
    color: var(--accent-color);
    font-size: 14px;
}

.career-apply-form .form-group input,
.career-apply-form .form-group select,
.career-apply-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.career-apply-form .form-group input::placeholder,
.career-apply-form .form-group textarea::placeholder {
    color: var(--text-lighter);
}

.career-apply-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.career-apply-form .form-group select option {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.career-apply-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 文件上传样式 */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.file-upload-btn i {
    font-size: 24px;
    color: var(--accent-color);
}

.file-upload-wrapper:hover .file-upload-btn {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(255, 140, 0, 0.08) 100%);
}

.file-hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-lighter);
    text-align: center;
}

/* 表单按钮 */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.btn-submit-career {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-career:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.btn-reset-career {
    width: 100%;
    padding: 14px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset-career:hover {
    border-color: var(--text-light);
    background: var(--bg-light);
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.form-note i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   响应式适配
   ======================================== */
@media (max-width: 1024px) {
    .career-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .career-apply-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .career-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-card-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .career-apply-form {
        padding: 20px;
    }
}

/* ========== 联系信美页面 ========== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.contact-info-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-info-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.contact-info-card .contact-card-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #fdf2e9, #fdebd0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
}
.contact-info-card.phone-highlight {
    background: linear-gradient(135deg, #8b0000, #a00000);
    color: #fff;
    border-color: transparent;
}
.contact-info-card.phone-highlight .contact-card-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.contact-info-card h4 {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-bottom: 8px;
}
.contact-info-card.phone-highlight h4 {
    color: rgba(255,255,255,0.8);
}
.contact-info-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}
.contact-info-card.phone-highlight p {
    color: #fff;
}
.contact-info-card .phone-number {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.contact-info-card .phone-sub {
    font-size: 12px;
    color: #999;
}
.contact-info-card.phone-highlight .phone-sub {
    color: rgba(255,255,255,0.7);
}

/* 联系操作按钮 */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.btn-contact-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #8b0000, #a00000);
    color: #fff;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    text-decoration: none;
}
.btn-contact-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}
.btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    border: 2px solid #8b0000;
    color: #8b0000;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-contact-secondary:hover {
    background: #8b0000;
    color: #fff;
    transform: translateY(-2px);
}

/* 公司简介块 */
.contact-intro {
    background: #faf8f4;
    border-radius: 12px;
    padding: 24px 30px;
    border-left: 4px solid #d49a47;
}
.contact-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}
.contact-intro p + p {
    margin-top: 10px;
}
.contact-intro a {
    color: #8b0000;
    font-weight: 600;
}

/* 地图 */
.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.contact-map-inner iframe {
    display: block;
}

/* ========== 分支机构列表页 ========== */
.branches-site-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.branch-site-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.branch-site-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.branch-site-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.branch-site-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.branch-site-card:hover .branch-site-img img {
    transform: scale(1.05);
}
.branch-site-body {
    padding: 22px 20px;
}
.branch-site-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0ece4;
}
.branch-site-meta {
    margin-bottom: 16px;
}
.branch-site-meta p {
    font-size: 13px;
    color: #777;
    line-height: 2.0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.branch-site-meta p i {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}
.btn-branch-site {
    display: inline-block;
    padding: 9px 28px;
    background: linear-gradient(135deg, #8b0000, #a00000);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    text-decoration: none;
}
.btn-branch-site:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

/* 响应式 - 联系页面和分支页面 */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .branches-site-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-contact-primary,
    .btn-contact-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .contact-info-card .phone-number {
        font-size: 22px;
    }
    .contact-intro {
        padding: 16px 18px;
    }
    .branches-site-grid {
        grid-template-columns: 1fr;
    }
    .branch-site-img {
        height: 180px;
    }
}

/* ===================== 专家团队 富文本区 ===================== */
.team-richtext {
    max-width: 1100px;
    margin: 0 auto;
}

/* 图文混排块 */
.team-rt-block {
    margin-bottom: 60px;
}

/* 左图右文 */
.team-rt-imgtext {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.team-rt-imgtext .team-rt-img {
    flex: 0 0 420px;
    max-width: 420px;
}
.team-rt-imgtext .team-rt-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.team-rt-img-caption {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}
.team-rt-text {
    flex: 1;
    padding-top: 10px;
}
.team-rt-text h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}
.team-rt-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 14px;
}

/* 多图一排 */
.team-rt-imgs .team-rt-img-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-rt-img-item {
    text-align: center;
}
.team-rt-img-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-rt-img-item img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.team-rt-img-item p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

@media (max-width: 900px) {
    .team-rt-imgtext {
        flex-direction: column;
    }
    .team-rt-imgtext .team-rt-img {
        flex: none;
        max-width: 100%;
    }
    .team-rt-imgs .team-rt-img-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .team-rt-imgs .team-rt-img-row {
        grid-template-columns: 1fr;
    }
}

/* ===================== 在线评估 简洁表单 ===================== */
/* ============== 在线评估（极简版）============== */
.assessment-simple-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.assessment-intro {
    text-align: center;
    margin-bottom: 32px;
}

.assessment-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.assessment-intro p {
    font-size: 15px;
    color: var(--text-light);
}

/* 极简单列表单 */
.assessment-simple-form {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.assessment-simple-form .form-field {
    margin-bottom: 16px;
}

.assessment-simple-form .form-field:last-of-type {
    margin-bottom: 20px;
}

/* 输入框统一样式 */
.assessment-simple-form input[type="text"],
.assessment-simple-form input[type="tel"],
.assessment-simple-form select,
.assessment-simple-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
    font-family: inherit;
}

/* placeholder 颜色 */
.assessment-simple-form input::placeholder,
.assessment-simple-form textarea::placeholder {
    color: #b0b0b0;
}

.assessment-simple-form select {
    color: #333;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
}

/* 默认 placeholder option 颜色 */
.assessment-simple-form select option[value=""] {
    color: #b0b0b0;
}

.assessment-simple-form select option:not([value=""]) {
    color: #333;
}

.assessment-simple-form input:focus,
.assessment-simple-form select:focus,
.assessment-simple-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}

.assessment-simple-form textarea {
    resize: vertical;
    min-height: 50px;
}

/* 隐私协议 */
.form-privacy {
    margin-bottom: 24px;
    text-align: center;
}

.form-privacy .checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-privacy .checkbox-wrapper input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--accent-color);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.form-privacy .checkbox-wrapper span {
    font-size: 13px;
    color: #999;
}

.form-submit-row {
    text-align: center;
}

.btn-assessment-submit {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(135deg, var(--accent-color), #e07800);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-assessment-submit:hover {
    background: linear-gradient(135deg, #e07800, var(--accent-color));
    box-shadow: 0 6px 24px rgba(255,140,0,0.4);
}

@media (max-width: 600px) {
    .assessment-simple-form {
        padding: 28px 20px;
    }
    .assessment-form-title {
        font-size: 24px;
    }
}


/* ========================================
   经典案例列表页 - 横向卡片布局（覆盖首页跑马灯样式）
   ======================================== */
.cases-page-list .case-card {
    min-width: auto;
    max-width: 100%;
    flex-shrink: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    text-align: left;
    border-radius: 12px;
    cursor: pointer;
}
.cases-page-list .case-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid rgba(139, 0, 0, 0.15);
}
.cases-page-list .case-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cases-page-list .case-info {
    flex: 1;
}
.cases-page-list .case-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.cases-page-list .case-project {
    font-size: 14px;
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 8px;
}
.cases-page-list .case-story {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}
@media (max-width: 768px) {
    .cases-page-list .case-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .cases-page-list .case-avatar {
        margin: 0 auto 15px;
    }
}

/* ========== 统一模板详情页样式 ========== */
.template-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.template-block {
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 25px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-left: 4px solid #8B0000;
    transition: box-shadow 0.3s;
}

.template-block:hover {
    box-shadow: 0 4px 24px rgba(139,0,0,0.1);
}

.template-block .block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B0000, #c0392b);
    color: white;
    font-size: 18px;
    margin-right: 14px;
    flex-shrink: 0;
}

.template-block .block-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e8e8e8;
}

.template-block .block-header h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin: 0;
    font-weight: 700;
}

.template-block p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

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

.template-list li {
    position: relative;
    padding: 10px 0 10px 40px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}

.template-list li:last-child {
    border-bottom: none;
}

.template-list li .list-num {
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #8B0000;
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.process-list li {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    position: relative;
}

.process-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8B0000, transparent);
}

.process-list .step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #c0392b);
    color: white;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
    box-shadow: 0 3px 10px rgba(139,0,0,0.2);
}

.process-list .step-content {
    padding-top: 8px;
}

.notes-block {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border-left-color: #f0a500;
    border-radius: 10px;
}

.notes-block .block-icon {
    background: linear-gradient(135deg, #f0a500, #e09e00);
}

.gallery-block {
    border-left-color: #2c7a4d;
}

.gallery-block .block-icon {
    background: linear-gradient(135deg, #2c7a4d, #45a049);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    background: #fafafa;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    border-color: #8B0000;
    box-shadow: 0 4px 18px rgba(139,0,0,0.15);
    transform: translateY(-2px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .hover-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .hover-hint {
    opacity: 1;
}

.cert-block {
    border-left-color: #2c7a4d;
}

.cert-block .block-icon {
    background: linear-gradient(135deg, #2c7a4d, #45a049);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.cert-card {
    background: #fafafa;
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-card:hover {
    border-color: #8B0000;
    box-shadow: 0 4px 18px rgba(139,0,0,0.12);
    transform: translateY(-2px);
}

.cert-card .cert-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    background: #eee;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cert-card .cert-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-card .cert-img-wrap .hover-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.cert-card:hover .cert-img-wrap .hover-hint {
    opacity: 1;
}

.cert-card .cert-label {
    font-size: 13px;
    color: #555;
    text-align: center;
    line-height: 1.6;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ff4444;
}

.lightbox-caption {
    color: #ccc;
    margin-top: 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .template-block {
        padding: 20px 20px;
    }
    .template-list li,
    .process-list li {
        font-size: 14px;
    }
    .template-block .block-header h3 {
        font-size: 17px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* 手机端特价卡片价格样式 */
.m-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.m-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.m-special-price {
    font-size: 14px;
    color: #e74c3c;
    font-weight: bold;
}
