/*@font-face {*/
/*	font-family: "NewsGothicMT";*/
/*	src: url("../assets/fonts/NewsGothicMT-Regular-CROVddVJ.woff2") format("woff2");*/
/*	font-weight: 400;*/
/*	font-style: normal;*/
/*	font-display: swap;*/
/*}*/

/*@font-face {*/
/*	font-family: "NewsGothicMT";*/
/*	src: url("../assets/fonts/NewsGothicMT-Bold-CYhNDfAO.woff2") format("woff2");*/
/*	font-weight: 700;*/
/*	font-style: normal;*/
/*	font-display: swap;*/
/*}*/

@font-face {
  font-family: "AlibabaSans";
  src: url("../assets/fonts/AlibabaSans-Light.ttf") format("truetype"); 
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AlibabaSans";
  src: url("../assets/fonts/AlibabaSans-Black.ttf") format("truetype"); 
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
	--color-bg: #0f1318;
	--color-surface: #161d24;
	--color-card: #1d2630;
	--color-border: #2a3542;
	--color-primary: #347BFF;
	--color-primary-hover: #6660ff;
	--color-text: #f4f6f8;
	--color-muted: #b0bbc7;
	--color-success: #33d39e;
	--shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.2);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--space-1: 8px;
	--space-2: 12px;
	--space-3: 16px;
	--space-4: 24px;
	--space-5: 32px;
	--space-6: 48px;
	--container: 1200px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	/*font-family: "NewsGothicMT", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;*/
	font-family: "AlibabaSans", sans-serif;
	background: linear-gradient(180deg, #0b1014 0%, #121920 100%);
	color: var(--color-text);
	overflow-x: hidden;
	font-weight: 400;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: min(var(--container), calc(100% - 32px));
	margin: 0 auto;
}

.site-topbar {
	background: #1a1a1a;
	color: #aab2bd;
	font-size: 13px;
	padding: 8px 0;
}

.site-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar-currency {
	display: flex;
	align-items: center;
	gap: 8px;
}

.topbar-currency-label {
	margin-right: 4px;
}

.topbar-currency-item {
	cursor: pointer;
	transition: color 0.2s;
}

.topbar-currency-item:hover {
	color: #fff;
}

.topbar-currency-item.is-active {
	color: #347BFF;
	font-weight: 700;
}

.topbar-features {
	display: flex;
	align-items: center;
	gap: 24px;
}

.topbar-feature-item {
	display: flex;
	align-items: center;
	color: #e0e0e0;
	font-style: italic;
}

.topbar-check-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #347BFF;
	-webkit-mask-image: url('../assets/icons/duihao_icon.svg');
	mask-image: url('../assets/icons/duihao_icon.svg');
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	margin-right: 6px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(15, 19, 24, 0.9);
	backdrop-filter: blur(8px);
}

.site-header-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.brand span {
	color: var(--color-primary);
}

.brand-logo {
	height: 50px;
	width: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

.main-nav a {
	padding: 14px;
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dropdown-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #ffffff;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: background-color 0.2s ease;
	transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-icon {
	background-color: var(--color-primary);
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: #161d24;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 10px 0;
	min-width: 200px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	z-index: 100;
	margin: 0;
}

.has-dropdown:hover > .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
	position: relative;
	width: 100%;
}

.dropdown-menu .dropdown-menu {
	top: 0;
	left: 100%;
	transform: translateX(10px);
	opacity: 0;
	visibility: hidden;
	min-width: 220px;
}

.dropdown-menu li:hover > .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.dropdown-menu a {
	display: block;
	padding: 10px 20px !important;
	border-radius: 0 !important;
	font-size: 14px !important;
	color: var(--color-muted) !important;
	white-space: nowrap;
}

.dropdown-menu a:hover {
	background: rgba(23, 120, 255, 0.1);
	color: var(--color-primary) !important;
}

.main-nav a:hover,
.main-nav a.active {
	color: var(--color-primary);
}

.header-actions {
	display: flex;
	gap: 10px;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: #141b22;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span {
	width: 18px;
	height: 2px;
	background: var(--color-text);
	border-radius: 999px;
}

.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 70;
}

