/* PAKITOY 前台样式（从模板内联<style>提取）*/
/* 提取时间: 2026-06-18 */

/* === base.html === */
/* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background-color: #F5F0EB;
            color: #3E3A36;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: Georgia, 'Times New Roman', Times, serif, 'Source Han Serif CN';
            color: #3E3A36;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(245, 240, 235, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #3E3A36;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #3E3A36;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #B8956B;
        }
        
        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }
        
        /* 主内容区 */
        .main-content {
            margin-top: 80px;
        }
        
        /* 页脚样式 */
        .footer {
            background-color: #3E3A36;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: #B8956B;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #D4CFC9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #B8956B;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #D4CFC9;
            color: #D4CFC9;
            font-size: 0.9rem;
        }
        
        
        .admin-link::after {
            content: '⚙️';
            opacity: 0.05;
            font-size: 0.8rem;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .admin-link:hover::after {
            opacity: 0.3;
        }
        
        /* 汉堡菜单按钮 */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #3E3A36;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* 移动端菜单遮罩 */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.4);
            z-index: 999;
        }
        .nav-overlay.active {
            display: block;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-content {
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
            }
            .logo {
                flex: 1;
            }
            .nav-links {
                position: fixed;
                top: 0; right: -280px;
                width: 260px;
                height: 100vh;
                background: rgba(245, 240, 235, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 80px 2rem 2rem;
                z-index: 1000;
                transition: right 0.3s ease;
                box-shadow: -4px 0 20px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                font-size: 1.1rem;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.06);
                display: block;
            }
            .nav-icons {
                margin-right: 12px;
            }
            .main-content {
                margin-top: 60px;
            }
            .container {
                width: 100%;
                padding: 0 16px;
            }
            .footer {
                margin-top: 2rem;
                padding: 2rem 0 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }
            .footer-section ul {
                padding: 0;
            }
            .copyright {
                padding-top: 1rem;
            }
        }
        @media (max-width: 480px) {
            .main-content {
                margin-top: 56px;
            }
            .navbar {
                padding: 0.6rem 0;
            }
        }

/* 全局响应式图片 */
        img { max-width: 100%; height: auto; }
        /* 防止长文本溢出 */
        .article-body, .page-content, .product-description { overflow-wrap: break-word; word-break: break-word; }

