/* CSS Document */
/* ---reset.css--- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.6;
}
ol, ul {
	list-style: none;
}
li{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ---reset.css--- */
	
a:link, a:active, a:visited {
	text-decoration: none;  
}

a:hover {
    opacity: 0.8;
    /*font-weight: bold;*/
}
	
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Noto Sans TC', "Heiti TC", "Microsoft JhengHei", sans-serif; 
}

	
.ymc_a{
	color: #F3B812;
	border-bottom: 1px solid;
}

	
/* --電腦版型------------------------------------- */		

.all_content{
	background-color: #ffffff;
}

.page_content_block{
	display: block;
	width: 40%;
	margin: 120px auto;
}
.title_first{
	width: 100%;
	margin: 0 auto 3% auto;
	font-size: 1.5em;
	font-weight: bold;
	color: #245C95;
	text-align: center;
	border: solid 1px #245C95;
	padding: 5px;
}
.title_h1{
	font-size: 1.5em;
	color: #245E96;
	margin-bottom: 30px;
}
.title_h2{
	font-size: 1.2em;
	color: #3DADC1;
	margin-bottom: 20px;
}
.content_img{
	width: 100%;
	margin: 0 auto 20px auto;
	text-align: center;
}
.content_img img{
	width: 100%;
	margin: 0 auto;
}
.content_p{
	width: 100%;
	margin: 0 auto 20px auto;
}
.a_button {
	display: inline-block;
    font-size: 0.9em;
    color: #3DADC1;
    border: 1px solid #3DADC1;
    padding: 10px;
    border-radius: 5px;
	margin-bottom: 10px;
}
.a_button:hover{
	color: #fff;
	background-color: #3DADC1;
	border: 2px solid #3DADC1;
}
.a_button a:link, a:active, a:visited{
	text-decoration: none;
}


.backtolast {
	background-color: rgba(153, 153, 153, 0.75);
	background-image: url("/s_www/images/anchor_last.png");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	height: 40px;
	overflow: auto;
	position: fixed;
	bottom: 70px;
	right: 25px;
	text-indent: -99999px;
	transition: all 0.7s ease-in-out 0s;
	width: 40px;
	border-radius: 50%;
	opacity: 0.6;
}
.backtotop {
	background-color: rgba(153, 153, 153, 0.75);
	background-image: url("/s_www/images/anchor-06.png");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	height: 40px;
	overflow: auto;
	position: fixed;
	bottom: 25px;
	right: 25px;
	text-indent: -99999px;
	transition: all 0.7s ease-in-out 0s;
	width: 40px;
	border-radius: 50%;
	opacity: 0.6;
}
.book_program {
	background-color: #3badc2;
	background-image: url("/s_ymc/images/14ymc/app/book_program.png");
	background-size: 80%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	height: 40px;
	overflow: auto;
	position: fixed;
	bottom: 25px;
	left: 25px;
	text-indent: -99999px;
	transition: all 0.7s ease-in-out 0s;
	width: 100px;
	opacity: 0.8;
	/*border-radius: 50%;*/
}


/*************************禁禱下拉選單**********************/

.fastpray_select{
	display: block;
	font-size: 1em;
	margin: 0 auto 30px auto;
	width: 100%;
	cursor: pointer;
	padding: 7px;

  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;

  background: url(/cefcamp/images/camp_tri2.png) no-repeat right center;
  background-size: auto 100%;
	border: 1px solid #415884;
	border-radius: 6px;
  background-color: #fff;
	color: #415884;
}
.fastpray_option{
   background-color: #fff; 
}
.fastpray_hint_option{
	color: #b6b6b6;
}


