* {
	box-sizing: border-box;
}
/* 电脑端样式 */
@media screen and (min-width: 768px) {
	.container-phone {
		display: none;
	}
	body {
		font-family: Arial, sans-serif;
		background-color: #e7f0ff;
	}
	.banner-pc {
		position: absolute;
		left: 0;
		top: 0;
		width: 100vw;
		height: 80px;
		background-color: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}
	.banner-pc .logo {
		position: absolute;
		top: 15px;
		left: 30px;
	}
	.banner-pc .logo img {
		width: 50%;
		display: block;
	}
	.container-pc {
		position: relative;
		background-image: url(../assets/pc/2/bg.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: -6px;
		height: 620px;
		font-size: 16px;
		width: 1200px;
		margin: 0 auto;
		background-color: #fff;
		margin-top: 120px;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.container-pc .content {
		padding-top: 6%;
		padding-right: 0px;
		position: absolute;
		width: 38%;
		height: 100%;
		right: 7%;
		background-color: #ffffff;
	}
	.container-pc .content h1 {
		border-bottom: 1px solid #ccc;
	}
	.container-pc .content h1 span {
		padding-bottom: 5px;
		display: block;
		width: 145px;
		border-bottom: 4px solid #506cf4;
		text-align-last: justify;
		background-color: #fff;
	}
	.container-pc .content form {
		position: relative;
	}
	.container-pc .content form input {
		text-indent: 50px;
		font-size: 18px;
		color: #333;
		width: 100%;
		height: 60px;
		margin: 25px 0;
		border-radius: 2px;
		border: 1px solid #ccc;
	}
	.container-pc .content form input::placeholder {
		font-size: 18px;
		text-indent: 3.2vw;
		color: #bcbcbc;
		/* 设置占位符文本的颜色为灰色 */
	}
	.container-pc .content form .icon1 {
		position: absolute;
		top: 32px;
		left: 5px;
	}
	.container-pc .content form .icon2 {
		position: absolute;
		top: 140px;
		left: 8px;
	}
	.container-pc .content h6 {
		margin-top: -10px;
		font-size: 14px;
		font-weight: normal;
		text-align: center;
		color: #f00;
	}
	.container-pc .content form .search-btn {
		margin-top: 11%;
		width: 100%;
		height: 60px;
		border-radius: 8px;
		background-color: #1360ef;
		font-size: 18px;
		color: #fff;
		border: 0;
	}
	.container-pc .content em {
		font-style: normal;
		position: absolute;
		text-align-last: justify;
		width: 220px;
		left: -50%;
		bottom: -10%;
		color: #f00;
		transform: translate(42%, -50%);
		/* 使用 transform 属性将元素居中 */
	}
}
/* 手机端样式 */
@media screen and (max-width: 767px) {
	.banner-pc,
	.container-pc {
		display: none;
	}
	body {
		font-size: 3.73333333vw;
		height: 100%;
		font-family: Arial, sans-serif;
		background-color: #f0f0f0;
		border-radius: 1.33333333vw;
	}
	.container-phone {
		width: 100%;
		height: 100vh;
		margin: 0 auto;
		background-color: #ffffff;
		padding: 0px;
		border-radius: 2.66666667vw;
		box-shadow: 0 0 1.33333333vw rgba(0, 0, 0, 0.1);
	}
	.container-phone .banner {
		width: 100%;
		position: relative;
	}
	.container-phone .banner img {
		width: 100%;
	}
	.container-phone .banner .logo {
		position: absolute;
		top: 5.33333333vw;
		/* 距离容器顶部的距离 */
		left: 5.33333333vw;
		/* 距离容器左侧的距离 */
		width: 50.13333333vw;
		/* 设定 Logo 宽度 */
		height: 11.2vw;
		/* 设定 Logo 高度 */
	}
	.container-phone .content {
		padding-top: 0vw;
		width: 72%;
		margin: 0 auto;
		text-align: center;
	}
	.container-phone .content h5 {
		font-size: 4.26666667vw;
		text-indent: 4vw;
		text-align: left;
		margin-bottom: 4.8vw;
		font-weight: 400;
	}
	.container-phone .content input {
		margin-top: -5.33333333vw;
		width: 100%;
		height: 10.13333333vw;
		text-indent: 4vw;
		border-radius: 8vw;
		border: 0.26666667vw solid #d7dfe4;
	}
	.container-phone .content h6 {
		font-size: 2.66666667vw;
		color: #db403a;
	}
	.container-phone .content .bottom {
		position: absolute;
		bottom: 0;
		left: 50%;
		/* 将元素左侧定位在父容器的中间 */
		transform: translate(-50%, -50%);
		/* 使用 transform 属性将元素居中 */
	}
	.container-phone .content button {
		width: 100%;
		height: 10.13333333vw;
		color: #fff;
		background-color: #506cf4;
		border: 0;
		border-radius: 9.33333333vw;
	}
}
