@charset "utf-8";
/* 商品详情页样式 */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
        }
        
        /* 商品图片轮播 */
        .product-gallery {
            position: relative;
            background: #fff;
            text-align: center;
            padding: 20px;
        }
        
        .main-image {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
        }
        
        .thumbnail-list {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .thumbnail {
            width: 60px;
            height: 60px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 4px;
        }
        
        .thumbnail.active {
            border-color: #ff6b00;
        }
        
        /* 商品信息 */
        .product-info {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .product-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .product-price {
            background: #f9f9f9;
            padding: 12px;
            margin: 12px 0;
            border-radius: 8px;
        }
        
        .price-current {
            color: #ff6b00;
            font-size: 28px;
            font-weight: bold;
        }
        
        .price-original {
            color: #999;
            font-size: 14px;
            text-decoration: line-through;
            margin-left: 12px;
        }
        
        .product-brief {
            color: #666;
            line-height: 1.6;
            margin: 12px 0;
            padding: 12px;
            background: #f9f9f9;
            border-radius: 8px;
        }
        
        /* 商品规格0000 */
        .product-spec {
            margin: 20px 0;
            padding: 12px;
            background: #f9f9f9;
            border-radius: 8px;
        }
        
        .spec-title {
            font-weight: bold;
            margin-bottom: 12px;
        }
        
        .spec-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .spec-item {
            padding: 8px 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .spec-item.active {
            border-color: #ff6b00;
            background: #ff6b00;
            color: #fff;
        }

                /* 规格区域 1111111*/
        .spec-section {
            margin-bottom: 25px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .spec-title {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 14px;
            color: #333;
        }
        
        .spec-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        /* 通用规格选项样式 */
        .spec-option {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            padding: 8px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background: #fff;
            min-width: 70px;
        }
        
        /* 带图片的规格样式 */
        .spec-option.has-image {
            padding: 5px;
            min-width: 70px;
        }
        
        .spec-option.has-image .spec-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 5px;
        }
        
        .spec-option.has-image .spec-name {
            font-size: 12px;
            margin-top: 4px;
        }
        
        /* 普通文字规格样式 */
        .spec-option.text-only {
            padding: 10px 20px;
        }
        
        .spec-option.text-only .spec-name {
            font-size: 14px;
            font-weight: 500;
        }
        
        .spec-option.text-only .spec-price {
            font-size: 12px;
            color: #ff6b00;
            margin-top: 4px;
        }
        
        .spec-option.active {
            border-color: #ff6b00;
            background: #fff3e8;
            color: #ff6b00;
        }
        
        .spec-option.disabled {
            background: #f5f5f5;
            color: #ccc;
            cursor: not-allowed;
            text-decoration: line-through;
            opacity: 0.6;
        }
        
        /* 已选规格显示 */
        .selected-spec {
            background: #f9f9f9;
            padding: 12px 15px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 14px;
        }
        
        .selected-spec-label {
            color: #666;
        }
        
        .selected-spec-value {
            color: #ff6b00;
            font-weight: bold;
            margin-left: 5px;
        }
        
        /* 购买区域 */
        .buy-section {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        
        .quantity-box {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .quantity-btn {
            width: 36px;
            height: 36px;
            background: #f5f5f5;
            border: none;
            font-size: 18px;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 50px;
            height: 36px;
            text-align: center;
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
        }
        
        .btn-cart, .btn-buy {
            flex: 1;
            height: 44px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-cart {
            background: #ffeddf;
            color: #ff6b00;
        }
        
        .btn-buy {
            background: #ff6b00;
            color: #fff;
        }
        
        /* 标签页 */
        .tabs {
            display: flex;
            border-bottom: 1px solid #eee;
            background: #fff;
        }
        
        .tab-item {
            flex: 1;
            text-align: center;
            padding: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .tab-item.active {
            color: #ff6b00;
            border-bottom: 2px solid #ff6b00;
        }
        
        .tab-content {
            padding: 20px;
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* 商品详情内容 */
        .product-detail-content {
            line-height: 0;
            font-size: 0;
        }
        
        .product-detail-content img {
            max-width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            display: block;
            font-size: 0;
            gap: 0;
        }
        
        /* 评论列表 */
        .comment-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .comment-user {
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .comment-score {
            color: #ff9800;
            margin-bottom: 8px;
        }
        
        .comment-content {
            color: #666;
            line-height: 1.6;
        }
        
        .comment-time {
            color: #999;
            font-size: 12px;
            margin-top: 8px;
        }
        
        /* 推荐商品 */
        .recommend-products {
            padding: 20px;
            background: #f9f9f9;
        }
        
        .recommend-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .recommend-list {
            display: flex;
            gap: 15px;
            overflow-x: auto;
        }
        
        .recommend-item {
            flex: 0 0 140px;
            text-align: center;
        }
        
        .recommend-img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .recommend-name {
            font-size: 14px;
            margin: 8px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .recommend-price {
            color: #ff6b00;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .product-name {
                font-size: 16px;
            }
            
            .price-current {
                font-size: 22px;
            }
            
            .recommend-item {
                flex: 0 0 120px;
            }
            
            .recommend-img {
                width: 120px;
                height: 120px;
            }
        }