* { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
            background: #f5f5f5;
            color: #333;
            line-height: 1.8;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ========== 面包屑导航 ========== */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #999;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #c9a63b;
        }
        
        /* ========== 文章主体 ========== */
        .article-main {
            display: flex;
            gap: 30px;
            margin: 20px 0;
        }
        
        .article-content {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }
        
        /* ========== 文章标题 ========== */
        .article-title {
            font-size: 28px;
            font-weight: 600;
            color: #222;
            line-height: 1.4;
            margin-bottom: 20px;
        }
        
        /* ========== 文章信息栏 ========== */
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 25px;
            font-size: 14px;
            color: #888;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .meta-icon {
            font-size: 16px;
        }
        
        .meta-category {
            background: #f0f0f0;
            padding: 4px 14px;
            border-radius: 20px;
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .meta-category:hover {
            background: #c9a63b;
            color: #fff;
        }
        
        /* ========== 评分 ========== */
        .article-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .stars {
            color: #f5a623;
            font-size: 16px;
            letter-spacing: 2px;
        }
        
        .rating-score {
            color: #f5a623;
            font-weight: bold;
            font-size: 16px;
        }
        
        /* ========== 预订电话 ========== */
        .booking-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #1a1508, #0d0b06);
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border: 1px solid #c9a63b;
        }
        
        .booking-phone .phone-icon {
            font-size: 30px;
        }
        
        .booking-phone .phone-info {
            flex: 1;
        }
        
        .booking-phone .phone-label {
            color: #9e8b5c;
            font-size: 13px;
        }
        
        .booking-phone .phone-number {
            color: #dbb44b;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        
        .booking-phone .phone-btn {
            background: #c9a63b;
            color: #0e0c02;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .booking-phone .phone-btn:hover {
            background: #dbb44b;
        }
        
        /* ========== 文章正文 ========== */
        .article-body {
            font-size: 16px;
            color: #444;
            line-height: 2;
            margin-bottom: 30px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .article-body p {
            margin-bottom: 15px;
        }
        
        /* ========== 文章底部信息 ========== */
        .article-footer-info {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            font-size: 14px;
            color: #888;
        }
        
        .article-url {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .article-url input {
            flex: 1;
            padding: 8px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            color: #666;
            font-size: 13px;
            background: #fff;
        }
        
        .copy-btn {
            background: #c9a63b;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background: #b49450;
        }
        
        /* ========== 声明 ========== */
        .article-statement {
            background: #fffbe6;
            border: 1px solid #ffe58f;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 13px;
            color: #8c6d00;
            margin: 20px 0;
        }
        
        /* ========== 相关文章 ========== */
        .related-articles {
            margin-top: 40px;
        }
        
        .related-title {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c9a63b;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .related-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .related-card:hover {
            border-color: #c9a63b;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }
        
        .related-img {
            width: 100%;
            height: 160px;
            overflow: hidden;
        }
        
        .related-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        
        .related-card:hover .related-img img {
            transform: scale(1.05);
        }
        
        .related-info {
            padding: 15px;
        }
        
        .related-title-link {
            font-size: 15px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
            transition: color 0.3s;
        }
        
        .related-title-link:hover {
            color: #c9a63b;
        }
        
        .related-date {
            font-size: 12px;
            color: #999;
            margin-top: 8px;
        }
        
        /* ========== 侧边栏 ========== */
        .article-sidebar {
            width: 320px;
        }
        
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c9a63b;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .sidebar-list a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .sidebar-list a:hover {
            color: #c9a63b;
        }
        
        /* ========== 响应式 ========== */
        @media (max-width: 900px) {
            .article-main {
                flex-direction: column;
            }
            
            .article-sidebar {
                width: 100%;
            }
            
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .article-meta {
                gap: 12px;
            }
        }
        
        @media (max-width: 500px) {
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .article-title {
                font-size: 22px;
            }
            
            .booking-phone {
                flex-direction: column;
                text-align: center;
            }
        }
        