   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
        }
        
        body {
            background-color: #fef6f6;
            color: #333;
           
         
            background-size: 120px;
        }
        
        /* 内容区宽度限制 */
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 固定导航条 */
        .fixed-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(167, 4, 4, 0.95);
            box-shadow: 0 4px 12px rgba(167, 4, 4, 0.3);
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .nav-container {
            width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            background-color: #fff;
            color: #a70404;
            transform: translateY(-2px);
        }
        
        /* Banner区域 */
        .banner {
         
         
        }
        .banner img{max-height:100%; max-width:100%;}
       
        
        /* 通用区域标题样式 */
        .section-title {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #a70404;
            display: inline-block;
            padding: 0 20px;
            background-color: transparent;
            position: relative;
            z-index: 1;
        }
        
        
        
        /* 各内容区域通用样式 */
        .section {
            padding: 60px 0;
           
            position: relative;
        }
        
        /* 春节介绍区域 */
        #intro {
            background-color: #fff;
         
        }
        
        .intro-content {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            padding: 0 20px;
        }
        
        .intro-content p {
            margin-bottom: 25px;
            text-indent: 2em;
        }
        
        /* 节日报道区域 */
        #news { background:url(../images/bj1.jpg) no-repeat;
        }
        
        .news-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            padding: 0 20px;
        }
        
        .news-item {
            padding: 20px;
            border-left: 5px solid #a70404;
            background-color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            border-radius: 0 8px 8px 0;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(167, 4, 4, 0.1);
        }
        
        .news-item a {
            color: #a70404;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }
        
        .news-item a:hover {
            text-decoration: underline;
        }
        
        /* 推荐厂商区域 */
        #company {
            background-color: #fff;
            background-image: 
                linear-gradient(45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 215, 0, 0.03) 75%, rgba(255, 215, 0, 0.03)),
                linear-gradient(45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 215, 0, 0.03) 75%, rgba(255, 215, 0, 0.03));
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
        }
        
        .company-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
        }
        
        .company-item {
            border: 1px solid #f0d0d0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .company-item:hover {
            box-shadow: 0 8px 20px rgba(167, 4, 4, 0.15);
            transform: translateY(-5px);
        }
        
        .company-img {
            height: 180px; position:relative;
        }
        
        .company-img img { position:absolute; right:0; bottom:0; left:0; top:0; margin:auto;
            max-width: 100%;
            max-height: 100%;
            transition: transform 0.5s ease;
        }
        
        .company-item:hover .company-img img {
            transform: scale(1.05);
        }
        
        .company-info {
            padding: 20px;
        }
        
        .company-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            gap: 15px;
        }
        
        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #f8f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid #ffd700;
        }
        
        .company-logo img {
            max-width: 100%;
            max-height:100%;
        }
        
        .company-name {
            font-size: 20px;
            font-weight: bold;
        }
        
        .company-name a {
            color: #a70404;
            text-decoration: none;
        }
        
        .company-name a:hover {
            text-decoration: underline;
        }
        
        .company-product, .company-phone {
            margin-bottom: 8px;
            color: #666;
        }
        
        /* 推荐产品区域 */
        #products { background: url(../images/bj2.jpg) no-repeat;
        }
        
        .product-slider-container {
            position: relative;
            padding: 0 60px;
        }
        
        .product-slider {
            overflow: hidden;
        }
        
        .product-slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .product-item {
            flex: 0 0 25%;
            padding: 0 15px;
            text-align: center;
        }
        

        .product-img {
            height: 200px;
            background: linear-gradient(135deg, #f8f1f1, #fff);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #f0d0d0; position:relative;
        }
        
        .product-img img { position:absolute; right:0; bottom:0; left:0; top:0; margin:auto;
            max-width: 100%;
            max-height: 100%;
            transition: transform 0.5s ease;
        }
        
        .product-item:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-name {
            font-size: 18px;
            font-weight: bold;
        }
        
        .product-name a {
            color: #a70404;
            text-decoration: none;
        }
        
        .product-name a:hover {
            text-decoration: underline;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #a70404;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 8px rgba(167, 4, 4, 0.3);
        }
        
        .slider-btn:hover {
            background-color: #8a0303;
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-btn.prev {
            left: 0;
        }
        
        .slider-btn.next {
            right: 0;
        }
        
        /* 促销产品区域 */
        #promotion {
            background-color: #fff;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(167, 4, 4, 0.05) 0%, transparent 50%);
        }
        
        .promo-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
        }
        
        .promo-item {
            border: 1px solid #f0d0d0;
            border-radius: 8px;
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .promo-item:hover {
            box-shadow: 0 8px 20px rgba(167, 4, 4, 0.15);
            transform: translateY(-5px);
        }
        
        .promo-img {
            height: 220px;
            background: linear-gradient(135deg, #f8f1f1, #fff);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .promo-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #a70404;
            color: white;
            padding: 8px 15px;
            font-weight: bold;
            border-radius: 4px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .promo-img img { position:absolute; right:0; bottom:0; left:0; top:0; margin:auto;
            max-width: 100%;
            max-height: 100%;
            transition: transform 0.5s ease;
        }
        
        .promo-item:hover .promo-img img {
            transform: scale(1.05);
        }
        
        .promo-info {
            padding: 20px;
        }
        
        .promo-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .promo-name a {
            color: #a70404;
            text-decoration: none;
        }
        

        .promo-name a:hover {
            text-decoration: underline;
        }
        
        .promo-desc {
            color: #666;
            margin-bottom: 15px;
            height: 48px;
            overflow: hidden;
        }
        
        .promo-model {
            color: #888;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .promo-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 16px;
            margin-right: 15px;
        }
        
        .sale-price {
            color: #a70404;
            font-size: 28px;
            font-weight: bold;
        }
        
        .promo-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #a70404;
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .promo-btn:hover {
            background-color: #8a0303;
            transform: translateY(-2px);
        }
        
        /* 诗词赏析区域 */
        #poetry { background:url(../images/bj1.jpg) no-repeat;
        }
        
        .poetry-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 0 20px;
        }
        
        .poetry-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 249, 0.95));
            padding: 20px;
            border-radius: 8px;
            border-left: 8px solid #a70404;
            box-shadow: 0 5px 15px rgba(167, 4, 4, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .poetry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(167, 4, 4, 0.15);
        }
        
        .poetry-title {
            font-size: 20px;
            color: #a70404;
            margin-bottom: 10px;
            text-align: center;
            font-weight: bold;
        }
        
        .poetry-author {
            text-align: center;
            color: #8a0303;
            font-style: italic;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #e0b3b3;
            font-size: 14px;
        }
        
        .poetry-content {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }
        
        .poetry-content p {
            margin-bottom: 8px;
        }
        
        /* 页脚 */

.foot{ background:#a82519;padding-top:10px;/* margin-top:25px;*/}
.foot .footbox{ width:1000px; overflow:hidden; margin:0px auto; padding:15px 0px;}
.foot .footbox p{height:30px;line-height:30px;overflow:hidden;font-size:14px;color: #ffffff;}
.foot .footbox p a{font-size:14px;color: #ffffff;margin: 14px;}
.foot .footbox p a:hover{ color:red;}
