/* 基础样式 */
:root {
    --primary-color: #1a1f36;
    --secondary-color: #c8a97e;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1f36;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-left: 25%;
    overflow: hidden;
}

/* Hero 区域样式 */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    color: var(--white);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* 产品展示区域样式 */
.products {
    padding: 4rem 0 0 0;
    margin: 0;
    width: 100vw;
    height: auto;
    min-height: 150vh;
    background: #f8f9fa;
    position: relative;
}

.products .container {
    width: 100vw;
    max-width: none;
    padding: 0 2rem;
    margin: 0;
}

.section-header {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 0;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: calc(100vh - 8rem);
    margin: 0;
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 73vh;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(100px);
    transition: var(--transition);
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.category-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.category-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.category-link:hover {
    transform: translateX(10px);
}

/* 添加悬停效果 */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-content {
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 73vh;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
} 

/* 关于我们区域样式 */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature span {
    font-weight: 500;
    color: var(--primary-color);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26,31,54,0.2), transparent);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 页脚样式 */
.footer {
    margin-top: 0;
    background-color: #1a1a1a;
    padding: 4rem 0 3rem;
    color: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.footer .container {
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 0 5%;
    margin-left: 10%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 5%;
    width: 100%;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 500;
}

.footer-section p {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
}

.contact-info {
    margin-top: 1.5rem;
}

/* 响应式调整 */
@media (min-width: 2000px) {
    .footer .container {
        width: 80%;
    }
}

@media (max-width: 1400px) {
    .footer .container {
        width: 95%;
        padding: 0 3%;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 4%;
    }
    
    .footer .container {
        padding: 0 2.5%;
        margin-left: 8%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3%;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer .container {
        width: 100%;
        padding: 0 2%;
        margin-left: 5%;
    }
}

/* 扩展响应式设计 */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 添加滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 添加平滑滚动 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* 添加选中文本样式 */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2070') center/cover no-repeat;
}

/* 轮播图样式 */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 艺术分隔区域样式 */
.artistic-divider {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(26,31,54,0.02), rgba(26,31,54,0.05), rgba(26,31,54,0.02));
    position: relative;
    overflow: hidden;
}

.divider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-reveal {
    text-align: center;
}

.reveal-line {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1.5s ease forwards;
}

.reveal-line:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 团队展示区域样式 */
.team-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin: 4rem 0;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-text {
    padding-top: 3rem;
}

.team-text h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    margin-right: 2rem;
}

.stat-number {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-plus {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 1px;
    white-space: nowrap;
    display: block;
    width: 100%;
}

/* 图片堆叠效果 */
.image-stack {
    position: relative;
    height: 600px;
    width: 90%;
    margin-left: auto;
}

/* 添加错位背景 */
.image-stack::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -40px;
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    z-index: -1;
}

.image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26,31,54,0.1),
        transparent
    );
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .background-text {
        font-size: 12rem;
    }
}

@media (max-width: 768px) {
    .background-text {
        font-size: 10rem;
        left: -10%;
    }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-stack {
        height: 500px;
    }
}

.parallax-showcase {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=2000') center/cover fixed;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.design-philosophy {
    text-align: left;
    max-width: 900px;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(250,250,250,0.6), rgba(255,255,255,0.65));
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border-radius: 4px;
    border: 1px solid rgba(200,169,126,0.15);
    position: relative;
}

.elegant-label {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 300;
    position: relative;
    padding-left: 60px;
}

.elegant-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
}

.design-philosophy h2 {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    letter-spacing: 1px;
}

.design-philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(26,31,54,0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.design-philosophy p:first-of-type {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .design-philosophy {
        padding: 3rem 2rem;
    }
    
    .design-philosophy h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .design-philosophy h2 {
        font-size: 2.2rem;
    }
    
    .design-philosophy p:first-of-type {
        font-size: 1.2rem;
    }
}

.commitment-section {
    padding: 8rem 0;
    background: linear-gradient(to right, #fff, #f9f9f9);
    position: relative;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.elegant-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.elegant-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.elegant-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 4rem;
}

.commitment-features {
    display: grid;
    gap: 2.5rem;
}

.elegant-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.feature-details h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-details p {
    color: #666;
    line-height: 1.6;
}

.commitment-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commitment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.2), transparent);
}

