/* ========================================
   郑州威众汽车 - 高端版样式设计
   设计理念: 现代、简约、专业、大气
   ======================================== */

:root {
    /* 品牌色系 - 更精致的配色 */
    --primary-color: #002952;        /* 深邃蓝 */
    --primary-light: #003d7a;        /* 经典蓝 */
    --primary-gradient: linear-gradient(135deg, #002952 0%, #004080 100%);

    --secondary-color: #c8102e;      /* 激情红 */
    --accent-gold: #d4af37;          /* 尊贵金 */
    --accent-silver: #c0c0c0;        /* 典雅银 */

    /* 中性色 - 更细腻的层次 */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #757575;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --border-color: #e5e7eb;

    /* 字体系统 */
    --font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;

    /* 间距系统 (8px基准) */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 6rem;     /* 96px */

    /* 圆角系统 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* 阴影系统 - 更精致的层次 */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* 过渡动画 */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

/* ========================================
   通用类
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: var(--spacing-lg);
    font-weight: 400;
}

.bg-light {
    background: linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/backgrounds/section-subtle.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
}

.bg-dark {
    background: linear-gradient(135deg, #001a33 0%, #002952 100%);
    color: white;
}

/* ========================================
   按钮系统 - 高端设计
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   导航栏 - 玻璃态设计
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1440px;
    margin: 0 auto;
}

.nav__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.brand__subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav__list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav__link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-base);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-base);
    border-radius: 1px;
}

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

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

/* 语言切换器 - 内联在导航栏中 */
.nav__language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 41, 82, 0.08) 0%, rgba(0, 64, 128, 0.08) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 41, 82, 0.12);
    transition: var(--transition-base);
}

.nav__language:hover {
    background: linear-gradient(135deg, rgba(0, 41, 82, 0.12) 0%, rgba(0, 64, 128, 0.12) 100%);
    border-color: rgba(0, 41, 82, 0.2);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.lang-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.lang-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    color: white;
    background: var(--primary-gradient);
    box-shadow: 0 2px 8px rgba(0, 41, 82, 0.3);
}

.lang-divider {
    color: rgba(0, 41, 82, 0.3);
    font-weight: 300;
    font-size: 14px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-base);
    border-radius: 1px;
}

/* ========================================
   主页横幅 - 沉浸式设计
   ======================================== */
.hero {
    margin-top: 80px;
    min-height: 95vh;
    background: linear-gradient(135deg, rgba(0, 17, 34, 0.95) 0%, rgba(0, 41, 82, 0.92) 50%, rgba(0, 61, 122, 0.9) 100%),
                url('../images/backgrounds/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 61, 122, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
    animation: lightMove 15s ease-in-out infinite;
}

@keyframes lightMove {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero__container {
    position: relative;
    z-index: 1;
    padding: var(--spacing-3xl) 0;
    width: 100%;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.03em;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat__item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
}

.stat__item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;  /* 防止数字和单位换行 */
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
    animation: fadeInUp 1s ease 0.6s both;
}

/* ========================================
   车型展示 - 卡片式设计
   ======================================== */
.vehicles {
    background: var(--bg-lighter);
}

.vehicles__tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.tab__button {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.tab__button:hover,
.tab__button.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vehicles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--spacing-xl);
}

.vehicle__card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
}

.vehicle__card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.vehicle__image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f2f5 0%, #e5e7eb 100%);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle__image::after {
    content: '';
    display: none;
}

.vehicle__badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vehicle__content {
    padding: var(--spacing-lg);
}

.vehicle__brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vehicle__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.vehicle__description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.vehicle__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.feature__tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg-lighter);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.vehicle__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.price__label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.price__value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.vehicle__action {
    margin-top: var(--spacing-md);
}

.btn-vehicle {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-lighter);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-vehicle:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* ========================================
   关于我们 - 分栏布局优化
   ======================================== */
.about__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about__intro-card,
.about__service-card,
.about__partner-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about__intro-card::before,
.about__service-card::before,
.about__partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.about__intro-card:hover,
.about__service-card:hover,
.about__partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.about__text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.about__text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-size: 1.0625rem;
}

.about__text h3:first-child {
    margin-top: 0;
}

.about__text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* 当服务范围在右侧信息栏时,改为2列布局 */
.info__card .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.service__item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-lighter);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

/* 右侧信息栏中的服务项样式优化 */
.info__card .service__item {
    padding: var(--spacing-sm);
}

.info__card .service__icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info__card .service__item h4 {
    font-size: 0.875rem;
}

