/* 导入字体 */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600;700&display=swap');

/* 通栏广告样式 */
.banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 0;
    box-sizing: border-box;
}

/* 满屏通栏广告样式 - 增加优先级 */
.banner-full {
    margin: 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    overflow: hidden !important;
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
    clear: both !important;
}

/* 确保banner-full不受父容器影响 */
header .banner-full,
nav .banner-full,
section .banner-full {
    position: static !important;
    transform: none !important;
    left: 0 !important;
    width: 100% !important;
}

/* 通栏广告图片home_img3.png的特殊样式 - 两边留边距并居中 */
.banner.banner-full img[src="images/home_img3.png"] {
    max-width: 90% !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
    height: auto !important;
    max-height: none !important;
}

/* 为包含home_img3.png的通栏广告容器添加上下间距 */
.banner.banner-full:has(img[src="images/home_img3.png"]) {
    margin-top: 60px !important;
    max-height: none !important;
}

/* 品牌故事标题颜色 */
.story-section .story-content h2 {
    color: #0A795C !important;
}



/* 通栏广告图片样式 */
.banner-full img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    max-width: 100% !important;
    max-height: none !important;
    margin: 0 !important;
}

/* 媒体查询 - 响应式优化 */
@media (max-width: 1200px) {
    .banner {
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .banner {
        margin: 10px 0;
    }
    
    .banner img {
        min-height: 100px; /* 确保在小屏幕上图片有最小高度 */
    }
}

@media (max-width: 480px) {
    .banner {
        margin: 8px 0;
    }
    
    .banner img {
        min-height: 80px;
    }
}

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

body {
    font-family: 'Dosis', sans-serif;
    line-height: 1.6;
    color: #333;
    
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 头部导航样式 */
header {
    background-image: url('images/header_bg5.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 0 20px;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}



/* 移除重复的导航栏样式定义 */

/* 确保背景图在所有屏幕尺寸下都能自适应 */
@media (max-width: 768px) {
    header {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
}

@media (min-width: 769px) and (max-width: 1399px) {
    header {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
}

@media (min-width: 1400px) {
    header {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
}

/* 为了确保文字清晰可见，添加半透明遮罩层 */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Banner文字样式 */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 1200px;
}

.banner-text h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Dosis', sans-serif;
}

.banner-text p {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 20px 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Dosis', sans-serif;
}

/* Banner文字响应式设计 */
@media (max-width: 1399px) {
    .banner-text h1 {
        font-size: 2.5rem;
    }
    .banner-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 1199px) {
    .banner-text h1 {
        font-size: 2.2rem;
    }
    .banner-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .banner-text h1 {
        font-size: 2rem;
    }
    .banner-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .banner-text {
        width: 90%;
    }
    .banner-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .banner-text p {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .banner-text h1 {
        font-size: 1.5rem;
    }
    .banner-text p {
        font-size: 0.9rem;
    }
}

.navbar {
    position: relative;
    z-index: 2; /* 确保导航栏在背景图和遮罩层之上 */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 65px 20px 20px;
    transition: all 0.3s ease;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

/* 滚动时导航栏效果已移除，导航栏不再固定 */

/* 桌面端导航菜单 */
.nav-links {
    display: flex;
    list-style: none;
    gap: 80px;
    margin: 0 auto;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.6;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* 电脑端响应式导航样式 */
@media (max-width: 1399px) {
    .nav-links {
        gap: 70px;
    }
    .nav-links a {
        font-size: 22px;
        line-height: 1.5;
    }
}

@media (max-width: 1199px) {
    .nav-links {
        gap: 60px;
    }
    .nav-links a {
        font-size: 20px;
        line-height: 1.5;
    }
}

@media (max-width: 991px) {
    .nav-links {
        gap: 50px;
    }
    .nav-links a {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 40px;
    }
    .nav-links a {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .nav-links {
        gap: 30px;
    }
    .nav-links a {
        font-size: 14px;
        line-height: 1.3;
    }
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 当前页面的导航链接高亮 */
.nav-links a[aria-current="page"] {
    background-color: transparent;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    text-decoration-color: white;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
}

/* 品牌故事样式 */
.story-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    background-image: url('images/home_bg3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.story-section .container {
    
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.story-content {
    flex: 1;
    margin-left: 100px;
}

.story-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
}
.title_2{
    color: #0A795C;
}
.story-content p {
    
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.story-image {
    flex: 1;
    margin-left: 40px;
    text-align: right;
    padding-right: 20px;
}

.story-image img {
    width: auto;
    max-width: calc(100% - 20px);
    height: auto;
    border-radius: 10px;
    display: inline-block;
    margin-right: 0;
}

/* 故事分隔线样式 */
.story-divider {
    width: 100%;
    height: 1px;
    background-color: #111111;
    margin: 30px 0;
}
.title_4{
    color: #282929;
    font-size: 0.8rem;
}

.story-content a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    color: #0A795C;
    padding: 5px 35px;
    border-radius: 24px;
    border: 2px solid #0A795C;
    display: inline-block;
    margin: 20px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.story-content a:hover, .banner.banner-full a:hover {
    background-color: #0A795C;
    color: white;
}

   .banner banner-full a{width: 240px;
    height: 50px;
    background: #85BFE8;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-weight: 500;
    position: absolute;
    left: 11%;
    top: 54%;}

/* 确保通栏广告链接定位在图片上 */
.banner.banner-full {
    position: relative;
}

.banner.banner-full a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* 产品系列样式 */
.products-section {
    padding: 180px 0;
    background-image: url('images/home_bg1_2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 800px;
}

/* 针对不同屏幕尺寸的背景图响应式调整 */
@media (max-width: 1440px) {
    .products-section {
        background-image: url('images/home_bg1_1.png');
        background-size: cover;
        background-attachment: fixed;
        min-height: 700px;
    }
}

@media (max-width: 1200px) {
    .products-section {
        background-image: url('images/home_bg1_1.png');
        background-size: cover;
        background-attachment: fixed;
        min-height: 600px;
        padding: 120px 0;
    }
}

@media (max-width: 992px) {
    .products-section {
        background-image: url('images/home_bg1_1.png');
        background-size: cover;
        background-attachment: fixed;
        min-height: 500px;
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .products-section {
        background-image: url('images/home_bg1_1.png');
        background-size: cover;
        background-attachment: fixed;
        min-height: 400px;
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .products-section {
        background-image: url('images/home_bg1_1.png');
        background-size: cover;
        background-attachment: fixed;
        min-height: 300px;
        padding: 60px 0;
    }
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.products-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #005691;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-item {
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h6 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* 科学配方样式 */
.science-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    background-image: url('images/home_bg5.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.science-section .container {
    margin: 0 auto;
    padding: 0 20px;
}

.science-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.science-image {
    flex: 0 0 auto;
    max-width: 45%;
}

.science-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .science-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .science-content {
        flex-direction: column;
        align-items: center;
    }
}

.science-details {
    flex: 1;
}

.science-details .title1 {
    color: #85bfe8;
    margin-bottom: 20px;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.3;
}

.science-details .title3 {
    width: 100%;
    max-width: 80%;
    margin: 0;
    text-align: left;
    text-align: justify;
}

/* 针对移动设备的响应式调整 */
@media (max-width: 768px) {
    .science-details .title3 {
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .science-details .title3 {
        max-width: 100%;
        padding: 0 10px;
        margin: 0;
        text-align: left;
    }
}

.science-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.science-details p {
    font-size: 1.4rem;
    color: #666;
}

.title3 a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    color: #85bfe8;
    padding: 5px 35px;
    border-radius: 24px;
    border: 2px solid #85bfe8;
    float: right;
    margin-top: 30px;
    display: inline-block;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .title3 a {
        float: none;
        margin-top: 20px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 20px;
        padding: 5px 25px;
    }
}

.science-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.science-details li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.science-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* 图文模块样式 */
.text-image-section {
 
    background: url('images/home_bg7.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    height: auto;
    min-height: 500px;
    
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

/* 响应式高度调整 */
@media (max-width: 1440px) {
    .text-image-section {
        min-height: 450px;
        padding: 50px 0;
    }
}

@media (max-width: 1200px) {
    .text-image-section {
        min-height: 400px;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .text-image-section {
        min-height: 350px;
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .text-image-section {
        min-height: 300px;
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .text-image-section {
        min-height: 250px;
        padding: 15px 0;
    }
}

/* 图文模块2背景图片 */
#text-image-2.text-image-section {
    background-image: url('images/home_bg5.jpg');
    background-size: cover;
    background-attachment: scroll;
}

.text-image-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.text-image-section .container {
    position: relative;
    z-index: 2;
}

.text-image-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
    color: #2c3e50;
}

.text-image-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #784932;
}

.text-content p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.tw-btn {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.6rem;
    color: #784932;
    padding: 12px 35px;
    border-radius: 24px;
    border: 2px solid #784932;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tw-btn:hover {
    color: #fff;
    background-color: #784932;
    text-decoration: none;
}

footer {
    background-color: transparent !important;
    background: transparent !important;
    position: relative;
}

.footerBg {  
  background:url('images/footer_bg1.png') no-repeat;
  background-size: cover;
  background-color: transparent !important;
  background: transparent url('images/footer_bg1.png') no-repeat !important;
  background-size: cover !important;
  position: relative;
}
.footer1 {
  padding: 390px 30px 0 0;

}
.footer1 .footer-logo {
  position: absolute;
  top: 10px;
  left: 30px;
}
.footer1 .footer-logo img {
  max-width: 45%;
  height: auto;
  margin-top: 15%;
}

/* Responsive footer logo */
@media (max-width: 768px) {
  .footer1 .footer-logo img {
    max-width: 120px;
  }
  .footer1 .footer-logo {
    left: 20px;
    top: 15px;
  }
}

@media (max-width: 480px) {
  .footer1 .footer-logo img {
    max-width: 100px;
  }
  .footer1 .footer-logo {
    left: 15px;
    top: 20px;
  }
}
.footer1 .nav {
  padding-top: 32%;
}
.footer1 .nav a {
  font-size: 2.4rem;
  font-family: Dosis;
  font-weight: 500;
  margin: 0 30px;
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
}
.footer1 .note {
  padding-top: 170px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
}
.floatr {
    display: inline;
    float: right;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .text-content a {
        float: none;
        margin-top: 20px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 20px;
        padding: 5px 25px;
    }
    
    /* 调整手机设备text-content段落文字大小 */
    .text-content p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    /* 调整小屏手机text-content段落文字大小 */
    .text-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.text-content li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.text-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 90%;
    height: auto;
    border-radius: 10px;
}

/* 问答模块样式 */
.faq-section {
    padding: 80px 0;
    background: url('images/home_bg12.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    text-align: center;
    background-color: #f5f5f5;
}

.faq-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.faq-section > * {
    position: relative;
    z-index: 2;
}

.faq-title {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

/* 问答模块内容网格 */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 问答卡片 */
.faq-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: Dosis-Medium;
}


/* 问答标题 */
.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.faq-question h3,
.faq-answer h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    min-width: 30px;
    font-family: Dosis-Medium;
}

.faq-question p {
    font-size: 1.4rem;
    line-height: 1.2;
    color: #555;
    margin: 0;
    font-weight: bold;
    text-align: left;
    font-family: Dosis-Medium;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align:justify;
    font-family: Dosis-Medium;
}

/* 问答模块结束语 */
.faq-conclusion {
    margin-top: 40px;
}

.faq-conclusion p {
    font-size: 20px;
    color: white;
    font-style: italic;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .story-section .container,
    .science-content,
    .text-image-content {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .story-content h2,
    .science-details h2 {
        font-size: 2rem;
    }
    
    .text-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    /* 移动端导航 */
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 80px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: #333;
    }
    
    /* 品牌故事响应式 */
    .story-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .story-content {
        margin-left: 0;
    }
    
    .story-image {
        margin-left: 0;
        margin-top: 40px;
        text-align: center;
        padding-right: 0;
    }
    
    .story-image img {
        width: 100%;
        max-width: 100%;
        display: block;
        margin-right: 0;
    }
    
    /* 产品系列响应式 */
    .products-section .container {
        padding: 0 30px;
    }
    
    /* 科学配方响应式 */
    .science-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* 图文模块响应式 */
    .text-image-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* 问答模块响应式 */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* 导航栏响应式 */
    .navbar {
        padding: 20px 15px;
    }
    
    /* 品牌故事响应式 */
    .story-section {
        padding: 60px 0;
    }
    
    /* 产品系列响应式 */
    .products-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    /* 科学配方响应式 */
    .science-section {
        padding: 60px 0;
    }
    
    /* 图文模块响应式 */
    .text-image-section {
        padding: 60px 0;
        background-attachment: scroll;
        min-height: auto;
    }
    
    /* 问答模块响应式 */
    .faq-title blockquote {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .faq-title {
        margin-bottom: 40px;
    }
    
    .faq-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    /* 导航栏响应式 */
    .navbar {
        padding: 15px 10px;
    }
    
    /* 品牌故事响应式 */
    .story-section {
        padding: 40px 0;
    }
    
    /* 科学配方响应式 */
    .science-section {
        padding: 40px 0;
    }
    
    /* 图文模块响应式 */
    .text-image-section {
        padding: 40px 0;
    }
    
    /* 问答模块响应式 */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title blockquote {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .faq-card {
        padding: 20px 15px;
    }
    
    .faq-question h3,
    .faq-answer h3 {
        font-size: 20px;
    }
    
    .faq-question p {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .faq-question h3,
    .faq-answer h3 {
        font-size: 18px;
    }
    
    .faq-question p {
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-title blockquote {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq-question h3,
    .faq-answer h3 {
        font-size: 16px;
    }
    
    .faq-question p {
        font-size: 13px;
    }
    
    .faq-answer p {
        font-size: 12px;
    }
    
    .faq-title blockquote {
        font-size: 16px;
    }
}

/* 新故事模块样式 */
.new-story-section {
    background: url('images/baogou.png') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ggbj container */
.ggbj {
    background: url('images/73.png') no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    background-attachment: scroll;
    background-repeat: no-repeat
}

/* ggbj responsive design */
@media (max-width: 1200px) {
    .ggbj {
        padding: 80px 0;
        min-height: 350px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat
    }
}

@media (max-width: 992px) {
    .ggbj {
        padding: 60px 0;
        min-height: 300px;
        background-size: cover;
        background-position: 50% center;
    }
}

@media (max-width: 768px) {
    .ggbj {
        padding: 50px 0;
        min-height: 250px;
        background-size: cover;
        background-position: 55% center;
    }
}

@media (max-width: 480px) {
    .ggbj {
        padding: 40px 0;
        min-height: 200px;
        background-size: cover;
        background-position: 60% center;
    }
}

.new-story-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    pointer-events: none;
}

.new-story-section > * {
    position: relative;
    z-index: 2;
}

.new-story-section .story-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-story-section .story-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.new-story-section .story-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

.new-story-section .story-text {
    flex: 1;
    padding-right: 60px;
    padding-left: 60px;
}

.new-story-section .founder-info {
    position: relative;
    margin-bottom: 40px;
}

.new-story-section .founder-name {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    text-align: left;
    font-family: 'Dosis', cursive;
}

.new-story-section .divider {
    width: 100px;
    height: 1px;
    background-color: #333;
    margin-bottom: 15px;
}

.new-story-section .founder-title {
    font-size: 1rem;
    color: #666;
    margin: 0;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.new-story-section blockquote {
    font-size: 1.4rem;
    line-height: 2;
    color: #555;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    text-align: left;
}

.new-story-section blockquote br {
    margin-bottom: 15px;
}

.new-story-section .story-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.new-story-section .story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

/* 新故事模块响应式设计 */
@media (max-width: 992px) {
    .new-story-section .story-container {
        flex-direction: column;
        text-align: center;
    }
    
    .new-story-section .story-text {
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 40px;
    }
    
    .new-story-section .founder-name,
    .new-story-section .founder-title,
    .new-story-section blockquote {
        text-align: center;
    }
    
    .new-story-section .divider {
        margin: 15px auto;
    }
}

@media (max-width: 768px) {
    .new-story-section {
        padding: 60px 0;
    }
    
    .new-story-section .story-header h2 {
        font-size: 2rem;
    }
    
    .new-story-section .founder-name {
        font-size: 1.5rem;
    }
    
    .new-story-section blockquote {
        font-size: 1rem;
        line-height: 1.8;
    }
}



.link a {
    margin: 0 15px;
}

/* 页脚响应式设计 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links ul {
        gap: 15px;
        flex-direction: column;
    }
    
    footer .container {
        padding: 20px 0;
    }
    
    footer .footer-logo img {
        max-width: 120px;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    footer .banner-full img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 0;
    }
    
    footer .container {
        padding: 15px 0;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    footer .footer-logo img {
        max-width: 100px;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
        text-align: center;
        padding: 0 20px;
    }
}

/* 滚动内容样式 */
.content2 {
   
    
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.content2Left {
    width: 600px;
    position: absolute;
    top: 20%;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.content2Left1 {
    font-size: 50px;
    color: #000;
    font-weight: 500;
    font-family: "Dosis", sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 500px;
}

.content2Left2 {
    flex: 0 0 auto;
    text-align: center;
    margin: 40px 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.content2Left1 li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content2Left1 a {
    display: inline-block;
    margin-top: 20px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.tell-me {
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 40px;
    color: #000;
}

.your-story {
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 40px;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: right;
}


.content2Left2 {
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.content2Left2 .scroll-arrow {
    display: inline-block;
    margin-right: 0;
    margin-top: 0;
}

.content2Left2 .scroll-arrow img {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
}

.content2Left2 .scroll-arrow img:hover {
    transform: scale(1.1);
}

.content2Right {
    width: 65%;
    float: right;
 
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

#scrollable-list {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0;
    padding: 0;
    list-style: none;
}

#scrollable-list li {
    margin-left: 75px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

#scrollable-list li:hover {
    transform: translateY(-5px);
}

#scrollable-list img {
    display: block;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#scrollable-list li:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content2Right .title_1,
.content2Right .title1 {
    font-size: 0.8rem;
    padding: 0.94rem 0 0.31rem;

    margin: 0;
    line-height: 1.6;
}

.content2Right .title2 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #2d1a11;
    line-height: 1.5;
    padding-bottom: 10px;
}

/* 响应式设计 */
@media (min-width: 1600px) {
    .content2Right {
        width: 90%;
        margin-right: -300px;
    }
    
    #scrollable-list li {
        margin-left: 40px;
    }
    
    #scrollable-list img {
        width: auto;
        height: 350px;
    }
}

@media (max-width: 1400px) {
    .content2 {
        padding: 80px 0 80px 100px;
        background-size: auto 100%;
    }
    
    .content2Left {
        width: auto;
        gap: 40px;
    }
    
    .content2Left1 {
        max-width: 400px;
        font-size: 45px;
    }
    
    .title-row {
        margin: 80px 0 0 120px;
        gap: 15px;
        justify-content: flex-end;
    }
    
    .tell-me,
    .your-story {
        font-size: 35px;
        text-align: right;
    }
    
    .content2Right {
       
        margin-right: 2%;
    }
    
    #scrollable-list li {
        margin-left: 50px;
    }
    
    /* 新故事模块响应式设计 */
    .new-story-section {
        padding: 80px 0;
    }
    
    /* 图文模块响应式设计 */
    .text-image-section {
        padding: 80px 0;
    }
}

@media (max-width: 1200px) {
    .content2 {
        padding: 60px 0 60px 80px;
        background-size: auto 100%;
    }
    
    .content2Left {
        width: auto;
        gap: 30px;
    }
    
    .content2Left1 {
        max-width: 350px;
        font-size: 40px;
    }
    
    .title-row {
        margin: 80px 0 0 100px;
        gap: 15px;
        justify-content: flex-end;
    }
    
    .tell-me,
    .your-story {
        font-size: 35px;
        text-align: right;
    }
    
    .content2Right {
        
        margin-right: 2%;
    }
    
    #scrollable-list li {
        margin-left: 50px;
    }
    
    #scrollable-list img {
        width: 200px;
        height: auto;
    }
    
    /* 新故事模块响应式设计 */
    .new-story-section {
        padding: 60px 0;
        background-size: auto 100%;
    }
    
    /* 图文模块响应式设计 */
    .text-image-section {
        padding: 60px 0;
        background-size: auto 100%;
    }
}

@media (max-width: 992px) {
    .content2 {
        padding: 40px;
        text-align: center;
        background-attachment: scroll;
        min-height: 400px;
        display: block;
    }
    
    .content2Left,
    .content2Left1,
    .content2Left2,
    .content2Right {
        float: none;
        width: 100%;
        margin: 0;
        position: static;
    }
    
    .content2Left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .content2Left1 {
        text-align: center;
        max-width: 100%;
        font-size: 35px;
    }
    
    .title-row {
        margin: 20px 0 0 0;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tell-me,
    .your-story {
        font-size: 28px;
        text-align: center;
    }
    
    .your-story {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    .content2Left2 {
        margin: 30px 0 10px;
    }
    
    .content2Right {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        margin-top: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    #scrollable-list {
        display: inline-flex;
        padding-bottom: 10px;
    }
    
    #scrollable-list li {
        margin-left: 50px;
    }
    
    /* 隐藏滚动条但保留功能 */
    .content2Right::-webkit-scrollbar {
        display: none;
    }
    
    .content2Right {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* 新故事模块响应式设计 */
    .new-story-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    /* 图文模块响应式设计 */
    .text-image-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
}

/* 移动端设备适配（768px以下） */
@media (max-width: 768px) {
    .content2 {
        padding: 30px 20px;
        background-attachment: scroll;
        min-height: 400px;
        display: block;
    }
    
    .content2Left {
        margin: 10px 0;
    }
    
    .content2Left1 {
        font-size: 32px;
    }
    
    .content2Left1 .title {
        margin: 10px 0 20px 0;
        font-size: 28px;
    }
    
    .content2Left2 {
        margin: 10px 0;
    }
    
    .content2Left2 .scroll-arrow {
        margin-right: 5%;
        text-align: center;
        margin-top: 0;
    }
    
    .content2Left2 .scroll-arrow img {
        width: 35px;
        height: 35px;
    }
    
    .content2Right {
        margin-top: 20px;
    }
    
    #scrollable-list li {
        margin-left: 30px;
    }
    
    #scrollable-list img {
        width: 160px;
        height: auto;
    }
    
    .content2Right p.title1 {
        font-size: 1rem;
        padding: 10px 0 3px;
        font-weight: bold;
        line-height: 1.3;
    }
    
    .content2Right .title2 {
        font-size: 16px;
    }
}

/* 小屏幕手机适配（480px以下） */
@media (max-width: 480px) {
    .content2 {
        padding: 20px 15px;
    }
    
    .content2Left1 {
        font-size: 28px;
    }
    
    .content2Left1 .title {
        font-size: 24px;
    }
    
    .content2Left2 {
        margin: 10px 0;
    }
    
    #scrollable-list li {
        margin-left: 20px;
    }
    
    #scrollable-list img {
        width: 130px;
        height: auto;
    }
}

/* 鱼骨模块 */
.fishbone-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.content33 {
  background:url('images/home_bg13.png') no-repeat;
  background-size: 100% 100%;
  height: 1314px;
  position: relative;
}
.content33 .title {  
  font-size: 53px;
  text-align: center;
  color: #2d1a11;
  font-weight: bold;
  padding: 80px 0;
}
.content33 .number {
  font-weight: 300;
  font-size: 115px;
  color: #2D1A11;
  line-height: 1.1;
}
.content33 .subContent1 {
  width: auto;
  position: absolute;
  top: 20%;
  left: 10%;
  display: flex;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.content33 .subContent1-01 {
  margin-right: 20px;
  text-align: left;
  flex-shrink: 0;
  margin-top: 20px;
  position: relative;
  width: auto;
}

.content33 .subContent1-01 > img:first-child {
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  max-width: 200px;
}

/* 调整number-text-container的样式 */
.content33 .subContent1 .number-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-top: 0;
}

.content33 .subContent1 .number {
  margin-left: 0;
  text-align: left !important;
  color: #2D1A11;
  display: block;
  margin-bottom: 10px;
  margin-top: 0;
}

.content33 .subContent1 .text {
  margin-left: 0;
  text-align: left !important;
  color: #2D1A11;
  font-weight: bold;
  line-height: 1.5;
  font-size: 19.2px;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}
.content33 .subContent2 {
  width: 350px;
  position: absolute;
  top: 70%;
  left: 10%;
}
.content33 .subContent3 {
  width: 259px;
  position: absolute;
  top: 75.5%;
  left: 65.5%;
}

.content33 .subContent2 .number,
.content33 .subContent3 .number {
  margin-bottom: 20px;
}

.content33 .subContent2 .text,
.content33 .subContent3 .text {
  font-size: 19.2px;
  line-height: 1.5;
  font-weight: bold;
  color: #2D1A11;
}

/* 照片墙样式 */
.photo-wall-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.photo-wall-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-wall-section .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-family: 'Dosis', sans-serif;
    padding: 120px 20px;
}

.photo-gallery {
    max-width: 100%;
    margin: 0 auto;
}

.gallery-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .gallery-row {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .photo-wall-section {
        padding: 60px 0;
    }
    
    .photo-wall-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .gallery-row {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .gallery-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 180px;
    }
}

/* 标题图文模块样式 */
.title-image-section {
    padding: 20px 0 0;
    text-align: center;
    margin-bottom: 0;
}

/* Add space between the two title-image-sections */
#stay-connected.title-image-section {
    margin-top: 30px;
}
.stay-connected{
    margin-top: 20px;
}
.title-image-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.title-image-section .section-title {
    font-size: 72px;
    color: #071625;
    margin-bottom: 20px;
    font-family: 'Dosis-SemiBold';
    padding: 60px 20px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-image-section .image-container {
    width: 77.3%; /* Maintain same proportional width as 1486px on 1920px */
    max-width: 1486px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.title-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    object-fit: cover;
}

/* 标题图文模块响应式设计 */
@media (max-width: 768px) {
    .title-image-section {
        padding: 30px 0 0;
    }
    
    .title-image-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .title-image-section img {
        max-height: 70vh;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .title-image-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .title-image-section img {
        max-height: 60vh;
        max-width: 100%;
    }
}