@media (max-width: 992px) {
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .commitment-image {
        min-height: 400px;
    }
    
    .elegant-title {
        font-size: 2.8rem;
    }
}

/* 添加页脚链接样式 */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* 小尺寸轮播图样式 */
.small-hero {
    height: 40vh;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.small-hero .hero-content h1 {
    font-size: 2.8rem;
}

.small-hero .hero-content p {
    font-size: 1.1rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .small-hero {
        min-height: 300px;
    }
}

/* 产品集合样式 */
.collection-header {
    margin-bottom: 2rem;
    padding-left: 10%;
}

.collection-title {
    font-size: 4.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.collection-title span {
    font-weight: 300;
    color: #666;
}

.collection-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    position: relative;
    padding-left: 3rem;
    margin-top: 1rem;
}

.collection-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background-color: var(--primary-color);
}

.collection-description {
    max-width: 1800px;
    margin-bottom: 4rem;
    padding-left: 10%;
}

.collection-description p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    padding-right: 4rem;
    width: 73%;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.collection-item {
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.collection-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-title {
        font-size: 3.8rem;
    }

}

@media (max-width: 576px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-title {
        font-size: 3.2rem;
    }
}

/* 即将到来提示样式 - 现代动效设计 */
.coming-soon-wrapper {
    grid-column: span 3;
    display: flex;
    align-items: center;
}

.coming-soon {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 2rem;
}

.coming-soon-content {
    text-align: center;
    position: relative;
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.coming-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--secondary-color);
    position: relative;
    opacity: 0;
    margin-top: -2rem;
    background: linear-gradient(to right, var(--secondary-color), rgba(200,169,126,0.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    font-weight: 200;
    letter-spacing: 6px;
    opacity: 0;
    background: linear-gradient(to right, var(--primary-color), rgba(26,31,54,0.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
    line-height: 1.2;
    margin-top: -1rem;
}

.coming-soon:hover .coming-label,
.coming-soon:hover .coming-title {
    opacity: 0.9;
}

/* 添加动画类 */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .coming-soon-wrapper {
        grid-column: span 2;
    }
    
    .coming-title {
        font-size: 2.8rem;
    }
    
    .coming-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-wrapper {
        grid-column: span 1;
    }
    
    .coming-title {
        font-size: 2.2rem;
    }
    
    .coming-label {
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

/* 品质展示区域样式 */
.quality-showcase {
    padding: 6rem 0;
    background: linear-gradient(to right, #fff, #f9f9f9);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-text {
    padding-right: 2rem;
}

.quality-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.quality-features {
    display: grid;
    gap: 2rem;
}

.quality-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.quality-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

.quality-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(200,169,126,0.1), transparent);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .quality-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quality-text {
        padding-right: 0;
    }
    
    .quality-image {
        height: 400px;
    }
}

/* 特点展示区域样式 */
.features-section {
    padding: 6rem 0;
    margin-top: 2rem;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), rgba(200,169,126,0.2));
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

/* 工艺展示区域样式 */
.craftsmanship-section {
    padding: 8rem 0;
    background: #fff;
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.craftsmanship-text {
    padding-right: 2rem;
}

.craft-label {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.craft-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--secondary-color);
}

.craftsmanship-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 4rem;
}

.craft-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.craftsmanship-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
}

.craft-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.main-image {
    height: 500px;
}

.side-image {
    height: 300px;
    margin-top: 100px;
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.craft-image:hover img {
    transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .craftsmanship-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .craftsmanship-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .craftsmanship-text {
        padding-right: 0;
    }
    
    .craft-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .craftsmanship-text h2 {
        font-size: 2.5rem;
    }
    
    .craft-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .craftsmanship-images {
        grid-template-columns: 1fr;
    }
    
    .side-image {
        margin-top: 0;
    }
}

/* 产品特点展示区域 - 横向布局 */
.product-features {
    padding: 6rem 0;
    background: #fff;
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 15rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.feature-block {
    flex: 1;
    position: relative;
}

.product-features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.feature-text {
    padding-right: 1rem;
}

.feature-text h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .features-row {
        gap: 12rem;
    }
}

@media (max-width: 992px) {
    .features-row {
        gap: 8rem;
    }
}

@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
        gap: 5rem;
    }
}

