/* 隐藏整个页面的X轴滚动条 */
body {
	overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}


/* 隐藏特定容器的X轴滚动条 */
.container {
	overflow-x: hidden;
}

/* 自定义滚动条样式（隐藏但保留滚动功能） */
::-webkit-scrollbar {
	width: 0;
	/* 宽度设为0 */
	height: 0;
	/* X轴滚动条高度设为0 */
}


/* 底部样式 */
.introduction {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.introduction-title {
	font-size: 18px;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.introduction-cent {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #c8c9d2;
}

.introduction-cent p {
	margin-bottom: 5px;
}

.introduction-btn span {
	cursor: pointer;
	padding: 15px 45px;
	border-radius: 40px;
	background-color: #fff;
	color: #3b3c4e;
}

.introduction-btn span:hover {
	color: #fff;
}

.footer-bottom-line {
	margin: 20px 0;
	width: 100%;
	height: 1px;
	background-color: #4d4e5e;
}

.footer-bottom-tab {
	display: flex;
	justify-content: space-between;
}

.footer-bottom-tab .footer-bottom-tab-item:first-child,
.footer-bottom-tab-item:last-child {
	display: flex;
}

.footer-bottom-tab-item:first-child div {
	margin-right: 80px;
	font-size: 14px;
	cursor: pointer;
}

.footer-bottom-tab-item:first-child div:hover {
	color: #009aff;
}

.footer-bottom-tab-item img {
	margin-left: 20px;
	width: 35px;
	height: 35px;
}

.footer-bottom-address-box {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	align-items: center;
}

.footer-bottom-address-box p {
	margin-bottom: 5px;
	font-size: 14px;
	color: #c8c9d2;
	letter-spacing: 0.1em;
}

.footer-bottom-address-box img {
	cursor: pointer;
	width: 117px;
	height: 40px;
}