	:root {
		--primary-color: #c12c2c;
		--primary-light: #fdf0f0;
		--secondary-color: #2c3e50;
		--light-color: #f8f9fa;
		--dark-color: #1a1a1a;
		--gray-color: #6c757d;
		--success-color: #28a745;
	}

	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
	}

	:focus {
		outline: 0
	}

	a,
	input {
		outline: 0
	}

	a {
		text-decoration: none;
	}

	ol,
	ul {
		list-style: none
	}


	body {
		background-color: #f9fafb;
		color: var(--secondary-color);
		line-height: 1.6;
		padding-top: 70px;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.navbar-downloads {
		display: none;
	}

	.nav-logo-area {
		display: flex;
		align-items: center;
	}

	.placeholder {
		display: none;
	}

	/* 头部样式 */
	header {
		background: linear-gradient(135deg, var(--primary-color), #8a1b1b);
		color: white;
		padding: 100px 0 80px;
		text-align: center;
		position: relative;
		overflow: hidden;
		margin-top: -70px;
	}

	.header-content {
		position: relative;
	}

	.logo-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 40px;
	}

	.logo {
		font-size: 4.5rem;
		font-weight: bold;
		letter-spacing: 3px;
		margin-bottom: 15px;
		text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
	}

	.logo-en {
		font-size: 2rem;
		letter-spacing: 6px;
		margin-bottom: 30px;
		opacity: 0.9;
		font-weight: 300;
	}

	.slogan {
		font-size: 1.8rem;
		margin: 25px 0 40px;
		font-weight: 300;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}

	.header-features {
		display: flex;
		justify-content: center;
		gap: 50px;
		margin-top: 50px;
		flex-wrap: wrap;
	}

	.header-feature {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 220px;
	}

	.header-feature i {
		font-size: 3rem;
		margin-bottom: 20px;
		color: rgba(255, 255, 255, 0.9);
	}

	.header-feature span {
		text-align: center;
		font-size: 1.2rem;
	}

	.header-downloads {
		margin-top: 50px;
		display: flex;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.header-download-btn {
		padding: 15px 30px;
		border-radius: 50px;
		text-decoration: none;
		font-weight: bold;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		transition: all 0.3s;
		font-size: 1.1rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
		background: rgba(255, 255, 255, 0.2);
		color: white;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}

	.header-download-btn:hover {
		background: rgba(255, 255, 255, 0.3);
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	}

	/* 主内容区 */
	.hero {
		padding: 100px 0;
		text-align: center;
		background: white;
		position: relative;
	}

	.hero h1 {
		font-size: 3.2rem;
		margin-bottom: 30px;
		color: var(--primary-color);
		font-weight: 700;
	}

	.hero p {
		font-size: 1.4rem;
		max-width: 800px;
		margin: 0 auto 50px;
		color: var(--gray-color);
		font-weight: 300;
	}

	/* 特性展示 */
	.features {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px;
		margin: 70px 0;
	}

	.feature {
		flex: 1;
		min-width: 280px;
		max-width: 380px;
		background: white;
		border-radius: 16px;
		padding: 45px 35px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
		text-align: center;
		transition: all 0.3s ease;
		border-top: 5px solid var(--primary-color);
		position: relative;
		overflow: hidden;
	}

	.feature::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 5px;
		background: linear-gradient(to right, var(--primary-color), #a02020);
	}

	.feature:hover {
		transform: translateY(-10px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	}

	.feature-icon {
		font-size: 3.5rem;
		margin-bottom: 30px;
		color: var(--primary-color);
		background: var(--primary-light);
		width: 90px;
		height: 90px;
		line-height: 90px;
		border-radius: 50%;
		margin: 0 auto 30px;
	}

	.feature h3 {
		margin-bottom: 25px;
		color: var(--secondary-color);
		font-size: 1.6rem;
	}

	.feature p {
		color: var(--gray-color);
		font-size: 1.2rem;
		line-height: 1.7;
	}

	/* 播放器预览 */
	.player-preview {
		padding: 100px 0;
		background: var(--primary-light);
		text-align: center;
		position: relative;
	}

	.player-preview h2 {
		font-size: 2.8rem;
		margin-bottom: 25px;
		color: var(--secondary-color);
	}

	.player-preview p {
		font-size: 1.3rem;
		max-width: 700px;
		margin: 0 auto 60px;
		color: var(--gray-color);
	}

	.player-ui {
		max-width: 100%;
		margin: 0 auto;
		position: relative;
		width: 80%;
	}


	/* 用户评价 */
	.testimonials {
		padding: 100px 0;
		background: white;
		text-align: center;
	}

	.testimonials h2 {
		font-size: 2.8rem;
		margin-bottom: 60px;
		color: var(--secondary-color);
	}

	.testimonial-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 30px;
		margin-top: 50px;
	}

	.testimonial-card {
		background: white;
		border-radius: 16px;
		padding: 30px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		text-align: left;
		border-left: 4px solid var(--primary-color);
		position: relative;
		transition: transform 0.3s;
	}

	.testimonial-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	}

	.testimonial-text {
		font-style: italic;
		color: var(--gray-color);
		margin-bottom: 25px;
		line-height: 1.7;
		font-size: 1.1rem;
	}

	.testimonial-author {
		display: flex;
		align-items: center;
	}

	.author-avatar {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 15px;
		color: white;
		font-weight: bold;
		font-size: 1.2rem;
		overflow: hidden;
	}

	.avatar-1 {
		background-image: url('../../../img/product-hyplayer/avatar-1.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.avatar-2 {
		background-image: url('../../../img/product-hyplayer/avatar-2.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.avatar-3 {
		background-image: url('../../../img/product-hyplayer/avatar-3.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.avatar-4 {
		background-image: url('../../../img/product-hyplayer/avatar-4.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.avatar-5 {
		background-image: url('../../../img/product-hyplayer/avatar-5.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.avatar-6 {
		background-image: url('../../../img/product-hyplayer/avatar-6.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.author-info h4 {
		margin: 0;
		color: var(--secondary-color);
		font-size: 1.1rem;
		font-style: italic;
	}

	.author-info p {
		margin: 5px 0 0;
		color: var(--gray-color);
		font-size: 0.9rem;
	}

	.stars-container {
		gap: 4px;
		display: inline-flex;
		font-size: 14px;
	}

	.star.filled {
		color: #f9d342;
	}

	/* 下载区域 */
	.download-section {
		background: var(--dark-color);
		color: white;
		padding: 100px 0;
		text-align: center;
		position: relative;
	}

	.download-section h2 {
		font-size: 2.8rem;
		margin-bottom: 25px;
		font-weight: 700;
		white-space: nowrap;
	}

	.download-section p {
		font-size: 1.3rem;
		max-width: 700px;
		margin: 0 auto 50px;
		color: #ccc;
		font-weight: 300;
	}

	.download-options {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 25px;
		margin: 40px 0;
	}

	.download-btn {
		background: var(--primary-color);
		color: white;
		padding: 18px 35px;
		border-radius: 50px;
		text-decoration: none;
		font-weight: bold;
		display: inline-flex;
		align-items: center;
		gap: 12px;
		transition: all 0.3s;
		font-size: 1.1rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.download-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
		background: #a02020;
	}

	/* 产品速递 */
	.brands-section {
		padding: 80px 0;
		background: white;
		text-align: center;
	}

	.brands-section h2 {
		font-size: 2.5rem;
		margin-bottom: 40px;
		color: var(--secondary-color);
	}

	.brands-content {
		max-width: 1000px;
		margin: 0 auto;
		text-align: left;
		background: var(--primary-light);
		padding: 40px;
		border-radius: 12px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}

	.brand-title {
		font-size: 1.8rem;
		text-align: center;
		margin-bottom: 30px;
		color: var(--primary-color);
		font-weight: bold;
		letter-spacing: 5px;
	}

	.brand-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 30px;
		margin-top: 40px;
	}

	.brand-card {
		background: white;
		border-radius: 10px;
		padding: 25px;
		text-align: center;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		transition: transform 0.3s;
		cursor: pointer;
	}

	.brand-card:hover {
		transform: translateY(-5px);
	}

	.brand-card h3 {
		font-size: 1.4rem;
		color: var(--primary-color);
		margin-bottom: 15px;
	}

	.brand-card p {
		color: var(--gray-color);
		margin-bottom: 20px;
	}

	.brand-link {
		display: inline-block;
		color: var(--primary-color);
		text-decoration: none;
		font-weight: bold;
	}

	.brand-link:hover {
		text-decoration: underline;
	}

	.brand-card a:hover {
		color: var(--primary-color);
	}

	/* 响应式设计 */
	@media (max-width: 768px) {
		body {
			padding-top: 60px;
		}

		.navbar-logo-text {
			display: none;
		}

		.placeholder {
			display: block;
		}

		.navbar-downloads {
			gap: 10px;
			width: 100%;
			justify-content: center;
		}

		.navbar-btn {
			padding: 8px 15px;
			border-radius: 30px;
			text-decoration: none;
			font-weight: bold;
			font-size: 0.8rem;
			transition: all 0.3s;
			display: inline-flex;
			align-items: center;
			gap: 5px;
		}

		.navbar-btn.windows {
			background: var(--primary-color);
			color: white;
		}

		.navbar-btn.mobile {
			background: var(--secondary-color);
			color: white;
		}

		.features {
			flex-direction: column;
			align-items: center;
		}

		.feature {
			width: 100%;
		}

		.download-options {
			flex-direction: column;
		}

		.header-downloads {
			flex-direction: column;
		}

		.download-section h2 {
			font-size: 1.9rem;
		}

		.hero h1 {
			font-size: 2.2rem;
		}

		.player-header {
			flex-direction: column;
			gap: 15px;
		}

		.player-controls {
			flex-wrap: wrap;
			justify-content: center;
		}

		.brand-title {
			font-size: 1.4rem;
			letter-spacing: 3px;
		}

		.brand-grid {
			grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
		}

		.header-features {
			gap: 20px;
		}

		.header-feature {
			max-width: 140px;
		}

		.logo {
			font-size: 3rem;
		}

		.logo-en {
			font-size: 1.4rem;
		}

		.slogan {
			font-size: 1.3rem;
		}

		.testimonial-grid {
			grid-template-columns: 1fr;
		}
	}

	@media (min-width: 769px) {
		.navbar-downloads {
			display: none !important;
		}
	}

	@media (max-width: 320px) {
		.navbar-btn {
			font-size: 0.6rem;
		}
	}

	@media (max-width: 280px) {
		.navbar-btn {
			font-size: 0.4rem;
		}
	}

	@media (max-width: 240px) {
		.navbar-btn {
			font-size: 0.3rem;
		}
	}

	/* 顶部导航栏样式 */
	.top-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 75px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 10px;
		z-index: 1;
		transition: background-color 0.3s ease;
		background: rgba(255, 255, 255, 0.95);
		box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	}

	.top-nav.scrolled {
		/* background-color: rgba(0, 0, 0, 0.3); */
	}

	.top-nav a {
		color: #333;
		text-decoration: none
	}

	.nav-logo {
		height: 39px;
		width: auto;
		object-fit: contain;
		margin-right: 10px;
	}

	#head {
		display: none;
	}

	.mod-wrap {
		margin: 0 auto;
		overflow: hidden;
		position: relative;
		height: 45px;
		background: transparent;
		/* display: flex; */
		align-items: center;
		min-width: auto;
		justify-content: center;
	}

	.mod-header {
		height: 61px
	}

	.mod-header .head-wrap {
		position: fixed;
		width: 100%;
		height: 60px;
		line-height: 52px;
		overflow: visible;
		z-index: 100;
		-webkit-transition: all .2s ease 0s;
		-moz-transition: all .2s ease 0s;
		-o-transition: all .2s ease 0s;
		-ms-transition: all .2s ease 0s;
		transition: all .2s ease 0s
	}


	.mod-header .head-con {
		position: relative;
		overflow: visible
	}

	.mod-header .menu {
		float: right;
		margin-right: -17px;
		font-size: 16px
	}

	.mod-header .menu .current>a {
		color: #c12c2c;
		font-weight: 600
	}

	.mod-header .menu li {
		float: left;
		padding: 0 14px
	}

	.mod-header .menu .submenu {
		font-size: 14px;
		top: 50px;
		position: absolute;
		display: list-item;
		background-color: #262626;
		line-height: 40px;
		padding: 10px 10px;
		box-shadow: 0 0 50px rgba(200, 200, 200, 0.8);
		border-radius: 4px;
	}

	.mod-header .menu .submenu li {
		display: list-item;
		float: none;
	}

	.mod-header .menu .submenu a {
		color: #F2F2F2;
		padding: 0px;
		margin: 0px;
	}

	.mod-header .menu .submenu a:hover {
		color: #c12c2c !important;
		font-weight: 600;
	}

	.mod-header .menu a {
		display: inline-block;
		padding: 0 3px;
		color: #0a0a0a;
		border-top: 4px solid transparent
	}

	.mod-header .menu a:hover {
		color: #c12c2c !important;
		font-weight: 600;
	}

	.copyright {
		color: rgba(57, 57, 57, 1);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 17px;
		line-height: 50px;
		text-align: center;
		padding: 30px 10px;
	}

	.copyright a {
		color: rgba(57, 57, 57, 1);
		text-decoration: none;
	}

	.copyright a:hover {
		color: rgba(57, 57, 57, 1);
	}

	.downloadPcLink {
		cursor: pointer;
	}

	.downloadPhoneLink {
		cursor: pointer;
	}