/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 导航栏样式 */
.nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #c41230;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c41230;
}

/* 主要内容区样式 */
main {
    margin-top: 80px;
    padding: 20px;
}

/* 轮播图样式 */
.banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 简介部分样式 */
.intro {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 20px;
}

.intro h1 {
    font-size: 36px;
    color: #c41230;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    margin-bottom: 30px;
}

.intro-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.intro-images img {
    width: 45%;
    border-radius: 10px;
}

/* 特色推荐样式 */
.features {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
}

.features h2 {
    text-align: center;
    font-size: 30px;
    color: #c41230;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    color: #666;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-info,
.footer-links {
    flex: 1;
    max-width: 300px;
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #c41230;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .intro-images {
        flex-direction: column;
    }
    
    .intro-images img {
        width: 100%;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-info,
    .footer-links {
        margin-bottom: 30px;
    }
} 

/* 景点页面样式 */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    color: #c41230;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.scenic-spot {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.spot-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.spot-content.reverse {
    flex-direction: row-reverse;
}

.spot-text {
    flex: 1;
}

.spot-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.spot-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.spot-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.spot-info p {
    margin-bottom: 10px;
}

.spot-info strong {
    color: #333;
}

.spot-image {
    flex: 1;
    max-width: 500px;
}

.spot-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.spot-image img:hover {
    transform: scale(1.02);
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .spot-content {
        flex-direction: column;
    }

    .spot-content.reverse {
        flex-direction: column;
    }

    .spot-image {
        max-width: 100%;
        order: -1;
    }

    .spot-text {
        text-align: center;
    }
} 

/* 文化特色页面样式 */
.culture-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.culture-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.culture-content.reverse {
    flex-direction: row-reverse;
}

.culture-text {
    flex: 1;
}

.culture-text h2 {
    font-size: 28px;
    color: #c41230;
    margin-bottom: 20px;
}

.culture-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.culture-highlights {
    display: flex;
    gap: 20px;
}