/* --平板版型------------------------------------- */
@media screen and (min-width:768px) and (max-width: 1024px) {

	*{
		box-sizing :border-box; /* 讓 padding 與 width 解除關係 */
	}

	html,body{
		-webkit-text-size-adjust:none; /* iPhone 旋轉後 文字不要放大 */
	}
	
	
	
	.all_content{
		min-width: 320px;
	}
	.page_content_block{
		width: 80%;
	}
	
	
	.title_first{
		font-size: 1.2em;
	}
	.title_h1{
		margin-bottom: 15px;
	}
	.content_img{
		margin: 0 auto 15px auto;
	}
	.content_p{
		margin: 0 auto 15px auto;
	}

}




/* --手機版型------------------------------------- */
@media screen and (max-width: 767px) {
	
	*{
		box-sizing :border-box; /* 讓 padding 與 width 解除關係 */
	}

	html,body{
		-webkit-text-size-adjust:none; /* iPhone 旋轉後 文字不要放大 */
	}
	
	
	
	.all_content{
		min-width: 320px;
	}
	.page_content_block{
		width: 90%;
		margin: 30px auto;
	}


	.title_first{
		font-size: 1.2em;
	}
	.title_h1{
		font-size: 1.3em;
		margin-bottom: 15px;
	}
	.title_h2{
		font-size: 1.1em;
		margin-bottom: 10px;
	}
	.content_img{
		margin: 0 auto 10px auto;
	}
	.content_p{
		margin: 0 auto 10px auto;
	}
	.top_menu_blank{
		height: 60px;
	}


}






/*=====青宣報報 - 宣道品文=====*/


.notice_container{
	display: block;
	width: 100%;
}

.notice_title{
	text-align: left;
	color: #415884;
	font-size: 1.5em;
}

.notice_info{
	margin: 0% 0% 4% 0%;
	font-size: 0.8em;
	text-align: left;
	color: #999;
}

.notice_date{
	display: inline-block;
}

.notice_time{
	display: inline-block;
	margin: 0% 0% 0% 1%;
}

.notice_catg{
	display: inline-block;
	float: right;
}

.notice_p{
	clear: both;
	text-align: left;
	font-size: 1em;
	line-height: 1.6;
}

.notice_img{
	display:block;
	width: 100%;
	margin: 0px 0px 4% 0px;
}

/*.backtoprevious {
	cursor: pointer;
	position: fixed;
	bottom: 25px;
	right: 25px;
	transition: all 0.7s ease-in-out 0s;
	width: 40px;
}*/






/* --手機版型------------------------------------- */
@media screen and (max-width: 767px) {
	
	*{
		box-sizing :border-box; /* 讓 padding 與 width 解除關係 */
	}
	
	html,body{
		-webkit-text-size-adjust:none; /* iPhone 旋轉後 文字不要放大 */
	}
	
	.notice_title{
		font-size:1.3em;
	}
	
	.notice_info{
		margin: 0% 0% 15px 0%;
	}
	
	.notice_img{
		margin: 0px 0px 30px 0px;
	}
	
	.theme{
		font-size:1.1em;
	}
	
}






/*==========影音專區 - 主頁==========*/
.container_1{
	display: block;
	width: 100%;
	margin:5% auto 2% auto;
}


.video_block_1{
	display: inline-block;
	width: 49.5%;
	margin: 0 auto 0 auto;
	vertical-align: top;
}

