/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
body {
    color: #424242;
    background-color: #FAFAFA;
    line-height: 1.6;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0;
}
@media (max-width: 1480px) {
    .container {
        width: 100%;
    }
}

/* 自定义颜色体系（海派红+金+蓝为主） */
:root {
    --sh-red: #D32F2F;
    --sh-light-red: #EF5350;
    --sh-dark-red: #C62828;
    --sh-blue: #1976D2;
    --sh-gold: #FFB74D;
    --sh-gray: #424242;
    --sh-light: #FAFAFA;
    --sh-dark: #212121;
    --sh-silver: #EEEEEE;
}

/* 通用组件样式 */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--sh-red);
    color: white;
}
.btn-primary:hover {
    background-color: var(--sh-dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.2);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--sh-red);
    color: var(--sh-red);
}
.btn-outline:hover {
    background-color: var(--sh-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.1);
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
.section-title h2 {
    font-size: 2rem;
    color: var(--sh-dark);
    display: inline-block;
}
.section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--sh-red);
    margin: 0.8rem auto 0;
}
.section-title p {
    color: #666;
    margin-top: 1rem;
    font-size: 1rem;
}
.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.text-gradient {
    background: linear-gradient(90deg, var(--sh-red) 0%, var(--sh-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--sh-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* 顶部信息栏 */
.top-bar {
    background-color: var(--sh-dark);
    color: white;
    padding: 1rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-red), var(--sh-gold), var(--sh-blue), var(--sh-gold), var(--sh-red));
    background-size: 200% 100%;
    animation: gradientFlow 8s linear infinite;
}
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.top-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.top-bar .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.top-bar-info {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1.2rem;
    position: relative;
    transition: all 0.3s ease;
}
.top-bar-item:hover {
    color: var(--sh-gold);
    transform: translateY(-2px);
}
.top-bar-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.top-bar-item:hover + .top-bar-divider,
.top-bar-divider:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
.top-bar-info i {
    color: var(--sh-gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.top-bar-item:hover i {
    transform: rotate(15deg) scale(1.2);
    color: var(--sh-light-red);
}
.hot-event {
    position: relative;
    animation: pulse 2s infinite;
    font-weight: 600;
}
.hot-event::after {
    content: "热门";
    position: absolute;
    top: -10px;
    right: -25px;
    background-color: var(--sh-red);
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.4);
}
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.top-bar-links {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}
.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.2rem;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}
.top-bar-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}
.top-bar-link:first-child::before {
    display: none;
}
.top-bar-link:hover {
    color: var(--sh-gold);
    transform: translateY(-3px);
}
.top-bar-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.top-bar-link:hover i {
    transform: rotate(15deg) scale(1.2);
}
.top-bar-link.language {
    border-left: none;
}
.top-bar-link.user {
    background-color: rgba(211, 47, 47, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}
.top-bar-link.user:hover {
    background-color: var(--sh-red);
    color: white;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}



/* 导航栏 */
.navbar {
    background-color: white;
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.navbar:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.navbar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--sh-red), var(--sh-dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.2);
    transition: all 0.3s ease;
}
.logo:hover .logo-icon {
    transform: rotate(360deg);
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.3);
}
.logo-text h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}
.logo-text p {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}
.logo-badge {
    position: absolute;
    top: -10px;
    right: -60px;
    background-color: var(--sh-gold);
    color: var(--sh-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255, 183, 77, 0.3);
    transform: rotate(10deg);
}
.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
}
.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid var(--sh-silver);
    border-radius: 24px 0 0 24px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.search-box input:focus {
    border-color: var(--sh-red);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.1);
}
.search-box i {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
}
.search-btn {
    background-color: var(--sh-red);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 24px 24px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-btn:hover {
    background-color: var(--sh-dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.2);
}
.nav-menu {
    display: flex;
    gap: 0;
    position: relative;
}
.nav-item {
    position: relative;
    margin: 0 0.5rem;
}
.nav-item a {
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    position: relative;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.nav-item a:hover, .nav-item a.active {
    color: var(--sh-red);
    background-color: rgba(211, 47, 47, 0.05);
}
.nav-item a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--sh-red);
    position: absolute;
    bottom: 0;
    left: 0;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.8rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    padding: 0.6rem 1.5rem;
    color: var(--sh-gray);
    border-radius: 0;
    transition: all 0.3s ease;
}
.nav-dropdown a:hover {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--sh-red);
    padding-left: 1.8rem;
}
.nav-tools {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.6rem;
    background-color: rgba(245, 245, 245, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: 60px;
    text-align: center;
}
.tool-item:hover {
    background-color: rgba(211, 47, 47, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--sh-red);
}
.tool-item i {
    font-size: 1.1rem;
}



/* 轮播图样式 */
.hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}
.carousel-item.active {
    opacity: 1;
}
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}
.carousel-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1.5s ease;
}
.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeUp 2s ease;
}
.carousel-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeUp 2.5s ease;
}
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-indicator.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}
.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
.carousel-control.prev {
    left: 20px;
}
.carousel-control.next {
    right: 20px;
}

