   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #2c2c2c;
            background-color: #f8f8f8;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 产品页面布局 */
        .product-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 30px 0;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* 轮播图样式 */
        .product-gallery {
            position: relative;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
            background: #f4f4f4;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 600px;
        }
        
        .carousel-slide {
            min-width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }
        
        .carousel-btn {
            background: rgba(255,255,255,0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #2c2c2c;
            transition: all 0.3s;
        }
        
        .carousel-btn:hover {
            background: white;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: #e29518;
        }
        
        .thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }
        
        .thumbnail {
            width: 60px;
            height: 60px;
            border: 2px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .thumbnail.active {
            border-color: #e29518;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 产品信息区域 */
        .product-info {
            padding: 20px 0;
        }
        
        .product-title {
            font-size: 28px;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .product-price {
            font-size: 32px;
            font-weight: 700;
            color: #2c2c2c;
            margin: 20px 0;
        }
        
        .sku-info {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .call-to-order {
            background: #e29518;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            margin: 20px 0;
            width: 100%;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }
        
        .call-to-order:hover {
            background: #d1870f;
        }
        
        .disclaimer {
            font-size: 14px;
            color: #666;
            font-style: italic;
            margin: 10px 0;
        }
        
        /* 折叠面板样式 */
        .disclosure {
            border-bottom: 1px solid #eee;
            margin: 15px 0;
        }
        
        .disclosure-summary {
            padding: 15px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .disclosure-content {
            padding: 0 0 15px 0;
            display: none;
        }
        
        .disclosure.open .disclosure-content {
            display: block;
        }
        
        .disclosure-icon {
            transition: transform 0.3s;
        }
        
        .disclosure.open .disclosure-icon {
            transform: rotate(45deg);
        }
        
        /* 特性列表 */
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            padding-left: 20px;
        }
        
        .feature-list li:before {
            content: "*";
            color: #e29518;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* 评分区域 */
        .reviews-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .reviews-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .stars {
            color: #ffd700;
            font-size: 20px;
        }
        
        .review-count {
            color: #666;
            font-size: 14px;
        }
        
        .write-review {
            color: #e29518;
            text-decoration: none;
            font-weight: 600;
            margin-left: auto;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .product-main {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .product-title {
                font-size: 24px;
            }
            
            .product-price {
                font-size: 28px;
            }
            
            .carousel-track {
                height: 300px;
            }
        }
        /* 基础样式 */
.address-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.address-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.address-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 响应式设计 - 在移动端调整为两列 */
@media (max-width: 768px) {
    .address-grid {
        justify-content: center;
    }
    .address-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* 在更小的屏幕上调整为一列 */
@media (max-width: 480px) {
    .address-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


  /* Footer */
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 50px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .footer-section {
            text-align: center;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #0066cc;
        }

        .footer-section img {
            max-width: 300px;
            height: auto;
            margin: 0 auto;
        }
        #main-nav a {
    text-decoration: none;
	color:#000000;
}
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 14px;
        }
/* CSS Document */

