.terms_header {
	width: 100%;
	padding: 20px 0px;
	background-color: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .15);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
}

.terms_header .inner {
	width:95%;
	max-width:1120px;
	margin:0px auto;
	position:relative;
}

.terms_article{
    width:95%;
    max-width:1120px;
    margin: 0 auto;
    position:relative;
    padding: 150px 0px;
}

.terms_article .terms_head{
    width:100%;
    position:relative;
}

.terms_article .terms_head .terms_title{
    width:100%;
    position:relative;
}

.terms_article .terms_head .terms_title h1{
    font-size:32px;
    font-weight:400;
    margin-bottom:6px;
}

.terms_article .terms_head .terms_title h2{
    font-size:24px;
    font-weight:300;
}

.terms_article .terms_head .terms_tab{
    width:100%;
    position:relative;
    margin:60px 0px;
    display:flex;
    border:1px solid #e9e9e9;
}

.terms_article .terms_head .terms_tab a{
    width:50%;
    min-height:60px;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:16.333px;
    font-weight:500;
    color:#808080;
    transition:all 0.35s;
}

.terms_article .terms_head .terms_tab a:hover{
    color:var(--main-color);
}

.terms_article .terms_head .terms_tab a.selected{
    color:#fff;
    background:var(--main-color);
}

.terms_article .terms_sect{
    width:100%;
    position:relative;
    margin-bottom:32px;
}

.terms_article .terms_sect > h2{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    color:#202020;
}

.terms_article .terms_sect > h3{
    font-size:17px;
    font-weight:500;
    margin-bottom:10px;
    color:#202020;
}

.terms_article .terms_sect > p{
    font-size:16px;
    font-weight:400;
    margin-bottom:10px;
    color:#606060;
}

.terms_article .terms_sect .terms_sect_det{
    width:100%;
    position:relative;
    margin-bottom:10px;
}

.terms_article .terms_sect .terms_sect_det p{
    font-size:15px;
    font-weight:400;
    padding-left:18px;
    color:#808080;
    margin-bottom:4px;
}

.terms_article .terms_sect .terms_sect_two_det{
    width:100%;
    position:relative;
    margin-bottom:10px;
}

.terms_article .terms_sect .terms_sect_two_det p{
    font-size:15px;
    font-weight:400;
    padding-left:36px;
    color:#808080;
    margin-bottom:4px;
}

.terms_article .terms_sect .beb{
    position:relative;
}

.terms_article .terms_sect .beb::before{
    content:"";
    display:inline-block;
    width:4px;
    height:4px;
    background:#808080;
    border-radius: 100%;
    margin-right:6px;
    transform:translateY(-4px);
}

.footer{
    width:100%;
    position:relative;
    background:var(--main-color);
    padding:24px 0px;
}

.footer .inner{
    width:95%;
    max-width:1120px;
    margin:0px auto;
    position: relative;
}

.footer .inner .tab{
    width:100%;
    position:relative;
}

.footer .inner .tab a{
    color:#fff;
    font-size:14px;
    font-weight:500;
    position:relative;
    display:inline-block;
    transition:color 0.35s;
}

.footer .inner .tab a:hover{
    color:#fff;
}

.footer .inner .tab a::after{
    content:"";
    display:inline-block;
    width:1px;
    height:12px;
    background:#fff;
    margin:0px 12px 0px 16px;
    transform:translateY(2px);
}

.footer .inner .tab a:last-child:after{
    display:none;
}

.footer .inner .copyright{
    width:100%;
    position:relative;
    margin-top:20px;
}

.footer .inner .copyright p{
    font-size:13px;
    color:#fff;
}

@media(max-width:767px){
    .terms_article{
        padding:40px 0px;
    }

    .terms_article .terms_head .terms_title h1{
        font-size:24px;
    }

    .terms_article .terms_head .terms_title h2{
        font-size:18px;
    }

    .terms_article .terms_head .terms_tab{
        margin:40px 0px;
    }

    .terms_article .terms_head .terms_tab a{
        min-height:50px;
        padding:0px 10px;
        word-break: keep-all;
        font-size:15px;
    }

    .terms_article .terms_sect{
        margin-bottom:24px;
    }

    .terms_article .terms_sect > h2{
        font-size:16px;
    }

    .terms_article .terms_sect > p{
        font-size:14px;
    }

    .terms_article .terms_sect .terms_sect_det p{
        font-size:13px;
        padding-left:14px;
    }

    .terms_article .terms_sect .terms_sect_two_det p{
        font-size:13px;
        padding-left:28px;
    }
}

/* table */
.table {
	width:100%;
	position: relative;
	overflow-x: auto;
	margin-bottom: 10px;
}

.table table {
	width:100%;
	position: relative;
	border-collapse: collapse;
	border: 1px solid #e9e9e9;
	margin-top: 10px;
} 


table tr td,
table tr th {
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  text-align: center;
  padding: 10px;
  word-break: keep-all;
}

table tr th {
  font-weight: 500;
}

.table.app_table table {
	display: block;
	border: none;
	margin-top: 0px;
	border: 1px solid #e9e9e9;
	border-top: none;
	border-bottom: none;
}

.table.app_table table:first-child {
	border-top: 1px solid #e9e9e9;
}

.table.app_table table thead,
.table.app_table table thead tr,
.table.app_table table thead th,
.table.app_table table tbody,
.table.app_table table tbody tr,
.table.app_table table tbody td {
	display: block;
}

.table.app_table table th,
.table.app_table table td {
	border: none!important;
	border-bottom: 1px solid #e9e9e9!important;
	text-align: left;
}

.table.app_table table th {
	background-color: #fcfcfc;
	font-size: 1.8rem;
}

.table.app_table table td {
	background-color: #fff;
	font-size: 1.6rem;
}