    /* 天伦之乐网站样式 - 优化版 */

@font-face {
    font-family: "font-M";
    font-weight: 700;
    src: url("/static/tlzl/font/SourceHanSansCN-Medium.otf");
    font-display: swap;
}


/* @font-face {
  font-family: "font-B";
  font-weight: 700;
  src: url("/static/tlzl/font/SourceHanSansCN-Regular.otf");
  font-display: swap;
} */

@font-face {
    font-family: "font-R";
    font-weight: 700;
    src: url("/static/tlzl/font/SourceHanSansCN-Regular.otf");
    font-display: swap;
}

@font-face {
    font-family: "Source Han Sans CN-Normal";
    font-weight: 700;
    src: url("/static/tlzl/font/SourceHanSansCN-Medium.otf");
    font-display: swap;
}

@font-face {
    font-family: "font-B";
    font-weight: 700;
    src: url("/static/tlzl/font/SourceHanSansCN-Bold.otf");
    font-display: swap;
}

@font-face {
    font-family: "font-L";
    font-weight: 700;
    src: url("/static/tlzl/font/SourceHanSansCN-Light.otf");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans SC";
    src: url("/static/tlzl/font/SourceHanSansCN-Regular.otf");
    font-display: swap;
}


/* CSS变量定义 */

:root {
    --primary-color: #8b4513;
    --secondary-color: #006400;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1e3a29;
    --light-bg: #f5f5dc;
    --red-bg: #8b0000;
    --border-color: rgba(255, 255, 255, 0.2);
    --hover-color: #ff6b6b;
    --nav-footer-color: #ccc;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* 重置和基础样式 */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "SourceHanSansCN-Regular";
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h2, h3 {
    font-family: "SourceHanSansCN-Bold";
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 9999;
}

#contentindex {
    display: none;
    /* 初始隐藏内容 */
}


/* 导航栏样式 */

#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    /* background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);*/
    /*border-bottom: 1px solid #CDCDCD;*/
    transition: all var(--transition-normal);
    padding: 15px 0;
    background: #fff0;
}

.navbar-shrink {
    padding: 10px 0;
    background: rgb(255 255 255 / 0%);
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.navbar-brand img.logo {
    height: 40px;
    transition: height var(--transition-normal);
}

.navbar-shrink .navbar-brand img.logo {
    height: 35px;
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-right: 100px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 100px;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    transition: transform var(--transition-fast);
}

.cart-link:hover .cart-img {
    transform: scale(1.1);
}

.navbar-toggler {
    padding: 8px;
    border-radius: 4px;
    transition: background var(--transition-fast);
    border: none;
}

.navbar-toggler:focus {
    /*background: rgba(0, 0, 0, 0.05);*/
    box-shadow: 0 0 0 0;
}

.navbar-toggler-icon {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* 全屏导航菜单 */

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.77);
    overflow: hidden;
    z-index: 1040;
    transition: height var(--transition-normal);
}

.fullscreen-nav.open {
    height: 100vh;
}

.fullscreen-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.fullscreen-nav.open .fullscreen-nav-content {
    opacity: 1;
    transform: translateY(0);
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--light-text);
    font-size: 30px;
    transition: transform var(--transition-fast);
}

.close-nav:hover {
    transform: rotate(90deg);
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 100px;
    text-align: center;
    justify-content: space-evenly;
}

.nav-links .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    /* 边距线颜色 */
    transition: width 0.3s ease;
    /* 边距线过渡效果 */
    transform: translateX(-50%);
    /* 向左移动自身宽度的50%，实现居中 */
}

.nav-links .nav-item {
    padding: 10px 20px;
    border-radius: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    max-height: 80px;
}

.header-child {
    display: flex;
    margin-top: 50px;
}

.header-child span {
    /* font-size: 16px;*/
}

.nav-links .nav-item:hover::after {
    width: 70%;
    /* 悬停时边距线宽度 */
}

.nav-links .nav-item:hover, .nav-links .nav-item.active {}

.nav-text {
    display: block;
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 5px;
    font-weight: 500;
}

