/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
	background-color: #1a1a1a;
	color: #ffffff;
	min-height: 100vh;
	padding-top: 84px;
	padding-bottom: 60px;
}

a {
	text-decoration: none;
	color: inherit;
}

/* 顶部导航栏 */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #1a1a1a;
}

.navbar-left {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 15vw;
}

.navbar-right {
	display: flex;
	gap: 16px;
	margin-right: 15vw;
}

.nav-btn-img {
	height: 44px;
	width: auto;
	transition: transform 0.2s;
	cursor: pointer;
}

.nav-btn-img:hover {
	transform: scale(1.05);
}

/* 主容器 */
.main-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding-top: 100px;
	padding-bottom: 80px;
}

/* 首页内容 */
.home-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.home-logo-img {
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: auto;
}

.main-title {
	font-size: 120px;
	font-weight: bold;
	color: #ffffff;
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 60px 0;
}

.main-title::before,
.main-title::after {
	content: '';
	position: absolute;
	width: 120px;
	height: 20px;
	background-color: #d94e2b;
	transform: rotate(-15deg);
}

.main-title::before {
	left: -80px;
	top: 20px;
}

.main-title::after {
	right: -80px;
	bottom: 20px;
}

.enter-btn-img {
	width: auto;
	height: 60px;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	margin-top: 40px;
}

.enter-btn-img:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 30px rgba(255, 141, 212, 0.5);
}

/* 公司简介页 */
.about-container {
	display: flex;
	min-height: calc(100vh - 140px);
	padding: 140px 60px 100px;
	gap: 60px;
	max-width: 1600px;
	margin: 0 auto;
}

.about-left {
	flex: 1;
	max-width: 1200px;
	padding-left: 60px;
}

.about-top-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.about-bottom-section {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.company-info {
	margin-bottom: 0;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	font-size: 18px;
}

.info-item .dot {
	width: 8px;
	height: 8px;
	background-color: #d94e2b;
	border-radius: 50%;
	flex-shrink: 0;
}

.about-text {
	line-height: 1.8;
	font-size: 15px;
	color: #e0e0e0;
}

.about-text p {
	margin-bottom: 24px;
	text-align: justify;
}

.about-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-direction: column;
}

.moki-name-img {
	width: 600px;
	height: auto;
}

.about-logo-img {
	width: 180px;
	height: auto;
	padding-bottom: 50px;
}

			.ct-hero {
				background: #FF6EB4;
				padding: 76px 56px 86px;
				position: relative;
				overflow: hidden;
			}

			.ct-title {
				font-size: clamp(52px, 8vw, 112px);
				font-weight: 900;
				line-height: 0.9;
				color: #1a1a1a;
				font-style: italic;
			}

			.ct-title span {
				display: block;
				color: #fff;
			}

			.ct-sub {
				font-size: 15px;
				color: rgba(26, 26, 26, 0.58);
				margin-top: 20px;
				max-width: 400px;
				line-height: 1.7;
			}

			.ct-badge {
				position: absolute;
				right: 8%;
				top: 50%;
				width: 164px;
				height: auto;
				animation: spin 22s linear infinite;
				transform-origin: center center;
			}

			@keyframes spin {
				from {
					transform: translateY(-50%) rotate(0deg);
				}

				to {
					transform: translateY(-50%) rotate(360deg);
				}
			}

			.ct-info {
				padding: 60px 52px;
				display: flex;
				flex-direction: column;
				align-items: center;
				margin-left: auto;
				margin-right: auto;
				width: fit-content;
			}

			.ct-info .ct-item {
				text-align: left;
				width: 100%;
			}

			.ct-info .ct-txt {
				text-align: left;
			}

			.ct-info h3 {
				font-size: 30px;
				font-weight: 900;
				color: #fff;
				margin-bottom: 36px;
			}

			.ct-item {
				display: flex;
				align-items: flex-start;
				gap: 15px;
				margin-bottom: 28px;
				max-width: 400px;
				margin-left: auto;
				margin-right: auto;
			}

			.ct-icon {
				width: 42px;
				height: 42px;
				background: rgba(255, 110, 180, 0.1);
				border: 1px solid rgba(255, 110, 180, 0.16);
				border-radius: 11px;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 18px;
				flex-shrink: 0;
			}

			.ct-txt h4 {
				font-size: 11px;
				color: rgba(255, 255, 255, 0.34);
				letter-spacing: 0.08em;
				font-weight: 500;
				margin-bottom: 5px;
			}

			.ct-txt p {
				font-size: 14px;
				color: #fff;
				font-weight: 500;
				line-height: 1.6;
			}
			
/* MARQUEE */
.mq-bar {
	background: #FF6EB4;
	overflow: hidden;
	white-space: nowrap;
	padding: 12px 0;
	position: fixed;
	bottom: 52px;
	left: 0;
	right: 0;
	z-index: 999;
}

.mq-inner {
	display: inline-flex;
	animation: scroll 24s linear infinite;
}

.mq-item {
	font-size: 19px;
	font-weight: 900;
	color: #1a1a1a;
	padding: 0 28px;
	letter-spacing: 0.07em;
}

.mq-sep {
	color: rgba(26, 26, 26, 0.32);
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* 页脚 */
.footer {
	text-align: center;
	padding: 20px;
	color: #666666;
	font-size: 14px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1a1a1a;
}

.footer a {
	color: #ff8dd4;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.navbar {
		padding: 15px 20px;
	}

	.navbar-left {
		margin-left: 0;
	}

	.navbar-right {
		margin-right: 0;
	}

	.logo-img {
		width: 40px;
		height: 40px;
	}

	.nav-btn-img {
		height: 36px;
	}

	.main-title {
		font-size: 60px;
	}

	.main-title::before,
	.main-title::after {
		width: 60px;
		height: 12px;
	}

	.enter-btn-img {
		height: 45px;
	}

	.about-container {
		flex-direction: column;
		padding: 120px 20px 40px;
	}

	.about-right {
		order: -1;
	}

	.about-logo-img {
		width: 150px;
	}
}