/*  =============================================================================
	=============================================================================
	=============================================================================
	客製化 CSS 設計
	=============================================================================
	=============================================================================
	=============================================================================
	========================================================================== */

/* =============================================================================
   基本設定
   ========================================================================== */
.section{
	width: 100%;
	overflow: hidden;
}

.section#section_1 {
	height: 750px;
	position: relative;
	background-color: #fff;
}

.section#section_1 .text{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background: -moz-linear-gradient(left, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.7) 60%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.7) 60%,rgba(255,255,255,0) 100%);
}

.section#section_1 .text.longExcerpt{
	background: -moz-linear-gradient(left, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 80%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.7) 80%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.7) 80%,rgba(255,255,255,0) 100%);
}

.section#section_1 .text .jump_chapter_btn{
	height: 100%;
	width: 300px;
	position: absolute;
	-webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.section#section_1 .text .jump_chapter_btn.left_side{
	left: 0px;
}

.section#section_1 .text .jump_chapter_btn.left_side:after{
	height: 100%;
	width: 100%;
	content: '';
	position: absolute;
	left: -100%;
	top: 0px;
	z-index: 1;
	background: -moz-linear-gradient(left, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0) 100%);
	-webkit-transition: all 1600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 1600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.section#section_1 .text .jump_chapter_btn:hover.left_side:after{
	left: 0px;
}

.section#section_1 .text .jump_chapter_btn.right_side{
	right: 0px;
}

.section#section_1 .text .jump_chapter_btn.right_side:after{
	height: 100%;
	width: 100%;
	content: '';
	position: absolute;
	right: -100%;
	top: 0px;
	z-index: 1;
	background: -moz-linear-gradient(right, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(right, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to left, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0) 100%);
	-webkit-transition: all 1600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 1600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.section#section_1 .text .jump_chapter_btn:hover.right_side:after{
	right: 0px;
}

.section#section_1 .text .prev_chapter{
	width: 150px;
	height: 150px;
	position: absolute;
	left: -10%;
	top: 50%;
	margin-top: -65px;
	z-index: 2;
	-webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	opacity: 0;
}

.section#section_1 .text .jump_chapter_btn:hover .prev_chapter{
	left: 0px;
	opacity: 1;
}

.section#section_1 .text .next_chapter{
	width: 150px;
	height: 150px;
	position: absolute;
	right: -10%;
	top: 50%;
	margin-top: -65px;
	z-index: 2;
	-webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	opacity: 0;
}

.section#section_1 .text .jump_chapter_btn:hover .next_chapter{
	right: 0px;
	opacity: 1;
}

.section#section_1 .text .jump_chapter_btn a{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: absolute;
	top: 0px;
	left: 0px;
}

.section#section_1 .text .jump_chapter_btn .arrow{
	width: 40px;
	height: 40px;
	position: relative;
	margin-left: 55px;
	margin-top: 40px;
	margin-bottom: 10px;
	-webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.section#section_1 .text .next_chapter .arrow{
	transform: scaleX(-1);
}

.section#section_1 .text .jump_chapter_btn .arrow:after{
	width: 50%;
	height: 1px;
	position: absolute;
	content: '';
	left: 10px;
	top: 26px;
	transform: rotate(45deg);
	background-color: #000;
}

.section#section_1 .text .jump_chapter_btn .arrow:before{
	width: 50%;
	height: 1px;
	position: absolute;
	content: '';
	left: 10px;
	top: 13px;
	transform: rotate(-45deg);
	background-color: #000;
}

.section#section_1 .text .jump_chapter_btn label{
	font-size: 14px;
	text-align: center;
	width: 100%;
	float: left;
}

.section#section_1 .text .container{
	height: 100%;
}

.section#section_1 .text .container .text_container{
	display: table;
	height: 100%;
}

.section#section_1 .text .container .text_container .text_box{
	width: 50%;
	display: table-cell;
	vertical-align: middle;
	padding-right: 50px;
	box-sizing: border-box;
}

.section#section_1 .text.longExcerpt .container .text_container .text_box{
	width: 80%;
}

