        * {
        	margin: 0;
        	padding: 0;
        	box-sizing: border-box;
        }

        body {
        	font-family: 'Inter', sans-serif;
        	color: #333;
        	overflow-x: hidden;
        	background: #fff;
        }




        .swiper {
        	width: 100%;
        	height:auto;
        	
        }

        .swiper-wrapper {
        	width: auto;
        	height: 100%;
        	
        }

        .swiper-text {
        	width: 50%;
        	position: absolute;
        	left: 60px;
        	bottom: 120px;
        	z-index: 999;
        	color: #fff;
        }

        .swiper-text-title {
        	font-size: 34px;
        }

        .swiper-text-title2 {
        	font-size: 14px;
        	font-weight: 200;
        }


        .swiper-slide {

        	text-align: left;
        	font-size: 18px;
        	background: #fff;
        	/* display: flex; */
        	justify-content: center;
        	align-items: center;
        }

        .swiper-slide-img {
        	/* display: block; */
        	width: 100%;
        	height: 100%;
        	/* object-fit: cover; */
        }

        a {
        	text-decoration: none;
        	color: inherit;
        }

        .banner {
        	position: absolute;
        	top: 0;
        	left: 0;
        	width: 100%;
        	height: 1000px;
        }

        .container {
        	width: 100%;
        	margin: 0 auto;
        	padding: 0 60px;
        }

        /* Hero Section */
        .hero {
        	position: relative;
        	height: 600px;
        	background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 30%, #0ea5e9 60%, #38bdf8 100%);
        	overflow: hidden;
        }

        .hero-bg {
        	position: absolute;
        	inset: 0;
        	background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80') center/cover no-repeat;
        	opacity: 0.7;
        }

        .hero-overlay {
        	position: absolute;
        	padding: 60px;
        	inset: 0;
        	background: linear-gradient(to bottom, rgba(0, 30, 60, 0.3) 0%, rgba(0, 30, 60, 0.1) 50%, rgba(0, 30, 60, 0.2) 100%);
        }

        .hero-content {
        	position: relative;
        	z-index: 2;
        	padding-top: 240px;
        	width: 100%;
        	margin: 0 auto;
        	padding-left: 60px;
        	padding-right: 60px;
        }

        .hero h1 {
        	color: #fff;
        	font-size: 42px;
        	font-weight: 800;
        	line-height: 1.2;
        	margin-bottom: 12px;
        	max-width: 550px;
        }

        .hero p {
        	color: rgba(255, 255, 255, 0.9);
        	font-size: 13px;
        	max-width: 500px;
        	line-height: 1.6;
        	margin-bottom: 20px;
        }

        .hero-btn {
        	display: inline-flex;
        	align-items: center;
        	gap: 8px;
        	background: #f59e0b;
        	color: #fff;
        	padding: 12px 24px;
        	border-radius: 6px;
        	font-size: 14px;
        	font-weight: 600;
        	transition: background 0.3s;
        	border: none;
        	cursor: pointer;
        }

        .hero-btn:hover {
        	background: #d97706;
        }

        .hero-boat {
        	position: absolute;
        	right: 15%;
        	top: 25%;
        	z-index: 1;
        }

        .hero-boat img {
        	width: 300px;
        	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .hero-dots {
        	position: absolute;
        	bottom: 100px;
        	right: 50px;
        	display: flex;
        	gap: 8px;
        	z-index: 3;
        }

        .hero-dots span {
        	width: 10px;
        	height: 10px;
        	border-radius: 50%;
        	background: rgba(255, 255, 255, 0.4);
        	cursor: pointer;
        	transition: background 0.3s;
        }

        .hero-dots span.active {
        	background: #3b82f6;
        }

        /* Service Cards */
        .service-cards {
        	display: flex;
        	gap: 40px;
        	margin-top: -50px;
        	position: relative;
        	z-index: 10;
        	padding: 0 60px;
        	width: 100%;
        	margin-left: auto;
        	margin-right: auto;
        }

        .service-card {
        	flex: 1;
        	background: #fff;
        	border-radius: 12px;
        	padding: 28px 20px;
        	text-align: center;
        	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        	transition: transform 0.3s, box-shadow 0.3s;
        	cursor: pointer;
        }

        .service-card:hover {
        	transform: translateY(-5px);
        	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .service-card-icon {
        	width: 50px;
        	height: 50px;
        	margin: 0 auto 15px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        }

        .service-card-icon svg {
        	width: 40px;
        	height: 40px;
        }

        .service-card h3 {
        	font-size: 14px;
        	font-weight: 700;
        	color: #1e293b;
        	margin-bottom: 6px;
        }

        .service-card p {
        	font-size: 11px;
        	color: #64748b;
        	line-height: 1.5;
        }

        /* Section Title */
        .section-title {
        	font-size: 24px;
        	font-weight: 700;
        	color: #1e293b;
        	margin-bottom: 0px;
        }

        /* Popular Destination */
        .popular-destination {
        	padding: 60px 0px;
        }

        .dest-grid {
        	margin-top: 40px;
        	display: grid;
        	grid-template-columns: repeat(4, 1fr);
        	gap: 24px;
        }

        .dest-card {
        	border-radius: 12px;
        	overflow: hidden;
        	background: #fff;
        	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        	transition: transform 0.3s, box-shadow 0.3s;
        	cursor: pointer;
        }

        .dest-card:hover {
        	transform: translateY(-4px);
        	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .dest-card-img {
        	height: 220px;
        	width: 100%;
        }

        .dest-card-img img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        	transition: transform 0.5s;
        }

        .dest-card:hover .dest-card-img img {
        	transform: scale(1.05);
        }

        .dest-card-info {
        	padding: 16px;
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        }

        .dest-card-info h4 {
        	font-size: 14px;
        	font-weight: 600;
        	color: #1e293b;
        }

        .dest-card-info .arrow {
        	color: #3b82f6;
        	font-size: 14px;
        }


        /* Why Travel With Us */
        .why-travel {
        	padding: 60px 0;
        	background: #f8fafc;
        }

        .why-grid {
        	margin-top: 40px;
        	display: grid;
        	grid-template-columns: repeat(4, 1fr);
        	gap: 24px;
        }

        .why-card {
        	background: #fff;
        	border-radius: 12px;
        	padding: 30px 24px;
        	text-align: center;
        	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        	transition: transform 0.3s;
        }

        .why-card:hover {
        	transform: translateY(-4px);
        }

        .why-card-icon {
        	width: 50px;
        	height: 50px;
        	margin: 0 auto 16px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        }

        .why-card-icon svg {
        	width: 44px;
        	height: 44px;
        }

        .why-card h4 {
        	font-size: 14px;
        	font-weight: 700;
        	color: #1e293b;
        	margin-bottom: 6px;
        }

        .why-card p {
        	font-size: 11px;
        	color: #64748b;
        	line-height: 1.5;
        }

        /* Testimonials */
        .testimonials {
        	padding: 60px 0;
        	background: #0f172a;
        	position: relative;
        	overflow: hidden;
        	width: 100%;
        	/* 或者具体宽度 */
        	height: 300px;
        	/* 或者具体高度 */
        	background-image: url('../img/Bg_commnet.jpg');
        	text-align: center;
        	background-position: center;
        	/* 确保图片居中 */

        }




        .testimonials-bg-icon {
        	position: absolute;
        	right: 10%;
        	top: 50%;
        	transform: translateY(-50%);
        	opacity: 0.08;
        }

        .testimonials-bg-icon svg {
        	width: 200px;
        	height: 200px;
        }

        .testimonials .section-title {
        	color: #fff;
        	margin-bottom: 0px;
        	text-align: center;
        }

        .testimonial-slider {
        	position: relative;
        	width: calc(100% - 120px);
        	margin: 40px auto;
        	text-align: center;
        }

        .testimonial-text {

        	color: #fff;
        	font-size: 16px;
        	font-weight: 600;
        	line-height: 1.8;
        	margin-bottom: 15px;
        }

        .testimonial-author {
        	color: rgba(255, 255, 255, 0.6);
        	font-size: 14px;
        }

        .testimonial-nav {
        	position: absolute;
        	top: 50%;
        	transform: translateY(-50%);
        	width: 40px;
        	height: 40px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	color: #fff;
        	font-size: 18px;
        	cursor: pointer;
        	transition: opacity 0.3s;
        }

        .testimonial-nav:hover {
        	opacity: 0.7;
        }

        .testimonial-nav.prev {
        	left: -50px;
        }

        .testimonial-nav.next {
        	right: -50px;
        }

        /* Partners */
        .partners {
        	padding: 50px 0;
        	border-bottom: 1px solid #f1f5f9;
        }

        .partners .section-title {
        	font-size: 18px;
        	font-weight: 600;
        	margin-bottom: 0px;
        }

        .partner-logos {
        	margin-top: 40px;
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        	gap: 30px;
        	flex-wrap: wrap;
        }

        .partner-logo {
        	width: auto;
        	height: 100px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	opacity: 0.6;
        	transition: opacity 0.3s;
        	cursor: pointer;
        }

        .partner-logo:hover {
        	opacity: 1;
        }






        /* Responsive */
        @media (max-width: 1024px) {
        	.service-cards {
        		display: flex;
        		float: left;
        		gap: 21px;
        		height: auto;
        		margin-bottom: 60px;
        	}



        	.service-card {}

        	.dest-grid,
        	.services-grid,
        	.why-grid {
        		grid-template-columns: repeat(2, 1fr);
        	}

        	.footer-grid {
        		grid-template-columns: repeat(2, 1fr);
        	}
        }

        @media (max-width: 768px) {


        	.swiper {

        		height: 375px;

        	}


        	.hero-content {

        		padding-top: 40%;
        		padding-left: 20px;
        		padding-right: 20px;
        	}

        	.service-cards {

        		width: 100%;
        		padding: 0 20px;

        		display: block;
        		float: none;

        		height: auto;
        		margin-bottom: 0px;

        	}

        	.service-card {
        		width: 100%;
        		width: auto;
        		margin-bottom: 20px;

        	}

        	.testimonial-slider {
        		position: relative;
        		width: 100%;

        	}

        	.testimonial-text {
        		text-align: center;
        		width: 80%;
        		margin-left: 10%;
        	}

        	/* Popular Destination */
        	.container {

        		padding: 0 20px;
        	}

        	.partner-logos {

        		gap: 40px;

        	}


        	.swiper {
        		width: 100%;
        		height: 400px;
        	}

        	.swiper-text {
        		width: 90%;
        		position: absolute;
        		left: 20px;
        		bottom: 60px;
        		z-index: 999;
        		color: #fff;

        	}

        	.swiper-slide-img {
        		/* display: block; */
        		width: auto;
        		height: 100%;
        		/* object-fit: cover; */
        	}

        	.swiper-text-title {
        		font-size: 18px;
        	}

        	.swiper-text-title2 {
        		font-size: 12px;
        		font-weight: 200;
        	}




        }