* {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;




}

body,
html {
	font-family: MiSans-Regular, MiSans;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

a,
p,
span,
div,
li,
h1,
h2 {
	font-family: MiSans-Regular, MiSans;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

a {
	color: #fff;
}

/*包含以下五种的链接*/
a {
	text-decoration: none;
}

/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
}

/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
	text-decoration: none;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}



img {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

video {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: center top;
}

span,
a {
	display: block;
}


textarea:focus,
input:focus {
	outline: none;
}

input {

	background: none;

	outline: none;

	border: 0px;

}

input[type="text"]:focus,

input[type="password"]:focus {

	/* border: 1px solid rgba(0, 0, 0, 0); */

	background: rgba(0, 0, 0, 0);

	outline: none;

}

textarea {
	resize: none;
	border: 1px solid rgba(0, 0, 0, 0);
	background: rgba(0, 0, 0, 0);
}

input:-webkit-input-placeholder {
	color: #666;
}

input::-webkit-input-placeholder {
	color: #666;
}

input:-ms-input-placeholder {
	color: #666;
}

input:-moz-placeholder {
	color: #666;
	opacity: 1 !important;
	/*火狐默认有opacity:0.4; */
}

input::-moz-placeholder {
	color: #666;
	opacity: 1 !important;
}

/* 英文大写 */
.uppercase {
	text-transform: Uppercase;
}

/*flex布局  */

.flex {
	display: flex;
	align-items: center;
}


/* 容器的开头 */

.flex.flex-start {
	justify-content: flex-start;
}


/* 容器的结尾 */

.flex.flex-end {
	justify-content: flex-end;
}


/* 两端对齐 */

.flex.flex-between {
	justify-content: space-between;
}


/* 等分 两边有距离 */

.flex.flex-around {
	justify-content: space-around;
}


/* 居中对齐*/
.flex.flex-center {
	justify-content: center;
}


/*浮动*/
.float-left {
	float: left;
}

.float-right {
	float: right;
}

/*清浮动*/
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

/* 上下左右居中 */

.posi-all {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}


/* 左右居中 */

.posi-x {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}


/* 垂直居中 */

.posi-y {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}


/* 超出隐藏 */

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ellipsis2 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ellipsis3 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}



.pointer {
	cursor: pointer;
}

.body-lock {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

#toast {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 130px;
	height: 40px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}




body{
	background-color: #37B389;
}
.content{
	width: 100vw;
}
.bg_img{
	display: block;
	width: 100vw;
	height: 100.5333vw;
}
.main{
	position: relative;
	top: -38vw;
	z-index: 1;
	padding: 0 3.2vw;
}
.card{
	background-color: #fff;
	border-radius: 3.2vw;
	padding: 6.6667vw 5.3333vw;
	display: grid;
	grid-template-columns: repeat(1,1fr);
	row-gap: 4vw;
	align-content: flex-start;
}
.item{
	display: grid;
	grid-template-columns: repeat(1,1fr);
	row-gap: 1.3333vw;
}
.sub_btn{
	line-height: 14.9333vw;
	text-align: center;
	border-radius: 4.2667vw;
	background-color: #02cf9a;
	font-size: 4.8vw;
	font-family: PingFang SC-Medium, PingFang SC;
	font-weight: 500;
	color: #FFFFFF;
}
.title{
	font-size: 3.7333vw;
	font-family: PingFang SC-Semibold, PingFang SC;
	font-weight: 600;
	color: #000000;
}
.input_box{
	height: 14.6667vw;
	border-radius: 4.2667vw;
	background-color: #fafafa;
	border: 2px solid #f4f4f5;
	padding: 0 5.3333vw;
	display: grid;
	grid-template-columns: 4.2667vw calc(100% - 4.2667vw - 3.2vw);
	column-gap: 3.2vw;
	justify-content: flex-start;
	align-items: center;
	
}
.icon{
	height: 4.2667vw;
}
.ipt{
	height: 100%;
	font-size: 4.2667vw;
	font-family: PingFang SC-Regular, PingFang SC;
	font-weight: 400;
	color: #333;
}
::placeholder {
	color: #c0c4cc; /* 更改为您想要的颜色 */
}
