@charset "utf-8";

/* ======================================
	Category:
	01. base style overrides
	02. 表單元件基本設定
	03. 其他基本設定
	04. 分頁設定
	05. 套用owl.carousel之輪播基本設定
	06. 回頂端按紐
	07. 頁首設定
	08. 小螢幕時選單設定
	09. 頁尾設定
	10. 頁面共同設定
	11. 首頁
	12. 服務說明
	13. 會員
	14. 提供賺錢資訊
	15. 其他賺錢資訊
	16. FB、LINE分享
	17. 燈入頁
	18. 提示頁
	19. 工作機會
	
	----
	
	其他CSS、JS:
	Media Queries響應式css:media.css
	自訂JS:customize.js
	輪播用：animate.css  and  owl.carousel.min.css  and  owl.carousel.js
	圖片點按放大功能：fancybox.css  and  fancyBox js資料夾
	多層次menu收縮功能：mtree.js
====================================================================================================================================== */





/* ======================================
	01. base style overrides
====================================================================================================================================== */
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box
}
html, body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, button,textarea, p, th, td {
	margin: 0;
	padding: 0;
}
img {border: 0;}
:focus {outline: 0;}
h1, h2, h3, h4, h5, h6 {font-size: 100%; font-weight:100;}
input, button, textarea,select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}
input, button, textarea, select {*font-size: 100%;} /*purpose To enable resizing for IE */
ol, ul, li {list-style: none;}
:link, :visited , ins {text-decoration: none;}
news, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main { display: block;}


/* Basic Set */
html , body{
	height:100%;
	min-height:100%;
	width:100%;
	font-family:Arial, "微軟正黑體", serif , "新細明體-ExtB";
}
body{
	background:#FFF;
	
	font-size:16px;
	line-height:1.8;
	letter-spacing:1px;
}


/* Basic Layout */
.wrapper{
	position:relative;
	height:auto;
	width:100%;
	min-height:100%;
	overflow:hidden;
	margin-left:auto; 
	margin-right:auto;
}
.container{
	position:relative;
	margin:0 auto;
	max-width:1200px;
	width:92%;
	margin-right: auto;
	margin-left: auto;
}
.container:before, .container:after{ display:table; content:" " }
.container:after{ clear:both }





