body {
	background: #FFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	padding: 0;
}
a, a:link, a:visited, a:hover, a:active, a:focus {
  color: inherit;              /* 继承文本颜色 */
  text-decoration: none;       /* 无下划线 */
  background-color: transparent; /* 透明背景 */
  font-size: inherit;          /* 继承字体大小 */
  font-weight: inherit;        /* 继承字体粗细 */
  font-family: inherit;        /* 继承字体 */
  outline: none;               /* 去除焦点轮廓（需确保有替代方案） */
  cursor: pointer;             /* 保持手型光标 */
  -webkit-tap-highlight-color: transparent; /* 去除移动端点击高亮 */
}
.headerbox {
	width: 100%;
	display: flex;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 40;
}
.fotterbox {
	width: 100%;
	display: flex;
}
.headertopbox {
	width: calc(100% - 60px);
	padding: 19px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	background: #FFF;
	top: 0;
	z-index: 40;
}
.menuicon {
	width: 7%;
	height: auto;
}
.logoicon {
	width: 38%;
	height: auto;
}
.fottericon {
	width: 100%;
	height: auto;
}

/* 遮罩层 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

/* 抽屉容器 */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer-active .drawer {
  transform: translateX(0);
}

.drawer-active .overlay {
  opacity: 1;
  visibility: visible;
}

/* 可选：页面内容偏移效果 */
.drawer-active body {
  transform: translateX(-100px);
}

/* 关闭按钮 */
.closebox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #DFDFDF;
  padding: 20px 0;
}
.closebox_limit {
	width: calc(100% - 50px);
	display: flex;
	justify-content: flex-end;
}
.closebox_limit_icon {
	width: 20%;
	height: auto;
}
.closelistbox {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.closelistbox_limit {
	width: calc(100% - 60px);
	padding: 20px 0;
	border-bottom: 1px solid #DFDFDF;
	font-size: 4vw;
	font-family: PingFang SC, PingFang SC-Heavy;
	font-weight: 800;
	color: #333333;
	display: flex;
	align-items: center;
}
.closelistbox_limit_icon {
	width: 25%;
	height: auto;
	margin-right: 4px;
}
.customerbox {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}
.customerbox_limit {
	width: calc(100% - 160px);
	position: absolute;
	bottom: 8%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.customerbox_limit_title {
	font-size: 6vw;
	font-family: PingFang SC, PingFang SC-Heavy;
	font-weight: 800;
	text-align: left;
	color: #ffffff;
}
.customerbox_limit_contentbox {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.customerbox_limit_contentbox_limit {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 30%;
	font-size: 4vw;
	font-family: PingFang SC, PingFang SC-Heavy;
	font-weight: 800;
	text-align: left;
	color: #ffffff;
}
.customerbox_limit_contentbox_limit_image {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}
.zixunicon {
	width: 59px;
	height: 59px;
	position: fixed;
	right: 8px;
	bottom: 42px;
	z-index: 50;
}

.zixunfiexdbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.zixunfiexdbox_active {
	display: flex !important;
}

.zixunfiexdbox_titlebox {
	width: 90%;
	height: 45px;
	background: linear-gradient(90deg,#00d5cc, #00d5cc 62%, #00c2ff 99%);
	border-radius: 5px 5px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.zixunfiexdbox_titlebox_limit {
	width: calc(100% - 40px);
	font-size: 4vw;
	font-family: PingFang SC, PingFang SC-Bold;
	font-weight: 700;
	text-align: left;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.closeicon {
	width: 16.5px;
	height: 2.5px;
	background: #ffffff;
}
.zixunfiexdbox_contentbox {
	width: 90%;
	background: #ecfbfa;
	border-radius: 0 0 5px 5px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.30);
	padding: 16px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zixunfiexdbox_contentbox_limit {
	width: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zixunfiexdbox_contentbox_limit_timetext {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3vw;
	font-family: PingFang SC, PingFang SC-Medium;
	font-weight: 500;
	text-align: left;
	color: #999999;
}
.zixunfiexdbox_contentbox_listbox {
	width: calc(100% - 40px);
	display: flex;
	align-items: flex-start;
	margin-top: 12px;
}
.zixunfiexdbox_contentbox_listbox_icon {
	width: 36px;
	height: 36px;
	margin-right: 10px;
}
.zixunfiexdbox_contentbox_listbox_content {
	flex: 1;
	padding: 9px 12px;
	display: flex;
	flex-direction: column;
	font-size: 3.5vw;
	font-family: PingFang SC, PingFang SC-Bold;
	font-weight: 700;
	text-align: left;
	color: #333333;
	background: #FFF;
	border-radius: 5px;
}
.smartbox {
	flex: 1;
	background: #f2fffe;
	border-radius: 2.5px;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 9px;
}
.smartbox_title {
	font-size: 3vw;
	font-family: PingFang SC, PingFang SC-Medium;
	font-weight: 500;
	text-align: left;
	color: #000000;
}
.smartbox_inputbox {
	height: 34px;
	padding: 0 9px;
	margin: 0;
	background: #ffffff;
	border: 0.25px solid #d5d5d5;
	border-radius: 5px;
	width: calc(100% - 30px);
	font-size: 3.5vw;
	font-family: PingFang SC, PingFang SC-Regular;
	font-weight: 400;
	text-align: left;
	color: #333333;
	margin-top: 10px;
	
}
.postbuttonbox {
	flex: 1;
	padding: 8px 0;
	background: #00bcb4;
	border-radius: 5px;
	font-size: 3.5vw;
	font-family: PingFang SC, PingFang SC-Medium;
	font-weight: 500;
	text-align: left;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
}
.wechatbutton {
	flex: 1;
	padding: 8px 0;
	border: 0.5px solid #00bcb4;
	border-radius: 5px;
	font-size: 3.5vw;
	font-family: PingFang SC, PingFang SC-Medium;
	font-weight: 500;
	text-align: left;
	color: #00BCB4;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
}

input:focus {
    outline: none;
    border-color: #00BCB4; /* 保持原边框颜色 */
    box-shadow: none; /* 去除阴影 */
}
select:focus {
    outline: none;
    border-color: #00BCB4; /* 保持原边框颜色 */
    box-shadow: none; /* 去除阴影 */
}
