@charset "utf-8";
/* CSS Document */
/* ===== zfeng-components.css ===== */
/* 包含所有组件级样式，可在多个页面复用 */


/* === 头部导航组件 === */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-height);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 25px;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.header-left { display: flex; align-items: center; gap: 20px; }
.logo-link svg { height: 35px; width: auto; }
.phone-link { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--color-text-primary); 
    font-weight: bold; 
    font-size: 1rem; 
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.phone-link:hover {
    background: rgba(255, 140, 0, 0.1);
}
.phone-link svg { height: 20px; width: 20px; fill: var(--color-orange-vitality); }
.menu-toggle { 
    cursor: pointer; 
    padding: 10px; 
    background: rgba(255, 140, 0, 0.1); 
    border: none;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.menu-toggle:hover {
    background: rgba(255, 140, 0, 0.2);
}
.menu-toggle .hamburger { 
    width: 28px; 
    height: 2px; 
    background-color: var(--color-text-primary); 
    display: block; 
    position: relative; 
    transition: all 0.3s ease;
}
.menu-toggle .hamburger::before, 
.menu-toggle .hamburger::after { 
    content: ''; 
    width: 28px; 
    height: 2px; 
    background-color: var(--color-text-primary); 
    display: block; 
    position: absolute; 
    transition: transform 0.3s ease-in-out; 
}
.menu-toggle .hamburger::before { top: -8px; }
.menu-toggle .hamburger::after { top: 8px; }

/* === 侧边导航组件 === */
.side-nav { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 100%; 
    max-width: 400px; 
    height: 100vh; 
    background-color: var(--color-black-secondary); 
    z-index: 1001; 
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
    display: flex; 
    flex-direction: column; 
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.side-nav.active { right: 0; }
.nav-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 0 25px; 
    height: var(--header-height); 
    background: rgba(255, 140, 0, 0.1);
}
.close-menu { 
    cursor: pointer; 
    background: none; 
    border: none; 
    padding: 10px;
}
.close-menu .cross { width: 28px; height: 28px; position: relative; }
.close-menu .cross::before, .close-menu .cross::after { content: ''; position: absolute; top: 13px; left: 0; width: 28px; height: 2px; background-color: var(--color-orange-vitality); transition: all 0.3s ease; }
.close-menu .cross::before { transform: rotate(45deg); }
.close-menu .cross::after { transform: rotate(-45deg); }
.close-menu:hover .cross::before, 
.close-menu:hover .cross::after {
    background-color: #fff;
}
.nav-links { list-style: none; padding: 40px; flex-grow: 1; }
.nav-links li { margin-bottom: 15px; }
.nav-links a, .nav-item-toggle { 
    font-size: 1.8rem; 
    font-weight: 500; 
    color: var(--color-text-primary); 
    padding: 10px 0; 
    display: block; 
    position: relative; 
    transition: all 0.3s; 
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange-vitality);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--color-orange-vitality); }
.nav-links a:hover::after { width: 100%; }
.nav-item-toggle { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.nav-item-toggle .arrow { width: 14px; height: 14px; border-right: 2px solid var(--color-text-primary); border-bottom: 2px solid var(--color-text-primary); transform: rotate(45deg); transition: transform 0.3s, border-color 0.3s; }
.nav-item-toggle.open .arrow { transform: rotate(-135deg); }
.nav-item-toggle:hover .arrow { border-color: var(--color-orange-vitality); }
.submenu { list-style: none; padding-left: 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
.submenu.open { max-height: 500px; }
.submenu li { margin-top: 10px; }
.submenu a { font-size: 1.2rem; font-weight: 400; color: var(--color-text-secondary); }
.submenu a:hover { color: var(--color-orange-vitality); }




/* === 首屏组件 === */
#zhefeng {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
#zhefeng::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.5) 100%);
    z-index: 1;
}
.zhefeng-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}
.zhefeng-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    line-height: 1.2;
}
.zhefeng-content h1 span {
    color: var(--color-orange-vitality);
    position: relative;
}
.zhefeng-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-orange-vitality);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.8s ease;
}
.zhefeng-content h1.visible span::after {
    transform: scaleX(1);
    transform-origin: left;
}
.zhefeng-content p {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 视频背景组件 */
.zhefeng-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.zhefeng-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === 核心优势组件 === */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.advantage-item {
    background: rgba(30, 30, 30, 0.7);
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}
.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--color-orange-vitality);
}
.advantage-item .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    fill: var(--color-orange-vitality);
}
.advantage-item h3 {
    font-size: 1.4rem;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}
