/* bg */
.login_bg1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #ebebeb;
	display: none;
}

.lg_wrap {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: -3px 0px 45px -6px rgba(0, 0, 0, 0.2);
	font-family: "Montserrat";
}

/* box1 */
.lg_wrap .lg_ibox {
	width: 70%;
	height: 42%;
	display:block;
	margin: 0 auto;
}
.lg_ibox .lg_bg_1 {
	position: relative;
	width: 100%;
	height: 100%;
	background: url(/admin/img/loginBg3.jpg) no-repeat 30% center / cover #f5f5f5;
}
.lg_ibox .lg_bg_1::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.4);
}
.lg_ibox .lg_logo {
	position: absolute;
	top: 20px;
	left: 20px;
	background: left / auto 100% url(/admin/img/logo300.png) no-repeat;
	width: 300px;
	height: 70px;
}

/* box2 */
.lg_ibox2 {
	width: 100%;
	height: 58%;
	background: #fff;
	padding: 40px;
}

.lg_ibox2 .name2 {
	padding: 0 0 60px 0;
	font-size: 14px;
	font-weight: 400;
}
.lg_ibox2 .name2 strong {
	padding: 15px 0 0 0;
	font-size: 25px;
	font-weight: 600;
	display: block;
}

.lg_ibox2 .signSel2 {
	width: 100%;
	height: 40px;
	text-transform: uppercase;
	font-weight: 500;
	border: none;
	border-bottom: 1px solid #5a6374;
}

.lg_ibox2 .signIn2 input {
	width: 100%;
	height: 60px;
	padding: 0;
	font-weight: 500;
	border: none;
	border-bottom: 1px solid #5a6374;
}

.lg_ibox2 .signBtn2 {
	display: inline-block;
	width: auto;
	margin: 1em 0;
	padding: 0.7em 3em;
	color: #fff;
	cursor: pointer;
	border: none;
	border-radius: 30px;
	background: #033 linear-gradient(to bottom, #0991f0 0%, #084474 100%);
	box-shadow: 0px 0px 37px -9px rgba(0, 0, 0, 0.75);
}

.lg_ibox2 .signLink {
	width: 100%;
	margin-top: 10px;
	font-size: 13px;
	color: #000;
	padding: 0;
}
.lg_ibox2 .signLink p {
	padding-left: 15px;
	cursor: pointer;
}

@media all and (min-width: 900px) {
	.lg_wrap {
		width: 900px;
	}
}

@media all and (min-width: 500px) {
	.lg_wrap {
		height: 550px;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.login_bg1 {
		display: block;
	}

	.lg_wrap .lg_ibox {
		width: 50%;
		height: 550px;
	}
	.lg_ibox .lg_bg_1::before {
		display: none;
	}
	.lg_ibox2 {
		display: grid;
		grid-auto-flow: column;
		place-items: center;
		width: 50%;
		height: 550px;
	}
}

@media all and (max-width: 499px) {
	.lg_ibox .lg_bg_1 {
	width: 100%;
	height: 100%;
	background: url(/admin/img/loginBg3.jpg) no-repeat 30% center / cover #f5f5f5;
	}
}


/* 20201120 popup */
#noticePopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	display: none;
}
#noticePopup::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 50;
}
#noticePopup .popInner {
	position: absolute;
	z-index: 100;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	max-width: 90%;
	height: auto;
	font-size: 14px;
	background: #fff;
	padding: 30px;
}
#noticePopup .title {
	font-size: 24px;
	font-weight: bolder;
	text-align: center;
	line-height: 2;
}
#noticePopup .date {
	font-size: 12px;
	color: #555;
	text-align: right;
}
#noticePopup .textBox {
	max-height: 360px;
	margin: 30px 0;
	background: rgba(222, 221, 214, 0.4);
	padding: 30px 20px;
	overflow-y: auto;
	line-height: 1.7;
}
#noticePopup .textBox::-webkit-scrollbar {
	display: block;
	width: 10px;
}
#noticePopup .textBox::-webkit-scrollbar-thumb {
	background: #ddd;
}
#noticePopup input {
	height: fit-content;
	margin: 0 3px 0 0;
	vertical-align: inherit;
}
#noticePopup span {
}
#noticePopup .btn-wrap {
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
}
#noticePopup button {
	margin-top: 30px;
	text-align: center;
	border: none;
	background: #ebebeb;
	padding: 10px;
	width: 30%;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 400;
	opacity: 1;
}
#noticePopup .closePop {
	background: #777;
	color: #fff;
}

#noticePopup button.on {
	background: #ccc;
}
#noticePopup .closePop.on {
	background: #333;
}

@media screen and (max-width: 400px) {
	#noticePopup .popInner {
		padding: 20px;
	}
	#noticePopup .title {
		font-size: 5vw;
	}
	#noticePopup .textBox {
		max-height: 250px;
		padding: 20px 15px;
	}
}
/* 20201120 popup end */
