* {
	padding: 0;
	margin: 0;
}
body{
	height: 100vh;
	overflow-y: auto;
	min-width: 360px;
}
header {
	width: 100%;
	height: 55px;
	padding: 0.5rem 3rem 0.5rem 1rem;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--custom-background);
}

.select_lang{
	float: right;
	width: 100px;
	border-radius: 6px;
	background-color: var(--custom-background);
}
.layui-form-select dl dd.layui-this{
	color: var(--active-color);
}
.layui-input:focus, .layui-textarea:focus{
	border-color: var(--active-color) !important;
}
.multi-line {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* 显示2行 */
	overflow: hidden;
	text-overflow: ellipsis;
}

.layout {
	width: 100%;
	min-height: 100vh;
	background-color: var(--custom-background);
}

.content {
	width: calc(100vw - 8rem);
	margin:55px auto 0 auto;
}

.web-logo {
	margin-top: 10px;
	margin-left: 10px;
	vertical-align: top;
	width: auto;
	height: 35px;
}

.theme_btn {
	margin-top: 10px;
	margin-left: 10px;
	background-color: var(--theme-btn-background-color);
	display: inline-block;
	width: 35px;
	height: 35px;
	border-radius: 6px;
	position: relative;
}

.theme_btn:hover {
	cursor: pointer;
	width: 170px;
	transition-duration: 0.5s;
}

.theme_btn>i {
	margin-left: 8px;
	font-size: 20px;
	color: var(--theme-btn-color);
	line-height: 35px;
}

.theme_btn>span {
	opacity: 0;
	width: 0;
	color: var(--theme-btn-color);
	font-size: 16px;
	line-height: 35px;
	position: absolute;
	right: 0;
	top: 0;
}

.theme_btn:hover span {
	opacity: 1;
	width: 150px;
	text-align: center;
	transition-duration: 0.5s;
}

.footer{
	margin-top: 2rem;
	padding: 1.5rem 1rem;
	min-height: 5rem;
	border-top: 1px solid;
	border-color: var(--tabs-color);
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
#companyName,#icpNo{
	color: var(--custom-color);
}



@media screen and (min-width: 1600px) {
	.layui-container{
		width: 1400px;
	}
}
@media screen and (min-width: 1900px) {
	.layui-container{
		width: 1600px;
	}
}
@media screen and (min-width: 2030px) {
	.layui-container{
		width: 1800px;
	}
}

@media screen and (min-width: 2230px) {
	.layui-container{
		width: 1900px;
	}
}

@media screen and (min-width: 2530px) {
	.layui-container{
		width: 2000px;
	}
}