* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #000;
            color: #fff;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            color: #000;
            padding: 10px;
            min-height: 100vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }
        
        .banner {
	width: 100%;
	height: 400px;
	background-color: #333;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
        }
        
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .nav {
            background-color: #8B0000;
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        
        .nav-item {
            margin: 0 30px;
            padding: 10px 15px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
            font-weight: bold;
            text-decoration: none;
        }
        
        .nav-item:hover {
            color: #ffcc00;
            transform: scale(1.1);
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background-color: #ffcc00;
            transition: transform 0.3s ease;
        }
        
        .nav-item:hover::after {
            transform: translateX(-50%) scaleX(1);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .gallery-item {
            text-align: center;
        }
        
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
        }
        
        .gallery-title {
            margin: 10px 0 5px;
            color: #8B0000;
            font-weight: bold;
        }
        
        .gallery-desc {
            font-size: 14px;
            color: #555;
        }
        
        .slogan {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            font-size: 24px;
            color: #8B0000;
            border-bottom: 1px solid #ddd;
        }
        
        .video-container {
            text-align: center;
            margin: 40px 0;
        }
        
        .video-container video {
            width: 70%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .video-slogan {
            text-align: center;
            margin: 20px 0 40px;
            font-size: 20px;
            color: #8B0000;
            font-weight: bold;
        }
        
.tp-image-title {
    text-align: center;
    font-size: 28px;
    color: #8B0000;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.tp-image-row {
    display: flex;
    justify-content: space-between;
}

.tp-image-item {
    width: 23%;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tp-image-item:hover {
    transform: translateY(-5px);
}

.tp-image {
    width: 100%;
    height: 260px;
    background-color: #eee;
}

.tp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-image-info {
    padding: 10px;
}

.tp-image-name {
    font-size: 16px;
    color: #8B0000;
    margin-bottom: 5px;
}

.tp-image-desc {
    font-size: 12px;
    color: #666;
}
        
        footer {
            background-color: #8B0000;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            border-top: 1px solid #660000;
        }
        
        .divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #8B0000, #fff, #8B0000);
            margin: 30px 0;
        }
		
		
	
	
	

.whls-history-title {
    text-align: center;
    font-size: 32px;
    color: #8B0000;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.whls-history-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 30px;
}

.whls-history-content p {
    margin-bottom: 20px;
}

.whls-history-image {
    text-align: center;
}

.whls-history-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}	
		
		
		.jdjs-attraction-container {
    width: 1200px;
    margin: 50px auto;
    overflow: hidden;
}

.jdjs-attraction-row {
    display: flex;
    margin-bottom: 30px;
}

.jdjs-attraction-card {
    width: 50%;
    float: left;
    margin-right: 20px;
}

.jdjs-attraction-card:last-child {
    margin-right: 0;
}

.jdjs-attraction-image {
    width: 40%;
    float: left;
    background-color: #eee;
    height: 250px;
}

.jdjs-attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jdjs-attraction-info {
    width: 60%;
    float: right;
    padding: 20px;
}

.jdjs-attraction-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8B0000;
}

.jdjs-attraction-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.jdjs-attraction-details {
    color: #666;
}

.jdjs-attraction-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #8B0000;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
}

/* 清除浮动 */
.jdjs-attraction-row::after {
    content: "";
    display: table;
    clear: both;
}



.ms-food-title {
    text-align: center;
    font-size: 32px;
    color: #8B0000;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ms-food-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ms-food-item {
    width: 30%;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ms-food-item:hover {
    transform: translateY(-5px);
}

.ms-food-image {
    width: 100%;
    height: 200px;
    background-color: #eee;
}

.ms-food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-food-info {
    padding: 15px;
}

.ms-food-name {
    font-size: 20px;
    color: #8B0000;
    margin-bottom: 10px;
}

.ms-food-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.ms-food-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #8B0000;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
}



.ly-contact-title {
    text-align: center;
    font-size: 32px;
    color: #8B0000;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ly-contact-intro {
    text-align: center;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.ly-contact-content {
    display: flex;
    justify-content: space-between;
}

.ly-contact-info {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.ly-contact-info h3 {
    color: #8B0000;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.ly-contact-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.ly-contact-icon {
    width: 40px;
    height: 40px;
    background-color: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 20px;
}

.ly-contact-text {
    color: #333;
}

.ly-contact-form {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.ly-contact-form h3 {
    color: #8B0000;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.ly-form-group {
    margin-bottom: 20px;
}

.ly-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.ly-form-group input,
.ly-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.ly-form-group textarea {
    height: 120px;
    resize: vertical;
}

.ly-form-group button {
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
}

.ly-form-group button:hover {
    background-color: #660000;
}