* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
      /*颜色设定*/
      --bg-body:#555555;
      --bg-header:#203141;
      --text-light: #ffffff;
      --accent-color: #77bd5a;
      --hover-color: #f6ab00;
    
      
      /* 字体系统 */
      --primary-font: 'Roboto', 'Noto Sans SC', sans-serif;  /* 主字体 */
      --heading-font: 'Montserrat', 'Noto Sans SC', sans-serif;  /* 标题字体 */
        /* 字体大小系统 */
      --base-font-size: 16px;       /* 基础字体大小 */
          /* 行高和间距 */
    --base-line-height: 1.6;
    --heading-line-height: 1.3;
    --paragraph-margin: 1rem 0;
    --transition-speed: 0.3s;      /* 过渡动画速度 */
}
/* 基本排版设置 */
html {
    font-size: var(--base-font-size);
    scroll-behavior: smooth;
}
body {
    font-family: var(--primary-font);
    line-height: var(--base-line-height);
    background-color: var(--bg-body);
}
a{
    text-decoration: none;
    color: var(--text-light)!important;
}
a:hover{
    color: var(--hover-color)!important;
}
/* 主导航样式 */
.main-header {
    background-color: var(--accent-color);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.text-transform-capitalize{
    text-transform: capitalize;
}
/* 首页导航初始透明状态 */
.home-header .main-header {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}



.home-header .main-header .contact-btn {
    color: var(--text-light) !important;
}

/* 首页导航滚动后显示背景 */
.home-header .main-header.scrolled {
    background-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



/* 为fixed导航留出空间 */
body {
    padding-top: 70px;
}

/* 首页不需要padding，让banner从顶部开始 */
.home-header ~ main,
body:has(.home-header) {
    padding-top: 0;
}

.home_banner {
    margin-top: 0;
}

.main-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0 !important;
    transition: all var(--transition-speed);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--hover-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--hover-color);
}

.contact-btn {
    background-color: var(--hover-color);
    padding: 10px 20px !important;
    border-radius: 4px;
    color: var(--text-light) !important;
    margin-left: 10px;
}

.contact-btn:hover {
    color: var(--text-light) !important;
}

.navbar-toggler {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    padding: 0;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* 首页 Banner 样式 */
.home_banner {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}


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

.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 4px;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-learn {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light) !important;
}

.btn-learn:hover {
    background-color: var(--text-light);
    color: var(--accent-color) !important;
}

.btn-contact {
    background-color: var(--hover-color);
    border: 2px solid var(--hover-color);
    color: var(--text-light) !important;
}

.btn-contact:hover {
    background-color: transparent;
    color: var(--hover-color) !important;
}

/* 行业趋势部分样式 */
.industry_trends {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2e9 50%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

.industry_trends::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(119, 189, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.industry_trends::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 171, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.industry_trends .container {
    position: relative;
    z-index: 1;
}

.trend_content .section_title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    background: linear-gradient(280deg, var(--hover-color) 17%, #ef501f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--heading-font);
}

.trend_description {
    color:var(--bg-body);
    font-size: 1.1rem;
    line-height: 1.7;
}

.trend_description p {
    margin-bottom: 20px;
}

/* 证书展示区域样式 */
.company-cert-showcase {
    padding: 20px 0 40px 0;
    background: linear-gradient(135deg, #f8fbf9 0%, #ffffff 50%, #f0f9f5 100%);
    position: relative;
    overflow: hidden;
}

.company-cert-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(119, 189, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.company-cert-showcase::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 171, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cert-wrapper {
    position: relative;
    z-index: 1;
}

/* 左侧证书图片容器 */
.cert-image-container {
    position: relative;
    padding: 0;
}

.cert-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-image {
    width: 100%;
    height: auto;
    display: block;
}

/* 右侧内容区域 */
.cert-content {
    padding: 20px 0 20px 30px;
}

/* 主标题 */
.cert-main-title {
    font-weight: 800;
    color: var(--bg-header);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: var(--heading-font);
}

/* 描述文本 */
.cert-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* CTA按钮 */
.btn-cert-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--hover-color));
    color: #ffffff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(119, 189, 90, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cert-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-cert-cta:hover::before {
    left: 100%;
}

.btn-cert-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(119, 189, 90, 0.4);
}

