@charset 'utf-8';
.product{padding:50px 0;}
  /* 板块容器 */
        .clothing-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* 左侧图片 */
        .clothing-img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            object-fit: cover;
        }

        /* 右侧内容 */
        .clothing-content {
            padding: 0 20px;
        }

        .clothing-title {
            font-size: 64px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .clothing-subtitle {
            color: #34b768;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 28px;
            position: relative;
            padding-left: 20px;
        }

        /* 小标题空心圆伪类 */
        .clothing-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid #34b768;
            background-color: transparent;
        }

        .clothing-desc {
            color: #444444;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .clothing-desc:last-of-type {
            margin-bottom: 40px;
        }

        .clothing-brand {
            color: #34b768;
            font-weight: 500;
        }

        /* 按钮样式 */
        .clothing-btn {
            display: inline-block;
            padding: 12px 28px;
            border: 2px solid #34b768;
            color: #34b768;
            background-color: transparent;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .clothing-btn:hover {
            background-color: #34b768;
            color: #ffffff;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .clothing-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .clothing-title {
                font-size: 48px;
            }
            .clothing-subtitle {
                font-size: 20px;
            }
            .clothing-desc {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .clothing-title {
                font-size: 36px;
            }
            .clothing-subtitle {
                font-size: 18px;
            }
            .clothing-desc {
                font-size: 15px;
            }
            .clothing-btn {
                padding: 10px 24px;
                font-size: 15px;
            }
        }