/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 页头样式 */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo h1 {
    color: #c41230;
    font-size: 32px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 5px 10px;
}

nav ul li a:hover {
    color: #c41230;
    border-bottom: 2px solid #c41230;
}

/* 焦点图样式 */
.banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容区公共样式 */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
}

section h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 10px auto;
}

/* 热门目的地样式 */
.dest-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-item {
    text-align: center;
    transition: transform 0.3s;
}

.dest-item:hover {
    transform: translateY(-5px);
}

.dest-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.dest-item h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.dest-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 精品路线样式 */
.route-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.route-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.route-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.route-info {
    padding: 20px;
}

.route-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price {
    color: #c41230;
    font-size: 20px;
    font-weight: bold;
}

/* 旅游攻略样式 */
.guide-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.guide-item {
    text-align: center;
}

.guide-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* 特色体验样式 */
.exp-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.exp-item {
    text-align: center;
}

.exp-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* 页脚样式 */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-nav a:hover {
    color: #c41230;
}

.copyright {
    font-size: 14px;
    color: #999;
} 