<style>
	body{
		width: 100vw;
		height: 100vh;
		display: flex;
	}
	.all{
		width: 100%;
		height: 100%;
		background-color: rgb(232, 232, 232);
	}
	.top{
		width: calc(100% - 20px);
		padding: 10px;
		margin: 0 auto;
		height: 60px;
		display: flex;
		align-items: center;
		background-color: white;
	}
	.img{
		width: 50px;
		height: 50px;
	}
	.text{
		width: calc(100% - 80px);
		margin-left: 15px;
		overflow: hidden;
		-webkit-line-clamp: 2;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}
	.body{
		width: 100%;
		margin-top: 1px;
		background-color: white;
		position: relative;
	}
	.form{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.opinion{
		width: 100%;
		display: flex;
		flex-direction: column;
		margin: auto;
	}
	.opinion-title{
		width: 100%;
		height: 35px;
		line-height: 50px;
		font-size: 14px;
	}
	.opinion-content{
		width: calc(100% - 14px);
		margin-top: 3px;
		border-radius: 5px;
		border:1px solid rgb(65, 182, 255);
		padding: 2px 6px;
		outline: none;
	}
	.info{
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		margin:20px auto 0 auto;
	}
	.info-title{
		width: 100%;
		height: 30px;
		line-height: 50px;
		font-size: 14px;
	}
	.input{
		width: calc(100% - 14px);
		height: 40px;
		line-height: 40px;
		padding: 0 6px;
		border: 1px solid rgb(65, 182, 255);
		border-radius: 5px;
		outline: none;
	}
	input::-webkit-input-placeholder { 
		padding: 0 6px;
	}
	.email-input{
		margin-top: 10px;
	}
	.phone-input{
		margin-top: 7px;
	}
	.type-select{
		margin-top: 7px;
	}
	.tip{
		width: 100%;
		margin-top: 10px;
		font-size: 12px;
	}
	.btn{
		width: 100%;
		height: 40px;
		font-size: 14px;
		position: absolute;
		bottom: -60px;
		background-color: rgb(30, 188, 255);
		border: none;
		color: white;
		border-radius: 6px;
	}
</style>
