* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	color: #333;
	font-size: 14px;
	font: small Verdana, Arial, sans-serif;
}

ul, li {
	list-style: none;
}

b,i, strong, em {
	font-weight: normal;
	font-style: normal;
}
a {
	text-decoration: none;
}

input, button, select {
	border: none;
	outline: none;
 /*background: none;*/
}
input {
	padding: 0 4px;
	border-radius: 0px;
	color: #333;
	border: 1px solid #ccc;
	height: 30px;
}

input::placeholder {
	color: #dcdfe6;
}

iframe {
	border: 0;
    padding: 0 15px;
 /* width: calc(100% - 240px);
    height: calc(100vh - 100px);
    margin-left: 240px;
    margin-top: 60px; */
}
.page-title {
	height: 40px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	justify-content: space-between;
}

.page-title-name {
	font-size: 18px;
	font-weight: bold;
}
.primary-btn {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border-radius: 4px;
	background: #409eff;
	color: #ffffff;
	cursor: pointer;
}

select {
	height: 30px;
	min-width: 100px;
	border: 1px solid #ccc;
	border-radius: 0px;
}

@keyframes toast-show {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes toast-hide {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.toast_box {
	position: fixed;
	top: 30px;
	left: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
	display: none;
}

.toast_box p {
	box-sizing: border-box;
	padding: 10px 20px;
	width: max-content;
 /* */
	background: #fcd3d3;
	color: #F56C6C;
	font-size: 16px;
	text-align: center;
	border-radius: 6px;
	opacity: 1;
	z-index: 999;
}

/**/
.auto-refresh-box {
	display: flex;
	align-items: center;
}
.auto-refresh-box .input-label {
	display: flex;
	align-items: center;
	margin-right: 10px;
}
.auto-refresh-box .checkbox {
	margin-right: 4px;
}
.auto-refresh-box .refresh-btn {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	background: #409eff;
	color: #fff;
}

/*switch*/
.switch-box {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	height: 32px;
	vertical-align: middle;
	position: relative;
}
.switch-box .switch-core {
	display: inline-flex;
	align-items: center;
	position: relative;
	min-width: 40px;
	height: 20px;
	border-radius: 10px;
	outline: none;
	background: #dcdfe6;
	cursor: pointer;
	transition: border-color 0.3s, background-color 0.3s;
}
.switch-box .switch-core .switch-action {
	position: absolute;
	left: 1px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #dcdfe6;
	transition: all 0.3s;
}
.switch-box.isChecked .switch-core {
	background-color: #409eff;
}
.switch-box.isChecked .switch-core .switch-action {
	left: calc(100% - 17px);
	color: #409eff;
}

/**/
table {
	table-layout: fixed;
	border-collapse: collapse;
}

table, thead, tr {
	width: 100%;
}
table thead tr th {
	background: #e4e4e4;
	font-weight: normal;
}

th, td {
	min-width: 50px;
	height: 32px;
	text-align: center;
	border: 1px solid #d8d8d8;
	font-size: 14px;
	padding: 5px 10px;
}
td {
	height: 40px;
}

td input {
	height: 30px;
	border: 1px solid #cccccc;
	display: block;
	width: 100%;
}

td button {
	color: #409eff;
	cursor: pointer;
}
td button:hover, td button:active {
	color: #66b1ff;
}

/*tab*/
.tabs {
	display: flex;
	align-items: center;
	height: 40px;
	margin-bottom: 10px;
}
.tabs .tab {
	height: 100%;
	padding: 0 15px;
	cursor: pointer;
	color: #90A9BD;
	display: flex;
	align-items: center;
}
.tabs .tab:hover {
	background: rgba(62, 93, 117, 1);
	color: #ffffff;
}
.tabs .tab.active {
	background: rgba(62, 93, 117, 1);
	color: #ffffff;
}

.list-wrapper {
	margin-bottom: 20px;
	border: 1px solid #f2f2f2;
	border-radius: 4px;
 /* min-height: 200px; */
}

.list-wrapper .list-title {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f2f2;
	font-weight: normal;
}
.list-wrapper .content-box {
 /* min-height: 160px; */
	border: 1px solid #f2f2f2;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px;
}
.list-wrapper .content-box2 {
 /* min-height: 160px; */
	border: 1px solid #f2f2f2;
 /* display: flex; */
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px;
}

.list-wrapper .l-r-box {
	display: flex;
	width: 100%;
	justify-content: space-between;
 /* align-items: center; */
}


.l-r-box .l-box {
	flex: 0.5;
}
.l-r-box .r-box {
	flex: 0.5;
}
.l-r-box .lr-box {
	flex: 1;
}

.radio-box {
	display: flex;
	align-items: center;
	width: 120px;
	flex-wrap: nowrap;
}
.radio-box .radio {
	min-width: 60px;
	height: 20px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	position: relative;
}
.radio-box .radio :last-of-type {
	margin-right: 0;
}

.radio-box .radio::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 1px solid #ccc;
	border-radius: 50%;
	margin-right: 5px;
	position: relative;
}
.radio-box .radio.active::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 10px;
	background: #0075ff;
	position: absolute;
	left: 4px;
	top: 5px;
	z-index: 1;
}

.radio-box .radio.disabled::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    background-color: #f0f0f0; /* */
}



.radio-box .radio.disabled {
    pointer-events: none; /* */
    opacity: 0.6; /* */
}