.block {
            height: 120px;
            width: 100%;
            
            background-image: url('/1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            box-sizing: border-box;
        }
        body {
            margin: 0;
            padding: 20px;
            overflow-x: auto;
        }
        
        .company-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            height: 150px;
            width: 150px;
            object-fit: contain;
        }
        
        .company-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .company-name {
            font-size: 18px;
            font-weight: bold;
            color: white;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        .company-tagline {
            font-size: 12px;
            color: white;
            margin: 0;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .nav-item {
            position: relative;
        }
        
        /* 移除导航链接的默认下划线和边框 */
        .nav-link {
            text-decoration: none;
            border-bottom: none !important;
        }
        
        /* 确保没有伪元素创建的红色条 */
        .nav-item::after,
        .nav-link::after {
            display: none !important;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s ease;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            padding: 8px 12px;
            display: block;
            cursor: pointer;
        }
        
        .nav-link:hover {
            opacity: 0.8;
        }
        
        /* 二级导航样式 */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(255, 255, 255, 0.95);
            list-style: none;
            margin: 0;
            min-width: 130px;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            max-height: 0;
            transition: max-height 0.3s ease-out;
            z-index: 1000;
        }
        
        /* 确保二级菜单在默认情况下完全关闭，没有内容溢出 */
        .sub-menu:not(:hover) {
            overflow: hidden;
        }
        
        .sub-item {
            position: relative;
        }
        
        .sub-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            padding: 8px 15px;
            display: block;
            text-align: left;
            transition: background-color 0.3s ease;
        }
        
        .sub-link:hover {
            background-color: rgba(0, 0, 0, 0.2);
        }
        
       
        
        /* 鼠标悬停显示子菜单 */
        .nav-item:hover > .sub-menu {
            max-height: 200px; /* 足够容纳二级菜单的高度 */
        }
        
        /* 优化三级菜单悬停效果，确保鼠标从二级菜单项移到三级菜单项时不会关闭 */
        .sub-item:hover > .sub-sub-menu,
        .sub-item > .sub-sub-menu:hover {
            max-height: 150px; /* 足够容纳三级菜单的高度 */
            opacity: 1;
        }
        
 /* 移动端菜单按钮样式 */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
            z-index: 1002;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            /* 显示移动端菜单按钮 */
            .menu-toggle {
                display: flex;
            }
            
            /* 默认隐藏导航菜单 */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.95);
                flex-direction: column;
                gap: 0;
                padding: 60px 20px;
                transition: right 0.3s ease;
                z-index: 1001;
                box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
            }
            
            /* 显示导航菜单 */
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu ul {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-item {
                width: 100%;
                margin: 5px 0;
            }
            
            .sub-menu {
                position: static;
                background-color: rgba(0, 0, 0, 0.1);
                max-height: none;
                overflow: visible;
                transition: none;
            }
            
            .sub-sub-menu {
                position: static;
                background-color: rgba(0, 0, 0, 0.2);
                margin-left: 20px;
                max-height: none;
                overflow: visible;
                transition: none;
            }
            
            /* 旋转菜单按钮为叉号 */
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        /* 媒体查询 - 适配不同屏幕尺寸 */
        @media (max-width: 1024px) {
            .company-name {
                font-size: 16px;
            }
            
            .company-tagline {
                font-size: 11px;
            }
            
            .nav-link {
                font-size: 15px;
            }
            
            .nav-menu {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .block {
                height: auto;
                padding: 15px 20px;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .company-info {
                justify-content: center;
            }
            
            .logo {
                height: 50px;
                width: 50px;
            }
            
            .nav-menu {
                gap: 15px;
            }
            
            .company-name {
                font-size: 18px;
            }
            
            .company-tagline {
                font-size: 12px;
            }
            
            .nav-link {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .company-details {
                text-align: center;
            }
            
            .company-name {
                font-size: 16px;
            }
            
            .company-tagline {
                font-size: 10px;
            }
            
            .nav-menu {
                gap: 10px;
            }
            
            .nav-link {
                font-size: 14px;
            }
        }
        
        /* 媒体区域样式 */
        .media-section {
            padding: 40px 20px;
            background-color: #f8f8f8;
        }
        
        .media-container {
            display: flex;
            gap: 100px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: flex-start;
        }
        
        /* 视频容器样式 */
        .video-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .video-container:hover .play-overlay {
            opacity: 0.8;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #a81c00;
            transition: transform 0.3s ease;
        }
        
        .video-container:hover .play-button {
            transform: scale(1.1);
        }
        
        /* 内容容器样式 */
        .content-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        
        .content-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .learn-more {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
        }
        
        .learn-more-text {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }
        
        .learn-more-english {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .arrow {
            font-size: 20px;
            color: #a81c00;
            margin-top: 5px;
        }
        
        /* 媒体区域响应式设计 */
        @media (max-width: 992px) {
            .media-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .content-container {
                align-items: center;
            }
            
            .learn-more {
                align-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .media-section {
                padding: 20px 15px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
            
            .learn-more-text {
                font-size: 14px;
            }
            
            .learn-more-english {
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .media-section {
                padding: 15px 10px;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }
        
        /* 酿造基地介绍区块样式 */
        .brewery-section {
            padding: 60px 20px;
            background-color: white;
        }
        
        .brewery-container {
            display: flex;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: flex-start;
        }
        
        .brewery-image-container {
            flex: 0 0 40%;
        }
        
        .brewery-image {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .brewery-content {
            flex: 0 0 55%;
        }
        
        .brewery-text {
            font-size: 30px;
            line-height: 1.8;
            color: #333;
            margin: 0 0 20px 0;
            text-align: justify;
        }
        
        /* 自适应横幅大图样式 */
        .banner-section {
            width: 100%;
            overflow: hidden;
            background-color: #f0f0f0;
        }
        
        .banner-image {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
            object-fit: cover;
        }
        
        /* 酿造基地区块响应式设计 */
        @media (max-width: 992px) {
            .brewery-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .brewery-image-container,
            .brewery-content {
                flex: 1 1 100%;
            }
            
            .brewery-text {
                font-size: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .brewery-section {
                padding: 40px 15px;
            }
            
            .brewery-text {
                font-size: 14px;
                line-height: 1.7;
            }
        }
        
        @media (max-width: 480px) {
            .brewery-section {
                padding: 30px 10px;
            }
        }
        
        /* 底部区域样式 */
        .footer {
            background-color: #f5f5f5;
            padding: 40px 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-container {
            display: flex;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: flex-start;
        }
        
        /* 联系方式样式 */
        .footer-contact {
            flex: 1;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 28px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .contact-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }
        
        .contact-subtitle {
            font-size: 12px;
            color: #666;
        }
        
        /* 公司信息样式 */
        .footer-company {
            flex: 2;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .company-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .company-icon {
            font-size: 28px;
            margin-top: 3px;
        }
        
        .company-details {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .company-name-footer {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }
        
        .company-email {
            font-size: 14px;
            color: #666;
        }
        
        .address-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .address-icon {
            font-size: 24px;
        }
        
        .address-info {
            font-size: 14px;
            color: #666;
        }
        
        /* 二维码样式 */
        .footer-qr {
            flex: 1;
            display: flex;
            gap: 30px;
        }
        
        .qr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .qr-code {
            width: 100px;
            height: 100px;
            background-color: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .qr-text {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
        
        .qr-subtext {
            font-size: 12px;
            color: #666;
        }
        
        /* 底部区域响应式设计 */
        @media (max-width: 992px) {
            .footer-container {
                flex-wrap: wrap;
                gap: 40px;
            }
            
            .footer-contact,
            .footer-company,
            .footer-qr {
                flex: 1 1 100%;
            }
            
            .footer-qr {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 30px 15px;
            }
            
            .footer-container {
                gap: 30px;
            }
            
            .contact-title {
                font-size: 18px;
            }
            
            .company-name-footer {
                font-size: 15px;
            }
            
            .company-email,
            .address-info {
                font-size: 13px;
            }
            
            .qr-code {
                width: 90px;
                height: 90px;
            }
        }
        
        @media (max-width: 480px) {
            .footer {
                padding: 20px 10px;
            }
            
            .footer-container {
                gap: 20px;
            }
            
            .contact-item,
            .company-item,
            .address-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .qr-code {
                width: 80px;
                height: 80px;
            }
            
            .qr-text {
                font-size: 12px;
            }
            
            .qr-subtext {
                font-size: 11px;
            }
        }
 /* 文章列表样式 */
        .article-list {
            margin-top: 20px;
        }
        
        .article-list h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        
        .article-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .article-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .article-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
  width: 300px; /* 设置宽度 */
  overflow: hidden; /* 超出部分隐藏 */
  white-space: nowrap; /* 防止文本换行 */
text-overflow: ellipsis; /* 显示省略号 */
        }
        
        .article-excerpt {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .article-date {
            font-size: 12px;
            color: #999;
        }