.section#section_1 .text .container .text_container .num_style{
	color: #000;
	margin-top: 0px;
	font-size: 87px;
	text-align: left;
	margin-bottom: 2px;
	line-height: 10px;
}

.section#section_1 .text .container .text_container h1{
	color: #000;
	margin-top: 20px;
	font-size: 36px;
	text-align: left;
	margin-bottom: 2px;
}

.section#section_1 .text .container .text_container h2{
	color: #000;
	margin-top: 0px;
	font-size: 17px;
	text-align: left;
	margin-bottom: 45px;
}

.section#section_1 .text .container .text_container p{
	color: #000;
	font-size: 17px;
	line-height: 28px;
	text-align: justify;
}

.section#section_1 .text .container .text_container p br{
/* 	display: none; */
}

.section#section_1 .text .container .text_container .arrow{
	width: 50px;
	margin: 0 auto;
	text-align: center;
	bottom: 50px;
	left: 50%;
	margin-left: -25px;
	position: absolute;
	
}

.section#section_1 .text .container .text_container .arrow a{
	position: relative;
	width: 15px;
	height: 15px;
	margin: 0 auto;
	display: block;
	margin-top: 0px;
}

.section#section_1 .text .container .text_container .arrow a:before{
	width: 100%;
	height: 1px;
	background-color: #000;
	transform: rotate(45deg);
	position: absolute;
	left: -5px;
	top: 0px;
	content: "";
	transition: 400ms all ease;
}

.section#section_1 .text .container .text_container .arrow a:after{
	width: 100%;
	height: 1px;
	background-color: #000;
	transform: rotate(-45deg);
	position: absolute;
	right: -5px;
	top: 0px;
	content: "";
	transition: 400ms all ease;
}

.section#section_1 .text .container .text_container .arrow:hover a:before,
.section#section_1 .text .container .text_container .arrow:hover a:after{
	top: 20px;
}

.section#section_1 .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.section#section_2{
	padding-top: 60px;
	background-color: #fff;
}

.section#section_3{
	padding-top: 60px;
	padding-bottom: 60px;
}

.section#section_3 .container{
	height: 100%;
	overflow: hidden;
}

.section#section_3  .share_container{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
}

.section#section_3  .share_container > *{
	height: 400px;
}

.section#section_3  .share_container .pic{
	width: 50%;
	float: right;
	padding-left: 40px;
	box-sizing: border-box;
}

.section#section_3  .share_container .pic .img{
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #c4c4c4;
}

.parent-pageid-27 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_01.jpg)
}
.parent-pageid-40 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_02.jpg)
}
.parent-pageid-52 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_03.jpg)
}
.parent-pageid-64 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_04.jpg)
}
.parent-pageid-79 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_05.jpg)
}
.parent-pageid-91 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_06.jpg)
}
.parent-pageid-101 .section#section_3  .share_container .pic .img{
	background-image: url(../../img/share_pic_07.jpg)
}

.section#section_3  .share_container .text{
	width: 40%;
	float: left;
	display: table;
}

.section#section_3  .share_container .text .text_container{
	display: table-cell;
	vertical-align: middle;
}

.section#section_3  .share_container .text .text_container h2{
	color: #000;
	margin-top: 0px;
	font-size: 36px;
	text-align: left;
	margin-bottom: 15px;
}

.section#section_3  .share_container .text .text_container p{
	color: #000;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
}

.section#section_3  .share_container .text .text_container .link_btns{
	width: 100%;
	float: left;
	margin-top: 100px;
}

.section#section_3  .share_container .text .text_container .link_btns a{
	display: block;
	color: #000;
	margin-right: 15px;
	text-decoration: none;
	font-size: 14px;
	padding: 5px 12px 8px 15px;
	transition: 400ms all ease;
	border-radius: 4px;
	float: left;
}

.section#section_3  .share_container .text .text_container .link_btns a .fa{
	padding-left: 10px;
	transition: 400ms padding-left ease;
}

.section#section_3  .share_container .text .text_container .link_btns a:hover{
	background-color: rgba(0,0,0,1);
	color: #fff;
}