/* 响应式调整 */
@media (max-width: 1480px) {
    .carousel {
        width: 100%;
    }
}

/* 动画效果 */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 数据统计模块 */
.stats {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--sh-red), var(--sh-dark-red));
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stats-item {
    padding: 1rem;
}
.stats-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--sh-gold);
}
.stats-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* 景点推荐区 */
.landmarks {
    padding: 5rem 0;
    background-color: var(--sh-light);
}
.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.landmark-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.landmark-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}
.landmark-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.card:hover .landmark-card-img img {
    transform: scale(1.08) rotate(1deg);
}
.landmark-card-content {
    padding: 1.5rem;
}
.landmark-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--sh-red);
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.landmark-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--sh-dark);
}
.landmark-card-content p {
    color: #666;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.landmark-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    color: var(--sh-gold);
    font-size: 0.9rem;
}
.landmark-rating i {
    font-size: 1rem;
    transition: all 0.3s ease;
}
.landmark-rating span {
    margin-left: 0.5rem;
    color: var(--sh-dark);
    font-weight: 500;
    font-size: 1rem;
    min-width: 45px;
    text-align: right;
}

/* 美食专区 */
.food {
    padding: 5rem 0;
    background-color: white;
}
.food-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}
.food-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.food-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}
.food-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.card:hover .food-card-img img {
    transform: scale(1.08);
}
.food-card-content {
    padding: 1.2rem;
}
.food-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
}
.food-card-content .price {
    color: var(--sh-red);
    font-weight: bold;
    margin-bottom: 0.8rem;
}
.food-card-content .addr {
    font-size: 0.85rem;
    color: #666;
}
.food-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--sh-gold);
    color: var(--sh-dark);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 1;
}

/* 文化体验区 */
.culture {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--sh-light), #f5f5f5);
}
.culture-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
.culture-text {
    flex: 1 1 400px;
}
.culture-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--sh-dark);
}
.culture-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}
.culture-img {
    flex: 1 1 400px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}
.culture-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(211, 47, 47, 0.1), transparent);
}
.culture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.culture-img:hover img {
    transform: scale(1.05);
}
.culture-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.culture-item {
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.culture-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.culture-item i {
    font-size: 2rem;
    color: var(--sh-red);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}
.culture-item:hover i {
    color: var(--sh-dark-red);
    transform: scale(1.1);
}
.culture-item h4 {
    font-size: 1rem;
    color: var(--sh-dark);
}

/* 季节特色区块 */
.seasonal {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, var(--sh-light));
}
.seasonal-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.seasonal-tab {
    padding: 0.8rem 2rem;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}
.seasonal-tab.active {
    background-color: var(--sh-red);
    color: white;
    transform: translateY(-3px);
}
.seasonal-content {
    min-height: 400px;
}
.seasonal-item {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.seasonal-item.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.seasonal-img {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.seasonal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seasonal-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--sh-dark);
}
.seasonal-text ul {
    margin-bottom: 2rem;
}
.seasonal-text li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--sh-silver);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.seasonal-text li i {
    color: var(--sh-red);
    margin-top: 0.3rem;
}