.cat_block{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.cat_image {
  /* Add the blur effect */
  /*filter: blur(1px);
  -webkit-filter: blur(1px);*/
  
  filter: brightness(80%);
  /* Full height */
  width: 100%;
}

/* Position text in the middle of the page/image */
.cat_text {
  color: white;
  font-weight: bold;
  position: absolute;
  top: 42%;
  left: 0%;
  right: 0%;
}



/***平板版***/
@media screen and (max-width: 1024px) {
	
	

	.video_block_1{
		display: block;
		width: 100%;
		/*margin: 0 auto 5% auto;*/
		vertical-align: top;
	}

}





/***手機版***/
@media screen and (max-width: 768px) {
	
	.container_1{
		width: 100%;
		margin-bottom: 40px;
		margin-top: 30px;
	}
	

	.video_block_1{
		
	}

}







/*==========影音專區_內頁==========*/
.container_1{
	display: block;
	width: 100%;
	margin:5% auto 2% auto;
}

.video_box{
	margin: 0px 0px 20px 0px;
}

.video_pic_a{
	text-decoration: none;
	display: inline-block;
	width: calc(15vw);
	vertical-align: top;
}

.video_img{
	width: 100%;
}

.video_info{
	display: inline-block;
	width: calc(24vw);
	vertical-align: top;
	padding: 0px 0px 0px 2%;
}

.video_title{
	font-weight: bold;
	font-size: 1.1em;
}

.video_intro{
	color: #999;
	font-size: 0.9em;
	margin: 0px 0px 10px 0px;
}

.video_button{
	text-decoration: none;
	outline: none;
	background-color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	border: 2px solid #3badc2;
	color: #3badc2;
	font-size: 0.9em;
}





/***平板版***/
@media screen and (max-width: 1280px) {

	
	.video_box{
		margin: 0px 0px 20px 0px;
	}

	.video_pic_a{
		width: calc(25vw);
	}

	.video_img{
	}

	.video_info{
		display: inline-block;
		width: calc(50vw);
		padding: 0px 0px 0px 1%;
	}

	.video_title{
	}

	.video_intro{
	}

	.video_button{
	}


}





/***手機版***/
@media screen and (max-width: 767px) {
	
	.container_1{
		width: 100%;
		margin-bottom: 40px;
		margin-top: 30px;
	}
	
	.video_box{
		margin: 0px 0px 30px 0px;
	}
	
	.video_pic_a{
		width: 100%;
	}

	.video_img{
	}

	.video_info{
		display: inline-block;
		width: 100%;
		padding: 0px 0px 0px 1%;
	}

	.video_title{
	}

	.video_intro{
	}

	.video_button{
	}
	
}






/*=====個人頁面 - 從今以後選組=====*/
.from_now_on_intro{
	margin: 0px 0px 15px 0px;
	font-weight: bold;
}

.from_now_on_select{
	display: block;
	background-color:#F3B812;
	color: #fff;
	padding: 2px 0px 2px 10px;
	margin: 0px 0px 10px 0px;
	font-size: 0.9em;
}

.ymc_from_now_on_form{
	line-height: 1.6;
}

.ymc_from_now_on_form p{}

.ymc_from_now_on_form p input{
	margin: 0px 10px 0px 0px;
}

.ymc_from_now_on_form p label{}

.ymc_button_block{}

.from_now_on_button{
	display: inline-block;
	width:48%;
	text-align: center;
	margin-top: 15px;
	padding: 8px 0px;
	background-color: #3badc2;
	border: 2px solid #3badc2;
	color: #fff;
	font-size: 1em;
	border-radius: 8px;
}

.from_now_on_button.button_left{
	margin-right: 2%
}

.from_now_on_button.button_right{}






/*=====關於APP - 問題回報按鈕=====*/
.problem_button{
	display: block;
	margin: 10px auto;
	border-radius: 5px;
	padding:10px;
	font-size: 0.9em;
	border: 1px solid #3DADC1;
	color: #fff;
	background-color:#3DADC1;
	float: right;
}

.problem_button:hover{
	opacity: 0.8;
}

.problem_button a{
	text-decoration: none;
	color: #fff;
}


/***手機版***/
@media screen and (max-width: 767px) {
	.problem_button{
		width: 100%;		
		clear: both;
	}
}







/*=====書攤資訊 - 廣告業=====*/
.suscribe_button{
	display: inline-block;
    font-size: 0.9em;
	color: #fff;
	background-color: #3DADC1;
    border: 1px solid #3DADC1;
    padding: 10px;
	border-radius: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	outline: none;
}

/***手機版***/
@media screen and (max-width: 767px) {
	.suscribe_button{
		font-size: 0.9em;
		width:100%;
		text-align: center;
	}
}






  