/* 主题色与基础覆盖（参考站点风格对齐） */
:root {
    --brand-base: #ff4d4f; /* 主色 */
    --brand-base-dark: #d9363e;
    --brand-accent: #faad14; /* 辅色 */
    --brand-text: #17233d; /* 标题色 */
}

/* 按钮与文本主色 */
.btn-base-color {
    background-color: var(--brand-base) !important;
    border-color: var(--brand-base) !important;
    color: #fff !important;
}
.btn-base-color:hover,
.btn-base-color:focus {
    background-color: var(--brand-base-dark) !important;
    border-color: var(--brand-base-dark) !important;
}
.btn-accent-color {
    background-color: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    color: #fff !important;
}
.btn-accent-color:hover,
.btn-accent-color:focus {
    background-color: #d48806 !important;
    border-color: #d48806 !important;
}
.btn-gradient-base-color {
    background-image: linear-gradient(45deg, var(--brand-base), var(--brand-accent));
    border: 0;
    color: #fff !important;
}
.text-accent-color { color: var(--brand-accent) !important; }
.bg-base-color { background-color: var(--brand-base) !important; }
.bg-accent-color { background-color: var(--brand-accent) !important; }

/* 导航激活与悬停状态 */
.header-light .navbar .navbar-nav .nav-link:hover,
.header-light .navbar .navbar-nav .nav-link:focus,
.header-light .navbar .navbar-nav .nav-link.active {
    color: var(--brand-base) !important;
}

/* 标题风格对齐 */
h1, h2, h3, .section-title {
    color: #144abf;
}

#about h3, #schedule h3, #awards h3, #news h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}
#about h3:after, #schedule h3:after, #awards h3:after, #news h3:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 56px;
    height: 3px;
    background: var(--brand-base);
    border-radius: 2px;
}

/* 卡片与阴影优化 */
.box-shadow-quadruple-large {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

/* 表单校验样式 */
.field-error {
    border-color: #ff7875 !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.15) !important;
}
.field-error-msg {
    font-size: 12px;
    color: #cf1322;
    margin-top: 6px;
}

/* 页脚对比度提升 */
footer.bg-dark-gray {
    background: #111827 !important;
}


/* 顶部信息栏链接悬停效果 */
.hover-scale {
    transition: all 0.3s ease;
    display: inline-block;
}

.hover-scale:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Header按钮垂直居中对齐 */
.header-button {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.header-button .btn {
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 页面标题区域避免被header遮挡 */
.page-title-big-typography {
    margin-top: 96px !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #465ab4 0%, #2f73c7 100%) ;
}


/* 页面标题区域h1标题白色样式 */
.page-title-big-typography h1 {
    color: #ffffff !important;
}

/* 页面标题区域内容容器垂直居中 */
.page-title-big-typography .container {
    display: flex !important;
    align-items: center !important;
    min-height: 100% !important;
}

.page-title-big-typography .row {
    align-items: center !important;
    width: 100% !important;
}

/* 页面标题区域背景 */
.page-title-big-typography {
    background: linear-gradient(82deg, rgb(0 6 180 / 70%), rgb(56 161 255 / 30%)), url(../images/banner3.jpg) !important;
    background-size: contain!important;
    background-position: 0 30px!important;
    background-attachment: fixed!important;
    background-repeat: no-repeat!important;
    position: relative;
    overflow: hidden;
  }

  .top-banner {
    background: linear-gradient(82deg, rgb(0 12 156 / 80%), rgb(246 59 234 / 29%)), url(../images/banner4.jpg) !important;
    background-size: contain!important;
    background-position: 0 30px!important;
    background-attachment: fixed!important;
    background-repeat: no-repeat!important;
    position: relative;
    overflow: hidden;
  }
  
  /* 添加动态光效 */
  .page-title-big-typography::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
  }
  
  /* 增强文字对比度 */
  .page-title-big-typography .text-white {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
  }
  
  .page-title-big-typography h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }
  
  
  /* 移动端优化 */
  @media (max-width: 991px) {
    .page-title-big-typography {
        background-attachment: scroll;
    }
    .page-title-big-typography {
        background: linear-gradient(82deg, rgb(0 6 180 / 70%), rgb(56 161 255 / 30%)), url(../images/banner3.jpg) !important;
        background-size: 100% 40%!important;
        background-position: 0 88px!important;
        background-attachment: fixed!important;
        background-repeat: no-repeat!important;
        position: relative;
        overflow: hidden;
      }
  }
  
  @media (max-width: 767px) {
    .page-title-big-typography {
        background-position: center center;
    }
    
    .page-title-big-typography .text-white {
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    }
  }


/* Hero Section内容显示修复 */
.hero-section {
    position: relative !important;
    z-index: 1 !important;
}

.hero-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.hero-content {
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
}

.hero-content .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
}

.hero-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.hero-buttons .btn {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3) !important;
}

.hero-image {
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
}

/* 确保Hero Section在所有情况下都可见 */
.hero-section * {
    visibility: visible !important;
}

.hero-section .text-white {
    color: #ffffff !important;
}

.hero-section .opacity-90 {
    opacity: 0.9 !important;
}

.hero-section .opacity-80 {
    opacity: 0.8 !important;
}

.hero-section .opacity-50 {
    opacity: 0.5 !important;
}

/* 覆盖data-anime动画属性，确保内容始终可见 */
[data-anime] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

[data-anime] * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* 特别针对Hero Section的动画覆盖 */
.hero-content[data-anime] {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.hero-image[data-anime] {
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
}

/* 响应式调整页面标题区域 */
@media (max-width: 768px) {
    .page-title-big-typography {
        padding-top: 100px !important;
        min-height: 250px !important;
    }
}

@media (max-width: 576px) {
    .page-title-big-typography {
        padding-top: 80px !important;
        min-height: 200px !important;
    }
}

/* 响应式LOGO调整 */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 48px !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 48px !important;
    }
} 

 #enterpriseForm .form-check-input {
        float: left;
        margin-left: -1.5em;
        padding: 0;
        width: 1.8em;
        height: 1.8em;
        margin-right: 0.8em;
        margin-top: 0;
    }
 #enterpriseForm .form-label {
        margin-bottom: .5rem;
        font-size: 1.1em;
        color: #2e466a;
    }
.agree_terms {
    display: block;
}
#agree_terms.form-check-input{
    margin-left: 0;
    padding: 0;
    width: 1.8em;
    height: 1.8em;
    margin-right: 0.8em !important;
    margin-top: 0 !important;
}