.btn-cert-cta i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-cert-cta:hover i {
    transform: translateX(5px);
}

/* 关于我们展示区域样式 */
.paper-plastic-about-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-background {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 171, 0, 0.9) 0%, rgba(239, 80, 31, 0.85) 90%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.about-badge:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.about-badge i {
    font-size: 1.1rem;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #ffffff;
    opacity: 0.95;
}

.about-cta {
    margin-top: 30px;
}

.btn-about-primary {
    background-color: #ffffff;
    color: var(--hover-color)!important;
   
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.btn-about-primary:hover {
    background-color: transparent;
    color: #ffffff!important;
    border-color: #ffffff;
    transform: translateX(10px);
}

.btn-about-primary i {
    transition: transform 0.4s ease;
}

.btn-about-primary:hover i {
    transform: translateX(5px);
}

/* 新闻展示区域样式 */
.paper-plastic-news-showcase {
    padding: 40px 0;
    background-color: #ffffff;
}

.news-section-title {
    
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.news-section-subtitle {
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

.btn-news-primary {
    background-color: var(--hover-color);
    color: #ffffff !important;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-news-primary:hover {
    
    transform: translateY(-2px);
    
}

/* 左侧置顶新闻 */
.featured-news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.featured-news-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--hover-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    z-index: 2;
}

.news-date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.featured-news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-news-title {
    
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.featured-news-title a {
    color: black!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-news-title a:hover {
    color: var(--accent-color)!important;
}

.featured-news-excerpt {
    
    color: black!important;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.featured-news-meta {
    font-size: 0.95rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.featured-news-meta i {
    color: var(--accent-color);
}

/* 右侧新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.news-list-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.news-list-content {
    width: 100%;
}

.news-list-title {
   
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-list-title a {
    color: black!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-list-title a:hover {
    color: var(--accent-color)!important;
}

.news-list-excerpt {
    font-size: 0.95rem;
    color: black!important;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-meta {
    font-size: 0.9rem;
    color: var(--accent-color)!important;
    display: flex;
    align-items: center;
}

.news-list-meta i {
    color: var(--accent-color);
}
  
/* 纸塑回收解决方案模块样式 */
.paper-plastic-solution-showcase {
    background-color: #f8f9fa;
}




.main-products-title {
    color: var(--accent-color);
}


.solution-categories {
    position: relative;
    margin-bottom: 40px;
}

.category-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.category-scroll-container::-webkit-scrollbar {
    display: none;
}

.solution-filter {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.solution-filter .nav-link {
    color: #555 !important;
    padding: 10px 20px !important;
    margin: 0 10px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    text-transform: none;
}

.solution-filter .nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.solution-filter .nav-link.active {
    background-color: var(--hover-color);
    color: #fff !important;
}

.solution-filter .nav-link.active::after {
    display: none;
}

.solution-filter .nav-link:hover:not(.active) {
    background-color: rgba(119, 189, 90, 0.1);
    color: var(--accent-color) !important;
}

.solution-flow-container {
    margin-bottom: 50px;
}

.scroll-hint {
    display: none;
}

.scroll-hint.show {
    display: block;
}

.solution-flow-wrapper {
    overflow-x: auto;
   
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.solution-flow-wrapper::-webkit-scrollbar {
    display: none;
}

.solution-flow {
    display: flex;
    min-width: max-content;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.solution-module {
    width: 180px;
    text-align: center;
    padding: 10px 15px 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.solution-module:hover,
.solution-module.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.solution-module.active {
    border: 2px solid var(--accent-color);
}

.module-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: rgba(119, 189, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.solution-module h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.solution-module p {
    font-size: 0.85rem;
    color: #777;
    margin: 0 0 10px 0;
}

.module-hint {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: var(--accent-color);
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.solution-module:hover .module-hint {
    opacity: 1;
}

.module-hint i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.solution-flow-arrow {
    margin: 0 15px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.industry-showcase {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.industry-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-content.active {
    display: block;
    opacity: 1;
}

.industry-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.industry-content .lead {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.industry-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.industry-features li i {
    color: var(--hover-color);
    margin-right: 10px;
    margin-top: 5px;
}
.btn-bg-color {
    background-color: var(--hover-color);
    color: #fff;
}
.btn-bg-color:hover {
    background-color: #fff;
    color: var(--hover-color);
}
.industry-image {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.solution-animation {
    height: 100%;
    width: 100%;
}

.animation-container {
    height: 100%;
    width: 100%;
}

.product-flow {
    position: relative;
    height: 100%;
    width: 100%;
}

.flow-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.flow-step.active {
    opacity: 1;
    display: block;
}

.media-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 8px;
    overflow: hidden;
}

.media-container img,
.media-container .img-fluid {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* 页脚样式 */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    max-width: 180px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover-color));
    border-radius: 2px;
}


/* 快速链接 */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: translateX(5px);
}

/* 联系信息 */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* 二维码展示区域 */
.qr-codes-container {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.qr-code-item {
    text-align: center;
}

.qr-code-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.qr-code-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.qr-code-label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}



.qr-code-item:first-child .qr-code-label i {
    color: #09B83E;
}

.qr-code-item:last-child .qr-code-label i {
    color: #25D366;
}

.qr-code-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* 页脚底部 */
.footer-bottom {
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    display: inline-block;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hover-color);
    transition: width 0.3s ease;
}

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

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--hover-color));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(119, 189, 90, 0.4);
    color: #ffffff;
}

/* ===================================
   内页Banner样式
   =================================== */
.page_banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.banner-breadcrumb a {
    color: var(--text-light) !important;
    transition: all var(--transition-speed);
    font-size: 18px;
}

.banner-breadcrumb a:hover {
    color: var(--hover-color) !important;
    transform: translateY(-2px);
}

.banner-breadcrumb i.bi-arrow-right {
    font-size: 12px;
    opacity: 0.7;
}

.banner-breadcrumb span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.banner-title {
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 20px;
}

/* ===================================
   关于我们-数据展示样式
   =================================== */
.about-data {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.data-header {
    margin-bottom: 40px;
}



.data-title {
    font-family: var(--heading-font);
   
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}

.data-item {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 8px;
    transition: all var(--transition-speed);
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.data-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.data-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.data-item:hover .data-icon {
    transform: scale(1.1) rotate(5deg);
}

.data-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.data-item-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-header);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.data-item-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   关于我们页面-图片样式
   =================================== */
.about-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 宽高比 */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.about-level{
    position: relative;
    z-index: 2;
}
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* ===================================
   关于我们页面-团队模块样式
   =================================== */
.about-team {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-team::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 189, 90, 0.1) 0%, rgba(119, 189, 90, 0) 70%);
    z-index: 1;
}

.about-team::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 171, 0, 0.1) 0%, rgba(246, 171, 0, 0) 70%);
    z-index: 1;
}



.section-title {
    font-family: var(--heading-font);
    
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}



.team-gallery {
    position: relative;
    z-index: 2;
}

.team-member {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image-container {
    position: relative;
    overflow: hidden;
    
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image-container img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.team-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.team-member:hover .team-overlay i {
    transform: scale(1);
    opacity: 1;
}

.team-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.team-info h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-header);
    margin: 0;
    position: relative;
    display: inline-block;
}

.team-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

/* 模态框样式 */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 15px;
    position: absolute;
    right: 0;
    z-index: 10;
}

.modal-body {
    padding: 0;
}

.team-modal-image {
    width: 100%;
    overflow: hidden;
}

.team-modal-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

/* 产品详情页样式 */
.product-top-content {
   
    background-color: #ffffff;
}

.product-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
   
}

.product-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

/* 产品媒体区域 */
.product-media-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-main-media {
    position: relative;
    height: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.product-media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-media-item.active {
    opacity: 1;
    visibility: visible;
}

.product-media-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-video-container {
    width: 100%;
    height: 100%;
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 缩略图导航 */
.product-thumbnails {
    padding: 15px;
    background-color: #ffffff;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    height: 80px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--accent-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* 产品信息区域 */
.product-info {
    padding: 20px;
    
    border-radius: 8px;
    height: 100%;
}

/* 产品按钮区域 */
/* .product-actions-container {
    margin: 30px 0;
} */

.red-border-container {
    display: inline-block;
   
    border-radius: 5px;
    padding: 15px 40px;
}
 
.pro_btn {
    background-color: var(--accent-color);
    
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pro_btn:hover,.pro_btn_two:hover{
    background-color: var(--hover-color);
    color: var(--text-light)!important;
}
.pro_btn_two {
    background-color: #E4405F;

    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.product-specs {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

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

.spec-label {
    font-weight: 600;
    color: var(--bg-header);
    width: 100px;
}

.spec-value {
    color: #555;
    flex: 1;
}

.description-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg-header);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.description-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.product-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.product-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
}

.product-actions .btn {
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

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

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

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

/* 产品工作流程展示区域 */
.product-work-process {
    background-color: #f5f5f5;
    /* padding: 60px 0; */
}

.process-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.process-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.process-steps-container {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-step-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.process-step-item:hover {
    background-color: #e8f4ff;
    transform: translateX(3px);
}

.process-step-item.active {
    background-color: #e8f4ff;
    border-left-color: var(--accent-color);
}

.step-number {
    font-family: var(--heading-font);
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.process-step-item.active .step-number {
    color: var(--accent-color);
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 右侧图片展示区域 */
.process-image-display {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
    background-color: #ffffff;
}

.process-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.process-image-item.active {
    opacity: 1;
    visibility: visible;
}

.process-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 圆点指示器 */
.process-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot:hover {
    background-color: #9ca3af;
    transform: scale(1.15);
}

.indicator-dot.active {
    background-color: var(--hover-color);
    width: 28px;
    border-radius: 5px;
}

/* 产品解决方案展示区域 */
.product-solution {
    background-color: #ffffff;
    
}

.solution-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.solution-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.solution-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.solution-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
    margin-bottom: 20px;
}

.solution-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.solution-card-title {
    font-family: var(--heading-font);
    
    font-weight: 600;
    color: var(--bg-header);
    margin-bottom: 15px;
    line-height: 1.4;
}

.solution-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-examples-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--hover-color) 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.solution-examples-tag i {
    font-size: 1rem;
}

.solution-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.example-image-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    border-radius: 6px;
    background-color: #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.example-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.example-image-item:hover .example-overlay {
    opacity: 1;
}

.example-image-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.example-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* 示例图片模态框样式 */
.example-modal-image {
    max-width: 100%;
}

.example-modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 产品详细描述区域 */
.product-detail-description {
    background-color: #ffffff;
    
}

.description-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    position: relative;
    padding-bottom: 15px;
}

.description-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.description-content {
    
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.description-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
   
}

.description-content p:last-child {
    margin-bottom: 0;
}
.description-content p img{
    width: 100%;
    height: auto;

}
/* 单机展示区域 */
.single-machine-content {
    background-color: #f5f5f5;
   
}

.machine-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    position: relative;
    padding-bottom: 15px;
}

.machine-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.machine-summary {
    
    margin: 0 auto;
    
    padding: 0 20px;
}

.machine-summary p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.machine-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.machine-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
    margin-bottom: 15px;
}

.machine-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.machine-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-header);
    margin-bottom: 10px;
    line-height: 1.3;
}

.machine-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* 相关产品展示区域 */
.product-related-content {
    background-color: #f5f5f5;
    
}

.related-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
   
    position: relative;
    padding-bottom: 15px;
}

.related-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}
a.related-a-link{
    color: var(--bg-body) !important;
}
a.related-a-link:hover{
    color: var(--accent-color)!important;
}
.related-item {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid transparent;
}

