.template_container{
	display: flex;
	width: 100%;
	height: 100%;
	gap: 10px;
}

.template_page{
	width: 75%;
	height: 100%;
	border: 1px solid #afc6c9;
	min-height: calc(100vh - 56px - 249px);
    max-height: calc(100vh - 56px - 249px);
    /* overflow-y: overlay; */
	overflow-y: auto;
	position: relative;
}

.template_page div{
	z-index: 1;
}

.template_operation_bar{
	width: 25%;
	height: 100%;
	border: 1px solid #afc6c9;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 5px;
	min-height: calc(100vh - 56px - 249px);
    max-height: calc(100vh - 56px - 249px);
    overflow-y: overlay;
}

.template_operation_label{
	padding: 5px;
	width: 100%;
	border: 1px solid #afc6c9;
	user-select: none;
}

.template_topic{
	font-weight: bold;
	color: #0066cc;
}

.template_container select{
	width: 100%;
	padding: 5px;
	border: 1px solid #afc6c9;
}

.template_operation{
	display: flex;
    background: #0889ef;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
	cursor: pointer;
}

.template_image_watermark{
	filter: grayscale(100%);
	width: 100% !important;
	height: auto !important;
	opacity: .1;
}

table.default_table{
	border-collapse: collapse;
	width: 100%;
	font-family: sans-serif;
}

table.default_table, table.default_table td, table.default_table th{
	border: 1px solid;
}

table.default_table td, table.default_table th{
	padding: 5px;
}

table.default_table th{
	text-align: center;
}

table.default_table_1{
	width: 100%;
	border-collapse: collapse;
	font-family: sans-serif;
	font-size: 13px;
}

table.default_table_1 table, table.default_table_1 th{
	border-bottom: 1px solid;
}

table.default_table_1 td, table.default_table_1 th{
	padding: 10px 5px;
	max-width: 103px;
	box-sizing: border-box;
	overflow: hidden;
	vertical-align: text-top;
	text-align: left;
	overflow-wrap: break-word;
}

.overflow-x-auto{
	overflow-x: auto;
}

@media only screen and (max-width: 600px) {
	.template_page{
		min-height: calc(100vh - 56px - 300px);
		max-height: calc(100vh - 56px - 300px);
		overflow-y: overlay;
	}

	.template_operation_bar{
		min-height: calc(100vh - 56px - 300px);
		max-height: calc(100vh - 56px - 300px);
		overflow-y: overlay;
	}
}