.mobile-nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(86vw, 360px);
	height: 100vh;
	background: #111821;
	border-left: 1px solid var(--color-border);
	box-shadow: -12px 0 36px rgba(0, 0, 0, 0.32);
	transform: translateX(100%);
	transition: transform 0.25s ease;
	z-index: 80;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mobile-nav-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav-close {
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #19232d;
	color: var(--color-text);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.mobile-nav-links {
	display: grid;
	gap: 8px;
}

.mobile-nav-links a {
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	color: var(--color-muted);
	border: 1px solid transparent;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
	color: var(--color-text);
	border-color: var(--color-primary);
	background: rgba(255, 237, 0, 0.1);
}

.mobile-nav-links .dropdown-icon {
	display: none;
}

.mobile-nav-links .dropdown-menu {
	position: static;
	top: auto;
	left: auto;
	transform: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0 0 6px;
	min-width: 0;
	opacity: 1;
	visibility: visible;
	transition: none;
	box-shadow: none;
}

.mobile-nav-links .has-dropdown>a {
	font-weight: 600;
	color: var(--color-text);
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-links .dropdown-menu a {
	padding: 8px 12px 8px 28px !important;
	font-size: 13px !important;
	color: var(--color-muted) !important;
	border: 1px solid transparent;
	background: transparent !important;
}

.mobile-nav-links .dropdown-menu a:hover,
.mobile-nav-links .dropdown-menu a:focus-visible {
	color: var(--color-text) !important;
	border-color: rgba(23, 120, 255, 0.45);
	background: rgba(23, 120, 255, 0.08) !important;
}

.mobile-nav-actions {
	margin-top: auto;
	display: grid;
	gap: 10px;
}

/* Category tree styles */
.category-tree {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.category-tree .tree-toggle,
.category-tree .tree-leaf {
	display: block;
	width: 100%;
	text-align: left;
	padding: 8px 10px;
	border: 0;
	outline: none;
	background: transparent;
	cursor: pointer;
	border-radius: var(--radius-sm);
}

.category-tree .tree-toggle {
	color: #347BFF;
	font-weight: 600;
}

.category-tree .tree-leaf {
	color: #ffffff;
}

.category-tree .tree-level {
	list-style: none;
	padding: 0 0 0 16px;
	margin: 6px 0 0 0;
	display: grid;
	gap: 4px;
	border-left: 1px dashed rgba(255, 255, 255, 0.12);
}

.category-tree .is-selected {
	background: #347BFF;
	color: #111 !important;
}

.search-bar {
	display: flex;
	gap: 10px;
	align-items: center;
}

.search-bar .search-input {
	flex: 1;
	min-width: 240px;
	padding: 10px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: transparent;
	color: var(--color-text);
}

.search-bar .search-input::placeholder {
	color: var(--color-muted);
}

.btn-search {
	color: #111;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.btn-search:hover {
	background: var(--color-primary-hover);
}

.btn-reset {
	color: var(--color-primary);
	background: transparent;
	border: 1px solid #ffffff;
}

.btn-reset:hover {
	background: rgba(255, 237, 0, 0.1);
}

.paginator-arrow {
	width: 22px;
	height: 22px;
	display: block;
	background-color: #ffffff;
	-webkit-mask-image: url("../assets/icons/arrow1.svg");
	mask-image: url("../assets/icons/arrow1.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.paginator-arrow-left {
	transform: scaleX(-1);
}

body.drawer-open {
	overflow: hidden;
}

body.drawer-open .mobile-nav-overlay {
	opacity: 1;
	pointer-events: auto;
}

body.drawer-open .mobile-nav-drawer {
	transform: translateX(0);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-primary {
	color: #111;
	background: var(--color-primary);
}

.btn-primary:hover {
	background: var(--color-primary-hover);
}

.btn-ghost {
	color: var(--color-text);
	border: 1px solid var(--color-border);
	background: transparent;
}

.btn-ghost:hover {
	border-color: var(--color-primary);
}

.page-title {
	padding: var(--space-5) 0 var(--space-3);
}

.page-title h1 {
	margin: 0 0 var(--space-2);
	font-size: clamp(28px, 4vw, 44px);
	text-decoration-line: underline;
	text-decoration-color: var(--color-primary);
	text-underline-offset: 30px;
	text-decoration-thickness: 4px;
}

.page-title p {
	margin: 0;
	color: var(--color-muted);
	max-width: 720px;
}

.breadcrumbs {
	color: var(--color-muted);
	font-size: 14px;
	padding: 20px 0;
}

.breadcrumbs span {
	margin: 0 6px;
}

.breadcrumbs {
	color: var(--color-muted);
	font-size: 14px;
}

.breadcrumbs span {
	margin: 0 6px;
}

.section {
	padding: var(--space-6) 0;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: var(--space-4);
}

.section-header h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
}

.section-header p {
	margin: 8px 0 0;
	color: var(--color-muted);
}

.card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04));
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.grid {
	display: grid;
	gap: var(--space-3);
}

.home-gallery-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}

.gallery-item {
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--color-surface);
	aspect-ratio: 4 / 3;
}