/* ======================================
	02. 表單元件基本設定
====================================================================================================================================== */
input , select , textarea{
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.2;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
	vertical-align:middle;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
input::-webkit-input-placeholder , select::-webkit-input-placeholder , textarea::-webkit-input-placeholder{ color: rgba(51,51,51, 0.5); font-size:0.95em;}
input::-moz-placeholder , select::-moz-placeholder , textarea::-moz-placeholder { color: rgba(51,51,51, 0.5); font-size:0.95em;}
input::-ms-input-placeholder , select::-ms-input-placeholder , textarea::-ms-input-placeholder { color: rgba(51,51,51, 0.5); font-size:0.95em;}
input::-moz-placeholder , select::-moz-placeholder , textarea::-moz-placeholder { color: rgba(51,51,51, 0.5); font-size:0.95em;}
select{
	padding-right:25px;
	appearance:none;
    -webkit-appearance: none;
    -moz-appearance: none;
	background:url(../images/selt-arrow.png) no-repeat scroll right 5px center transparent;
}
select::-ms-expand { display: none; }
input:focus , select:focus{ 
	border-color: rgba(13,105,231, 0.2);
    box-shadow: 0 1px 1px rgba(13,105,231, 0.075) inset, 0 0 5px rgba(13,105,231, 0.1);
    outline: 0 none;
}
label{ line-height:1; }




/* ======================================
	03. 其他基本設定
====================================================================================================================================== */
body , .wrapper{ color:#333; background:#a72023; }

/* a鏈結字 */
a { color:#333;}
a:hover, a:focus { color:#e8471a; text-decoration:none; }

/*方形圖設定*/
.item-thumb-frame { position: relative; display: block; width: 100%; overflow: hidden; }
.item-thumb { display: block; max-width: 100%; padding-bottom: 100%; }

.flex-container{ display:flex; flex-wrap:wrap; align-items:center; }




/* ======================================
	04. 分頁設定 page
====================================================================================================================================== */
.page{
	margin:45px 0;
	font-size:0.75rem;
	text-align:center;
	color:#444;
}
.page a , .page span{
	display:inline-block;
	border: 1px solid #444;
	color:#444;
	background:#fff;
	padding: 6px 6px;
	margin:0 3px;
	font-size:0.8rem;
	line-height:1.1;
	min-width:30px;
	
	-ms-border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	-o-bborder-radius:2px;
	border-radius:2px;
}
.page span{ 
	background:#e8471a;
	color:#fff; 
	border-color:#e8471a;
}
.page a:hover{ background:#444; color:#fff; border-color:#444; }





/* ======================================
	05. 套用owl.carousel之輪播基本設定
====================================================================================================================================== */
/* 輪播-左右按鈕 */
.owl-nav-style .owl-next , .owl-nav-style .owl-prev{
	position: absolute;
	top:50%;
	width: 35px;
	height: 35px;
	margin-top:-20px;
	opacity:0;
	transition: all 0.2s ease-in-out;
}
.owl-nav-style .owl-prev { left: 0px; }
.owl-nav-style .owl-next{ right: 0px; }
.owl-nav-style .owl-prev:before , .owl-nav-style .owl-prev:after , .owl-nav-style .owl-next:before , .owl-nav-style .owl-next:after{
	position:absolute;
	z-index:5;
	left:50%;
	margin-top:-6px;
	width:4px;
	height:16px;
	content:"";
	background:#fff;
	
	-ms-border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	-o-bborder-radius:2px;
	border-radius:2px;
}
.owl-nav-style .owl-prev:before , .owl-nav-style .owl-next:after{ bottom:50%; margin-bottom:-12px; }
.owl-nav-style .owl-prev:after , .owl-nav-style .owl-next:before{ top:50%; margin-top:-12px; }
.owl-nav-style .owl-prev:before , .owl-nav-style .owl-next:before{
	transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
}
.owl-nav-style .owl-prev:after , .owl-nav-style .owl-next:after{
	transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-o-transform:rotate(45deg);
}
.owl-nav-style:hover .owl-prev , .owl-nav-style:hover .owl-next{ opacity:0.8; }
.owl-nav-style .owl-prev:hover , .owl-nav-style .owl-next:hover{ opacity:1; }

/* 左右鍵 無下一張或上一張之變淡提示 */
.owl-nav-style .owl-prev.disabled , .owl-nav-style .owl-next.disabled{ opacity:0.5; cursor:default; }
.owl-nav-style .owl-prev.disabled:before , .owl-nav-style .owl-next.disabled:before{ border-color:#353535; }
.owl-nav-style .owl-prev.disabled:after{ border-right-color:#353535; }
.owl-nav-style .owl-next.disabled:after{ border-left-color:#353535; }


/* 輪播-底下圓圈 */
.owl-dots-style .owl-dots{ position:absolute; bottom:10px; left:1%; width:98%; z-index:3; text-align:right; padding:0 10px;}
.owl-dots-style .owl-dots .owl-dot { display:inline-block; zoom:1 }
.owl-dots-style .owl-dots .owl-dot span {
	width:15px;
	height:15px;
	margin:0px 7px;
	background:#fff;
	border:3px solid #fff;
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity .2s ease;
	
	-ms-border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	-o-bborder-radius:50%;
	border-radius:50%;
}
.owl-dots-style .owl-dots .owl-dot.active span, .owl-dots-style .owl-dots .owl-dot:hover span { background:#EB6A26; border:3px solid transparent;}
@media (max-width:960px) { 
	.owl-dots-style .owl-dots{ bottom:5px; padding:0; line-height:1; }
	.owl-dots-style .owl-dots .owl-dot span { width:12px; height:12px; margin:0px 12px; border-width:2px; } 
}




/* ======================================
	06. 回頂端按紐
====================================================================================================================================== */
.scrolltop{
	position: fixed;
	z-index: 999;
    right: 15px;
    bottom: 75px;
    display: block;
    cursor: pointer;
	background:#444;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 33px;
    padding: 15px 5px 10px 5px;
	opacity:0;
}
/*.scrolltop img {
    animation: scroll-act1 2.5s infinite;
}*/
.scrolltop.show{ opacity:1; }
/*@keyframes scroll-act1{
	0% {
		opacity: 0;
		-webkit-transform: translateY(12px);
		-ms-transform: translateY(12px);
		transform: translateY(12px);
	}
	50% {
		opacity: 1;
		-webkit-transform: translateY(0px) scale(1);
		-ms-transform: translateY(0px) scale(1);
		transform: translateY(0px) scale(1);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-10px) scale(1);
		-ms-transform: translateY(-10px) scale(1);
		transform: translateY(-10px) scale(1);
	}
}*/




/* ======================================
	07. 頁首設定
====================================================================================================================================== */

/*logo和選單列*/
.header{ 
	position:fixed; 
	z-index:999; 
	top:0; 
	left:0; 
	width:100%; 
	background:#fff; 
	min-height:110px;
	padding:10px 0;
	
	background:url(../images/web-02.png) center left no-repeat , url(../images/web-03.png) center right no-repeat , radial-gradient( #cd1f2f , #a72023 );
	background:url(../images/web-02.png) center left no-repeat , url(../images/web-03.png) center right no-repeat , -moz-radial-gradient( #cd1f2f , #a72023 );
	background:url(../images/web-02.png) center left no-repeat , url(../images/web-03.png) center right no-repeat , -webkit-radial-gradient( #cd1f2f , #a72023 );
	background:url(../images/web-02.png) center left no-repeat , url(../images/web-03.png) center right no-repeat , -o-radial-gradient( #cd1f2f , #a72023 );
	background:url(../images/web-02.png) center left no-repeat , url(../images/web-03.png) center right no-repeat , -ms-radial-gradient( #cd1f2f , #a72023 );
	
	-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
}
.header:before , .header:after{ position:absolute; left:0; width:100%; height:10px; content:""; }
.header:before{
	top:0;
	background:linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-moz-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-webkit-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-o-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-ms-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
}
.header:after{ 
	bottom:0;
	background:linear-gradient( 45deg , #fff21e , #fccc00 , #ffffff , #ffe400 );
	background:-moz-linear-gradient( 45deg ,#fff21e , #fccc00 , #ffffff , #ffe400 );
	background:-webkit-linear-gradient( 45deg ,#fff21e , #fccc00 , #ffffff , #ffe400 );
	background:-o-linear-gradient( 45deg ,#fff21e , #fccc00 , #ffffff , #ffe400 );
	background:-ms-linear-gradient( 45deg ,#fff21e , #fccc00 , #ffffff , #ffe400 );
}
.header-flex{ display: flex; flex-wrap:wrap; align-items:center; padding:5px 0; }
.header-left{ width:250px; }
.header-right{ width:calc(100% - 260px); text-align:right; }


.logo{ max-width:250px; line-height:1; }
.logo a{ display:block; width:100%; height:100%; }
.logo img{ display:block; max-width:100%; height:auto;}


/*選單*/
.menu-list{ display:block; text-align:right; margin:12px 0; }
.menu-list li{ display:inline-block; margin-left:10px; }
.menu-list li a{ 
	display:block; 
	position:relative; 
	padding:5px 10px; 
	text-align:left; 
	line-height:1.6; 
	border:1px solid transparent;
	
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-bborder-radius:5px;
	border-radius:5px;
} 

.menu-list li a .menu-icon{ position:absolute; top:4px; left:5px; max-width:28px; }
.menu-list li a .menu-icon img{ display:block; max-width:100%; height:auto;  }
.menu-list li a .menu-text{ position:relative; font-weight:600; min-height:30px; padding-left:30px; color:#fff; }

.menu-list li .menu-heading{ 
	display:block; 
	position:relative; 
	padding:5px 10px; 
	text-align:left; 
	line-height:1.6; 
	color:#fff;
	font-weight:600;
}

.menu-list li.mark a{  background:#fff; border-color:#fff; }
.menu-list li.mark a .menu-text{ color:red; font-weight:600; }
.menu-list li a:hover{ border-color:#fff; background:rgba(0,0,0,0.2); }
.menu-list li.mark a:hover{ background:#ffe400; }
.menu-list li.mark a:hover .menu-text{ color:red; }

.header-space{ height:140px; }



/* ======================================
	08. 小螢幕時選單設定
====================================================================================================================================== */

/*小螢幕時選單鈕*/
.menu-trigger{ display:none; }
.menu-trigger-icon , .menu-trigger-txt{ display:inline-block; vertical-align:middle; line-height:1; }
.menu-trigger-icon{ position:relative; width:44px; height:44px; }
.menu-trigger-icon:before , .menu-trigger-icon:after{
	position:absolute;
	left:15%;
	width:70%;
	height:4px;
	margin-top:-1px;
	content:"";
	background:#fff;
	
	transition:transform 0.5s ease;
	-webkit-transition:transform 0.5s ease;
	-moz-transition:transform 0.5s ease;
	-o-transition:transform 0.5s ease;
}
.menu-trigger-icon:before{ top:25%; }
.menu-trigger-icon:after{ top:75%; }

.menu-trigger-icon .iocn-line{
	position:absolute;
	top:50%;
	left:15%;
	width:70%;
	height:4px;
	margin-top:-2px;
	background:#fff;
}
.menu-trigger.opened .menu-trigger-icon { }
.menu-trigger.opened .menu-trigger-icon:before{
	-webkit-transform: rotate(-45deg) translate(-8px, 8px) ;
    transform: rotate(-45deg) translate(-8px, 8px) ;
}
.menu-trigger.opened .menu-trigger-icon:after{
	-webkit-transform: rotate(45deg) translate(-7px, -7px) ;
    transform: rotate(45deg) translate(-7px, -7px) ;
}
.menu-trigger.opened .menu-trigger-icon .iocn-line{ opacity:0; }

.menu-trigger-txt{ color:#fff; font-weight:bolder; font-size:1.2em; }

.menu-trigger.scrolldown .menu-trigger-icon:before , .menu-trigger.scrolldown  .menu-trigger-icon:after{ background:#6c6c6c; }
.menu-trigger.scrolldown .menu-trigger-icon .iocn-line{ background:#6c6c6c }




/* ======================================
	09. 頁尾設定
====================================================================================================================================== */

/*頁尾*/
.footer { position:relative; background:#a72023; padding:50px 0 20px 0; }
.footer:before{
	position:absolute;
	top:0;
	left:0; 
	width:100%; 
	height:10px; 
	content:"";
	background:linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-moz-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-webkit-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-o-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
	background:-ms-linear-gradient( 45deg , #ffe400 , #ffffff , #fccc00 , #fff21e );
}

.footer-flex-wrap{ display:flex; flex-wrap:wrap; }
.footer-flex-left{ width:60%; }
.footer-flex-right{ width:40%; }

.footer , .footer a{ color:rgba(255,255,255,0.8); }
.footer a:hover{ color:rgba(255,255,255,1); }

.footer-info-list{ margin-bottom:13px; }
.footer-info-list li{ font-size:13px; letter-spacing: 1px; }
.footer-info-list li span{ display:inline-block; margin-right:6px; }

.footer-info-list.right-side{ text-align:right; }


.copyright{ text-align:right; font-size:13px; }
.copyright , .copyright a{ color:rgba(255,255,255,0.6); }
.copyright a:hover{ color:rgba(255,255,255,1); }

.copyright p:nth-child(2){ margin-top: 10px; }

.social-list{ display:block; margin-top:20px; text-align:right; }
.social-list li{ 
	display:inline-block;
	width:35px;
	margin:3px 0 3px 14px; 
	padding:3px;
	border:1px solid #fff;
	overflow:hidden;
	
	-ms-border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	-o-bborder-radius:50%;
	border-radius:50%;
	opacity:0.8;
	
	transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
}
.social-list li img{ display:block; max-width:100%; height:auto; }
.social-list li:hover{
	opacity:1;
    transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
}





/* ======================================
	10. 頁面共同設定
====================================================================================================================================== */

.main{ background:#fff; min-height:600px; }
.main-bg{ background:#fff url(../images/web-05.png) no-repeat center top; background-size:100% auto; }

.main-content{ margin-top:20px; }


/*大標*/
.page-headline{ text-align:center; margin:45px 0; }
.page-headline .title{ position:relative; z-index:1; font-size:26px; font-weight:600; }
.page-headline .title:before{
	position:absolute;
	z-index:-1;
	bottom:0;
	left:-5%;
	width:110%;
	height:10px;
	content:"";
	background:#ffe400;
}



.box-set{
	border:1px solid #ccc; 
	background:rgba(255,255,255,0.6);
	padding:15px 20px 15px 20px;
	
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-bborder-radius:5px;
	border-radius:5px;
}







/* ======================================
	11. 首頁
====================================================================================================================================== */

/*輪播區塊*/
.slider-banner{ background:#fff; }

.banner{ background:#fff; }
.banner img{ display:block; max-width:100%; height:auto; }




/* ======================================
	12. 服務說明
====================================================================================================================================== */
.service-main-content{ max-width:1000px; margin-left:auto; margin-right:auto; }
.service-healine-wrap{ margin:30px 0 45px 0; }
.service-heading{ font-weight:600; font-size:22px; color:#333; }
.service-subheading{ font-size:18px; margin-bottom:10px; color:#333; }
.service-headline-content{ margin-top:15px; font-size:15px; }

.service-list-heading{ text-align:center; margin-bottom:20px; }
.service-list-heading .title{ display:inline-block; font-size:20px; font-weight:600; }

.service-list{ display: flex; flex-wrap:wrap; width:100%; margin:15px 0 30px 0; }
.service-list li{ width:30%; margin-right:5%; margin-bottom:30px; }
.service-list li:nth-child(3n){ margin-right:0; }

/*服務項目*/
.service-item{ position:relative; }
.num-tag{ 
	position:absolute; 
	top:12px; 
	left:-2px;
	width:50px;
	height:28px;
	background:url(../images/icon-tag.png) no-repeat center; 
	background-size:cover;
	line-height:27px;
	padding-left:14px;
	color:#fff;
}
.service-item .photo{ 
	padding:3px; 
	border:1px solid #ccc;
	
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-bborder-radius:5px;
	border-radius:5px;
}
.service-item .photo img{ display:block; max-width:100%; height:auto; }
.service-item .name{ font-weight:600; color:#8E1E22; font-size:18px; margin:7px 0; }
.service-item .text{ font-size:13px; }




/* ======================================
	13. 會員
====================================================================================================================================== */






/* ======================================
	14. 提供賺錢資訊
====================================================================================================================================== */
.offer-info-eaplain{ position:relative; margin-bottom:30px; }
.offer-info-eaplain img{ max-width:100%; height:auto; }

.offer-info-btn-line{ text-align:center; margin:15px 0 45px 0; }
.offer-info-btn{ 
	display:inline-block;
	background:#A72023;
	color:#fff;
	padding:3px 25px;
	
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-bborder-radius:5px;
	border-radius:5px;
}
.offer-info-btn:hover{ 
	color:#fff;
	
	-webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
	-o-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
	box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
} 

/*提供賺錢資訊-詳細頁*/
.offer-info-list{ max-width:600px; margin:15px auto 30px auto; }

.offer-info-item{ position:relative; margin-bottom:10px; }
.offer-info-item a{ display:block; }
.offer-info-item .name{ font-weight:600; color:#000; }
.offer-info-item .desc{ color:#333; font-size:14px; }
.offer-info-item:hover { border-color:#A72023;}
.offer-info-item a:hover .name{ color:#A72023; }


.offer-info-form{
	max-width:600px; 
	margin:30px auto 60px auto; 
	border-top:1px solid #ccc;
	padding-top:30px;
}
.offer-info-form-title{ text-align:center; font-size:18px; font-weight:600; color:#A72023; }





/* ======================================
	15. 其他賺錢資訊
====================================================================================================================================== */
.link-list{ display:flex; flex-wrap:wrap; }
.link-list li{ width:47%; margin-right:6%; margin-bottom:30px; }
.link-list li:nth-child(2n){ margin-right:0; }

.link-flex{ display:flex; flex-wrap:wrap; width:100%; }

.link-left{ width:140px; margin-right:25px; }
.link-right{ width:calc( 100% - 165px );}

.link-photo{  position:relative;  width:140px; background:#fff; }
.link-photo:hover{ border-color:#A72023; }

.link-name{ margin:10px 0; }
.link-name a{ font-size:18px; font-weight:600; }
.link-name a:hover{ color:#A72023; }

.link-intro{ font-size:15px; }







/* ======================================
	16. FB、LINE分享
====================================================================================================================================== */
.social-share-item{ position:relative; padding-right:200px; margin-bottom:30px; }

.social-share-line{ margin:5px 0; }

.social-share-point-line{ border-top:1px solid #ccc; margin-top:10px; padding-top:5px; }
.social-share-point-line.has-bt-info{ border-bottom:1px solid #ccc; margin-bottom:10px; padding-bottom:5px; }

.social-share-cate , .social-share-title , .social-share-state , 
.social-share-time , .social-share-link , .social-share-point{ display:inline-block; margin-right:15px; }

.social-share-cate{ font-size:16px; font-weight:600; background:#A72023; color:#fff; padding:3px 10px; margin-bottom:10px; }
.social-share-cate .cate-icon{ display:inline-block;  vertical-align:middle;  width:25px; margin-right:4px; }
.social-share-cate .cate-icon img{ display:block; max-width:100%; height:auto; }
.social-share-cate .cate-title{ display:inline-block; vertical-align:middle;  }

.social-share-title{ font-size:16px; }
.social-share-state{ color:red; font-size:14px; }
.social-share-time{ font-size:14px; color:#666; }
.social-share-link{ font-size:14px; color:#666; }

.social-share-point{ font-size:14px; }

.pointmark{ color:red; }

.social-share-explain{ color:#666; font-size:14px; }
.social-share-explain img{ max-width:100%; height:auto; }

.social-share-gobtn{ 
	position:absolute;
	top:10%;
	right:20px;
	
	width:120px;
	height:80%;
	border:1px solid #ccc;
	background:#ffe400;
	
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-bborder-radius:5px;
	border-radius:5px;
	
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
}

.social-share-gobtn .title{
	display:block;
	color:#A72023;
	font-size:18px;
	font-weight:600;
	width:50px;
	text-align:center;
}
.social-share-item:hover .social-share-gobtn{ background:#A72023; border:1px solid #ffe400; }
.social-share-item:hover .social-share-gobtn .title{ color:#fff; }


/*FB、LINE分享 詳細頁*/
.social-share-view-link{
	position:relative;
	padding-left:200px;
	min-height:80px;
	margin-bottom:15px;
}
.social-share-view-link .title{ position:absolute; top:15px; left:20px; font-size:20px; font-weight:600; color:#A72023; }


.social-share-viewmain{ min-height:80px; margin-bottom:15px; }

.social-share-viewmain .social-share-item{ border-width:0px; padding:0; }

.social-share-desc-trigger{
	display:block;
	background:#999; 
	border:1px solid #ccc; 
	text-align:center;
	padding:3px 0;
	
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-bborder-radius:5px;
	border-radius:5px;
}
.social-share-desc-trigger .title{ color:#fff; font-size:18px; }

.social-share-desc-toggle{ display:none; padding:30px 0; }
.social-share-desc-toggle img{ max-width:100%; height:auto; }
.social-share-desc-toggle.opened{ display:block; }










/* ======================================
	17. 登入頁
====================================================================================================================================== */
.login-area{ margin:60px 0;}

.login-form{ max-width:420px; margin-left:auto; margin-right:auto;}


/* == 表單 套件組合 ======== */
.form-list{ display:flex; flex-wrap:wrap; }
.form-list > li{ width:100%; margin-bottom:20px; }
.form-list > li.half-width{ width:50%; padding-right:10px; } 

.form-bar{ display:flex; flex-wrap:wrap; width:100%; /*align-items:center;*/ }
.form-bar .form-bar-left{ width:85px; margin-right:10px; }
.form-bar .form-bar-right{ width:calc( 100% - 95px); }

.require-mark{ display:inline-block; width:8px; color:red; font-size:0.85em; }


.form-bar label{
	display:block;
	text-align:right;
	color:#000;
	margin-top:10px;
}
.form-bar input[type=text] , .form-bar input[type=password] , .form-bar textarea{
	width: 100%;
    display: block;
	border:1px solid #ccc;
	background:#fff;
	color:#333;
	border-radius:3px;
	padding:10px;
}

.form-bar label .icon{ display:inline-block; vertical-align:bottom; width:30px; }
.form-bar label .icon img{ display:block; max-width:100%; height:auto; }

.form-bar label .icon{ display:inline-block; vertical-align:bottom; }


.form-btn-line{ width:100%; text-align:center; margin:20px 0 30px 0; }

.fbtn-confirm{
	position:relative;
	display:inline-block;
	z-index:1;
	padding:10px 20px;
	color:#A72023;
	border:1px solid #ccc;
	background:#ffe400;
	font-weight:600;
	font-size:16px;
	cursor:pointer;
	border-radius:3px;
}
.fbtn-confirm:hover{ background:#A72023; color:#fff; }



.help-area{ margin:40px 0; }
.help-link-list{ text-align:center; }
.help-link-list li{ display:inline-block; margin:10px 5px; }
.help-link-list li a{
	display:block;
	padding:7px 15px 5px 15px;
	line-height:1;
	border:1px solid #666;
	border-radius:20px;
	font-size:14px;
	color:#666;
}
.help-link-list li a:hover{ background:#A72023; border-color:#A72023; color:#fff; }







/* ======================================
	18. 提示頁
====================================================================================================================================== */
.message-txt{ margin:120px 0; text-align:center; font-size:24px; font-weight:600; }





/* ======================================
	19. 工作機會
====================================================================================================================================== */
.job-search-area{ text-align:center; margin:30px 0; }

.search-form select , .search-form .txtinput , .search-form .submitbtn , .search-form .radbtn-title{ font-size:14px; margin:7px 0; }
.search-form select , .search-form .txtinput , .search-form .submitbtn{ border-radius:2px; }
.search-form select , .search-form .submitbtn{ cursor:pointer; }


.search-radio-area span{ display:inline-block; margin-right:5px; }

.search-form .submitbtn{}
.search-form .submitbtn:hover{ background:#A72023; border-color:#A72023; color:#fff; }


/*table*/
.overview-tb{
	width:100%;
	border: 1; 
	border-collapse: collapse; /*讓表格間無間隔*/
	/*table-layout:fixed;*//*能改善表格呈現的性能*/
	/*empty-cells:show;*//*能隱藏不必要的干擾因素*/
	text-align:center;
	font-size:12px;
}
.overview-tb th{ background:#A72023; color:#fff; border:1px solid #fff; font-weight:600; padding:3px 2px; }

.overview-tb td{ border:1px solid #ccc; padding:3px 2px; }


.overview-tb th.mobile-show{ display:none; }
.overview-tb td.mobile-show{ display:none; }
.overview-tb .detail_row{ display:none; text-align:left; background:#fff; }

.overview-tb .detail_row.opened{ display:none; }

.icon-chevron-down{ position:relative; display:block; width:100%; height:45px; cursor:pointer; }
.icon-chevron-down:before{
	position:absolute;
	top:50%;
	left:50%;
	width:6px;
	height:6px;
	margin-top:-3px;
	margin-left:-3px;
	content:"";
	border-bottom:2px solid #333;
	border-right:2px solid #333;
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
}

.overview-tb a{ text-decoration:underline; }



.house-info-area{ display:flex; flex-wrap:wrap; }
.house-info-item{
	width:100%;
	position:relative;
	padding-left:90px;
	font-size:14px;
	padding-bottom:4px;
	margin-bottom:3px;
	border-bottom:1px dashed #ccc;
	min-height:30px;
	color:#333;
}
/*.house-info-item:last-child{ padding-bottom:0; margin-bottom:0; border-bottom-width:0px; }*/

.house-info-item.hald-width{ width:50%; padding-right:10px; }

.house-info-item .title{ position:absolute; top:0; left:0; width:70px; display:block; text-align:right; color:#660000; }
.house-info-item .title:after{ position:absolute; right:-18px; content:"："; }

.overview-tb .house-info-item:last-child{ border-bottom-width:0px; }




/*工作職位詳細頁*/
.job-box{ border:1px solid #ccc; padding:30px; margin:60px 0; }

.job-box .page-headline{ margin-top:0; }

.job-heading{ text-align:center; margin-bottom:30px; }
.job-heading .title{ color: #323232; font-size: 1.2em; font-weight: 600; }


.job-list{ display:flex; flex-wrap:wrap; }
.job-list > li{ width:98%; margin-left:1%; margin-right:1%; margin-bottom:10px; }
.job-list > li.hald-width{ width:48%; }

.job-info-item{ position:relative; display:flex; flex-wrap:wrap; border-bottom:1px dashed #ccc; padding:5px 0; }
.job-info-item .title{
	position:relative;
	display:block;
	width:130px;
	margin-right:10px;
	text-align:right;
	color:#51191c; 
	padding-right:25px;
	font-weight:600;
}
.job-info-item .title:after{ position:absolute; top:5px; right:0; content:"："; line-height:1; }

.job-info-item .content{ display:block; width:calc(100% - 140px); }

.job-info-item .editor-area{ margin:0; color: #666; }





/*返回按鈕列*/
.pageback-line{margin:60px 0; text-align:center; }
.pageback-btn{ display:inline-block; margin:5px; transition:All 0.2s ease; }
.pageback-btn .icon , .pageback-btn .title{ display:inline-block; vertical-align:middle; line-height:1; margin:0 2px; }
.pageback-btn .icon{ width:20px; height:20px; border-radius:50%; background:#51191c; border:1px solid #fff; overflow:hidden;  }
.pageback-btn .icon img{
	display:block;
	width:38px;
	height:18px;
	
	-moz-transform:translateX(-16px);
	-webkit-transform:translateX(-16px);
	-o-transform:translateX(-16px);
	-ms-transform:translateX(-16px);
	transform:translateX(-16px);
}
.pageback-btn .title{ 
	color:#51191c; 
	font-weight:600; 
	font-size:16px;
}

.pageback-btn:hover{
	-moz-transform:translateX(-5px);
	-webkit-transform:translateX(-5px);
	-o-transform:translateX(-5px);
	-ms-transform:translateX(-5px);
	transform:translateX(-5px);
}
.pageback-btn:hover .icon{ background:#C41F2C; }
.pageback-btn:hover .title{ color:#C41F2C; }
.pageback-btn:hover .icon img{
	/*-moz-transform:translateX(-16px);
	-webkit-transform:translateX(-16px);
	-o-transform:translateX(-16px);
	-ms-transform:translateX(-16px);
	transform:translateX(-16px);*/
}