.advantage-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === 产品卡片组件 === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.product-card {
    background-color: var(--color-black-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,140,0,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.product-card:hover::before {
    opacity: 1;
}
.product-card .card-image {
    height: 220px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}
.product-card:hover .card-image {
    transform: scale(1.05);
}
.product-card .card-content {
    padding: 25px;
    position: relative;
}
.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}
.product-card .model {
    color: var(--color-orange-vitality);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}
.product-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-orange-vitality);
    display: block;
    margin-top: 10px;
}
.product-card .btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.product-card .detail-btn {
    flex: 1;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid var(--color-orange-vitality);
    color: var(--color-orange-vitality);
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}
.product-card .detail-btn:hover {
    background: var(--color-orange-vitality);
    color: #fff;
}

/* === 车型适配组件 === */
.model-icon-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}
.model-name {
    margin: 10px 0 5px;
    font-size: 18px;
    font-weight: bold;
}

/* === 工厂介绍组件 === */
.factory-icon-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* === 定制流程组件 === */
.process-icon-img {
    width: 220px;
    height: 120px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* === 改装案例组件 === */
.build-card {
    display: flex;
    background-color: var(--color-black-industrial);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    flex-direction: column;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.build-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--color-orange-vitality);
}
.build-card .card-image {
    flex: 1.5;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}
.build-card:hover .card-image {
    transform: scale(1.03);
}
.build-card .card-content {
    flex: 1;
    padding: 40px;
}
.build-card h3 {
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}
.build-card h3 span {
    color: var(--color-orange-vitality);
}
.build-card .build-list {
    list-style: none;
    margin: 20px 0;
}
.build-card .build-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}
.build-card .build-list li::before {
    content: '✔';
    color: var(--color-orange-vitality);
    position: absolute;
    left: 0;
}

/* === 轮播图组件 === */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    display: none;
}
.carousel-slide.active {
    display: block;
}
.carousel-slide img {
    width: 100%;
    display: block;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    text-align: center;
}
.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}
.carousel-navigation button {
    pointer-events: all;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.carousel-navigation button:hover {
    background-color: white;
}
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: white;
}

/* === 品牌墙组件 === */
.brand-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.brand-logo {
    height: 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.5);
}
.brand-logo:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

