/* 省份景点展示区 */
.div {
    padding: 50px 5%;
    max-width: 1500px;
    margin: 0 auto;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c5e1a;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d4a017;
    border-radius: 2px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tupian {
    height: 200px;
    overflow: hidden;
}

.tupian img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .tupian img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c5e1a;
}

.attractions {
    margin-bottom: 15px;
}

.attractions li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.attractions li i {
    color: #d4a017;
    margin-right: 8px;
}

.view-details {
    display: inline-block;
    padding: 8px 20px;
    background: #2c5e1a;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: #3a7d29;
    transform: translateY(-3px);
}

/* 旅行小贴士 */
.travel-tips {
    background: linear-gradient(45deg, rgba(102, 132, 161, 0.1), rgba(193, 210, 255, 0.1), rgba(224, 195, 255, 0.1));
    padding: 50px 5%;
}

.tips-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 3rem;
    color: #d4a017;
    margin-bottom: 20px;
}

.tip-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5e1a;
}

/* 行程规划 */
.itinerary {
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.itinerary-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.itinerary-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 5px;
    background: #d4a017;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #2c5e1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c5e1a;
}

a {
    color: black;
    text-decoration: none;
}