.related-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-color);
}

.related-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hover-color);
    line-height: 1;
    min-width: 50px;
}

.related-title {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

.related-title a {
    color: var(--bg-header)!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-title a:hover {
    color: var(--accent-color);
}

/* 产品CTA条幅样式 */
.contact-product-cta {
    position: relative;
    padding: 20px 0;
    background-color: #f8f9fa;
}

.cta-background {
    position: relative;
}

.cta-content-wrapper {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(119, 189, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-content-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(246, 171, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.cta-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bg-header);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.btn-cta-quote {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--hover-color) 100%);
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(119, 189, 90, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-cta-quote::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--bg-header);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-cta-quote:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta-quote:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(119, 189, 90, 0.4);
}

.btn-cta-text {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.btn-cta-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-cta-quote:hover .btn-cta-icon {
    transform: translateX(5px) scale(1.1);
}

/* 询价表单区域 */
.inquiry-form {
    background-color: #ffffff;
   
}

.inquiry-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
   
    position: relative;
    padding-bottom: 15px;
}

.inquiry-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}



.inquiry-form-content {
 
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px 40px 20px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.inquiry-form-content .form-group {
    margin-bottom: 20px;
}

.inquiry-form-content label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.inquiry-form-content .required {
    color: #dc3545;
    font-weight: 600;
}

.inquiry-form-content .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.inquiry-form-content .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(119, 189, 90, 0.1);
}

.inquiry-form-content textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-inquiry {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-inquiry:hover {
    background-color: var(--hover-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-inquiry:hover i {
    color: #ffffff;
}

.btn-inquiry i {
    font-size: 1.1rem;
}

/* 视频列表页面样式 */
.videos-list {
    background-color: #ffffff;
   
}

.videos-main-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    position: relative;
    padding-bottom: 15px;
}

.videos-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.videos-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 视频筛选 */
.videos-filter {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    font-size: 0.95rem;
    color: #666;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--accent-color);
    background-color: rgba(119, 189, 90, 0.1);
}

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

.filter-search .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-size: 0.95rem;
}

.filter-search .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.btn-search {
    border-radius: 0 20px 20px 0;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
}

.btn-search:hover {
    background-color: var(--hover-color);
}

/* 案例卡片样式 */
.case-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.case-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 65%;
    background-color: #f5f5f5;
}

.case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.case-location {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-header);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.case-location i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.case-date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-header);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.case-date i {
    color: var(--hover-color);
    font-size: 0.9rem;
}