/* === 新闻卡片组件 === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.news-card {
    background-color: var(--color-black-industrial);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--color-orange-vitality);
}
.news-card .card-image { 
    height: 200px; 
    background-color: #444; 
    transition: all 0.5s ease;
}
.news-card:hover .card-image {
    transform: scale(1.05);
}
.news-card .card-content { padding: 25px; }
.news-card h3 { 
    font-size: 1.3rem; 
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.news-card:hover h3 {
    color: var(--color-orange-vitality);
}
.news-card .meta { font-size: 0.9rem; color: var(--color-orange-vitality); margin-bottom: 15px; }
.news-card a { 
    color: var(--color-orange-vitality); 
    font-weight: bold;
    position: relative;
    display: inline-block;
}
.news-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-orange-vitality);
    transition: width 0.3s ease;
}
.news-card a:hover::after {
    width: 100%;
}

/* === 社交媒体组件 === */
.social-container { 
    text-align: center; 
    position: relative;
    z-index: 1;
}
.social-icons { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 30px; }
.social-icon { 
    text-align: center; 
    color: var(--color-text-secondary); 
    transition: all 0.3s ease; 
    padding: 15px;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.5);
}
.social-icon:hover { 
    color: var(--color-orange-vitality); 
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.8);
}
.social-icon svg { 
    width: 50px; 
    height: 50px; 
    fill: currentColor; 
    margin-bottom: 10px; 
    transition: all 0.3s ease;
}
.social-icon:hover svg {
    transform: scale(1.1);
}
.social-icon span { display: block; font-size: 0.9rem; }
.qr-code-wrapper { position: relative; }
.qr-code-popup { 
    display: none; 
    position: absolute; 
    bottom: 110%; 
    left: 50%; 
    transform: translateX(-50%); 
    padding: 10px; 
    background-color: #fff; 
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
    animation: popup 0.4s ease forwards;
}
@keyframes popup {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.qr-code-popup .qr-placeholder { 
    width: 120px; 
    height: 120px; 
    background-color: #eee; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: #333; 
    font-size: 0.8rem; 
}
.qr-code-wrapper:hover .qr-code-popup { display: block; }

/* === 页脚组件 === */
.footer-content { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 40px; 
    position: relative;
    z-index: 1;
}
.footer-column { 
    flex: 1; 
    min-width: 200px; 
    text-align: left; 
}
.footer-column h4 { 
    color: var(--color-text-primary); 
    font-size: 1.2rem; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    display: inline-block; 
    position: relative;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-orange-vitality);
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a { 
    display: inline-block;
    transition: all 0.3s ease;
}
.footer-column ul a:hover { 
    color: var(--color-orange-vitality); 
    transform: translateX(5px);
}
.copyright { 
    text-align: center; 
    margin-top: 50px; 
    padding-top: 20px; 
    border-top: 1px solid #2a2a2a; 
    position: relative;
    z-index: 1;
}
.copyright a { 
    color: var(--color-orange-vitality); 
    transition: all 0.3s ease;
}
.copyright a:hover {
    text-decoration: underline;
}

/* === 返回顶部组件 === */
#back-to-top { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 50px; 
    height: 50px; 
    background-color: var(--color-orange-vitality); 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 999; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(20px); 
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s; 
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
#back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255,140,0,0.4);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top svg { width: 24px; height: 24px; fill: #fff; }

/* === 背景图案组件 === */
.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231e1e1e"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23333" stroke-width="0.5"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

 /* --- 通用容器和布局 --- */
  .zf-section-wrapper {
    padding: 60px 20px; /* 为板块提供上下间距 */
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- 喆锋语录/关于我们 板块 --- */
  .zf-about-section .zf-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右两栏布局 */
    gap: 50px; /* 两栏之间的间距 */
    align-items: center;
  }

  .zf-about-section .zf-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  .zf-about-section h2 {
    font-size: 2.2rem;
    color: #ff6f00; /* 沿用您设计中的橙色 */
    margin-bottom: 1rem;
  }

  .zf-about-section h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
  }

  .zf-about-section blockquote {
    border-left: 4px solid #ff6f00;
    padding-left: 25px;
    font-size: 1.1rem;
    font-style: italic;
    color: #a0a0a0;
    line-height: 1.8;
  }

  /* --- 精英团队 板块 --- */
  .zf-team-section .zf-grid-container {
    display: grid;
    grid-template-columns: 40% 1fr; /* 左侧图片栏占40%，右侧文案栏占剩余空间 */
    gap: 60px;
    align-items: flex-start; /* 顶部对齐 */
  }

  /* 左侧：竖向排列的照片栏 */
  .zf-team-photos-column {
    display: flex;
    flex-direction: column; /* 核心：使图片竖向排列 */
    gap: 20px; /* 图片之间的垂直间距 */
  }

  .zf-team-photos-column .zf-team-photo {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4 / 5; /* 保持图片比例，使其看起来更像肖像照 */
  }
  
  /* 右侧：文案信息栏 */
  .zf-team-info-column h2 {
    font-size: 2.2rem;
    color: #ff6f00;
    margin-bottom: 1rem;
  }

  .zf-team-info-column .zf-intro-paragraph {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 40px; /* 导语和成员介绍之间的距离 */
  }

  .zf-team-member-bio {
    margin-bottom: 30px; /* 每个成员介绍之间的距离 */
  }

  .zf-team-member-bio h4 {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 5px;
  }

  .zf-team-member-bio .zf-role {
    font-size: 1rem;
    font-weight: bold;
    color: #ff6f00; /* 突出显示角色 */
    margin-bottom: 10px;
  }

  .zf-team-member-bio p:not(.zf-role) {
    color: #a0a0a0;
    line-height: 1.7;
  }

  /* --- 响应式设计：屏幕小于992px时 --- */
  @media (max-width: 992px) {
    .zf-about-section .zf-grid-container,
    .zf-team-section .zf-grid-container {
      grid-template-columns: 1fr; /* 所有板块都变为单栏布局 */
      gap: 40px;
    }

    .zf-team-section .zf-grid-container {
       /* 在移动端，让图片栏横向滚动，而不是堆叠得太高 */
      grid-template-columns: 1fr;
    }

    .zf-team-photos-column {
      flex-direction: row; /* 变为横向排列 */
      overflow-x: auto; /* 允许横向滚动 */
      padding-bottom: 15px; /* 为滚动条留出空间 */
    }

    .zf-team-photos-column .zf-team-photo {
      width: 60%; /* 每张照片占60%宽度 */
      flex-shrink: 0; /* 防止图片被压缩 */
    }
  }
/* 定制需求表单基础样式 */
.custom-order-page {
    max-width: 800px;
    margin: 50px auto;
    background: #1b1b1b; /* 深色背景 */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    color: #fff;
    font-family: "Microsoft YaHei", sans-serif;
}

.custom-order-page h1 {
    font-size: 2rem;
    color: var(--color-orange-vitality, #ff6600);
    margin-bottom: 10px;
}

.custom-order-page p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
}

/* 表单样式 */
.custom-form label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff;
}

.custom-form input,
.custom-form textarea,
.custom-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
    border-color: var(--color-orange-vitality, #ff6600);
    outline: none;
}

.custom-form textarea {
    resize: vertical;
}

/* 按钮样式 */
.custom-form .btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--color-orange-vitality, #ff6600);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.custom-form .btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

/* 成功与失败提示 */
.form-success {
    background: #28a745;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.form-error {
    background: #dc3545;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

#custom-order-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh; /* 全屏高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.custom-order-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* 半透明遮罩 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-order-content {
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    z-index: 1;
}

.custom-order-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.custom-order-content h1 span {
    color: var(--color-orange-vitality, #ff6600);
}

.custom-order-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}



/* 响应式布局 */
@media (max-width: 600px) {
    .custom-order-page {
        padding: 20px;
    }
}
