﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900');



html, body, .wrapper {
	height: 100%;
	font-family: "Roboto", "Noto Sans TC";
	overflow: hidden;
}

.header_wrap {
	box-shadow: 0 10px 20px rgba(90, 100, 242, .1);
	z-index: 2;
}

.termsWrp {
	display: flex;
	height: calc(100% - 80px);
	overflow: hidden;
}

.termsWrp.modeone {
	height: 100%;
}

.sectionWrp {
	height: 100%;
	overflow: hidden;
}

/* .sectionWrp .mCSB_container {
	padding: 40px 150px;
} */

.termsTab {
	height: 100%;
	width: 500px;
	flex-shrink: 0;
	overflow-y: auto;
	border-right: 6px solid #E2E5E8;
	
}

.termsTabWrp {
	display: flex;
	flex-direction: column;
	padding: 50px;
}

.termsTab label {
    padding: 15px 0;
    font-weight: 600;
    color: #525B68;
    cursor: pointer;
    font-size: 32px;

}

.termsTab label a {
	color: #FF82A7;
	display: block;
}

.termsTab label:hover a {
    color: #ED4C7C;
}

.termsTab input[name=tabs],
.termsTab label + ul {
    display: none;
}

.termsTab label + ul {
	border-bottom: 1px solid #ffbcd0;
	border-top: 1px solid #ffbcd0;
	padding: 10px 0;
}

.termsTab li {
	font-weight: 500;
	font-size: 28px;
	color: #7a8496;
	padding: 12px 0;
	cursor: pointer;
	transition: color .3s;
	line-height: normal;
}

.termsTab li:hover {
	color: #ff82a7;
}

.termsTab input:checked + label {
	color: #ed4c7c;
	background: url('arrow_down.svg') no-repeat right center / 26px auto;
}

.termsTab input:checked + label.active {
	background-image: url('arrow_up.svg');
}

.section {
	display: none;
	letter-spacing: 1px;
	padding: 40px 150px;
}

.section h4 {
	font-weight: 500;
	font-size: 56px;
	line-height: 150%;
	color: #ed4c7c;
	margin-bottom: 30px;
}

.section h5 {
	font-weight: 700;
	font-size: 26px;
	line-height: 150%;
	color: #08080a;
	margin-bottom: 15px;
}

.section .parg {
	margin-bottom: 35px;
}

.section .parg p,
.section .parg li {
	font-weight: 500;
	font-size: 20px;
	line-height: 36px;
	color: #08080a;
	margin-bottom: 15px;
}

.section .parg p u,
.section .parg p b {
	font-weight: 700;
	color: #000;
}

.section .parg p.list1 {
	text-indent: -42px;
    margin-left: 42px;
}

.section .parg p.list1.fistn {
	text-indent: 0;
}

.section .parg .list2 {
	padding-left: 42px;
}

.section .parg .list2 li {
	text-indent: -36px;
    margin-left: 36px;
}

.section .parg .list3 {
	padding-left: 42px;	
}

.section .parg .list3 li {
	list-style: decimal;
}

.termsTab input:checked + label.disni {
	background: none;
}

.termsTabWrp .disni + ul {
	opacity: 0;
	visibility: hidden;
}

.mCSB_inside > .mCSB_container {
	right: 20px;
	margin-right: 0;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
	background: transparent;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background-color: rgba(0,0,0,0.3);
}

.section .mbNav {
	display: none;
}

.closeMenu {
	display: none;
}

.section .detialTerms {
	display: block;
	color: #343a42;
	background: url('arrow_right_gray.svg') no-repeat #fff4f8 right 15px center / 24px auto;
	font-weight: 500;
	font-size: 20px;
	padding: 10px 40px 10px 20px;
	margin-bottom: 30px;
	line-height: normal;
}

.section .detialTerms span {
	color: #03328d;
	font-weight: 700;
	margin-left: 5px;
}

table.servicePeriod {
	border-collapse: collapse;
	margin: 0 0 30px;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}

table.servicePeriod th,
table.servicePeriod td {
	padding: 15px;
	text-align: center;
	border: 5px solid #fff;
	background: #E2E5E8;
	color: #183265;
	font-weight: 500;
}

.section .parg p.star {
	text-indent: -9px;
	padding-left: 9px;
}

@media (max-width: 1440px) {

	.section {
		padding: 40px 10%;
	}

	.termsTab {
		width: 400px;
	}

	.termsTab label {
		font-size: 28px;
	}

	.termsTab li {
		font-size: 24px;
	}

	.section h4 {
		font-size: 52px;
	}

}

@media (max-width: 1024px) {

    .termsTab {
		position: fixed;
		top: 0;
		right: 0;
		width: 400px;
		height: 100%;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .5s ease;
		z-index: 3;
		background: #fff;
		border: none;
    }

	.open .termsTab {
		transform: translateX(0);
	}

	.termsWrp:before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(69, 69, 69, .8);
		z-index: 2;
		transition: opacity .5s;
		visibility: hidden;
		opacity: 0;
	}

	.termsWrp.open:before {
		opacity: 1;
		visibility: visible;
	}

	.section .mbNav {
		display: block;
		color: #ed4c7c;
		background: url('arrow_right.svg') #fff no-repeat right 8% center / 10px auto;
		padding: 20px 8%;
		font-size: 30px;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		border-bottom: 4px solid #e2e5e8;
		font-weight: 700;
		line-height: normal;
		cursor: pointer;
	}

	.modeone .section .mbNav {
		top: 0;
	}

	.section {
		padding: 130px 8% 40px;
	}

	.section h4 {
		font-size: 34px;
	}

	.termsTab label {
		font-size: 24px;
	}

	.termsTab li {
		font-size: 20px;
	}

	.termsTabWrp {
		padding: 80px 40px 40px;
		position: relative;
	}

	.closeMenu {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
		background: url(closeMenu.svg) #fff no-repeat center / 25px auto;
		cursor: pointer;
		z-index: 4;
		display: block;
	}

}


@media (max-width: 768px) {

	.section .mbNav {
		font-size: 24px;
		background-size: 8px auto;
		background-position: right 6% center;
		padding: 15px 6%;
		top: 60px;
	}

	.section {
		padding: 100px 6% 40px;
	}

	.section h4 {
		font-size: 26px;
	}

	.section h5 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.section .parg p, 
	.section .parg li {
		font-size: 18px;
		line-height: 30px;
	}

	.termsWrp {
		height: calc(100% - 60px);
	}

	table.servicePeriod td {
		border: 0;
	}

	table.servicePeriod thead {
		display: none;
	}

	table.servicePeriod tr {
		display: block;
		border-bottom: 5px solid #fff;
	}

	table.servicePeriod td {
		display: block;
		text-align: left;
		padding: 5px 15px;
		font-weight: 700;
	}

	table.servicePeriod td:first-child {
		padding-top: 15px;
	}

	table.servicePeriod td:last-child {
		padding-bottom: 15px;
	}

	table.servicePeriod td::before {
		content: attr(data-label);
		float: left;
		font-weight: 400;
	}

}

@media (max-width: 450px) {

	.termsTabWrp {
		padding: 80px 20px 40px;
	}

	.termsTab {
		width: 300px;
	}

	.section .detialTerms {
		font-size: 16px;
	}

}