.gallery-thumb {
	width: 100%;
	height: 100%;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-thumb img {
	transform: scale(1.05);
}

@media (max-width: 1024px) {
	.home-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.home-gallery-grid {
		grid-template-columns: 1fr;
	}
}

.site-footer {
	background: #1e1e1e;
	padding: 0 0 var(--space-5);
	margin-top: var(--space-6);
	color: #a0a0a0;
	font-size: 14px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 0;
	margin-bottom: 40px;
	background: #181818;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
}

.footer-top-left {
	display: flex;
	align-items: center;
	gap: 80px;
}

.footer-top-left h2 {
	margin: 0;
	font-size: 36px;
	color: #dadada;
	line-height: 1.1;
	position: relative;
	text-align: right;
}

.footer-top-left h2::after {
	content: "";
	position: absolute;
	right: -50px;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--color-primary);
}

.footer-top-left p {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	color: #dadada;
}

.footer-top-right {
	display: flex;
	gap: 40px;
	align-items: center;
}

.social-icon {
	display: inline-block;
	width: 54px;
	height: 54px;
	background-color: #434343;
	transition: background-color 0.2s ease;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.social-icon:hover {
	background-color: #ffffff;
}

.social-icon-linkedin {
	-webkit-mask-image: url("../assets/images/common/linkedin.svg");
	mask-image: url("../assets/images/common/linkedin.svg");
}

.social-icon-youtube {
	-webkit-mask-image: url("../assets/images/common/youtube.svg");
	mask-image: url("../assets/images/common/youtube.svg");
}

.social-icon-facebook {
	-webkit-mask-image: url("../assets/images/common/facebook.svg");
	mask-image: url("../assets/images/common/facebook.svg");
}

.social-icon-instagram {
	-webkit-mask-image: url("../assets/images/common/instagram.svg");
	mask-image: url("../assets/images/common/instagram.svg");
}

.social-icon-tiktok {
	-webkit-mask-image: url("../assets/images/common/tiktok.svg");
	mask-image: url("../assets/images/common/tiktok.svg");
}

.site-footer-grid {
	display: grid;
	grid-template-columns: 2.5fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer-brand .brand-logo {
	height: 120px;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}

.footer-brand p {
	line-height: 1.6;
	margin-bottom: 24px;
}

.footer-badges {
	display: flex;
	gap: 16px;
	align-items: center;
}

.footer-badges img {
	height: 40px;
	width: auto;
}

.footer-links h4,
.footer-newsletter h4 {
	color: #fff;
	font-size: 16px;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.footer-newsletter h4 {
	display: inline-block;
	border-bottom: 2px solid var(--color-primary);
	padding-bottom: 4px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.footer-links a {
	color: #a0a0a0;
	transition: color 0.2s;
	font-size: 14px;
}

.footer-links a:hover {
	color: var(--color-primary);
}

.footer-links .mt-4 {
	margin-top: 32px;
}

.footer-links .mt-2 {
	margin-top: 16px;
}

.footer-links .footer-contact {
	line-height: 1.5;
	font-size: 16px;
	margin-bottom: 24px;
}

.footer-links span {
	color: #ffffff;
}

.footer-newsletter p {
	margin: 0 0 20px;
	line-height: 1.5;
}

.newsletter-form {
	display: grid;
	gap: 12px;
}

.newsletter-form input {
	width: 100%;
	height: 40px;
	padding: 0 12px;
	border: none;
	border-radius: 2px;
	background: #fff;
	color: #333;
	font-family: inherit;
}

.newsletter-input-group {
	display: flex;
	gap: 8px;
}

.newsletter-input-group button {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 2px;
	background: var(--color-primary);
	color: #111;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
}

.newsletter-input-group button:hover {
	background: #fff47a;
}

.empty-state {
	padding: var(--space-5);
	text-align: center;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-muted);
}

@media (max-width: 1024px) {
	.site-header-inner {
		min-height: 64px;
		padding: 8px 0;
		gap: 12px;
	}

	.main-nav {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.footer-top {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
		padding: 30px 20px;
	}

	.footer-top-left {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.footer-top-left h2::after {
		display: none;
	}

	.site-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 640px) {
	.site-header-inner {
		min-height: 60px;
	}
	
	.site-topbar-inner {
		justify-content: center;
		flex-direction: column;
		gap: 8px;
	}
	
	.topbar-features {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

	.container {
		width: min(var(--container), calc(100% - 20px));
	}

	.header-actions {
		display: none;
	}

	.section {
		padding: 36px 0;
	}

	.site-footer-grid {
		grid-template-columns: 1fr;
	}
}

