/* 公共样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 加载阿里巴巴普惠体字体 */
@font-face {
    font-family: 'Alibaba PuHuiTi 2.0';
    src: url('../font/Alibaba_PuHuiTi_2.0_55_Regular_55_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Alibaba PuHuiTi 2.0';
    src: url('../font/Alibaba_PuHuiTi_2.0_55_Regular_85_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Alibaba PuHuiTi 2.0';
    src: url('../font/Alibaba_PuHuiTi_2.0_65_Medium_65_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Alibaba PuHuiTi 2.0';
    src: url('../font/Alibaba_PuHuiTi_2.0_95_ExtraBold_95_ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: 'Alibaba PuHuiTi 2.0', Arial, sans-serif;
    color: #333;
}

/* 通用内容区域宽度控制类 */
.container {
    /* 基础自适应，小屏幕占满宽度 */
    width: 100%;
    /* 1920px屏幕下的最大宽度，推荐1200px/1280px */
    max-width: 1200px;
    /* 水平居中 */
    margin: 0 auto;
}

/* 内容区域通用样式 */
.content-section {
    padding: 40px 20px;
    background-color: #fff;
}

.content-section h2 {
    font-size: 40px;
    font-family: 'Alibaba PuHuiTi 2.0', 'Alibaba PuHuiTi 2.0-700';
    font-weight: 700;
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}

/* 酒店预订标签页 */
.booking-tabs {
    display: flex;
    justify-content: center;
    height: 105px;
    margin: 0 auto 30px;
    align-items: center;
}

.tab {
    height: 25px;
    opacity: 0.65;
    font-size: 18px;
    font-family: 'Alibaba PuHuiTi 2.0', 'Alibaba PuHuiTi 2.0-300';
    font-weight: normal;
    text-align: center;
    color: #999;
    cursor: pointer;
    padding: 0px 40px;
    position: relative;
    white-space: nowrap;
}

.tab:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 12px;
    opacity: 0.2;
    border-left: 1px solid #000000;
}

.tab:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 12px;
    opacity: 0.2;
    border-right: 1px solid #999;
}

.tab.active {
    color: #d6992e;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: calc(100% - 40px);
    height: 2px;
}

/* 房间展示区域 */
.room-display {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.room-main-image {
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.room-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 28px;
    font-family: 'Alibaba PuHuiTi 2.0', 'Alibaba PuHuiTi 2.0-700';
    font-weight: normal;
    text-align: left;
    color: #000000;
    margin-bottom: 20px;
}

.room-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

/* 设施图标 */
.room-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 14px;
    color: #666;
}

/* 了解详情按钮 */
.detail-btn {
    width: 120px;
    height: 36px;
    background-color: transparent;
    border: 0.5px solid #000000;
    border-radius: 18px;
    color: #000000;
    font-size: 14px;
    font-family: 'Alibaba PuHuiTi 2.0', 'Alibaba PuHuiTi 2.0-300';
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    background-color: #d6992e;
    color: #fff;
}

/* 右侧小图 */
.room-side-image {
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.room-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* 底部操作区域 */
.room-bottom-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* 房间轮播容器 */
.room-carousel {
    position: relative;
    height: 420px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

/* 轮播指示器 */
.room-carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

/* 餐饮轮播容器 */
.food-carousel {
    width: 100%;
    height: 400px;
    margin: 30px auto 0;
    position: relative;
}

/* 餐饮轮播指示器 */
.food-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 80px;
    width: 300px;
    height: 1px;
    background-color: #ccc;
}

.food-carousel-indicators .indicator {
    width: 96px;
    height: 1px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

.food-carousel-indicators .indicator.active {
    background-color: #d6992e;
}

/* 宴会厅图片网格 */
.banquet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
    height: 400px;
}

.banquet-item:nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1;
}

.banquet-item:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.banquet-item:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
}

.banquet-item:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
}

.banquet-item:nth-child(5) {
    grid-row: 2;
    grid-column: 3;
}

.banquet-item:nth-child(6) {
    grid-row: 1 / span 2;
    grid-column: 4;
}

.banquet-item {
    overflow: hidden;
    border-radius: 8px;
}

.banquet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
}

.indicator.active {
    background-color: #d6992e;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.content-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.content-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-item .info {
    padding: 15px;
}

.content-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.content-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 分隔线 */
.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0;
}

/* 娱乐设施网格 */
.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.entertainment-item {
    overflow: hidden;
    border-radius: 8px;
}

.entertainment-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

.entertainment-item .info {
    padding: 15px;
    text-align: center;
}

.entertainment-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #333;
}

/* 预订按钮 */
.booking-btn {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 12px;
    background-color: #d6992e;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* 底部导航 */
.footer {
    background-color: #1C1200;
    padding: 40px 20px;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo .img {
   width: 128px; 
   height: 88px;
   margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.contact-item .icon {
    font-size: 16px;
    min-width: 30px;
}

.contact-item img.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
    border-top: 1px solid #dae0eb;
    opacity: 0.25;
    max-width: 1920px;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
}

/* 保持联系表单样式 */
.contact-form-section {
    width: 250px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .form-group {
    margin: 0;
}

.contact-form input[type="text"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #d6992e;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #d6992e;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #b88025;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-section {
        width: 100%;
        margin-top: 20px;
    }
}