.case-view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-light)!important;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
}

.case-card:hover .case-view-btn {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.case-view-btn:hover {
    background: var(--hover-color);
    color: var(--text-light)!important ;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(119, 189, 90, 0.4);
}

.case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
   
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-title a {
    color: var(--bg-header)!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-title a:hover {
    color: var(--accent-color)!important;
}

.case-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* 分页 */
.videos-pagination {
    margin-top: 40px;
}

.pagination {
    gap: 5px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #666!important;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #f5f5f5;
    color: var(--accent-color);
    border-color: #ddd;
}

.page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.page-item.disabled .page-link {
    color: #ccc;
    background-color: #f9f9f9;
}
/* videos相关产品展示区域 */
.related-content-less {
    background-color: #f5f5f5!important;
}

/* videos询价表单区域 */
.inquiry-form-videos {
    background-color: #ffffff!important;
}

/* 案例详情页样式 */
.single-case-content {
    background-color: #ffffff;
}

.case-overview-section {
    margin-bottom: 50px;
}

/* 左侧主图片 */
.case-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.case-main-image:hover img {
    transform: scale(1.05);
}

/* 右侧信息面板 */
.case-overview-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

.case-overview-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.case-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

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

.info-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bg-header);
    line-height: 1.6;
    margin: 0;
}
.info-value a{
    color: var(--bg-header)!important;
}
.info-value a:hover{
    color: var(--hover-color)!important;
}

