@import './common.css';

.float-menu {
	display: none;
}
.back-link {
	position: absolute;
	top: -38px;
	left: 0;
	display: inline-block;
	font-size: 14px;
	color: var(--text-color-secondary);
}
.back-link:hover {
	color: var(--primary-color-hover);
}
.back-link:active {
	color: var(--primary-color-active);
}
.back-link i {
	color: var(--primary-color);
}
main {
	background-color: #f2f6fa;
	width: 100%;
	padding-top: 146px;
	padding-bottom: 36px;
}
main .box {
	position: relative;
	margin: 0 auto;
	width: 1280px;
	height: 898px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main .big-title {
	color: var(--text-color);
	font-size: 18px;
	text-align: center;
	padding-top: 60px;
	margin-bottom: 60px;
	font-weight: 500;
}

form {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	color: #575d6c;
}
form input,
form textarea {
	width: 800px;
	height: 32px;
	border: 1px solid #adb0b8;
	border-radius: 4px;
	padding-left: 8px;
}
form textarea {
	min-height: 160px;
	padding: 8px;
}
form input::placeholder,
form textarea::placeholder {
	color: #8a8e99;
}
form input[type='file'] {
	position: absolute;
	top:0;
	left:0;
	width:696px;
	opacity: 0;
}
form .file-sel {
	width: 88px;
	height: 32px;
	border-radius: 4px;
	background: #ffffff;
	box-sizing: border-box;
	border: 1px solid #adb0b8;
	text-align: center;
	line-height: 32px;
	margin-left: 16px;
}
form .form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}
form .form-group span:first-of-type {
	color: #ff0000;
}
form label {
	margin-bottom: 6px;
}

form .file-name {
	height: 32px;
	border: 1px solid #adb0b8;
	border-radius: 4px;
	padding-left: 8px;
	width: 696px;
	line-height: 32px;
	color: #000000;
}
form .file-name div {
	color: #8a8e99;
}

form a {
	display: inline-block;
	margin-top: 12px;
	font-size: 12px;
	line-height: 16px;
	color: var(--primary-color);
}
form a:hover {
	font-weight: bold;
	text-decoration: underline;
}
form a:hover + .iconfont {
	opacity: 1;
}

form .iconfont {
	font-size: 12px;
	color: var(--primary-color);
	opacity: 0;
}

form button {
	width: 500px;
	margin: 0 auto;
	margin-top: 60px;
}