/* 游客评价区块 */
.reviews {
    padding: 5rem 0;
    background-color: white;
}
.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
}
.reviews-slider::-webkit-scrollbar {
    height: 6px;
}
.reviews-slider::-webkit-scrollbar-thumb {
    background-color: var(--sh-silver);
    border-radius: 3px;
}
.review-card {
    flex: 0 0 350px;
    padding: 2rem;
    scroll-snap-align: start;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sh-silver);
    overflow: hidden;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-info h4 {
    font-size: 1.1rem;
    color: var(--sh-dark);
}
.review-info .date {
    font-size: 0.85rem;
    color: #999;
}
.review-rating {
    color: var(--sh-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}
.review-rating i {
    font-size: 1rem;
    transition: all 0.3s ease;
}
.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.review-tag {
    padding: 0.3rem 0.8rem;
    background-color: var(--sh-light);
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

/* 实用工具区块 */
.tools {
    padding: 5rem 0;
    background-color: var(--sh-light);
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}
.tool-card {
    padding: 2rem 1.5rem;
    text-align: center;
}
.tool-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(211, 47, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.tool-icon:hover {
    background-color: rgba(211, 47, 47, 0.2);
    transform: scale(1.05);
}
.tool-icon i {
    font-size: 2rem;
    color: var(--sh-red);
    transition: all 0.3s ease;
}
.tool-icon:hover i {
    color: var(--sh-dark-red);
    transform: scale(1.1);
}
.tool-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--sh-dark);
}
.tool-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* 问答专区 */
.faq {
    padding: 5rem 0;
    background-color: var(--sh-light);
}

/* FAQ标签样式 */
.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}
.faq-tab {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--sh-silver);
    border-radius: 30px;
    background-color: white;
    color: var(--sh-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.faq-tab:hover {
    border-color: var(--sh-red);
    color: var(--sh-red);
    transform: translateY(-2px);
}
.faq-tab.active {
    background-color: var(--sh-red);
    border-color: var(--sh-red);
    color: white;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* FAQ标签内容样式 */
.faq-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.faq-tab-content.active {
    display: block;
}

/* FAQ网格布局 */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

/* FAQ卡片样式 */
.faq-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* FAQ图片样式 */
.faq-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.faq-card:hover .faq-img img {
    transform: scale(1.05);
}

/* FAQ内容样式 */
.faq-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* FAQ标题样式 */
.faq-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--sh-light-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sh-dark);
    margin: 0;
}