/* 案例详情内容样式 */
.single-case-content-show {
    background-color: #f5f5f5;
}

.case-details-content {

    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}



/* 标签样式 */
.video-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tag-label {
    font-weight: 600;
    color: #555;
    margin-right: 5px;
}

.video-tag {
    display: inline-block;
    background-color: rgba(119, 189, 90, 0.1);
    color: var(--accent-color)!important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-tag:hover {
    background-color: var(--accent-color);
    color: #fff!important;
    transform: translateY(-2px);
}

/* 分享链接 */
.video-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.share-label {
    font-weight: 600;
    color: #555!important;
    margin-right: 5px;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #555!important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* 新闻列表链接 */
a.news-list-link {
   color: var(--accent-color)!important;
   transition: all 0.3s ease;
}

.news-list-link:hover,.news-list-link:hover i{
    color: var(--hover-color)!important;
    transform: translateY(-3px);
}
.single-videos-details{
    background-color: #ffffff;
}
/* 新闻详情内容 */
.news-details-content {

    margin: 0 auto;
   
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.news-details-content p {
    margin-bottom: 1.5rem;
}



/* 新闻详情内容中的图片响应式 */
.news-details-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}







/* WordPress直接插入的YouTube/视频iframe也响应式 */
.news-details-content iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/* 新闻详情内容中的列表 */
.news-details-content ul,
.news-details-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.news-details-content ul li,
.news-details-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* 新闻详情内容中的引用 */
.news-details-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* 新闻详情内容中的链接 */
.news-details-content a {
    color: var(--accent-color)!important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.news-details-content a:hover {
    color: var(--hover-color)!important;
}


/* 新闻上一篇下一篇导航 */


.news-nav-link {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.news-nav-link:hover {
    background: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-nav-link.prev-news {
    justify-content: flex-start;
}

.news-nav-link.next-news {
    justify-content: flex-end;
}

.news-nav-link .nav-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color)!important;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.news-nav-link:hover .nav-arrow {
    background: var(--hover-color);
    transform: scale(1.1);
}

.prev-news .nav-arrow {
    margin-right: 20px;
}

.next-news .nav-arrow {
    margin-left: 20px;
    order: 2;
}

.news-nav-link .nav-content {
    flex: 1;
}

.prev-news .nav-content {
    text-align: left;
}

.next-news .nav-content {
    text-align: right;
    order: 1;
}

.news-nav-link .nav-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-nav-link .nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-header);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.news-nav-link:hover .nav-title {
    color: var(--accent-color);
}

.inquiry-form-news{
    background-color:#f5f5f5;
}
.bag-info span i{
    color:var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
   
}


/* 联系我们页面顶部信息栏 */
.contact-us-top {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.1);
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper i {
    color: #fff;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bg-header);
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: #666!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--accent-color)!important;
}

/* 联系我们页面表单区域 */


.contact-form-background {
    background: linear-gradient(135deg, rgba(246, 171, 0, 0.9) 0%, rgba(239, 80, 31, 0.85) 90%);
    position: relative;
}

.contact-form-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

.contact-form-background .container {
    position: relative;
    z-index: 1;
}

.contact-form-background .inquiry-form-content {
    position: relative;
    z-index: 1;
}

/* 联系我们页面地图区域 */
.contact-us-map {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* 联系我们页面来访路线 */
.contact-us-line {
    background: #f8f9fa;
    
}

.visit-route-title {
    
    font-weight: 700;
    color: var(--bg-header);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.visit-route-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.route-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.route-card:hover::before {
    transform: scaleX(1);
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.route-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--hover-color));
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(119, 189, 90, 0.3);
}

.route-icon-wrapper i {
    font-size: 2.2rem;
    color: #fff;
}

.route-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-header);
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--heading-font);
}

