.container {
	display: flex;
	flex-direction: column;
}

.tips {
	display: flex;
	align-items: center;
	padding: 6px 10px;
	font-size: 14px;
	background-color: #fefcec;
	color: #f76a24;
}

.tips::before {
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("../img/icon1.png");
	background-size: 100%;
	margin-right: 8px;
}

.content {
	flex: 1;
	overflow-y: auto;
}

.info {
	border-bottom: 15px solid #f9f9f9;
}

.box {
	margin: 0 10px;
	line-height: 44px;
	border-bottom: 1px solid #ededed;
	color: #787878;
	font-size: 14px;
	display: flex;
}

.box>span:first-child {
	width: 75px;
}

.box:last-child {
	border-bottom: none;
}

.box .flex-1 {
	color: #434343;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 10px;
}

.upload-tit {
	background: #f9f9f9;
	padding: 0 10px 15px;
	font-size: 14px;
	color: #787878;
}

.box1 {
	border-bottom: 10px solid #f9f9f9;
	padding: 10px;
	font-size: 14px;
}

.box1>span {
	color: #434343;
	line-height: 24px;
	font-family: '微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
	font-weight: 700;
}

.box1 .img-list::after {
	content: "";
	display: block;
	clear: both;
}

.box1 label {
	border: 1px dashed #dedede;
	width: 70px;
	height: 70px;
	position: relative;
	margin-right: 10px;
	margin-top: 10px;
	box-sizing: border-box;
	display: block;
	float: left;
}

.box1 label input {
	display: none;
}

.box1 label::after {
	content: "+";
	font-size: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #9c9b9b;
}

.box1 .img-box {
	width: 70px;
	height: 70px;
	position: relative;
	margin-right: 10px;
	margin-top: 10px;
	float: left;
}

.box1 .img-box img {
	width: 100%;
	height: 100%;
}

.close {
	background-color: #969799;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	position: absolute;
	top: -4px;
	right: -4px;
	border: 1px solid #fff;
}

.close::before,
.close::after {
	content: "";
	width: 10px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 7px;
	left: 2px;
}

.close::before {
	transform: rotate(45deg);
}

.close::after {
	transform: rotate(-45deg);
}

.submit-box {
	padding: 20px;
	box-sizing: border-box;
}

.submit-box button {
	height: 44px;
	font-size: 14px;
	width: 100%;
	background-color: #3f90f4;
	color: #ffffff;
	border: none;
	border-radius: 5px;
}