@import url('../reset.css');

/* 重置样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	color: #222;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: #222;
}

.clearfix::after {
	content: '';
	display: table;
	clear: both;
}

/* 头部样式 */
#A9-header {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	/* 模糊度，数值越大越模糊 */
	-webkit-backdrop-filter: blur(10px);
	/* 兼容Safari浏览器 */
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	box-shadow: 0 0 2px rgb(100 100 100 / 12%);
}

#A9-header .A9-header-con {
	width: 96%;
	height: 66px;
	line-height: 66px;
	margin: 0 2%;
	position: relative;
}

#A9-header .A9-header-con .A9-l-b {
	float: left;
	position: relative;
	top: 17px;
}

#A9-header .A9-header-con .A9-l-b .A9-logo {
	display: block;
}

#A9-header .A9-header-con .A9-l-b .A9-logo img {
	display: block;
	width: 134px;
	height: 32px;
}

#A9-header .A9-header-con .A9-c-b {
	float: left;
	height: 100%;
	margin-left: 30px;
}

#A9-header .A9-header-con .A9-c-b .A9-nav {
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort {
	float: left;
	position: relative;
	margin-top: 0;
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort:hover .A9-drop-down-box {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort>a {
	font-size: 14px;
	display: block;
	position: relative;
	padding: 0 4px;
	margin: 0 14px;
	border-radius: 0;
	font-weight: bold;
	height: 66px;
	line-height: 66px;
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort>a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	display: none;
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort:hover>a:after {
	display: block;
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort:hover>a {
	color: var(--primary-color);
}

#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort>a i {
	font-size: 12px;
	display: inline-block;
	margin-left: 4px;
}

#A9-header .A9-header-con .A9-r-b {
	float: right;
	height: 100%;
}

#A9-header .A9-header-con .A9-r-b .A9-no-w {
	height: 66px;
	float: right;
	margin-left: 22px;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	flex-direction: row;
	position: relative;
}

#A9-header .A9-header-con .A9-r-b .A9-no-w .A9-a1 {
	padding-right: 0;
}

#A9-header .A9-header-con .A9-r-b .A9-no-w a {
	display: block;
	padding: 0px 14px;
	height: 34px;
	line-height: 34px;
	float: left;
	border-radius: 6px;
	color: #222;
	font-size: 14px;
	font-weight: bold;
	transition: all .2s;
}

#A9-header .A9-header-con .A9-r-b .A9-no-w a:hover {
	color: var(--primary-color);
	transform: translateY(-1px);
}

/* 3D 按钮效果（克制） - 免费注册 */
#A9-header .A9-header-con .A9-r-b .A9-no-w .A9-zz {
	background: linear-gradient(180deg, var(--primary-color), #004bb5);
	color: #fff !important;
	border: none;
	border-radius: 6px;
	box-shadow: 0 3px 0 #003d94, 0 4px 8px rgba(0, 71, 204, 0.22);
	transform: translateY(0);
	transition: all .15s;
	margin-left: 8px;
}

#A9-header .A9-header-con .A9-r-b .A9-no-w .A9-zz:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 0 #003d94, 0 6px 12px rgba(0, 71, 204, 0.28);
}

#A9-header .A9-header-con .A9-r-b .A9-no-w .A9-zz:active {
	transform: translateY(2px);
	box-shadow: 0 1px 0 #003d94, 0 2px 4px rgba(0, 71, 204, 0.22);
}

#A9-header .A9-header-con .A9-r-b .A9-search-box {
	float: left;
	margin: 13px 10px 0 0;
}

#A9-header .A9-header-con .A9-r-b .A9-search-box form {
	height: 100%;
	position: relative;
}

#A9-header .A9-header-con .A9-r-b .A9-search-box form input {
	display: block;
	width: 200px;
	height: 38px;
	border: none;
	border-radius: 6px;
	outline: none;
	padding: 0 16px;
	font-size: 12px;
	color: var(--primary-color);
	background: #f5f9f8;
	position: relative;
}