.contact-info a {
    color: rgb(121,121,122) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color) !important;
}

.product-showcase {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
    width: 70%;
    margin-left: 10%;
    margin-right: auto;
}

.showcase-left .main-image {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.color-item {
    text-align: center;
}

.color-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

.color-item span {
    font-size: 0.6rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    display: block;
    text-align: center;
    font-weight: 400;
}

.product-specifications {
    margin-top: 3rem;
    margin-bottom: 15rem;
    padding-bottom: 5rem;
}

.spec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-label {
    color: #000;
    font-size: 15px;
}

.spec-value {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .product-showcase {
        width: 70%;
    }
    
    .showcase-left .main-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        width: 90%;
    }
    
    .showcase-left .main-image {
        height: 400px;
    }
}

/* 商品规格信息新样式 */
.specs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 2rem;
    padding: 0 2rem;
    padding-left: 10%;
}

.spec-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.spec-label {
    color: #000;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
    min-width: fit-content;
}

.spec-value {
    color: #000;
    font-size: 15px;
    line-height: 1.2;
    margin-top: 0;
    flex: 1;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .specs-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .specs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* 图片点击效果 */
.color-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-image:hover {
    transform: scale(1.05);
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

/* 添加动画效果 */
@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content {
    animation: zoomIn 0.3s ease;
}
/* 产品优势展示区域样式 */
.product-advantages {
    padding: 8rem 0;
    background: #f8f9fa;
    margin-top: 6rem;
}

.advantages-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    margin-left: 25%;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 2rem;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), rgba(200,169,126,0.8));
    color: white;
    font-size: 1.5rem;
}

.advantage-text h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.advantage-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .advantages-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        padding: 0 2rem;
        margin-left: 10%;
    }
}

@media (max-width: 576px) {
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        margin-left: 8%;
    }
}

/* 特点展示区域样式 */
.feature-showcase {
    padding: 1.5rem 0;
    margin: 8rem 0;
    background: #f8f9fa;
}

.feature-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 70%;
    margin-left: 10%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
}

.feature-box {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), rgba(200,169,126,0.2));
    color: var(--secondary-color);
    font-size: 1.0rem;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 1.0rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.0rem;
    color: #666;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.feature-line {
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0.5;
    transition: width 0.3s ease;
}

.feature-box:hover .feature-line {
    width: 50px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .feature-grid {
        margin-left: -5rem;
        width: calc(100% + 5rem);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        margin-left: 0;
        width: 100%;
    }
}

/* 特点展示区域样式调整 */
.feature-showcase {
    padding: 1.5rem 0;
    margin: 8rem 0;
    background: #f8f9fa;
}

.feature-box {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 移除渐变背景 */
.feature-showcase::before {
    display: none;
}

/* 调整右侧区域的位置 */
.showcase-right {
    padding: 1rem 0;
    transform: scale(1.5);
    transform-origin: center top;
    margin-left: 3rem;
    position: relative;
    z-index: 1;
}

/* 调整主图区域 */
.showcase-left {
    position: relative;
    z-index: 0;
}

/* 导航栏样式 */
.navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 2rem;
}

.logo {
    margin-right: auto;
    margin-left: 0;
}

/* mat1页面特定的logo样式 */
.logo {
    position: relative;
}

.logo-default,
.logo-scroll {
    position: absolute;
    height: 31px !important;
    width: auto !important;
    transition: opacity 0.3s ease;
}

.logo-default {
    opacity: 1;
}

.logo-scroll {
    opacity: 0;
}

/* 滚动状态下切换logo */
.navbar.scrolled .logo-default {
    opacity: 0;
}

.navbar.scrolled .logo-scroll {
    opacity: 1;
}

/* 保持其他样式不变 */

