body {
	background: #FFf;
}

.responsive-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.banner-wrapper {
	position: relative;
	width: 100%;
	height: 658px;
}

.banner-wrapper .m-width {
	min-width: 1000px;
}

.banner-wrapper .wrapper-container {
	width: 75%;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.banner-wrapper .wrapper-container .title1 {
	color: #171717;
	font-size: 64px;
	font-weight: 600;
}

.banner-wrapper .wrapper-container .title2 {
	color: #171717;
	font-size: 36px;
	font-weight: 400;
	margin: 20px 0;
}

.banner-wrapper .wrapper-container .bg-icon {
	width: 340px;
	height: 338px;
	transform: translateY(30px) translateX(-60px);
}

.btn-subscribe-now {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	height: 62px;
	justify-content: center;
	border-radius: 60px;
	border: 0.5px solid #D0D5DD;
	background: linear-gradient(90deg, #00AAF3 5.05%, #17E4E7 93.99%);
	font-size: 24px;
	font-weight: 500;
	width: 208px;
}

.product-title {
	text-align: center;
	padding: 100px 0 50px 0;
}

.product-title div {
	color: #151B22;
	font-size: 48px;
	font-weight: 700;
}

.product-title p {
	color: rgba(36, 46, 58, 0.70);
	font-size: 20px;
	font-weight: 400;
}

@media (max-width: 576px) {
	.btn-subscribe-now {
		padding: 6px 12px;
		font-size: 12px;
		width: 104px;
		height: 31px;
	}

	.btn-subscribe-now img {
		height: 15px !important;
	}

	.product-title {
		text-align: center;
		padding: 25px 0 12px 0;
	}

	.product-title div {
		color: #151B22;
		font-size: 24px;
		font-weight: 700;
	}

	.product-title p {
		color: rgba(36, 46, 58, 0.70);
		font-size: 12px;
		font-weight: 400;
	}
}


/* 套餐容器 */
.package-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 100px;
}

/* 套餐列表空状态（基础样式见 header.css） */
.package-container .table-empty {
	width: 100%;
	flex: 1 1 100%;
	min-height: 320px;
	background: #fff;

}

/* 套餐卡片基础样式 */
.package-card {
	flex: 1 1 300px;
	max-width: 380px;
	border-radius: 24px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	border: 3px solid transparent;
}

/* 卡片头部渐变 */
.card-header {
	background: linear-gradient(135deg, #00b4f0 0%, #14e8d8 100%);
	padding: 1.5rem;
	text-align: center;
	color: #ffffff;
}

.card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-price {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.card-price small {
	font-size: 1.5rem;
	font-weight: 500;
}

.card-desc {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-top: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;   /* 👈 上下居中 */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 52px;
    height: 52px;
}
/* 卡片内容区 */
.card-body {
	padding: 2rem 1.5rem;
}

.feature-list {
	list-style: none;
	margin-bottom: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	font-size: 1.1rem;
	color: #333333;
	margin-bottom: 1.2rem;
	line-height: 1.5;
	gap: 10px;
}


/* 按钮样式 */
.btn-buy {
	width: 100%;
	padding: 0.8rem 0;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-outline {
	border: 2px solid #00b4f0;
	color: #00b4f0;
	background: transparent;
}

.btn-outline:hover {
	background: #00b4f0;
	color: #ffffff;
}

.btn-filled {
	background: linear-gradient(135deg, #00b4f0 0%, #14e8d8 100%);
	border: none;
	color: #ffffff;
}

.btn-filled:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* 选中态高亮（标准套餐默认选中） */
.package-card.active {
	border: 3px solid #00b4f0;
	box-shadow: 0 0 20px rgba(0, 180, 240, 0.3);
	transform: translateY(-3px);
}

/* 响应式适配 */
@media (max-width: 992px) {
	.package-container {
		gap: 1rem;
	}

	.package-card {
		flex: 1 1 280px;
	}

	.banner-wrapper {
		height: 329px;
	}

	.banner-wrapper .wrapper-container .title1 {
		font-size: 14px;
	}

	.banner-wrapper .wrapper-container .title2 {
		font-size: 13px;
	}

	.banner-wrapper .wrapper-container .bg-icon {
		width: 120px;
		height: 118px;
	}

	.banner-wrapper .wrapper-container {
		bottom: 40px;
	}

	.banner-wrapper .m-width {
		min-width: auto;
	}
}

@media (max-width: 768px) {
	.package-card {
		flex: 1 1 100%;
		max-width: 450px;
	}

	.card-price {
		font-size: 2.2rem;
	}

	.card-price small {
		font-size: 1.3rem;
	}

	.banner-wrapper {
		height: 329px;
	}

	.banner-wrapper .wrapper-container .title1 {
		font-size: 14px;
	}

	.banner-wrapper .wrapper-container .title2 {
		font-size: 13px;
	}

	.banner-wrapper .wrapper-container .bg-icon {
		width: 120px;
		height: 118px;
	}

	.banner-wrapper .wrapper-container {
		bottom: 40px;
	}

	.banner-wrapper .m-width {
		min-width: auto;
	}
}