:root {
    --main-color: #f2ca24;
	--sub-color: #595757;
	--font-color-title: #333333;
	--font-color-sub:#6E6E6E;
	--scroll-color-back:#eeeeee73;
	--scroll-color:#7c87988e;

	--font-size-title: 1.125em;
	
}

/* html { scrollbar-arrow-color: var(--scroll-color-back);
    scrollbar-Track-Color: var(--scroll-color-back); 
    scrollbar-base-color: var(--scroll-color-back);
    scrollbar-Face-Color: var(--scroll-color-back);
    scrollbar-3dLight-Color: var(--scroll-color-back);         
    scrollbar-DarkShadow-Color: var(--scroll-color-back);
    scrollbar-Highlight-Color: var(--scroll-color-back);
    scrollbar-Shadow-Color: var(--scroll-color-back)}

::-webkit-scrollbar {width:12px; height: 12px;}
::-webkit-scrollbar-button:start:decrement, 
::-webkit-scrollbar-button:end:increment {display: block; width: 0px; height: 0px; background: url() rgba(0,0,0,.05);}
::-webkit-scrollbar-track {  background:var(--scroll-color-back);}
::-webkit-scrollbar-thumb {  background: var(--scroll-color);  border-radius: 6px;} */

* {
	box-sizing: border-box;
}
:root {
    --swiper-theme-color: #000;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin: 0;
	padding: 0;
}
ul, ol {
	list-style: none;
}
a {
	text-decoration: none;
	color: #000;
}
img {
	vertical-align: top;
	border: 0;
}
.clearfix::before{
	content: "";
	display: block;
}
.clearfix::after{
	content: "";
	display: block;
	clear: both;
}
body.fixed{
	overflow: hidden;
}
:root {
    --main-color: #f2ca24;
	--sub-color: #595757;
	--font-color-title: #333333;
	--font-color-sub:#6E6E6E;
	--scroll-color-back:#eeeeee73;
	--scroll-color:rgba(242,202,36);
	--dark-font: #333;
	--font-size-title: 1.125em;
	
}

.dim{
	display: none;
	position: fixed;
	left:0;
	right: 0;
	top:0;
	bottom: 0;
	z-index: 13;
	background-color: rgba(0,0,0,0.6);
	text-indent: -999999px;
}
.dim.on, .modal.on{
	display:block;
}
.modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 14;
}
.modal .modal_table{
    display: table;
    width: 100%;
    height: 100vh;
}
.modal .modal_table .modal_table_cell{
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
}
.modal .modal_table .modal_table_cell .modal_table_inner{
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    max-height: 500px;
    overflow: auto;
}
.modal_title{
	position: relative;
}
.modal table{
	width: 100%;
}
.modal table th{
	color: #fff;
	background-color: #666666;
}
#modal_tbody{
	text-align: left;
}
.modal_content{
	padding: 50px 0;
}

span.close{
	position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 30px;
    height: 30px;
	cursor: pointer;
}
span.close::after{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--dark-font);
    border-radius: 10px;
    transform: rotate(45deg);
}
span.close::before{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color:var(--dark-font);
    border-radius: 10px;
    transform: rotate(-45deg);
}


.view span.close {
	position: absolute;
	right: 50px;
	top: 25px;
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.view span.close::after{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transform: rotate(45deg);
	box-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}
.view span.close::before{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transform: rotate(-45deg);
	box-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

.btn_right{
    margin-left: auto;
}