.section#section_3  .share_container .text .text_container .link_btns a:hover .fa{
	padding-left: 25px;
}

@media (max-width: 1400px) {
	.section#section_1 .text .prev_chapter,
	.section#section_1 .text .next_chapter{
		zoom: 0.8;
		background-color: rgba(255,255,255,0.9);
	}
}

@media (max-width: 1200px) {
	
}

@media (max-width: 992px) {
	.section#section_1 .text{
		background: rgba(255,255,255,0.8) !important;
	}
	.section#section_1 .text .jump_chapter_btn{
		display: none;
	}
	.section#section_1 .text .container .text_container .num_style{
		font-size: 60px;
	}
	.section#section_1 .text .container .text_container .text_box,
	.section#section_1 .text.longExcerpt .container .text_container .text_box{
		width: 100%;
		padding-right: 0px;
	}
	.section#section_3  .share_container > *{
		height: 300px;
	}
	.section#section_1 .text .container .text_container p br{
		display: none;
	}
}

@media (max-width: 768px) {
	.section#section_1 .text .container .text_container h1{
		font-size: 20px;
	}
	
	.section#section_1 .text .container .text_container h2{
		font-size: 13px;
	}
	
	.section#section_1 .text .container .text_container p{
		font-size: 13px;
		line-height: 20px;
	}
}

@media (max-width: 600px) {
	.section#section_1 .bg{
		background-attachment: inherit;
	}
	.section#section_3{
		height: auto;
		padding-top: 0px;
		padding-bottom: 20px;
	}
	.section#section_3 .container{
		padding-left: 0px;
		padding-right: 0px;
		box-sizing: inherit;
	}
	
	.section#section_3 h2{
		font-size: 24px !important;
	}
	
	.section#section_3 p{
		font-size: 13px !important;
	}
	
	.section#section_3  .share_container .pic{
		height: 300px;
		padding-left: 0px;
		margin-bottom: 15px;
	}
	
	.section#section_3  .share_container .pic,
	.section#section_3  .share_container .text{
		width: 100%;
	}
	
	.section#section_3  .share_container .text{
		height: auto;
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
	}
	
	.section#section_3  .share_container .text .text_container h2{
		text-align: center;
	}
	
	.section#section_3  .share_container .text .text_container .link_btns{
		float: inherit;
		text-align: center;
		margin: 0 auto;
		margin-top: 40px;
		margin-bottom: 20px;
	}
	
	.section#section_3  .share_container .text .text_container .link_btns a{
		float: inherit;
		display: inline-block;
	}
}

@media (max-width: 330px) {
	.section#section_1 .text .container .text_container .num_style{
		font-size: 40px;
	}
	.section#section_1 .text .container .text_container h2{
		margin-bottom: 20px;
	}
}




.section#section_4{
	background-color: #fff;
}

.section#section_4 .game_btns{
	width: 170px;
	margin: 0 auto;
	margin-top: 30px;
	transition: 400ms width ease;
}

.section#section_4 .game_btns a{
	display: block;
	color: #000;
	margin-right: 15px;
	text-decoration: none;
	font-size: 14px;
	padding: 5px 12px 8px 15px;
	transition: 400ms all ease;
	border-radius: 4px;
}

.section#section_4 .game_btns a .fa{
	padding-left: 10px;
	transition: 400ms padding-left ease;
}

.section#section_4 .game_btns:hover{
	width: 185px;
}

.section#section_4 .game_btns a:hover{
	background-color: rgba(0,0,0,1);
	color: #fff;
}

.section#section_4 .game_btns a:hover .fa{
	padding-left: 25px;
}

.section#section_4 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section#section_4  h2{
	margin-top: 0px;
	font-size: 48px;
	text-align: center;
	margin-bottom: 10px;
}

.section#section_4  p{
	margin-top: 0px;
	font-size: 14px;
	text-align: center;
	margin-bottom: 45px;
}

@media (max-width: 600px) {
	.section#section_4  h2{
		font-size: 24px !important;
	}
}