.service__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: var(--primary-color);
}

.service__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: grayscale(0.3);
}

.service__item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.about__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info__card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.info__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.info__card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info__card h4::before {
    content: '';
    width: 4px;
    height: 1.25rem;
    background: var(--accent-gold);
    border-radius: 2px;
}

.info__card p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.info__card strong {
    color: var(--primary-color);
    font-weight: 600;
}

.brand__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-base);
}

.brand__list li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

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

/* ========================================
   业绩数据 - 数据可视化
   ======================================== */
.achievements__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.achievement__card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.achievement__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.achievement__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.achievement__icon {
    font-size: 2rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.achievement__title {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.achievement__list {
    list-style: none;
}

.achievement__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.achievement__list strong {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
}

/* 荣誉奖项 */
.honors__title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.honors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.honor__item {
    background: white;
    border-left: 4px solid var(--accent-gold);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.honor__item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.honor__year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.honor__name {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* ========================================
   领导团队 - 卡片式优化
   ======================================== */
.leader__content {
    /* 移除max-width限制,与其他版块保持一致 */
    width: 100%;
}

.leader__profile {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.leader__header {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
}

.leader__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
}

.leader__name {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.leader__position {
    font-size: 1.375rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.leader__info {
    padding: var(--spacing-2xl);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.info__section {
    margin-bottom: 0;
    padding-bottom: var(--spacing-lg);
    border-bottom: none;
    background: var(--bg-lighter);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    height: 100%;
}

.info__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info__section h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info__section h4::before {
    content: '';
    width: 6px;
    height: 1.5rem;
    background: var(--accent-gold);
    border-radius: 3px;
}

.info__section p {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.info__section ul {
    list-style: none;
    margin-left: 0;
}

.info__section ul li {
    padding: 0.75rem 0 0.75rem var(--spacing-md);
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
}

.info__section ul li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.management__principles {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.principle__item {
    background: var(--bg-lighter);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
}

.principle__item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.principle__item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.principle__item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   精英创富和创业故事版块样式
   ======================================== */
.section__margin {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 2px solid var(--border-color);
}

.subsection__title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.subsection__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* 精英创富版块 */
.elite__competition {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.elite__content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    margin-top: var(--spacing-xl);
}

.elite__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.elite__image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.elite__image img {
    width: 100%;
    height: auto;
    display: block;
}

.elite__story {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.story__intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    padding: var(--spacing-md);
    background: var(--bg-lighter);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
}

.story__highlight {
    background: var(--bg-lighter);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.story__highlight:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.story__highlight h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.story__highlight p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.story__quote {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-left: 4px solid var(--accent-gold);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    margin-top: var(--spacing-md);
}

.story__quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.story__quote cite {
    display: block;
    text-align: right;
    margin-top: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* 创业故事版块 */
.entrepreneurship__story {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.story__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.story__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.story__chapter {
    background: var(--bg-lighter);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition-base);
}

.story__chapter:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.story__chapter h4 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.story__chapter p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.story__chapter p:last-child {
    margin-bottom: 0;
}

.strategy__list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.strategy__list li {
    padding: 0.75rem 0 0.75rem var(--spacing-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.strategy__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.story__image {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.story__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.story__image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.image__caption {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-style: italic;
    padding: var(--spacing-sm);
}

/* 响应式设计 - 精英创富和创业故事 */
@media screen and (max-width: 1024px) {
    .elite__content,
    .story__content {
        grid-template-columns: 1fr;
    }

    .elite__image,
    .story__image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .story__image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .subsection__title {
        font-size: 1.625rem;
    }

    .elite__competition,
    .entrepreneurship__story {
        padding: var(--spacing-lg);
    }

    .story__highlight,
    .story__chapter {
        padding: var(--spacing-md);
    }

    .story__quote {
        padding: var(--spacing-md);
        font-size: 1rem;
    }

    .story__chapter h4 {
        font-size: 1.125rem;
    }
}

/* ========================================
   创新技术 - 网格布局
   ======================================== */
.innovation__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-xl);
}

.innovation__card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.innovation__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.innovation__number {
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 41, 82, 0.03);
    z-index: 0;
    font-family: var(--font-display);
}

.innovation__title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.innovation__desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.innovation__features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.innovation__features li {
    padding: 0.75rem 0 0.75rem 1.75rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-secondary);
}

.innovation__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ========================================
   发展历程 - 时间轴优化
   ======================================== */
.timeline__container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 120px;
}

.timeline__container::before {
    content: '';
    position: absolute;
    left: 85px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
}

.timeline__year {
    position: absolute;
    left: -120px;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    font-family: var(--font-display);
    border: 4px solid white;
}

.timeline__content {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    margin-left: var(--spacing-md);
}

.timeline__content:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-xl);
}

.timeline__content h4 {
    color: var(--primary-color);
    font-size: 1.625rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.timeline__content p {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.timeline__content ul {
    list-style: none;
    margin-left: var(--spacing-md);
}

.timeline__content ul li {
    padding: 0.5rem 0 0.5rem var(--spacing-md);
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
}

.timeline__content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   联系我们 - 现代化布局
   ======================================== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.contact__item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.contact__details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact__details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact__map {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map__placeholder {
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, #e8f0f8 100%);
    padding: var(--spacing-xl);
    text-align: center;
}

.map__placeholder p:first-child {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.map__placeholder p:last-child {
    color: var(--text-muted);
}

/* ========================================
   页脚 - 精致设计
   ======================================== */
.footer {
    background: linear-gradient(135deg, #001122 0%, #002952 100%);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
}

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

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer__section h4 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    color: var(--accent-gold);
}

.footer__section p,
.footer__section li {
    opacity: 0.9;
    line-height: 1.8;
}

.footer__section ul li {
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.footer__section ul li:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    opacity: 0.8;
    margin: 0.5rem 0;
}

/* ========================================
   回到顶部按钮 - 浮动设计
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   动画定义
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   响应式设计 - 平板和手机适配
   ======================================== */
@media screen and (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }

    .about__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

    .timeline__container {
        padding-left: 100px;
    }

    .timeline__year {
        left: -100px;
        width: 70px;
        height: 70px;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }

    .section__title {
        font-size: 2.25rem;
    }

    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-md);
        transition: var(--transition-base);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav__menu.show {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--border-color);
    }

    /* 移动端语言切换器 */
    .nav__language {
        margin-top: var(--spacing-md);
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

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

    .hero__buttons {
        flex-direction: column;
    }

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

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

    .achievements__grid,
    .innovation__grid {
        grid-template-columns: 1fr;
    }

    .timeline__container {
        padding-left: 70px;
    }

    .timeline__container::before {
        left: 35px;
    }

    .timeline__year {
        left: -70px;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline__content {
        margin-left: 0;
    }

    .scroll-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width: 480px) {
    .hero__stats,
    .services__grid {
        grid-template-columns: 1fr;
    }

    .stat__number {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 1.875rem;
    }
}

/* ========================================
   打印样式优化
   ======================================== */
@media print {
    .header,
    .nav__toggle,
    .hero__buttons,
    .scroll-top,
    .btn {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* ========================================
   店面展示图片库样式
   ======================================== */
.showroom__gallery {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.gallery__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery__subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__caption {
    transform: translateY(0);
}

.gallery__caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery__caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery__image {
        height: 280px;
    }

    .gallery__title {
        font-size: 1.75rem;
    }

    .gallery__subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   视频展示样式
   ======================================== */
.video-showcase {
    background: var(--bg-lighter);
}

.video__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.video__wrapper {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
    object-fit: contain;
}

.video__info {
    padding: var(--spacing-lg);
    text-align: center;
}

.video__info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.video__info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .video__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .video__info {
        padding: 1.5rem;
    }

    .video__info h3 {
        font-size: 1.25rem;
    }

    .video__info p {
        font-size: 0.9rem;
    }
}

/* ========================================
   开城仪式照片拼图展示
   ======================================== */
.opening__gallery {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.opening__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.opening__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.opening__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.opening__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.opening__item:hover img {
    transform: scale(1.05);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .opening__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .opening__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .opening__item img {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .opening__grid {
        grid-template-columns: 1fr;
    }

    .opening__item img {
        height: 280px;
    }
}

/* ========================================
   百度地图错误弹窗隐藏样式
   说明: 百度地图API在Referer校验失败时会显示错误提示弹窗
   这里通过CSS隐藏这些错误提示,避免影响用户体验
   ======================================== */
/* 隐藏百度地图错误提示弹窗 */
.BMap_noprint,
.anchorBL {
    display: none !important;
}

/* 隐藏百度地图版权信息中的错误提示 */
.BMap_cpyCtrl {
    display: none !important;
}

/* 隐藏百度地图所有可能的错误提示层 */
[class*="BMap"][class*="error"],
[class*="BMap"][class*="warn"],
[id*="BMap"][id*="error"],
[id*="BMap"][id*="warn"] {
    display: none !important;
}