/* FAQ回答样式 */
.faq-answer {
    flex: 1;
}
.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.faq-answer ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.faq-answer li {
    list-style: disc;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.faq-answer li i {
    margin-right: 0.5rem;
    color: var(--sh-red);
}

/* 高亮文本样式 */
.highlight {
    color: var(--sh-red);
    font-weight: 600;
}

/* FAQ提示样式 */
.faq-tip {
    background-color: var(--sh-silver);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.faq-tip i {
    color: var(--sh-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.faq-tip p {
    margin: 0;
    color: var(--sh-gray);
}

/* 季节指南样式 */
.season-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.season-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
.season-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}
.season-icon.spring {
    background-color: #4CAF50;
}
.season-icon.summer {
    background-color: #FF9800;
}
.season-icon.autumn {
    background-color: #FF5722;
}
.season-icon.winter {
    background-color: #2196F3;
}
.season-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
}
.season-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* 预算表格样式 */
.budget-table {
    margin-top: 1rem;
}
.budget-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.budget-category {
    display: block;
    font-weight: 600;
    color: var(--sh-dark);
    margin-bottom: 0.3rem;
}
.budget-range {
    display: block;
    color: var(--sh-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.budget-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

/* 交通网格样式 */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.transport-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
.transport-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sh-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.5rem;
}
.transport-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
}
.transport-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* 机场指南样式 */
.airport-guide {
    margin-top: 1rem;
}
.airport-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.airport-item h4 {
    color: var(--sh-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}
.airport-item ul {
    padding-left: 1.5rem;
    margin: 0;
}
.airport-item li {
    margin-bottom: 0.5rem;
    color: #666;
}
.airport-item li i {
    margin-right: 0.5rem;
    color: var(--sh-blue);
}

/* 美食网格样式 */
.faq-answer .food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.food-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}
.food-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--sh-gold);
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 0 8px 0 8px;
    font-weight: 600;
}
.food-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
    margin-top: 1.5rem;
}
.food-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* 美食街网格样式 */
.food-street-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.food-street-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
}
.food-street-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
}
.food-street-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* 迪士尼指南样式 */
.disney-guide {
    margin-top: 1rem;
}
.disney-tip {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--sh-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.disney-tip h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
}
.disney-tip p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* 拍照网格样式 */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.photo-item {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}
.photo-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--sh-blue);
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 0 8px 0 8px;
    font-weight: 600;
}
.photo-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sh-dark);
    margin-top: 1.5rem;
}
.photo-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* 安全提示样式 */
.safety-tips {
    margin-top: 1rem;
}
.safety-tip {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.safety-tip i {
    color: var(--sh-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.safety-tip p {
    margin: 0;
    color: var(--sh-gray);
}

/* 网络指南样式 */
.network-guide {
    margin-top: 1rem;
}
.network-option {
    background-color: var(--sh-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.network-option h4 {
    color: var(--sh-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}
.network-option ul {
    padding-left: 1.5rem;
    margin: 0;
}
.network-option li {
    margin-bottom: 0.5rem;
    color: #666;
    list-style: disc;
}
.network-option li i {
    margin-right: 0.5rem;
    color: var(--sh-blue);
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .faq-tabs {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    .faq-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    .season-guide {
        grid-template-columns: repeat(2, 1fr);
    }
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 3rem 0;
    }
    .faq-card {
        margin: 0 1rem;
    }
    .faq-header h3 {
        font-size: 1rem;
    }
    .season-guide {
        grid-template-columns: 1fr;
    }
    .transport-grid {
        grid-template-columns: 1fr;
    }
    .food-grid {
        grid-template-columns: 1fr;
    }
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* 旅游攻略区 */
.strategy {
    padding: 5rem 0;
    background-color: white;
}
.strategy-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.strategy-tab {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}
.strategy-tab.active {
    border-color: var(--sh-red);
    color: var(--sh-red);
    transform: translateY(-2px);
}
.strategy-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}
.strategy-card {
    padding: 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}
.strategy-card:hover {
    border-left-color: var(--sh-red);
}
.strategy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--sh-dark);
}
.strategy-card ul {
    margin-bottom: 1.5rem;
}
.strategy-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sh-silver);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.strategy-card li:hover {
    padding-left: 0.5rem;
}
.strategy-card li i {
    color: var(--sh-red);
}

/* 底部 */
.footer {
    background-color: var(--sh-dark);
    color: white;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--sh-gold);
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--sh-gold);
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-col a {
    transition: all 0.3s ease;
}
.footer-col a:hover {
    color: var(--sh-gold);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .top-bar-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-bar-item {
        padding: 0.5rem 1rem;
    }
    .nav-menu {
        order: 4;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-tools {
        order: 3;
    }
    .search-box {
        order: 2;
    }
    .logo {
        order: 1;
    }
    .food-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .carousel-content h2 {
        font-size: 2.5rem;
    }
    .top-bar-info {
        gap: 0.5rem;
    }
    .top-bar-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    .hot-event::after {
        display: none;
    }
    .top-bar-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-bar-link {
        padding: 0.5rem 0.8rem;
    }

    .nav-item {
        margin: 0 0.2rem;
    }
    .nav-item a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    .tool-item {
        min-width: 50px;
        padding: 0.4rem;
        font-size: 0.7rem;
    }

    .culture-content {
        gap: 2rem;
    }
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .carousel-content h2 {
        font-size: 2rem;
    }
    .carousel-content p {
        font-size: 1rem;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .top-bar-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .top-bar-divider {
        display: none;
    }
    .top-bar-item {
        padding: 0.2rem 0;
    }
    .top-bar-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .top-bar-link {
        padding: 0.2rem 0;
    }
    .top-bar-link.language {
        border-left: none;
        padding-left: 0;
    }
    .top-bar-link.user {
        margin-left: 0;
        padding: 0.4rem 0.8rem;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }
    .search-box {
        max-width: 100%;
    }
    .nav-item {
        margin: 0;
    }
    .nav-item a {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    .nav-dropdown {
        min-width: 150px;
    }
    .nav-tools {
        gap: 0.5rem;
    }
    .tool-item {
        min-width: 45px;
        padding: 0.3rem;
    }
    .tool-item i {
        font-size: 1rem;
    }

    .landmarks-grid, .food-grid, .strategy-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}