/* === index.html === */
/* 首页特定样式 */

    .hero {

        height: 100vh; height: 100dvh;

        background: linear-gradient(rgba(245, 240, 235, 0.8), rgba(245, 240, 235, 0.8)), 

                    url('https://picsum.photos/1920/1080?random=1') no-repeat center center;

        background-size: cover;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        position: relative;

    }

    

    .hero-content {

        max-width: 800px;

        padding: 2rem;

        z-index: 2;

    }

    

    .hero h1 {

        font-size: 3.5rem;

        margin-bottom: 1rem;

        color: #3E3A36;

        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

    }

    

    .hero p {

        font-size: 1.5rem;

        margin-bottom: 2rem;

        color: #3E3A36;

    }

    

    .cta-button {

        display: inline-block;

        background-color: #B8956B;

        color: white;

        padding: 1rem 2rem;

        text-decoration: none;

        border-radius: 4px;

        font-size: 1.2rem;

        font-weight: bold;

        transition: all 0.3s ease;

        border: none;

        cursor: pointer;

    }

    

    .cta-button:hover {

        background-color: #a07d5b;

        transform: translateY(-2px);

        box-shadow: 0 6px 12px rgba(184, 149, 107, 0.3);

    }

    

    .featured-products {

        padding: 5rem 0;

    }

    

    .section-title {

        text-align: center;

        font-size: 2.5rem;

        margin-bottom: 3rem;

        color: #3E3A36;

    }

    

    .products-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

        gap: 2rem;

        margin-bottom: 3rem;

    }

    

    .product-card {

        background: white;

        border-radius: 8px;

        overflow: hidden;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

        transition: all 0.3s ease;

        position: relative;

    }

    

    .product-card:hover {

        transform: translateY(-4px);

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    }

    

    .product-image {

        height: 200px;

        background: linear-gradient(45deg, #B8956B, #D4CFC9);

        display: flex;

        align-items: center;

        justify-content: center;

        color: white;

        font-size: 1.2rem;

    }

    

    .product-info {

        padding: 1.5rem;

    }

    

    .product-name {

        font-size: 1.3rem;

        margin-bottom: 0.5rem;

        color: #3E3A36;

    }

    

    .product-price {

        color: #B8956B;

        font-size: 1.4rem;

        font-weight: bold;

        margin-bottom: 1rem;

    }

    

    .view-details {

        display: inline-block;

        background-color: #3E3A36;

        color: white;

        padding: 0.5rem 1rem;

        text-decoration: none;

        border-radius: 4px;

        font-size: 0.9rem;

        transition: background-color 0.3s ease;

    }

    

    .view-details:hover {

        background-color: #B8956B;

    }

    

    .brand-story {

        padding: 5rem 0;

        background-color: white;

    }

    

    .story-content {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 4rem;

        align-items: center;

    }

    

    .story-text h2 {

        font-size: 2rem;

        margin-bottom: 1.5rem;

        color: #3E3A36;

    }

    

    .story-text p {

        margin-bottom: 1rem;

        font-size: 1.1rem;

        color: #555;

    }

    

    .story-image {

        height: 400px;

        background: linear-gradient(45deg, #D4CFC9, #F5F0EB);

        border-radius: 8px;

        display: flex;

        align-items: center;

        justify-content: center;

        color: #3E3A36;

        font-size: 1.2rem;

    }

    

    /* 响应式设计 */

    @media (max-width: 768px) {

        .hero {

            height: 60vh;

        }

        

        .hero h1 {

            font-size: 2.5rem;

        }

        

        .hero p {

            font-size: 1.2rem;

        }

        

        .story-content {

            grid-template-columns: 1fr;

            gap: 2rem;

        }

        

        .story-image {

            height: 200px;

        }

    }

    

    @media (max-width: 480px) {

        .hero h1 {

            font-size: 2rem;

        }

        

        .section-title {

            font-size: 2rem;

        }

    }

/* === products.html === */
/* 产品分类页样式 */
    .products-header {
        background: linear-gradient(135deg, #F5F0EB, #D4CFC9);
        padding: 4rem 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
        color: #3E3A36;
        margin-bottom: 1rem;
    }
    
    .header-content p {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .filters {
        background: white;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 2rem;
    }
    
    .filter-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        align-items: center;
    }
    
    .filter-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-item label {
        font-weight: 500;
        color: #3E3A36;
    }
    
    .filter-item select, .filter-item input {
        padding: 0.5rem;
        border: 1px solid #D4CFC9;
        border-radius: 4px;
        background: #F9F8F6;
    }
    
    .sort-options {
        margin-left: auto;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .product-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .product-image {
        height: 220px;
        background: linear-gradient(45deg, #B8956B, #D4CFC9);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
    }
    
    .product-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #B8956B;
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-name {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #3E3A36;
    }
    
    .product-category {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .product-price {
        color: #B8956B;
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    
    .product-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .difficulty {
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    
    .star {
        color: #FFD700;
    }
    
    .make-time {
        color: #666;
        font-size: 0.9rem;
    }
    
    .view-details {
        display: block;
        background-color: #3E3A36;
        color: white;
        padding: 0.8rem;
        text-decoration: none;
        border-radius: 4px;
        text-align: center;
        transition: background-color 0.3s ease;
        font-weight: 500;
    }
    
    .view-details:hover {
        background-color: #B8956B;
    }
    
    .no-products {
        text-align: center;
        padding: 4rem;
        color: #666;
        font-size: 1.2rem;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .products-header {
            padding: 1.5rem 0;
        }
        .header-content h1 {
            font-size: 1.6rem;
        }
        .header-content p {
            font-size: 1rem;
        }
        .filters {
            padding: 1rem;
            border-radius: 6px;
        }
        .filter-group {
            flex-direction: column;
            align-items: stretch;
            gap: 0.8rem;
        }
        .filter-item {
            gap: 0.3rem;
        }
        .filter-item select, .filter-item input {
            padding: 0.6rem;
            font-size: 0.95rem;
        }
        .sort-options {
            margin-left: 0;
            margin-top: 0;
        }
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .product-card {
            border-radius: 6px;
        }
        .product-image {
            height: 150px;
            font-size: 0.9rem;
        }
        .product-info {
            padding: 0.8rem;
        }
        .product-name {
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .product-category {
            font-size: 0.8rem;
        }
        .product-price {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .product-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.3rem;
            margin-bottom: 0.5rem;
        }
        .product-badge {
            top: 0.5rem;
            right: 0.5rem;
            padding: 0.2rem 0.5rem;
            font-size: 0.7rem;
        }
        .view-details {
            padding: 0.5rem 0.8rem;
            font-size: 0.85rem;
        }
    }
    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.6rem;
        }
        .product-image {
            height: 120px;
            font-size: 0.8rem;
        }
        .product-info {
            padding: 0.6rem;
        }
        .product-name {
            font-size: 0.85rem;
        }
        .product-price {
            font-size: 1rem;
        }
        .header-content h1 {
            font-size: 1.4rem;
        }
    }

/* === product_detail.html === */
/* 产品详情页样式 */
    .product-detail {
        padding: 3rem 0;
        background: white;
    }
    
    .product-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .product-images {
        position: relative;
    }
    
    .main-image {
        width: 100%;
        height: 400px;
        background: linear-gradient(45deg, #B8956B, #D4CFC9);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        position: relative;
        overflow: hidden;
        cursor: zoom-in;
    }
    
    .image-thumbnails {
        display: flex;
        gap: 1rem;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, #D4CFC9, #F5F0EB);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3E3A36;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .thumbnail:hover, .thumbnail.active {
        border: 2px solid #B8956B;
        transform: scale(1.05);
    }
    
    .product-info h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: #3E3A36;
    }
    
    .product-category {
        display: inline-block;
        background: #B8956B;
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-price {
        font-size: 2rem;
        color: #B8956B;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    
    .product-description {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        color: #555;
    }
    
    .product-specs {
        margin-bottom: 2rem;
    }
    
    .spec-item {
        display: flex;
        justify-content: space-between;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .spec-label {
        font-weight: 500;
        color: #3E3A36;
    }
    
    .spec-value {
        color: #666;
    }
    
    .difficulty-rating {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 1.5rem;
    }
    
    .star {
        color: #FFD700;
        font-size: 1.2rem;
    }
    
    .controls {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .quantity-control {
        display: flex;
        align-items: center;
        border: 1px solid #D4CFC9;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .quantity-btn {
        background: #F5F0EB;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background-color 0.3s ease;
    }
    
    .quantity-btn:hover {
        background: #D4CFC9;
    }
    
    .quantity-input {
        width: 60px;
        text-align: center;
        border: none;
        padding: 0.5rem;
        background: #fff;
    }
    
    .buy-buttons {
        display: flex;
        gap: 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .btn-primary {
        background-color: #B8956B;
        color: white;
        flex: 1;
    }
    
    .btn-primary:hover {
        background-color: #a07d5b;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(184, 149, 107, 0.3);
    }
    
    .btn-secondary {
        background-color: #3E3A36;
        color: white;
        flex: 1;
    }
    
    .btn-secondary:hover {
        background-color: #B8956B;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(184, 149, 107, 0.3);
    }
    
    .tabs {
        border-bottom: 2px solid #D4CFC9;
        margin: 3rem 0 2rem;
    }
    
    .tab-nav {
        display: flex;
        gap: 2rem;
    }
    
    .tab-link {
        padding: 1rem 0;
        text-decoration: none;
        color: #666;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .tab-link.active, .tab-link:hover {
        color: #3E3A36;
        border-bottom: 3px solid #B8956B;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .tab-pane h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #3E3A36;
    }
    
    .tab-pane p {
        line-height: 1.8;
        color: #555;
        margin-bottom: 1rem;
    }
    
    .recommendations {
        padding: 3rem 0;
        background: #F9F8F6;
    }
    
    .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 3rem;
        color: #3E3A36;
    }
    
    .recommendations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .recommendation-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .recommendation-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .rec-image {
        height: 180px;
        background: linear-gradient(45deg, #D4CFC9, #B8956B);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    
    .rec-info {
        padding: 1.5rem;
    }
    
    .rec-name {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #3E3A36;
    }
    
    .rec-price {
        color: #B8956B;
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .rec-link {
        display: inline-block;
        margin-top: 1rem;
        color: #B8956B;
        text-decoration: none;
        font-weight: 500;
    }
    
    .rec-link:hover {
        text-decoration: underline;
    }
    
    /* 响应式设计 */
    @media (max-width: 1024px) {
        .product-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .main-image {
            height: 350px;
        }
    }
    @media (max-width: 768px) {
        .product-detail {
            padding: 1.5rem 0;
        }
        .product-container {
            gap: 1.5rem;
        }
        .main-image {
            height: 280px;
            border-radius: 6px;
        }
        .thumbnail {
            width: 60px;
            height: 60px;
            font-size: 0.7rem;
        }
        .product-info h1 {
            font-size: 1.5rem;
        }
        .product-price {
            font-size: 1.8rem;
        }
        .buy-buttons {
            flex-direction: column;
        }
        .buy-buttons .btn-primary,
        .buy-buttons .btn-secondary {
            width: 100%;
            text-align: center;
            padding: 0.8rem;
            font-size: 1rem;
        }
        .controls {
            flex-direction: column;
            gap: 1rem;
        }
        .tab-nav {
            gap: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            white-space: nowrap;
            padding-bottom: 0.5rem;
        }
        .tab-nav button {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
        }
        .tab-content {
            padding: 1rem 0;
        }
        .rec-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .rec-card {
            border-radius: 6px;
        }
    }
    @media (max-width: 480px) {
        .main-image {
            height: 220px;
            font-size: 1rem;
        }
        .product-info h1 {
            font-size: 1.3rem;
        }
        .product-price {
            font-size: 1.5rem;
        }
        .thumbnail {
            width: 50px;
            height: 50px;
        }
        .tab-nav {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .tab-nav button {
            padding: 0.5rem 0.6rem;
            font-size: 0.85rem;
        }
        .difficulty-rating {
            font-size: 0.9rem;
        }
    }

/* === article_detail.html === */
.article-detail-page { padding: 6rem 0 4rem; min-height: 60vh; }
    .article-header { margin-bottom: 2.5rem; border-bottom: 1px solid #e9ecef; padding-bottom: 2rem; }
    .article-header h1 { font-size: 2.2rem; color: #3E3A36; margin-bottom: 1rem; line-height: 1.3; }
    .article-header .meta { color: #999; font-size: 0.9rem; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
    .article-header .category-badge { display: inline-block; background: #B8956B; color: white; padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
    .article-header .tag-badge { display: inline-block; background: rgba(184,149,107,0.1); color: #B8956B; padding: 3px 10px; border-radius: 10px; font-size: 0.8rem; }

    /* Article Body Typography */
    .article-body { line-height: 1.9; color: #444; font-size: 1.05rem; max-width: 720px; margin: 0 auto; }
    .article-body h1 { font-size: 1.8rem; color: #3E3A36; margin: 2.5rem 0 1rem; }
    .article-body h2 { font-size: 1.5rem; color: #3E3A36; margin: 2rem 0 0.8rem; padding-left: 12px; border-left: 4px solid #B8956B; }
    .article-body h3 { font-size: 1.25rem; color: #3E3A36; margin: 1.5rem 0 0.6rem; }
    .article-body h4 { font-size: 1.1rem; color: #3E3A36; margin: 1.2rem 0 0.5rem; }
    .article-body p { margin-bottom: 1.2rem; }
    .article-body img { max-width: 100%; border-radius: 10px; margin: 1.5rem 0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
    .article-body a { color: #B8956B; text-decoration: underline; text-underline-offset: 3px; }
    .article-body a:hover { color: #9A7B55; }
    .article-body ul, .article-body ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
    .article-body li { margin-bottom: 0.4rem; }
    .article-body blockquote { border-left: 4px solid #B8956B; padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(184,149,107,0.05); border-radius: 0 8px 8px 0; color: #666; }
    .article-body blockquote p:last-child { margin-bottom: 0; }
    .article-body hr { border: none; height: 1px; background: #e9ecef; margin: 2rem 0; }
    .article-body strong { color: #3E3A36; }
    .article-body em { color: #666; }
    .article-body mark { background: rgba(184,149,107,0.2); padding: 2px 4px; border-radius: 3px; }
    .article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
    .article-body th, .article-body td { border: 1px solid #e0e0e0; padding: 10px 14px; text-align: left; }
    .article-body th { background: #f8f8f8; font-weight: 600; color: #3E3A36; }
    .article-body tr:nth-child(even) { background: #fafafa; }

    /* Code Block Styling */
    .article-body pre { background: #1e1e2e; color: #cdd6f4; padding: 1.2rem 1.5rem; border-radius: 10px; overflow-x: auto; margin: 1.5rem 0; font-size: 0.9rem; line-height: 1.6; }
    .article-body code { background: rgba(184,149,107,0.12); color: #9A7B55; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
    .article-body pre code { background: none; color: inherit; padding: 0; font-size: inherit; }

    /* Figure/Caption */
    .article-body figure { margin: 1.5rem 0; }
    .article-body figcaption { text-align: center; color: #999; font-size: 0.85rem; margin-top: 0.5rem; }

    /* Tags section */
    .article-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e9ecef; }
    .article-tags .tag-badge { display: inline-block; background: rgba(184,149,107,0.1); color: #B8956B; padding: 5px 14px; border-radius: 16px; font-size: 0.85rem; margin-right: 6px; margin-bottom: 6px; }

    /* Back link */
    .back-link { display: inline-flex; align-items: center; margin-bottom: 2rem; color: #B8956B; text-decoration: none; padding: 0.5rem 0; font-weight: 500; transition: color 0.3s; }
    .back-link:hover { color: #9A7B55; }

    @media (max-width: 768px) {
        .article-detail-page { padding: 5rem 0 2rem; }
        .article-header h1 { font-size: 1.6rem; }
        .article-body { font-size: 0.95rem; line-height: 1.8; }
        .article-body img { margin: 1rem 0; }
    }
    @media (max-width: 480px) {
        .article-header h1 { font-size: 1.3rem; }
        .article-body { font-size: 0.9rem; line-height: 1.7; }
        .article-body h2 { font-size: 1.2rem; }
        .article-body pre { padding: 0.8rem 1rem; font-size: 0.8rem; }
    }

/* === article_list.html === */
.article-list-page {
        padding: 6rem 0 4rem;
        min-height: 60vh;
    }
    
    .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    .page-header h1 {
        font-size: 2.5rem;
        color: #3E3A36;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .page-header p {
        color: #999;
        font-size: 1rem;
    }
    
    /* Featured Article */
    .featured-article {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 3rem;
        color: white;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }
    .featured-article-inner {
        padding: 2.5rem;
    }
    .featured-article .category-badge {
        display: inline-block;
        background: rgba(255,255,255,0.25);
        backdrop-filter: blur(10px);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .featured-article h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: 700;
        line-height: 1.3;
    }
    .featured-article h2 a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
    }
    .featured-article h2 a:hover {
        opacity: 0.9;
    }
    .featured-article .excerpt {
        font-size: 1.05rem;
        line-height: 1.8;
        opacity: 0.9;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .featured-article .meta {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
    }
    .featured-article .read-btn {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 12px 28px;
        background: white;
        color: #667eea;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }
    .featured-article .read-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    /* Grid Layout */
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 1.5rem;
    }
    
    /* Regular Article Card */
    .article-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }
    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .article-card-inner {
        padding: 1.5rem;
    }
    .article-card .card-gradient {
        height: 120px;
        background: linear-gradient(135deg, var(--card-start, #B8956B) 0%, var(--card-end, #E8D4C4) 100%);
        border-radius: 8px;
        margin-bottom: 1.25rem;
        position: relative;
    }
    .article-card .card-icon {
        position: absolute;
        bottom: -20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        color: #B8956B;
        font-size: 1.2rem;
    }
    .article-card .category-badge {
        display: inline-block;
        background: rgba(184,149,107,0.1);
        color: #B8956B;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }
    .article-card .card-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
        line-height: 1.4;
    }
    .article-card .card-title a {
        color: #3E3A36;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.3s;
    }
    .article-card .card-title a:hover {
        color: #B8956B;
    }
    .article-card .excerpt {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .article-card .meta {
        color: #999;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .article-card .meta i {
        opacity: 0.7;
    }
    .article-card .read-more {
        display: inline-block;
        margin-top: 1rem;
        padding: 6px 16px;
        background: #B8956B;
        color: white;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }
    .article-card .read-more:hover {
        background: #9A7B55;
        transform: translateY(-1px);
    }
    
    /* Category Colors */
    .article-card[data-category="教程"] {
        --card-start: #667eea;
        --card-end: #764ba2;
    }
    .article-card[data-category="技巧"] {
        --card-start: #f093fb;
        --card-end: #f5576c;
    }
    .article-card[data-category="展示"] {
        --card-start: #4facfe;
        --card-end: #00f2fe;
    }
    
    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        color: #999;
    }
    .empty-state i {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.3;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .article-list-page {
            padding: 5rem 0 2rem;
        }
        .page-header h1 {
            font-size: 1.8rem;
        }
        .featured-article-inner {
            padding: 1.8rem;
        }
        .featured-article h2 {
            font-size: 1.5rem;
        }
        .articles-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 480px) {
        .featured-article-inner {
            padding: 1.5rem;
        }
        .featured-article h2 {
            font-size: 1.3rem;
        }
        .article-card-inner {
            padding: 1.2rem;
        }
    }

/* === checkout.html === */
/* 结算页面样式 */
    .checkout-header {
        background: linear-gradient(135deg, #F5F0EB, #D4CFC9);
        padding: 3rem 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .checkout-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .checkout-header h1 {
        font-size: 2.5rem;
        color: #3E3A36;
        margin-bottom: 0.5rem;
    }
    
    .checkout-header p {
        color: #666;
        font-size: 1.1rem;
    }
    
    .checkout-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .checkout-form {
        background: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    
    .form-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .section-title {
        font-size: 1.3rem;
        color: #3E3A36;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #D4CFC9;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #3E3A36;
        font-weight: 500;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #D4CFC9;
        border-radius: 4px;
        background: #F9F8F6;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #B8956B;
    }
    
    .address-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .full-width {
        grid-column: 1 / -1;
    }
    
    .order-summary {
        background: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        height: fit-content;
        align-self: start;
    }
    
    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.8rem;
    }
    
    .summary-label {
        color: #666;
    }
    
    .summary-value {
        font-weight: 500;
        color: #3E3A36;
    }
    
    .order-total {
        display: flex;
        justify-content: space-between;
        font-size: 1.3rem;
        font-weight: bold;
        color: #3E3A36;
        margin: 1.5rem 0;
        padding-top: 1rem;
        border-top: 2px solid #D4CFC9;
    }
    
    .payment-methods {
        margin: 1.5rem 0;
    }
    
    .payment-option {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .payment-option input {
        margin-right: 0.5rem;
    }
    
    .payment-logo {
        margin-left: 0.5rem;
        font-size: 1.5rem;
    }
    
    .place-order-btn {
        display: block;
        width: 100%;
        background-color: #B8956B;
        color: white;
        padding: 1.2rem;
        text-decoration: none;
        border-radius: 4px;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: center;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        margin-top: 1rem;
    }
    
    .place-order-btn:hover {
        background-color: #a07d5b;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(184, 149, 107, 0.3);
    }
    
    .back-to-cart {
        display: block;
        text-align: center;
        color: #B8956B;
        text-decoration: none;
        margin-top: 1rem;
        font-weight: 500;
    }
    
    .back-to-cart:hover {
        text-decoration: underline;
    }
    
    .form-note {
        font-size: 0.9rem;
        color: #666;
        margin-top: 0.3rem;
    }
    
    /* 响应式设计 */
    @media (max-width: 1024px) {
        .checkout-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    @media (max-width: 768px) {
        .checkout-header {
            padding: 1.5rem 0;
        }
        .checkout-header h1 {
            font-size: 1.6rem;
        }
        .checkout-header p {
            font-size: 0.95rem;
        }
        .address-fields {
            grid-template-columns: 1fr;
        }
        .form-row {
            grid-template-columns: 1fr;
        }
        .checkout-form, .order-summary {
            padding: 1.2rem;
            border-radius: 6px;
        }
        .section-title {
            font-size: 1.1rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.7rem;
            font-size: 16px;
        }
        .place-order-btn {
            padding: 1rem;
            font-size: 1rem;
        }
    }
    @media (max-width: 480px) {
        .checkout-form,
        .order-summary {
            padding: 1rem;
        }
        .checkout-header h1 {
            font-size: 1.3rem;
        }
        .form-section {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
        }
        .order-total {
            font-size: 1.1rem;
        }
    }

/* === cart.html === */
/* 购物车页面样式 */
    .cart-header {
        background: linear-gradient(135deg, #F5F0EB, #D4CFC9);
        padding: 3rem 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .cart-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .cart-header h1 {
        font-size: 2.5rem;
        color: #3E3A36;
        margin-bottom: 0.5rem;
    }
    
    .cart-header p {
        color: #666;
        font-size: 1.1rem;
    }
    
    .cart-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .cart-items {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .cart-item {
        display: flex;
        padding: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    
    .cart-item:last-child {
        border-bottom: none;
    }
    
    .item-image {
        width: 120px;
        height: 120px;
        background: linear-gradient(45deg, #B8956B, #D4CFC9);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .item-details {
        flex: 1;
    }
    
    .item-name {
        font-size: 1.2rem;
        font-weight: 500;
        color: #3E3A36;
        margin-bottom: 0.5rem;
    }
    
    .item-price {
        color: #B8956B;
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    
    .item-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .quantity-control {
        display: flex;
        align-items: center;
        border: 1px solid #D4CFC9;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .quantity-btn {
        background: #F5F0EB;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background-color 0.3s ease;
    }
    
    .quantity-btn:hover {
        background: #D4CFC9;
    }
    
    .quantity-input {
        width: 60px;
        text-align: center;
        border: none;
        padding: 0.5rem;
        background: #fff;
    }
    
    .remove-item {
        color: #e74c3c;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.2rem;
        margin-left: 1rem;
        transition: color 0.3s ease;
    }
    
    .remove-item:hover {
        color: #c0392b;
    }
    
    .cart-summary {
        background: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        height: fit-content;
        align-self: start;
    }
    
    .summary-title {
        font-size: 1.5rem;
        color: #3E3A36;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #D4CFC9;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.8rem;
    }
    
    .summary-label {
        color: #666;
    }
    
    .summary-value {
        font-weight: 500;
        color: #3E3A36;
    }
    
    .summary-total {
        display: flex;
        justify-content: space-between;
        font-size: 1.3rem;
        font-weight: bold;
        color: #3E3A36;
        margin: 1.5rem 0;
        padding-top: 1rem;
        border-top: 2px solid #D4CFC9;
    }
    
    .checkout-btn {
        display: block;
        width: 100%;
        background-color: #B8956B;
        color: white;
        padding: 1.2rem;
        text-decoration: none;
        border-radius: 4px;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: center;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        margin-top: 1rem;
    }
    
    .checkout-btn:hover {
        background-color: #a07d5b;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(184, 149, 107, 0.3);
    }
    
    .continue-shopping {
        display: block;
        text-align: center;
        color: #B8956B;
        text-decoration: none;
        margin-top: 1rem;
        font-weight: 500;
    }
    
    .continue-shopping:hover {
        text-decoration: underline;
    }
    
    .empty-cart {
        text-align: center;
        padding: 4rem 2rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .empty-cart-icon {
        font-size: 4rem;
        color: #D4CFC9;
        margin-bottom: 1rem;
    }
    
    .empty-cart h2 {
        color: #3E3A36;
        margin-bottom: 1rem;
    }
    
    .empty-cart p {
        color: #666;
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
    
    .empty-cart-btn {
        display: inline-block;
        background-color: #3E3A36;
        color: white;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }
    
    .empty-cart-btn:hover {
        background-color: #B8956B;
    }
    
    /* 响应式设计 */
    @media (max-width: 1024px) {
        .cart-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .item-image {
            width: 100px;
            height: 100px;
        }
    }
    @media (max-width: 768px) {
        .cart-header {
            padding: 1.5rem 0;
        }
        .cart-header h1 {
            font-size: 1.6rem;
        }
        .cart-item {
            flex-direction: row;
            flex-wrap: wrap;
            padding: 1rem;
        }
        .item-image {
            width: 80px;
            height: 80px;
            margin-right: 0.8rem;
            margin-bottom: 0;
        }
        .item-details {
            flex: 1;
            min-width: 0;
        }
        .item-details h3 {
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .item-controls {
            width: 100%;
            justify-content: space-between;
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            border-top: 1px solid #eee;
        }
        .cart-summary {
            padding: 1.5rem;
        }
    }
    @media (max-width: 480px) {
        .cart-item {
            padding: 0.8rem;
        }
        .item-image {
            width: 70px;
            height: 70px;
            font-size: 0.7rem;
        }
        .cart-header h1 {
            font-size: 1.3rem;
        }
        .quantity-control button {
            width: 44px;
            height: 44px;
            font-size: 1rem;
        }
        .remove-item {
            font-size: 1rem;
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .checkout-btn {
            padding: 0.8rem;
            font-size: 1rem;
        }
        .cart-summary {
            padding: 1rem;
        }
    }

/* === brand.html === */
/* 品牌故事页面样式 */
    .brand-header {
        background: linear-gradient(rgba(245, 240, 235, 0.9), rgba(245, 240, 235, 0.9)), 
                    url('https://picsum.photos/1920/800?random=2') no-repeat center center;
        background-size: cover;
        padding: 8rem 0 6rem;
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .brand-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .brand-header h1 {
        font-size: 3rem;
        color: #3E3A36;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .brand-header p {
        font-size: 1.3rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .story-section {
        margin-bottom: 6rem;
        padding: 3rem 0;
    }
    
    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .story-text {
        padding: 2rem;
    }
    
    .story-image {
        height: 400px;
        background: linear-gradient(45deg, #D4CFC9, #F5F0EB);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3E3A36;
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem;
    }
    
    .story-title {
        font-size: 2rem;
        color: #3E3A36;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .story-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #B8956B;
    }
    
    .story-paragraph {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        color: #555;
        font-size: 1.1rem;
    }
    
    .philosophy-section {
        background: linear-gradient(135deg, #F5F0EB, #D4CFC9);
        padding: 5rem 0;
        margin: 4rem 0;
    }
    
    .philosophy-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        padding: 0 1rem;
    }
    
    .philosophy-title {
        font-size: 2.5rem;
        color: #3E3A36;
        margin-bottom: 2rem;
    }
    
    .philosophy-text {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 2rem;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .value-card {
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #B8956B;
    }
    
    .value-title {
        font-size: 1.3rem;
        color: #3E3A36;
        margin-bottom: 1rem;
    }
    
    .value-description {
        color: #666;
        line-height: 1.6;
    }
    
    .craftsmanship-section {
        padding: 5rem 0;
    }
    
    .craftsmanship-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .craftsmanship-item {
        text-align: center;
    }
    
    .craftsmanship-icon {
        font-size: 3rem;
        color: #B8956B;
        margin-bottom: 1rem;
    }
    
    .craftsmanship-title {
        font-size: 1.2rem;
        color: #3E3A36;
        margin-bottom: 0.5rem;
    }
    
    .craftsmanship-desc {
        color: #666;
        font-size: 0.9rem;
    }
    
    .vision-section {
        background: linear-gradient(135deg, #3E3A36, #5a5551);
        color: white;
        padding: 6rem 0;
        text-align: center;
    }
    
    .vision-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #B8956B;
    }
    
    .vision-text {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.8;
    }
    
    .quote {
        font-style: italic;
        font-size: 1.3rem;
        margin: 2rem 0;
        color: #D4CFC9;
        border-left: 4px solid #B8956B;
        padding-left: 1.5rem;
    }
    
    /* 响应式设计 */
    @media (max-width: 1024px) {
        .story-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .story-image {
            height: 280px;
        }
        .craftsmanship-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
    }
    @media (max-width: 768px) {
        .brand-header {
            padding: 4rem 0 2rem;
        }
        .brand-header h1 {
            font-size: 2rem;
        }
        .brand-header p {
            font-size: 1rem;
        }
        .story-section {
            margin-bottom: 3rem;
            padding: 2rem 0;
        }
        .story-title {
            font-size: 1.5rem;
        }
        .story-paragraph {
            font-size: 1rem;
            line-height: 1.7;
        }
        .story-image {
            height: 220px;
        }
        .story-text {
            padding: 1rem;
        }
        .philosophy-section {
            padding: 3rem 0;
        }
        .philosophy-title {
            font-size: 1.8rem;
        }
        .philosophy-text {
            font-size: 1rem;
        }
        .craftsmanship-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .craftsmanship-icon {
            font-size: 2rem;
        }
        .craftsmanship-title {
            font-size: 1rem;
        }
        .values-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        .value-card {
            padding: 1.2rem;
        }
        .vision-section {
            padding: 3rem 0;
        }
        .vision-title {
            font-size: 1.8rem;
        }
        .vision-text {
            font-size: 1rem;
        }
        .quote {
            font-size: 1.1rem;
        }
    }
    @media (max-width: 480px) {
        .brand-header {
            padding: 3rem 0 1.5rem;
        }
        .brand-header h1 {
            font-size: 1.6rem;
        }
        .brand-header p {
            font-size: 0.9rem;
        }
        .story-section {
            padding: 1.5rem 0;
            margin-bottom: 2rem;
        }
        .story-title {
            font-size: 1.3rem;
        }
        .story-text {
            padding: 0.8rem;
        }
        .story-image {
            height: 180px;
            font-size: 0.9rem;
        }
        .craftsmanship-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
        .philosophy-title {
            font-size: 1.5rem;
        }
        .vision-title {
            font-size: 1.5rem;
        }
        .quote {
            font-size: 1rem;
            padding-left: 1rem;
        }
    }

/* === custom_page.html === */
.custom-page { padding: 6rem 0 4rem; min-height: 60vh; }
    .page-title { font-size: 2rem; color: #3E3A36; margin-bottom: 2rem; border-bottom: 2px solid #B8956B; padding-bottom: 1rem; }
    .page-content { line-height: 1.8; color: #555; }
    .page-content p { margin-bottom: 1rem; }
    .page-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
    .back-link { display: inline-block; margin-bottom: 2rem; color: #B8956B; text-decoration: none; padding: 0.5rem 0; }
    .back-link:hover { text-decoration: underline; }
    @media (max-width: 768px) {
        .custom-page { padding: 5rem 0 2rem; }
        .page-title { font-size: 1.5rem; }
    }
    @media (max-width: 480px) {
        .page-title { font-size: 1.3rem; }
        .page-content { font-size: 0.9rem; }
    }

/* === siteadmin/base_siteadmin.html === */
/* 网站管理后台基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background-color: #f8f9fa;
            color: #343a40;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 导航栏样式 */
        .navbar {
            background-color: #343a40;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #adb5bd;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover, .nav-links a.active {
            background-color: #495057;
            color: white;
        }
        
        .nav-user {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        /* 主内容区 */
        .main-content {
            padding: 2rem 0;
        }
        
        /* 页脚样式 */
        .footer {
            background-color: #e9ecef;
            padding: 2rem 0;
            margin-top: 4rem;
            text-align: center;
            color: #6c757d;
        }
        
        /* 表格样式 */
        .table-responsive {
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }
        
        th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #495057;
        }
        
        tr:last-child td {
            border-bottom: none;
        }
        
        tr:hover {
            background-color: #f8f9fa;
        }
        
        /* 按钮样式 */
        .btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        
        .btn:hover {
            background-color: #0056b3;
        }
        
        .btn-danger {
            background-color: #dc3545;
        }
        
        .btn-danger:hover {
            background-color: #c82333;
        }
        
        .btn-success {
            background-color: #28a745;
        }
        
        .btn-success:hover {
            background-color: #218838;
        }
        
        .btn-warning {
            background-color: #ffc107;
            color: #212529;
        }
        
        .btn-warning:hover {
            background-color: #e0a800;
        }
        
        /* 表单样式 */
        .form-group {
            margin-bottom: 1rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        input[type="text"],
        input[type="number"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        /* 卡片样式 */
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #343a40;
        }
        
        /* 提示信息样式 */
        .alert {
            padding: 1rem;
            border-radius: 4px;
            margin-bottom: 1rem;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .alert-warning {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }
            
            th, td {
                padding: 0.5rem;
                font-size: 0.9rem;
            }
        }

/* === siteadmin/login.html === */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .login-container {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .login-header h1 {
            color: #343a40;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .login-header p {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #495057;
            font-weight: 500;
        }
        
        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        input[type="text"]:focus,
        input[type="password"]:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .btn {
            width: 100%;
            padding: 0.75rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        
        .btn:hover {
            transform: translateY(-2px);
        }
        
        .alert {
            padding: 0.75rem;
            border-radius: 5px;
            margin-bottom: 1.5rem;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .alert-warning {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }
        
        .back-link {
            text-align: center;
            margin-top: 1rem;
        }
        
        .back-link a {
            color: #667eea;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .back-link a:hover {
            text-decoration: underline;
        }