@charset "UTF-8";
/* CSS Document */

/* 全局样式 */
:root {
    --primary-color: #4ba5a5;
    --secondary-color: #f5f5f5;
    --dark-color: #333;
    --light-color: #fff;
    --text-color: #555;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #5752d4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* 导航栏 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    position: relative;
    margin: 0 auto;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
}

.nav-indicator {
    position: absolute;
    bottom: -5px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    margin-left: auto;
}

.reservation {
    font-size: 18px;
    font-weight: bold;
    font-style: italic; 
    margin-left: 50px;
    color: #1f4f59;
    white-space: nowrap;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* 轮播区域 */
.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.slides-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    flex: 0 0 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.1);
}

/* 添加遮罩层，使文字更清晰 */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.slide-content {
    position: relative;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    animation: fadeIn 1s ease;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 2;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 品牌理念区域 */
.brands {
    background-color: var(--secondary-color);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.brand-member {
    text-align: center;
    background-color: var(--light-color);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-radius: 10px;
}

.brand-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-image {
    height: 250px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.brand-member:hover .brand-image img {
    transform: scale(1.1);
}

.brand-info {
    padding: 20px;
}

/* 最新项目部分样式 */
.latest-projects {
    background-color: #011e30;
    overflow: hidden;
    padding: 80px 0;
}

.section-header {
    padding: 0 0 40px;
    text-align: center;
}

.latest-projects .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.latest-projects .section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #4ba5a5;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 25px auto 0;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.project-item {
    position: relative;
    width: 25%; /* 4列布局 */
    overflow: hidden;
    margin: 0;
    border: none;
    transition: all 0.3s ease;
    background-color: #fff;
}

.room-type {color: #fff;}

.project-item:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.project-image {
    position: relative;
    aspect-ratio: 1/0.65;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(75, 165, 165, 0.7), rgba(75, 165, 164, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 0;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.project-info {
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* 餐饮展示区域 */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rooms-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rooms-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.rooms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 165, 165, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: var(--light-color);
}

.rooms-overlay h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 15px;
}

.rooms-item:hover .rooms-overlay {
    opacity: 1;
}

.rooms-item:hover img {
    transform: scale(1.1);
}

/* 嘉叙区域 */
.meeting {
	background-color:#f5f5f5;
}
.gleetalk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gleetalk-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gleetalk-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gleetalk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 165, 165, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: var(--light-color);
}

.gleetalk-overlay h3 {
	font-size: 25px;
	color: #fff;
}

.gleetalk-item:hover .gleetalk-overlay {
    opacity: 1;
}

.gleetalk-item:hover img {
    transform: scale(1.1);
}

/* 表格容器 */
.responsive-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 表格样式 */
.hotel-meeting-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-meeting-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 12px 8px;
    border: none;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.hotel-meeting-table td {
    padding: 10px 8px;
    text-align: center;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    color: var(--text-color);
}

.hotel-meeting-table td:last-child {
    border-right: none;
}

.hotel-meeting-table .row-title {
    background-color: #E7E7E7;
    font-weight: 600;
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid #eee;
}

.hotel-meeting-table tbody tr:last-child td {
    border-bottom: none;
}

/* 酒店周边区域 */
.transportations-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0 0 40px 0;
}

.transportations-grid-item {
    height: 100%;
    margin-bottom: 30px;
}
.map {
    flex: 6;
    padding-right: 40px;
}
.lines {
    flex: 4;
    border-left: 6px solid #ebe6e1;
    padding-left: 20px;
}

.trans-lines li {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
}
.trans-lines li:last-child {
    margin-bottom: 0;
}

.transportations-grid h2 {
    margin-top: 10px;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 24px;
    color: var(--dark-color);
}

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

.team-member {
    text-align: center;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 20px;
    margin: 0;
}

/* 页脚 */
footer {
    background-color: var(--dark-color);
    color: #787878;
    padding: 30px 0 30px 0;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 1px;
    font-size: 14px;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.footer-content p {
    margin-bottom: 10px;
    line-height: 0.8;
}

.footer-content a {
    color: #787878;
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--light-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.copyright a {
    color: #787878;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--light-color);
}

/* ==================== 响应式设计 ==================== */

/* 大屏幕（桌面，1200px以上） */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .projects-grid {
        gap: 0;
    }
    
    .project-item {
        width: 25%;
    }
}

/* 中等屏幕（平板，992px-1199px） */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .projects-grid {
        gap: 0;
    }
    
    .project-item {
        width: 25%;
    }
    
    .transportations-grid {
        flex-direction: column;
    }
    
    .map {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .lines {
        border-left: none;
        border-top: 6px solid #ebe6e1;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 小屏幕（平板竖屏，768px-991px） */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .projects-grid {
        gap: 0;
    }
    
    .project-item {
        width: 50%;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rooms-item {
        height: 500px;
    }
    
    .gleetalk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transportations-grid {
        flex-direction: column;
    }
    
    .map {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .lines {
        border-left: none;
        border-top: 6px solid #ebe6e1;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .nav-links {
        margin-left: 30px;
    }
    
    .nav-links li {
        margin-left: 20px;
    }
    
    .reservation {
        margin-left: 20px;
        font-size: 16px;
    }
}

/* 移动端（手机，767px以下） */
@media (max-width: 767px) {
    section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    /* 导航栏 */
    .navbar {
        padding: 15px 0;
        flex-wrap: wrap;
    }
    
    .logo img {
        width: 120px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0 0 25px 0;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .nav-indicator {
        display: none;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .reservation {
        order: 3;
        margin-left: 0;
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }
    
    /* 轮播图 */
    .slider {
        height: 70vh;
    }
    
    .slider-controls {
        display: none;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    /* 品牌理念 */
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brand-image {
        height: 200px;
    }
    
    /* 轻客房 */
    .latest-projects {
        padding: 40px 0;
    }
    
    .projects-grid {
        gap: 0;
    }
    
    .project-item {
        width: 100%;
    }
    
    .project-image {
        aspect-ratio: 1/0.7;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    /* 餐饮展示 */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rooms-item {
        height: 400px;
    }
    
    .rooms-overlay h3 {
        font-size: 22px;
    }
    
    /* 嘉叙会议厅 */
    .gleetalk-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gleetalk-item {
        height: 200px;
    }
    
    .hotel-meeting-table th,
    .hotel-meeting-table td {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .hotel-meeting-table .row-title {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    /* 酒店周边 */
    .transportations-grid {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .map {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .lines {
        border-left: none;
        border-top: 4px solid #ebe6e1;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .transportations-grid h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .trans-lines li {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-image {
        height: 200px;
    }
    
    /* 页脚 */
    footer {
        padding: 30px 0 20px;
        font-size: 13px;
        letter-spacing: normal;
    }
    
    .footer-content img {
        width: 120px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* 超小屏幕（手机，480px以下） */
@media (max-width: 480px) {
    .slider {
        height: 60vh;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .rooms-item {
        height: 350px;
    }
    
    .gleetalk-item {
        height: 180px;
    }
    
    .hotel-meeting-table th,
    .hotel-meeting-table td,
    .hotel-meeting-table .row-title {
        font-size: 10px;
        padding: 6px 4px;
    }
    
    .transportations-grid h2 {
        font-size: 18px;
    }
    
    .trans-lines li {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* 折叠屏和特殊屏幕 */
@media (max-width: 320px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .logo img {
        width: 100px;
    }
    
    .reservation {
        font-size: 13px;
    }
    
    .brand-image,
    .member-image {
        height: 180px;
    }
    
    .project-image {
        aspect-ratio: 1/0.8;
    }
}