.nav-text-en {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-footer {
    position: absolute;
    bottom: 30px;
    text-align: center;
}

.nav-footer-text {
    color: var(--nav-footer-color);
    font-size: 12px;
    letter-spacing: 2px;
}


/* 全屏滚动容器 */

.main-swiper, .about-swiper {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.main-swiper .swiper-slide, .about-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.horizontal-swiper {
    width: 100%;
    height: 100%;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-content::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.3);*/
    z-index: 1;
}

.slide-content .row {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
}

.slide-text {
    padding: 20px;
    text-align: center;
}

.slide-text h1, .slide-text h2 {
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-image {
    text-align: center;
    position: relative;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-large {
    max-width: 200px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-overlay {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    max-width: 150px;
}


/* 页面特定样式 */

.product-swiper, .careers-swiper {
    height: 100vh;
    margin-top: 70px;
}

.product-swiper .swiper-slide, .careers-swiper .swiper-slide {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.product-info, .job-info {
    padding: 20px;
}

.product-title, .job-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
    font-family: "font-B";
}

.product-description, .job-requirements {
    font-size: 16px;
    line-height: 1.8;
}

.job-meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.job-requirements h3 {
    font-size: 20px;
    font-weight: bold;
    /*color: var(--secondary-color);*/
    margin: 20px 0 10px;
}


/* 关于我们页 */

.about-header {
    text-align: center;
    margin-bottom: 140px;
}

.about-header-new {
    display: flex;
    align-items: center;
}

.about-header-new .en-title {
    margin-left: 20px;
}

.custom-slide .custom-ver {
    opacity: 0;
    transform: translateY(50px);
    /* 初始向下偏移 */
    transition: all 1s ease-out;
    /* 过渡效果 */
}

.about-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-header .en-title {
    font-size: 18px;
    color: #999;
    text-transform: uppercase;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
    padding: 0 20px;
}

.about-stats {
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item h2 span {
    font-size: 24px;
}

.timeline {
    /*max-width: 900px;*/
    /*margin: 0 auto;*/
    padding: 0 0px 0px 100px;
}

.timeline image {
    /*max-width: 900px;*/
    /*margin: 0 auto;*/
}

.timeline-item {
    margin-bottom: 50px;
}

.timeline-content {
    /* padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow-light);*/
}

.timeline-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.honors {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.w-a-350 {
    max-width: 600px;
}

.ws-img {
    max-width: 600px;
    /*  float: right;*/
}

.honor-item {
    text-align: center;
    margin-bottom: 30px;
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 2rem 4rem;
}

.honor-item:hover {
    transform: translateY(-5px);
}

.honor-icon img {
    width: 42px;
    height: 113px;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* 新闻页样式 */

.news-container {
    padding: 100px 100px 60px 120px;
    background: #FFFFFF;
    min-height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
}

.news-image {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    /* 隐藏超出部分 */
    max-width: 500px;
}

.news-image img {
    transition: transform 1s ease;
    /* 添加过渡效果 */
    transform-origin: center center;
    /* 放大中心点 */
}

.news-image:hover img {
    transform: scale(1.1);
    /* 鼠标悬停时放大1.1倍 */
}

.news-item {
    margin-bottom: 40px;
    padding: 30px 0px;
    /* background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);*/
}

.news-item:hover {
    /* box-shadow: var(--shadow-medium);
  transform: translateY(-5px);*/
}

.news-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'font-M';
}

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

.new-lm {
    display: flex;
    font-family: 'font-L';
    font-size: 16px;
    margin: 25px 0px 25px 0px;
    color: #999999;
}

.news-content p {
    color: #999999;
}

.new-lm img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.new-time {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.new-view {
    display: flex;
    align-items: center;
}

.btn-read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.btn-read-more:hover {
    color: var(--hover-color);
}

.pagination {
    margin-top: 40px;
}

.pagination a {
    color: var(--text-color);
    border: 1px solid #ddd;
    padding: 8px 16px;
    transition: all var(--transition-fast);
}

.pagination li.active a {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}


/* 新闻详情页 */

.news-show-container {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: 100vh;
}

.news-show-title {
    font-size: 32px;
    color: #000;
    font-family: 'SourceHanSerifSC-Bold';
    margin-bottom: 20px;
}

.news-show-meta {
    color: #777;
    margin-bottom: 30px;
    font-size: 14px;
}

.news-show-header {
    text-align: center;
    margin-top: 3rem;
}

.news-show-content {
    padding: 40px;
    /*background: white;
  
  border-radius: 12px;
  box-shadow: var(--shadow-light);*/
    line-height: 1.8;
}

.news-show-content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.news-quote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.news-show-share {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.share-icon {
    margin-right: 15px;
    transition: transform var(--transition-fast);
}

.share-icon:hover {
    transform: scale(1.1);
}

.related-news {
    margin-top: 50px;
}

.related-news-title {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.related-news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

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


/* 商城页样式 */

.shop-container {
    position: relative;
    /* 确保子元素可以使用绝对定位 */
    width: 100%;
    /* 根据需要调整宽度 */
}

.shop-bg {
    position: relative;
    /* 确保图片可以使用绝对定位 */
    width: 100%;
    /* 确保图片宽度与容器一致 */
}

.shop-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* 类似于 background-size: cover; */
    display: block;
    /* 避免图片下方出现空白 */
}

.shop-s-content {
    position: absolute;
    /* 将内容层定位在图片上方 */
    top: 0;
    left: 0;
    right: 0;
    color: white;
    /* 根据背景图颜色调整文本颜色 */
    /* padding: 20px;*/
    /* 根据需要调整内边距 */
    height: 100%;
}

.shop-section {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    position: relative;
    height: 100%;
}

.shop-content {
    text-align: center;
    max-width: 500px;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.shop-content img {
    position: absolute;
    bottom: 20px;
    padding: 2rem 4rem;
}

.shop-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px;
}

.shop-vs h3 {
    margin: 1.5rem;
    font-size: 1.2rem;
}

.shop-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-button {
    transition: transform var(--transition-normal);
}

.shop-button:hover {
    transform: scale(1.05);
}

.shop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 10;
}

.shop-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    background: #1e3a2900;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    max-width: 500px;
}

.close-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--light-text);
    font-size: 24px;
    transition: transform var(--transition-fast);
}

.close-overlay:hover {
    transform: rotate(90deg);
}

.qrcode-image img {
    max-width: 200px;
    border: 3px solid white;
    border-radius: 8px;
}


/* 底部导航 */

.footer {
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    padding: 30px 0;
    background: #e5e5e5;
    color: #999999;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: space-between;
    font-family: Noto Sans SC;
}

.footer-nav a {
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icon img {
    height: 24px;
    transition: transform var(--transition-fast);
}

.social-icon:hover img {
    transform: scale(1.2);
}

.copyright {
    font-size: 12px;
    color: #999999;
    margin-top: 20px;
}


/* Swiper自定义样式 */

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: white;
}

.swiper-button-next {
    right: 100px;
}

.swiper-button-prev {
    left: 100px;
}

.swiper-button-next, .swiper-button-prev {
    color: #D1A175;
    background: rgba(0, 0, 0, 0.0);
    border: 2px solid #D1A175;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    opacity: 1 !important;
    ;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 28px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.0);
}


/* 提示框样式 */

.toast {
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    font-weight: 500;
}

.new-p-100 {
    padding: 0px 100px;
}

.wap-show {
    display: none;
}

.pc-show {
    display: block;
}

.index-new-t {
    padding-top: 80px;
}

.footer-ewm {
    display: flex;
    align-items: center;
}

.footer-ewm .ewm-img {
    width: 100px;
    height: 100px;
    margin-right: 2rem;
}

.careers-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-content {
    margin-right: 120px;
}

.gzbj {
    background-image: url(/uploadfile/202506/3990542d12a19ef.png);
    height: 100%;
    background-size: contain;
}

.gzbjs {
    background-image: url(/uploadfile/202506/3990542d12a19ef.png);
    background-size: contain;
}

.tlzl {
    background-image: url(/uploadfile/202506/b60c4d3fee7f3c4.png);
    height: 100%;
    background-size: cover;
}

.footer-contact-phone a {
    display: block;
}

.footer-contact-phone {
    display: flex
}

.footer-contact-phone .left {
    margin-right: 1rem;
    width: 5rem;
}

.footer-contact-phone .right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-contact-phone .right .aphos {
    margin-left: 1rem;
}
.header-child {
    display: none;
        opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
        
    }
    .nav-item.active .header-child {
        display: block;
        display: flex;
       opacity: 1;
        visibility: visible;
     
    }
        
    .nav-item.active {
      display: block;
      animation: fadein 1s;
      
    }
    /* 移出动画 */
    @keyframes .nav-item.active {
      0% {
        opacity: 1;
        display: block;
      }
      100% {
        opacity: 0;
        display: block;
      }
    }
    /* 进入动画 */
    @keyframes .nav-item.active {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }



/* 响应式设计 */

@media (max-width: 992px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    .nav-links .nav-item {
        max-height: 200px;
        position: static;
    }
    .header-child {
        display: none;
        margin-top: 20px;
    }
    .nav-links.actives {
        margin-left: -50%;
    }
    .nav-item.active .header-child {
        display: block;
        position: absolute;
        right: 40%;
        top: 20%;
    }
    .shop-overlay {
        opacity: 1;
        visibility: visible;
    }
    #splash img {
        max-width: 1400px;
    }
    .footer-contact-phone a {
        display: block;
    }
    .footer-contact-phone {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .footer-contact-phone .left {
        margin-right: 0rem;
        width: 100%;
    }
    .footer-contact-phone .right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .footer-contact-phone .right .aphos {
        margin-left: 0rem;
    }
    .stat-item {
        padding: 10px;
    }
    .news-content {
        margin-right: 0px;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-ewm {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .swiper-button-next, .swiper-button-prev {
        color: #d1a17599;
        background: rgba(0, 0, 0, 0.0);
        border: 2px solid #d1a17599;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        margin-top: -22px;
        opacity: 1 !important;
    }
    /* 页面特定样式 */
    .product-swiper, .careers-swiper {
        height: 100%;
        margin-top: 70px;
        margin: 0px 25px;
    }
    .careers-swiper {
        height: auto;
        padding-bottom: 20px;
    }
    .careers-swiper .swiper-slide {
        flex-direction: column;
        padding: 15px;
    }
    .product-swiper {
        height: auto;
        padding-bottom: 20px;
    }
    .product-swiper .swiper-slide {
        flex-direction: column;
        padding: 15px;
    }
    .footer {
        position: relative;
        bottom: 0;
        width: 100%;
        padding: 30px 0;
        background: #e5e5e5;
        color: #999999;
        z-index: 10;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .footer-end {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center !important;
    }
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-bottom: 20px;
    }
    .footer-nav {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        justify-content: center;
        font-family: Noto Sans SC;
    }
    .new-p-100 {
        padding: 0px;
    }
    .index-new-t {
        padding-top: 73px;
    }
    .swiper-button-next {
        right: 5px;
    }
    .swiper-button-prev {
        left: 5px;
    }
    .wap-show {
        display: block;
    }
    .pc-show {
        display: none;
    }
    .shop-vs h3 {
        font-size: 1rem;
    }
    .shop-vs {
        padding: 1rem;
    }
    .shop-content img {
        bottom: -2rem;
    }
    .shop-s-content {
        top: 80px;
    }
    .shop-bg-wp {
        background-image: url(/uploadfile/202506/ec472260b1e3290.jpg);
        height: 100vh;
        background-size: cover;
        width: 100%;
    }
    .about-swiper {
        height: 100vh;
        overflow: hidden;
    }
    .about-swiper.can-scroll-footer {
        overflow-y: auto;
        /* 允许滚动 */
    }
    .about-swiper.show-footer .swiper-slide:last-child {
        transform: translateY(-50px);
        transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    /*.main-swiper.can-scroll-footer {
  overflow-y: auto; 
}

.main-swiper .index-ys:last-child {
  transform: translateY(-50px);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}*/
    /* 响应式设计 */
    @media (max-width: 992px) {
        .nav-menu {
            display: none;
        }
        .copyright {
            max-width: 320px;
            margin: 20px auto;
        }
        .about-swiper.show-footer .swiper-slide:last-child {
            transform: translateY(-300px);
        }
        /*.main-swiper.show-footer .index-ys:last-child {
    transform: translateY(-300px);
  }*/
        .container-fluid {
            padding: 0 15px;
        }
        .wap-top-a {
            margin-top: 80px;
        }
        .about-content {
            padding: 0 15px;
            font-size: 14px;
        }
    }
    @media (max-width: 768px) {
        .navbar-brand img.logo {
            height: 35px;
        }
        #mainNav {
            background: #ff000000 !important;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            /* border-bottom: 1px solid #CDCDCD; */
            transition: all var(--transition-normal);
            padding: 15px 0;
        }
        .fullscreen-nav {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(0, 0, 0, 0.77);
            overflow: hidden;
            z-index: 1040;
            transition: height var(--transition-normal);
        }
        .product-description, .job-requirements {
            font-size: 14px;
        }
        .product-swiper .swiper-slide, .careers-swiper .swiper-slide {
            height: auto;
            display: flex;
            align-items: center;
        }
        .product-swiper .swiper-slide {
            height: 100vh;
        }
        .careers-swiper .swiper-slide {
            margin-top: 80px;
            height: calc(100vh - 80px);
        }
        .slide-text h1 {
            font-size: 28px;
        }
        .slide-text h2 {
            font-size: 22px;
        }
        .job-title {
            font-size: 28px;
        }
        .product-title {
            font-size: 28px;
            text-align: center;
        }
        .about-header {
            padding-top: 0px;
            margin-bottom: 20px;
        }
        .timeline {
            padding: 0px;
        }
        .timeline-item {
            margin-bottom: 0px;
        }
        .about-header h1 {
            font-size: 28px;
        }
        .stat-item h2 {
            font-size: 36px;
        }
        .news-container {
            padding: 100px 0 40px;
        }
        .news-show-container {
            padding: 100px 0 40px;
        }
        .news-show-title {
            font-size: 24px;
        }
        .news-show-content {
            padding: 20px;
        }
        .shop-text h2 {
            font-size: 22px;
        }
        .shop-section {
            height: 25vh;
        }
        .qrcode-image img {
            max-width: 100px;
            border: 3px solid white;
            border-radius: 8px;
            margin: 0 auto;
        }
        .shop-s-content {
            top: 80px;
            height: 25%
        }
        .overlay-content {
            padding: 30px;
            margin: 20px;
        }
        .timeline-content, .product-info {
            padding: 20px;
        }
        .job-info {
            padding: 0px;
        }
        .honor-item {
            margin-bottom: 0px;
            padding: 1rem 4rem;
        }
        .ws-img {
            display: none;
        }
    }
    @media (max-width: 480px) {
        .slide-text {
            padding: 15px;
        }
        .logo-large {
            max-width: 150px;
        }
        .nav-text {
            font-size: 20px;
        }
        .news-item {
            padding: 20px;
        }
        .about-content {
            padding: 0 15px;
            font-size: 14px;
        }
    }
    .gzbj {
        background-image: url(/uploadfile/202506/3990542d12a19ef.png);
        height: 100%;
        background-size: contain;
    }
    .tlzl {
        background-image: url(/uploadfile/202506/b60c4d3fee7f3c4.png);
        height: 100%;
        background-size: cover;
    }
    /* 优化加载性能 */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    /* 打印样式 */
    @media print {
        .navbar, .footer, .swiper-pagination, .swiper-button-next, .swiper-button-prev {
            display: none !important;
        }
    }
    .slide-up-fade-in {
        opacity: 0;
        /* 初始状态：完全透明 */
        transform: translateY(50px);
        /* 初始状态：向下偏移 50px */
        animation: slideUpFadeIn 0.5s ease-out forwards;
        /* 动画：1秒时长，缓动效果，保留最终状态 */
    }
    @keyframes slideUpFadeIn {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            /* 最终状态：完全不透明 */
            transform: translateY(0);
            /* 最终状态：回到原位 */
        }
    }