/*AC 2025/07/13 20:36*/
#form-box{
	align-items: flex-start;
	padding: 40px 0 60px;
	width: 100%;
}
#form-box>*:not(:last-child){
	margin-right: 40px;
}


/*AC 2025/07/05 06:07*/
#form{
	flex-direction: column;
	background: #fff;
	height: auto;
	width: 842px;
}
#form>h1{
	align-self: flex-start;
	padding: 20px 23px 0 25px;
	margin: 0px;

	font-family: PingFang SC;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	color: #363a44;
}
#form>div{
	padding: 60px 25px;
}
#form>div,
#form>div>div[id],
#form>div>div[id]>.preview{
	flex-direction: column;
	width: 360px;
}


/*AC2025/07/11 04:46*/
#form>div>div[id]>img,
#form>div>div[id]>.preview>img{
	width: 100%;
	height: 255px;
	object-fit: contain;
	border: 1px #ccc solid;
}
#form>div>div[id]>img,
#form>div>div[id]>.preview>img,
#form>div>div[id] p{
	align-self: flex-start;
	margin: 0px;
	font-family: PingFang SC;
	font-size: 14px;
	line-height: 15.7px;
	min-height: 24px;
}
#form>div>div[id]>p:first-child{
	margin-bottom: 4px;
	line-height: 22px;
	min-height: 22px;
	color: rgba(0,0,0,.9);
}
#form>div>div[id]>p[required]::before{
	width: 14px;
	height: 14px;
	margin-left: -14px;
	
	content: "*";
	font-size: 20px;
	color: #d21818;
}
#form>div>div[id]>p:nth-child(-2),
#form>div>div[id]>.preview>p,
#form>div>div[id]>.progress,
#form>div>div[id]>.result{
	align-self: flex-end;
	text-align: right;
}
#form>div>div[id]>.preview>p:not(:last-child){
	margin-bottom: 22px;
}
#form>div>div[id]>.preview>img:not([class='info']),
#form>div>div[id]>img,
#form>div>div[id]>.preview>p:not([class='info']),
#form>div>div[id]>p:last-child{
	color: red;
}


/*AC2025/07/11 04:49*/
#form p.input,
#form input,
#form select{
	justify-content: flex-start;
	width: 100%;
	background: #ffffff;

	box-sizing: border-box;
	padding: 11px;
	border: 1px #ccc solid;
	border-radius: 4px;
	margin: 0px;

	font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
	font-size: 16px;
	color: #333;
	caret-color: #0366f1;
	line-height: 1.5em;
	text-overflow: ellipsis;
	word-wrap: anywhere;
}
#form input:focus,
#form select:focus{
	box-shadow: 0 0 0 2px rgba(255,38,5,0.06);
	border-color: #0366f1 !important;
}
/*
#form input[pattern]:valid{
	background-color: palegreen;
}
#form input[pattern]:invalid{
	background-color: lightpink;
}
*/



/*AC 2025/07/05 06:07*/
#form button{
	background: #0366F1;
	height: 48px;
	width: 100%;
	box-sizing: border-box;

	border: 1px solid transparent;
	border-radius: 4px;
	box-shadow: 0 2px 0 rgba(5,145,255,0.1);

	font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
}
#form button:hover{
	background: #4096ff;
}
#form button:disabled{
	background: #82b3f8;
	border-color: #d9d9d9;
	box-shadow: none;
	color: #ffffff;
	cursor: not-allowed;
}



#form-box aside{
	width: 320px;
	background: #fff;
	box-sizing: border-box;
	padding: 20px 20px 93px 20px;

	font-family: PingFang SC;
	font-weight: 400;
	line-height: 22px;
	color: rgba(0,0,0,.6);
}
#form-box aside>h1{
	margin: 0px 0px 16px 0px;

	font-family: PingFang SC;
	font-size: 18px;
	font-weight: 600;
	color: #363a44;
	line-height: 22px;
}
#form-box aside>pre{
	margin: 0;

	font-family: PingFang SC;
	font-size: 14px;
	
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}