.route-steps {
    margin-bottom: 30px;
}


/* ========================================
     404错误页面样式
     ======================================== */
  
     .motor-404-page {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
        min-height: 100vh;
      }
    
      .error-section {
        position: relative;
        padding: 2rem 0;
      }
    
      /* 视觉动画区域 */
      .error-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
      }
    
      /* 背景齿轮动画 */
      .gear-background {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        z-index: 1;
      }
    
      .gear {
        position: absolute;
        color: rgba(30, 58, 138, 0.1);
        font-size: 4rem;
        animation: rotate 10s linear infinite;
      }
    
      .gear-1 {
        top: 20%;
        left: 10%;
        animation-duration: 8s;
        animation-direction: reverse;
      }
    
      .gear-2 {
        top: 10%;
        right: 15%;
        animation-duration: 12s;
        font-size: 3rem;
      }
    
      .gear-3 {
        bottom: 20%;
        left: 20%;
        animation-duration: 6s;
        animation-direction: reverse;
        font-size: 2.5rem;
      }
    
      @keyframes rotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
    
      /* 404数字样式 */
      .error-number {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        font-size: 8rem;
        font-weight: var(--motor-font-weight-bold);
        color: var(--motor-primary);
        text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
        margin-bottom: 2rem;
      }
    
      .digit-4 {
        animation: bounce 2s ease-in-out infinite;
      }
    
      .digit-0 {
        position: relative;
      }
    
      .motor-gear-icon {
        animation: rotate 3s linear infinite;
        color: var(--motor-secondary);
        filter: drop-shadow(0 4px 15px rgba(5, 150, 105, 0.4));
      }
    
      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-20px);
        }
        60% {
          transform: translateY(-10px);
        }
      }
    
      /* 错误内容样式 */
      .error-title {
        font-size: var(--motor-text-4xl);
        font-weight: var(--motor-font-weight-bold);
        color: var(--motor-gray-800);
        margin-bottom: 1.5rem;
      }
    
      .error-description {
        font-size: var(--motor-text-lg);
        color: var(--motor-gray-600);
        line-height: var(--motor-line-height-relaxed);
        max-width: 600px;
        margin: 0 auto;
      }
    
    
      /* 快速导航卡片 */
      .quick-nav-title {
        font-size: var(--motor-text-xl);
        font-weight: var(--motor-font-weight-semibold);
        color: var(--bg-header);
      }
    
      .nav-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        background: white;
        border: 2px solid var(--motor-gray-200);
        border-radius: var(--motor-radius-xl);
        text-decoration: none;
        color: var(--motor-gray-700);
        transition: all var(--motor-transition-normal);
        height: 100%;
        position: relative;
        overflow: hidden;
        color: var(--accent-color)!important;
      }
    
      .nav-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
        transition: left 0.6s ease;
        color: var(--hover-color)!important;
      }
    
      .nav-card:hover::before {
        left: 100%;
      }
    
      .nav-card:hover {
        border-color: var(--motor-primary);
        color: var(--motor-primary);
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
        text-decoration: none;
      }
    
      .nav-icon {
        width: 60px;
        height: 60px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        transition: all var(--motor-transition-normal);
       
      }
    
      .nav-card:hover .nav-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
      }
    
      .nav-icon i {
        font-size: 1.5rem;
     
        color: var(--hover-color)!important;
      }
    
      .nav-card span {
        font-size: var(--motor-text-base);
        font-weight: var(--motor-font-weight-medium);
        text-align: center;
      }
    
    
      /* 背景粒子效果 */
      .particles-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
      }
    
      .particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: linear-gradient(45deg, var(--motor-primary), var(--motor-secondary));
        border-radius: 50%;
        opacity: 0.6;
        animation: float 8s ease-in-out infinite;
      }
    
      .particle:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        animation-duration: 6s;
      }
    
      .particle:nth-child(2) {
        top: 60%;
        left: 80%;
        animation-delay: 2s;
        animation-duration: 8s;
      }
    
      .particle:nth-child(3) {
        top: 80%;
        left: 20%;
        animation-delay: 4s;
        animation-duration: 7s;
      }
    
      .particle:nth-child(4) {
        top: 30%;
        left: 70%;
        animation-delay: 1s;
        animation-duration: 9s;
      }
    
      .particle:nth-child(5) {
        top: 70%;
        left: 50%;
        animation-delay: 3s;
        animation-duration: 5s;
      }
    
      @keyframes float {
        0%, 100% {
          transform: translateY(0px) rotate(0deg);
          opacity: 0.6;
        }
        25% {
          transform: translateY(-20px) rotate(90deg);
          opacity: 0.8;
        }
        50% {
          transform: translateY(-10px) rotate(180deg);
          opacity: 0.4;
        }
        75% {
          transform: translateY(-30px) rotate(270deg);
          opacity: 0.9;
        }
      }
/* 移动端底部导航 */
      .mobile-nav {
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    .fixed-bottom{
        background-color:var(--accent-color);
    }
    .mobile-nav .nav-item {
        color: #666;
        text-decoration: none;
        display: block;
    }
    
    .mobile-nav .nav-item:hover,
    .mobile-nav .nav-item:active {
        color: var(--bs-primary);
    }
    
    .mobile-nav .nav-item i {
        font-size: 1.25rem;
        display: block;
        margin-bottom: 2px;
    }
    
    .mobile-nav .nav-item .small {
        font-size: 0.75rem;
    }


