 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        .w12 {
            margin: 0 auto;
            max-width: 1200px;
        }

        /* 顶部导航 */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 16px;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 30px;
            font-weight: 600;
        }
        header p {
            margin: 8px 0 0;
            font-size: 14px;
            opacity: 0.9;
        }

        /* 酒店简介 */
        .hotel-intro {
            padding: 20px;
            line-height: 1.6;
        }
        .hotel-intro h2 {
            color: #2c3e50;
            margin: 0 0 16px;
            font-size: 26px;
            font-weight: 600;
        }
        .hotel-intro h2 i {
            margin-right: 8px;
            color: #3498db;
        }
        .hotel-intro p {
            margin: 0 0 12px;
            color: #34495e;
            font-size: 16px;
        }

        /* 核心设施 */
        .core-facilities {
            margin: 30px auto;
        }
        .core-facilities h2 {
            color: #2c3e50;
            margin: 0 0 30px;
            font-size: 26px;
            font-weight: 600;
            text-align: center;
        }
        .core-facilities h2 i {
            margin-right: 8px;
            color: #f39c12;
        }
        .facilities-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            width: 100%;
        }
        .facility-item {
            flex: 1;
            min-width: 200px;
            background: white;
            padding: 16px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .facility-item h3 {
            color: #3498db;
            margin: 0 0 18px;
            font-size: 20px;
            text-align: center;
        }
        .facility-item h3 i {
            margin-right: 6px;
        }
        .facility-item p {
            margin: 0;
            color: #34495e;
            font-size: 16px;
            line-height: 1.7;
            text-align: left;
        }

        /* 图片区域 */
        .image-section {
            overflow: hidden;
            margin-bottom: 30px;
        }
        .img-container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }
        .img-container img {
            float: left;
            width: 33.33333%;
            height: auto;
            object-fit: cover;
        }

        /* 联系信息 */
        .contact-section {
            padding: 20px;
            background-color: #2c3e50;
            color: white;
        }
        .contact-container {
            margin: 0 auto;
            max-width: 1200px;
        }
        .contact-section h2 {
            margin: 0 0 16px;
            font-size: 26px;
            font-weight: 600;
        }
        .contact-section h2 i {
            margin-right: 8px;
            color: #ecf0f1;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .contact-item:last-child {
            margin-bottom: 0;
        }
        .contact-item i {
            width: 20px;
            margin-right: 10px;
        }
        .contact-item span {
            font-size: 16px;
        }

        /* 底部footer */
        footer {
            background-color: #1a252f;
            color: white;
            padding: 16px;
            text-align: center;
        }
        footer p {
            margin: 0;
            font-size: 16px;
            opacity: 0.8;
        }
        footer p i {
            margin-right: 6px;
            color: #e74c3c;
        }
  