.box {
	max-width: 980px;
}

.box form {
	margin-top: 30px;
	background-color: rgba(0,0,0,0.7);
	border-radius: 10px;
	padding: 25px;
}

.box .li {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.box .li:last-child {
	margin-bottom: 0;
}

.box .li .name {
	width: 180px;
	text-align: right;
	margin-right: 20px;
}

.box .li .input {
	width: calc(100% - 200px);
	color: #fff;
	background-color: transparent;
	line-height: 30px;
	border: 0;
	border-bottom: 1px solid #fff;
}

.box .li .upload {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	border: 2px solid #e1e1e1;
	text-align: center;
	line-height: 100px;
	cursor: pointer;
	position: relative;
}

.box .li .upload .file {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 99;
	left: 0;
	top: 0;
	cursor: pointer;
}

.box .li .upload .add .iconfont {
	font-size: 48px;
	font-weight: 200;
}

.box .checkbox-li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.box .checkbox-li .mui-checkbox {
	display: flex;
	align-items: center;
	margin-right: 30px;
	cursor: pointer;
	margin-top: 6px;
}

.box .checkbox-li .mui-checkbox .check {
	border: 1px solid #e1e1e1;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: #3a3a3c;
}

.box .checkbox-li .mui-checkbox .check.active {
	background-color: #F98F1D;
	border: 1px solid #F98F1D;
	color: #fff;
	font-weight: bold;
}

.box .checkbox-li .mui-checkbox label {
	margin-left: 10px;
}

.box .price {
	font-size: 24px;
	margin-left: 4px;
}

.box .button {
	width: 200px;
	margin: 0 auto;
	margin-top: 60px;
}

.box button {
	border: 0;
	width: 200px;
	line-height: 40px;
	border-radius: 6px;
	background-color: #F98F1D;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

@media screen and (max-width:760px) {
	.box .li {
		flex-direction: column;
		align-items: flex-start;
	}

	.box .li .name {
		width: 100%;
		text-align: left;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.box .li .input {
		width: 100%;
	}
}