#A9-header .A9-header-con .A9-r-b .A9-search-box form input::placeholder {
	font-size: 13px;
	color: #9bc6b8;
}

#A9-header .A9-header-con .A9-r-b .A9-search-box form button {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
}

#A9-header .A9-header-con .A9-r-b .A9-search-box form button .t-icon {
	font-size: 14px;
	color: var(--primary-color);
	width: 18px;
	height: 18px;
}

#A9-header .A9-header-con .A9-drop-down-box {
	width: 100%;
	position: fixed;
	box-sizing: border-box;
	left: 0;
	border-top: 1px solid #f5f9f8;
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0) scale(1);
	box-shadow: 0px 13px 7px rgb(100 100 100 / 10%);
	transition: all 0.3s ease;
}

#A9-header .A9-header-con .A9-drop-down-box.A9-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

#A9-header .A9-header-con .A9-drop-down-box:after {
	content: "";
	display: block;
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
	background: #f3f5f8;
	z-index: 1;
}

.A9-Secondary-Dropdown-Effect_2 {
	width: 77%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	position: relative;
	z-index: 2;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box {
	width: 268px;
	position: relative;
	padding: 20px 40px 40px 0;
	box-sizing: border-box;
	background: #f3f5f8 url(static/images/drop-down-left-bg.jpg) no-repeat right bottom;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-drop-down-left-title {
	padding-top: 30px;
	padding: 0 20px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-drop-down-left-title .A9-ico {
	display: block;
	width: 100px;
	height: 100px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	position: relative;
	left: -24px;
	margin-top: 18px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-drop-down-left-title h3 {
	font-size: 20px;
	height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
	padding: 0;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-drop-down-left-title p {
	font-size: 14px;
	line-height: 20px;
	opacity: .5;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box ul {
	margin-top: 10px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box ul li {
	height: 34px;
	line-height: 34px;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 10px;
	padding: 0 20px;
	font-size: 16px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box ul li:hover,
.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box ul li.A9-active {
	color: var(--primary-color);
	border: solid 1px var(--primary-color);
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-infor-bottm {
	padding: 0 20px;
	margin-top: 80px;
	width: 106%;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-infor-bottm>a {
	height: 20px;
	line-height: 20px;
	display: block;
	font-size: 14px;
	color: #888;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-left-box .A9-infor-bottm h3 {
	height: 20px;
	line-height: 20px;
	margin-top: 10px;
	font-size: 16px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box {
	width: calc(100% - 268px);
	background: #fff;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box .A9-Switch-Content-Box {
	width: 96%;
	float: right;
	display: none;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box .A9-Switch-Content-Box.A9-active {
	display: block;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box .A9-top-title {
	border-bottom: 1px solid #eeeeee;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box .A9-top-title p {
	font-size: 24px;
	line-height: 24px;
	color: #222;
	padding: 38px 0 22px;
	display: block;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li {
	width: 23.5%;
	box-sizing: border-box;
	margin-right: 2%;
	border: 1px solid #eeeeee;
	padding: 20px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li:hover {
	border: 1px solid var(--primary-color);
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li:nth-child(4n) {
	margin-right: 0;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	align-content: flex-start;
	margin-top: 10px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li {
	margin-top: 16px;
	margin-bottom: 6px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li h4 {
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	font-weight: normal;
	color: #222;
	position: relative;
	display: -webkit-flex;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li:hover h4 {
	color: var(--primary-color);
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li h4 span {
	display: inline-block;
	background: #fb0707;
	color: #fff;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	padding: 0 4px;
	border-radius: 5px;
	transform: scale(0.88);
	position: relative;
	top: 4px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li h4 span.A9-not-i {
	background: #d4d4d4;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li h4 span.A9-hot-i {
	display: inline-block;
	background: #fb0707;
	color: #fff;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	padding: 0 4px;
	border-radius: 5px;
	transform: scale(0.88);
	position: relative;
	top: 4px;
}

.A9-Secondary-Dropdown-Effect_2 .A9-secondary-right-box ul li p {
	line-height: 20px;
	font-size: 12px;
	color: #999;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* 移动端导航 */
#A9-mobile-header {
	justify-content: space-between;
	align-items: stretch;
	padding: 0 2% 0 3%;
	height: 66px;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border-bottom: 1px solid #f2f2f2;
	z-index: 50;
}

#A9-mobile-header .A9-l-b {
	width: 60%;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}

#A9-mobile-header .A9-l-b a {
	display: block;
}

#A9-mobile-header .A9-l-b a img {
	display: block;
	width: 100%;
}

#A9-mobile-header .A9-r-b {
	width: 200px;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}

#A9-mobile-header .A9-r-b a.A9-touxiang {
	width: 200px;
	height: 44px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: flex-end;
	align-items: center;
	margin-right: 10px;
}

#A9-mobile-header .A9-r-b a.A9-touxiang i,
#A9-mobile-header .A9-r-b a.A9-touxiang svg.t-icon {
	font-size: 32px;
	width: 32px;
	height: 32px;
	color: var(--primary-color);
}

#A9-mobile-header .A9-r-b a.A9-touxiang span {
	font-size: 15px;
	color: #222;
	display: block;
}

#A9-mobile-header .A9-r-b a.A9-cd {
	position: relative;
	z-index: 1;
	top: 0;
	margin-left: 0;
	width: 44px;
	height: 44px;
	display: block;
	outline: none;
}

#A9-mobile-header .A9-r-b a.A9-cd i {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	height: 3px;
	width: 24px;
	background: var(--primary-color);
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: all .3s;
}

#A9-mobile-header .A9-r-b a.A9-cd i:nth-child(1) {
	margin-top: -8px;
}

#A9-mobile-header .A9-r-b a.A9-cd i:nth-child(3) {
	margin-top: 8px;
}

#A9-mobile-header .A9-r-b a.A9-cd.A9-on i:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
	margin-top: 0;
}

#A9-mobile-header .A9-r-b a.A9-cd.A9-on i:nth-child(2) {
	opacity: 0;
}

#A9-mobile-header .A9-r-b a.A9-cd.A9-on i:nth-child(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
	margin-top: 0;
}

.A9-m-menubar {
	position: fixed;
	top: 66px;
	z-index: 999;
	background: #fff;
	width: 100%;
	height: calc(100% - 66px);
	transform: scale(1, 0);
	overflow-x: hidden;
	overflow-y: auto;
	transform-origin: 50% 0;
	transition: all .2s;
}

.A9-m-menubar.A9-on {
	transform: scale(1, 1);
}

.A9-m-menubar ul>li {
	padding: 0;
	width: 100%;
	margin: 0 auto;
	border-bottom: 1px solid #f2f2f2;
	position: relative;
}

.A9-m-menubar ul>li>a {
	display: block;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	padding: 0 5%;
	font-weight: bold;
}

.A9-m-menubar ul>li>i,
.A9-m-menubar ul>li>svg.t-icon {
	position: absolute;
	right: 16px;
	top: 9px;
	font-size: 30px;
	color: #a9a9a9;
	transition: all .2s;
}

.A9-m-menubar ul>li.A9-down>i,
.A9-m-menubar ul>li.A9-down>svg.t-icon {
	transform: rotate(90deg);
}

.A9-m-menubar ul>li .A9-dropmenu {
	padding-left: 0;
	display: none;
	background: #f8f8f8;
}

.A9-m-menubar ul>li .A9-dropmenu a {
	display: block;
	border-top: 1px solid #f2f2f2;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	padding-left: 10%;
	font-weight: bold;
}

/* 云服务固定框 */
.A9-Cloud-Services-fixed-box {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
}

.A9-Cloud-Services-fixed-box .A9-cser-box {
	position: relative;
	margin-bottom: 10px;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-ico-box {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-ico-box i {
	font-size: 24px;
	color: #fff;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-ico-box p {
	font-size: 12px;
	color: #fff;
	margin-top: 2px;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-Sliding-Box {
	position: absolute;
	right: 60px;
	top: 0;
	display: none;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgb(100 100 100 / 10%);
	padding: 10px;
}

.A9-Cloud-Services-fixed-box .A9-cser-box:hover .A9-Sliding-Box {
	display: block;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-QQ-content .A9-qq-item a {
	display: block;
	padding: 10px;
	border-bottom: 1px solid #f2f2f2;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-QQ-content .A9-qq-item a:last-child {
	border-bottom: none;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-QQ-content .A9-qq-item a span {
	display: block;
	font-size: 14px;
	color: #222;
}

.A9-Cloud-Services-fixed-box .A9-cser-box .A9-QQ-content .A9-qq-item a p {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

.A9-Cloud-Services-fixed-box .A9-to-top-btn {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	margin-top: 10px;
}

.A9-Cloud-Services-fixed-box .A9-to-top-btn i {
	font-size: 24px;
	color: #fff;
}

.A9-Cloud-Services-fixed-box .A9-to-top-btn p {
	font-size: 12px;
	color: #fff;
	margin-top: 2px;
}

/* 大 banner */
.A9-Big-Banner {
	position: relative;
	margin-top: 66px;
	width: 100%;
	overflow: hidden;
}

.A9-Big-Banner .swiper-wrapper .swiper-slide {
	height: 600px;
	position: relative;
	overflow: hidden;
	background-size: cover !important;
}

.A9-Big-Banner .swiper-wrapper .swiper-slide a {
	display: block;
}

.A9-Big-Banner .swiper-wrapper .swiper-slide .video-background {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	object-fit: cover;
}

.A9-Big-Banner .text-con {
	position: absolute;
	left: 50%;
	top: 86px;
	width: 1280px;
	z-index: 2;
	transform: translateX(-50%);
}

.A9-Big-Banner .text-con h4 {
	font-weight: normal;
	font-size: 0;
}

.A9-Big-Banner .text-con h4 span {
	display: inline-block;
	background: var(--primary-color);
	color: #fff;
	height: 21px;
	line-height: 21px;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 12px;
	margin-right: 8px;
}

.A9-Big-Banner .text-con h3 {
	font-size: 48px;
	line-height: 54px;
	font-weight: bold;
	margin: 10px 0 18px;
}

.A9-Big-Banner .text-con p {
	font-size: 16px;
	line-height: 24px;
	color: #000;
	opacity: .5;
	width: 700px;
}

.A9-Big-Banner .text-con .A9-more {
	width: 130px;
	height: 46px;
	border: 1px solid var(--primary-color);
	display: -webkit-flex;
	display: flex;
	align-items: center;
	background: var(--primary-color);
	border-radius: 10px;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	margin-top: 30px;
}

.A9-Big-Banner .swiper-pagination {
	width: 1280px;
	bottom: 146px;
	left: 50%;
	transform: translateX(-50%);
	text-align: left;
}

.A9-Big-Banner .swiper-pagination-bullet {
	width: 30px;
	height: 4px;
	border-radius: 0;
	background: #fff;
	opacity: 1;
	position: relative;
}

.A9-Big-Banner .swiper-pagination-bullet:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 100%;
	background: var(--primary-color);
}

.A9-Big-Banner .swiper-pagination-bullet-active:after {
	animation: scDonghua01 4s linear forwards;
}

@keyframes scDonghua01 {
	0% {
		width: 0
	}

	to {
		width: 100%
	}
}

.A9-Big-Banner .text-Bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	background: rgba(255, 255, 255, .65);
}

.A9-Big-Banner .text-Bar ul {
	width: 1280px;
	margin: 0 auto;
}

.A9-Big-Banner .text-Bar ul li {
	float: left;
	width: 25%;
	box-sizing: border-box;
	padding: 0 30px;
	height: 100px;
	-webkit-transition: 0.23s;
	-moz-transition: 0.23s;
	transition: 0.23s;
}

.A9-Big-Banner .text-Bar ul li:hover {
	background: rgba(255, 255, 255, .7);
}

.A9-Big-Banner .text-Bar ul li>a {
	height: 100%;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.A9-Big-Banner .text-Bar ul li .A9-wen {
	margin-left: 10px;
}

.A9-Big-Banner .text-Bar ul li .A9-wen h5 {
	font-size: 18px;
	font-weight: 500;
	color: #111;
	-webkit-transition: 0.23s;
	-moz-transition: 0.23s;
	transition: 0.23s;
}

.A9-Big-Banner .text-Bar ul li:hover h5 {
	color: var(--primary-color);
}

.A9-Big-Banner .text-Bar ul li .A9-wen p {
	font-size: 13px;
	color: #999999;
}

/* 登录后用户区域（PC端） */
#A9-header .A9-header-con .A9-r-b .A9-logged-in {
	height: 66px;
	float: right;
	margin-left: 22px;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 14px;
	position: relative;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-a1 {
	display: block;
	padding: 0 14px;
	height: 34px;
	line-height: 34px;
	border-radius: 30px;
	color: #222;
	font-size: 14px;
	font-weight: bold;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-a1:hover {
	color: var(--primary-color);
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in em {
	display: inline-block;
	width: 1px;
	height: 14px;
	background: #d9ece0;
	margin: 0 4px;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-box {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 66px;
	position: relative;
	cursor: pointer;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	flex-shrink: 0;
	overflow: hidden;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-name {
	margin-left: 10px;
	font-size: 14px;
	line-height: 1.2;
	color: #222;
	max-width: 120px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	width: 150px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgb(100 100 100 / 15%);
	padding: 6px 0;
	display: none;
	z-index: 9999;
}

/* 透明桥接区，避免鼠标移入下拉菜单时因间隙丢失 hover */
#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-dropdown::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-box:hover .A9-user-dropdown {
	display: block;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-dropdown a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 18px;
	font-size: 14px;
	color: #333;
	font-weight: normal;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-dropdown a:hover {
	background: #f5f9f8;
	color: var(--primary-color);
}

/* 登录后用户头像（移动端） */
#A9-mobile-header .A9-r-b a.A9-m-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	margin-right: 10px;
}

/* 主题色兜底（会员中心等未加载 Xcloud reset.css 的页面） */
#A9-header {
	--primary-color: #0071FC;
}

/* ===== TDesign 图标基础样式 ===== */
.t-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

/* ===== 导航标签 ===== */
.A9-nav-tag {
	display: inline-block;
	background: #fb0707;
	color: #fff;
	font-size: 10px;
	padding: 1px 5px;
	border-radius: 3px;
	margin-left: 5px;
	vertical-align: middle;
	line-height: 1.4;
	font-weight: normal;
}

/* ===== 文档中心 ===== */
.A9-doc {
	position: relative;
	font-weight: bold;
}

.A9-doc:hover {
	color: var(--primary-color);
}

/* ===== Chevron icon ===== */
.A9-chevron {
	margin-left: 2px;
	transition: transform 0.2s;
}

.A9-first-sort:hover .A9-chevron {
	transform: rotate(180deg);
}

/* ===== 搜索框调整 ===== */
#A9-header .A9-header-con .A9-r-b .A9-search-box {
	margin-right: 18px;
}

#A9-header .A9-header-con .A9-r-b .A9-search-box form input {
	width: 180px;
}

/* ===== 新下拉面板布局样式 ===== */
.A9-drop-down-panel {
	width: 100%;
	position: fixed;
	left: 0;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.25s ease;
	z-index: 9998;
}

.A9-drop-down-panel:after {
	display: none;
}

.A9-first-sort:hover .A9-drop-down-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.A9-drop-panel {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	padding: 24px 0;
	min-height: 320px;
	position: relative;
	z-index: 2;
}

/* 左侧分类 */
.A9-drop-left {
	width: 220px;
	flex-shrink: 0;
	border-right: 1px solid #f0f0f0;
	padding-right: 16px;
}

.A9-drop-title {
	font-size: 18px;
	font-weight: bold;
	padding: 8px 16px 16px;
	color: #222;
	line-height: 1;
}

.A9-drop-search {
	position: relative;
	margin: 0 16px 12px;
}

.A9-drop-search input {
	width: 100%;
	height: 34px;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 0 36px 0 12px;
	font-size: 13px;
	outline: none;
	color: #333;
	background: #fafafa;
	transition: border-color 0.2s;
}

.A9-drop-search input:focus {
	border-color: var(--primary-color);
}

.A9-drop-search input::placeholder {
	color: #bbb;
}

.A9-drop-search .t-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
}

/* 左侧分类列表 */
.A9-drop-cats {
	margin-top: 4px;
}

.A9-drop-cats li {
	padding: 0 16px;
}

.A9-drop-cats li a {
	display: flex;
	align-items: center;
	height: 40px;
	line-height: 40px;
	padding: 0 12px;
	border-radius: 6px;
	font-size: 14px;
	color: #555;
	transition: all 0.2s;
	cursor: pointer;
}

.A9-drop-cats li a:hover,
.A9-drop-cats li.A9-active a {
	background: #eef4ff;
	color: var(--primary-color);
	font-weight: 500;
}

/* 标签 */
.A9-tag {
	font-size: 10px;
	padding: 1px 5px;
	border-radius: 3px;
	margin-left: 6px;
	line-height: 1.4;
	vertical-align: middle;
	color: #fff;
	font-weight: normal;
}

.A9-tag-hot {
	background: #fb0707;
}

/* 右侧内容区 */
.A9-drop-right {
	flex: 1;
	padding: 0 24px 0 32px;
}

.A9-drop-content-item {
	display: none;
}

.A9-drop-content-item.A9-active {
	display: block;
}

.A9-drop-row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	align-content: flex-start;
	gap: 16px 24px;
	margin-top: 8px;
}

/* 列卡片 */
.A9-drop-col {
	flex: 0 0 calc(25% - 18px);
	min-width: 140px;
	display: block;
	padding: 14px 16px;
	border-radius: 8px;
	border: 1px solid transparent;
	transition: all 0.2s;
	text-decoration: none;
	box-sizing: border-box;
}

.A9-drop-col:hover {
	background: #f8faff;
	border-color: #e0e8ff;
}

.A9-drop-col h4 {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	margin: 0 0 4px;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.A9-drop-col:hover h4 {
	color: var(--primary-color);
}

.A9-drop-col p {
	font-size: 12px;
	color: #999;
	line-height: 1.5;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* ===== 现有下拉样式微调 ===== */
#A9-header .A9-header-con .A9-c-b .A9-nav .A9-first-sort>a .t-icon {
	margin-right: -2px;
}

/* ===== 购物车按钮3D效果 ===== */
.A9-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

/* ===== 登录后用户区域下拉图标 ===== */
#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-box .t-icon {
	margin-left: 4px;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-dropdown a {
	display: flex;
	align-items: center;
	gap: 6px;
}

#A9-header .A9-header-con .A9-r-b .A9-logged-in .A9-user-dropdown a .t-icon {
	margin-right: 2px;
}

/* 顶栏注入到会员中心/购物车时，整体下移避免与框架固定顶栏重叠 */
body.a9-topbar-on #A9-header {
	position: relative !important;
	top: auto !important;
}

body.a9-topbar-on .el-header {
	top: 66px !important;
}

body.a9-topbar-on .el-aside {
	top: 66px !important;
	height: calc(100vh - 66px) !important;
}

/* 中和 reset.css 对会员中心全局样式的副作用（隐藏滚动条 / 改字体） */
body.a9-topbar-on {
	font-family: Arial, sans-serif !important;
	-ms-overflow-style: auto !important;
	scrollbar-width: auto !important;
}

body.a9-topbar-on::-webkit-scrollbar {
	display: auto !important;
}

/* 会员中心在手机端已有自身响应式顶栏，注入的 Xcloud 桌面顶栏在窄屏隐藏，避免双顶栏重叠 */
@media screen and (max-width: 768px) {
	body.a9-topbar-on #A9-header {
		display: none !important;
	}

	body.a9-topbar-on .el-header {
		top: 0 !important;
	}

	body.a9-topbar-on .el-aside {
		top: 0 !important;
		height: 100vh !important;
	}
}