.highlight-item {
    flex: 1;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.culture-image {
    flex: 1;
    max-width: 500px;
}

.culture-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.culture-image img:hover {
    transform: scale(1.02);
}

/* 文化活动日历样式 */
.culture-calendar {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.culture-calendar h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.calendar-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.calendar-item:hover {
    transform: translateY(-5px);
}

.calendar-date {
    font-size: 24px;
    font-weight: bold;
    color: #c41230;
    margin-bottom: 15px;
}

.calendar-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.calendar-item p {
    color: #666;
    font-size: 14px;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .culture-content {
        flex-direction: column;
    }

    .culture-content.reverse {
        flex-direction: column;
    }

    .culture-image {
        max-width: 100%;
        order: -1;
    }

    .culture-text {
        text-align: center;
    }

    .culture-highlights {
        flex-direction: column;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
    }
} 

/* 美食推荐页面样式 */
.food-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.food-section h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.food-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.food-card:hover .food-image img {
    transform: scale(1.05);
}

.food-info {
    padding: 20px;
}

.food-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.food-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.food-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.price {
    color: #c41230;
    font-weight: bold;
}

.location {
    color: #666;
}

/* 特色餐厅样式 */
.restaurant-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.restaurant-section h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.restaurant-item {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.restaurant-item:hover {
    transform: translateY(-5px);
}

.restaurant-image {
    flex: 0 0 300px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.restaurant-item:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-info {
    flex: 1;
    padding: 30px;
}

.restaurant-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.restaurant-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.restaurant-details {
    margin-bottom: 20px;
}

.restaurant-details p {
    margin-bottom: 10px;
    color: #666;
}

.restaurant-details strong {
    color: #333;
}

.restaurant-tags {
    display: flex;
    gap: 10px;
}

.restaurant-tags span {
    padding: 5px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

/* 美食地图样式 */
.food-map {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.food-map h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.map-container {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container img {
    flex: 1;
    max-width: 60%;
    border-radius: 10px;
}

.map-tips {
    flex: 1;
}

.map-tips h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.map-tips ul {
    list-style: none;
}

.map-tips li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.map-tips li::before {
    content: "•";
    color: #c41230;
    position: absolute;
    left: 0;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .restaurant-item {
        flex-direction: column;
    }

    .restaurant-image {
        flex: 0 0 200px;
    }

    .map-container {
        flex-direction: column;
    }

    .map-container img {
        max-width: 100%;
    }

    .restaurant-info {
        padding: 20px;
    }
} 

/* 住宿指南页面样式 */
.accommodation-filter {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #c41230;
    color: #fff;
}

/* 住宿列表样式 */
.accommodation-list {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.hotel-item {
    display: flex;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.hotel-item:hover {
    transform: translateY(-5px);
}

.hotel-image {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hotel-item:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background-color: rgba(196, 18, 48, 0.9);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}

.hotel-info {
    flex: 1;
    padding: 30px;
}

.hotel-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.score {
    color: #c41230;
    font-weight: bold;
}

.hotel-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hotel-details {
    margin-bottom: 20px;
}

.hotel-details p {
    margin-bottom: 10px;
    color: #666;
}

.hotel-details strong {
    color: #333;
}

.hotel-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hotel-features span {
    padding: 5px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

/* 住宿小贴士样式 */
.accommodation-tips {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.accommodation-tips h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .filter-container {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    .hotel-item {
        flex-direction: column;
    }

    .hotel-image {
        flex: 0 0 200px;
    }

    .hotel-info {
        padding: 20px;
    }

    .tips-container {
        grid-template-columns: 1fr;
    }
} 

/* 交通出行页面样式 */
.transport-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.transport-section h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.transport-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.transport-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.transport-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transport-info h3 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.transport-info p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.transport-details {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.transport-details p {
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
}

.transport-details p:last-child {
    margin-bottom: 0;
}

/* 市内交通样式 */
.city-transport {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.city-transport h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.option-item:hover {
    transform: translateY(-5px);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.option-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.option-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.option-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.option-details {
    list-style: none;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.option-details li {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.option-details li:last-child {
    margin-bottom: 0;
}

.option-details li::before {
    content: "•";
    color: #c41230;
    position: absolute;
    left: 0;
}

/* 交通贴士样式 */
.transport-tips {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.transport-tips h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .transport-grid,
    .transport-options,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .transport-card,
    .option-item,
    .tip-card {
        padding: 20px;
    }

    .transport-icon {
        width: 40px;
        height: 40px;
    }

    .option-header img {
        width: 30px;
        height: 30px;
    }
} 

/* 精品线路页面样式 */
.route-filter {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* 线路列表样式 */
.route-list {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.route-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.route-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.route-item:hover .route-image img {
    transform: scale(1.05);
}

.route-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background-color: rgba(196, 18, 48, 0.9);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}

.route-content {
    padding: 30px;
}

.route-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.route-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.route-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.route-info i {
    color: #c41230;
    font-size: 16px;
}

/* 行程安排样式 */
.route-spots {
    margin-bottom: 30px;
}

.route-spots h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.day-plan {
    margin-bottom: 30px;
}

.day-plan h5 {
    font-size: 18px;
    color: #c41230;
    margin-bottom: 15px;
}

.spot-timeline {
    position: relative;
    padding-left: 30px;
}

.spot-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #f0f0f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c41230;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #c41230;
}

.time {
    font-size: 14px;
    color: #c41230;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.spot-content h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.spot-content p {
    font-size: 14px;
    color: #666;
}

/* 贴心提示样式 */
.route-tips {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.route-tips h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.route-tips ul {
    list-style: none;
}

.route-tips li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 14px;
}

.route-tips li::before {
    content: "•";
    color: #c41230;
    position: absolute;
    left: 0;
}

/* 预订说明样式 */
.booking-info {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.booking-info h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .route-image {
        height: 200px;
    }

    .route-content {
        padding: 20px;
    }

    .route-info {
        flex-direction: column;
        gap: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
} 

/* 联系我们页面样式 */
.contact-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-container {
    display: flex;
    gap: 40px;
}

/* 联系信息样式 */
.contact-info {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.info-items {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: #c41230;
}

.item-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.item-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* 联系表单样式 */
.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c41230;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #c41230;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #a01028;
}

/* 常见问题样式 */
.faq-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.toggle-icon {
    font-size: 24px;
    color: #c41230;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 20px;
}

.faq-answer li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    color: #c41230;
    position: absolute;
    left: -15px;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .info-items {
        gap: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }

    .submit-btn {
        padding: 10px;
    }
} 