/*--------------copyright by alva start-------------------------------*/

* {
    padding: 0px;
    margin: 0px;
}

ul {
    margin-bottom: 0px;
}

body {
    font-family: Arial, sans-serif, "Microsoft YaHei","微軟雅黑體","微軟正黑體", "Microsoft JhengHei";
    position: relative;
    font-size: 16px;
	letter-spacing:1px;
	background:#191919;
	color:#fff;
}

a {
    display: block;
}
a:hover {
	text-decoration:none;
}
.clear {
	clear:both;
}

/*----header area-------------------------------------------------------------------------------------------------------------------*/
.header {
	position:relative;
}
	/*dex*/
	.dex {
		width:100%;
	}
		.dex li:nth-of-type(1) {
			display:none;
		}
		.blueberry .pager{
			display:none;
		}
		@media screen and (max-width: 425px) {
			.dex li:nth-of-type(1) {
				display:block;
			}
				.dex li:nth-of-type(1) img {
					width:100%;
				}
			.dex li:nth-of-type(2) {
				display:none;
			}
		}
	/*ilogo*/
	.ilogo {
		position:absolute;
		top:19%;
		left:18%;
	}
	/*scroll*/
	.scroll {
		background:#191919;
		width:100%;
		text-align:center;
		position:absolute;
		bottom:0px;
		left:0px;
	}
		.scroll a {
			display:inline-block;
			padding:5% 0;
		}
		@media screen and (max-width: 1620px) {
			.ilogo {
				width:28%;
			}
				.ilogo img {
					width:100%;
				}
			.scroll a {
				padding:3% 0;
			}
		}
		@media screen and (max-width: 1130px) {
			.scroll {
				position:relative;
			}
				.scroll a {
					width:25%;
					padding:5% 0;
				}
					.scroll a img {
						width:100%;
					}
		}
		
/*---navbar area-------------------------------------------------------------------------------------------------------------------------------------*/	
.navbar {
	text-align:center;
	margin:15px 0;
	z-index:999;
	border-bottom:solid 1px #fff;
	padding-bottom:18px;
}
	/*logo*/
	.logo {
		display:inline-block;
		padding-right:8%;
	}
	/*navs*/
	.navs {
		display:inline-block;
		vertical-align:bottom;
	}
		.nav {
			width:105px;
			overflow:hidden;
			float:left;
			display:block;
			position:relative;
			text-align:center;
		}
			.nav a {
				font-size:14px;
				color:#fff;
				font-weight:'QuanZhenZhongXiHeiTi';
			}
				.navtw {
					padding: 8px;
					-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
					transition: transform 0.3s, opacity 0.3s;
					-webkit-transition-delay: 0.3s;
					transition-delay: 0.3s;
				}
				.naven {
					color:#b3a533;
					position: absolute;
					top: 100%;
					left: 50%;
					width:105px;
					padding:6px;
					-webkit-transform: translate3d(-50%, 0, 0);
					transform: translate3d(-50%, 0, 0);
				}
					.nav,.naven {
						-webkit-transition: -webkit-transform 0.3s;
						transition: transform 0.3s;
						-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
						transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
					}
					.nav:hover {
						-webkit-transform: translate3d(0, 0, 0);
						transform: translate3d(0, 0, 0);
					}
					.nav:hover .naven {
						-webkit-transition-delay: 0.1s;
						transition-delay: 0.1s;
						-webkit-transform: translate3d(-50%, -100%, 0);
						transform: translate3d(-50%, -100%, 0);
					}
					.nav:hover .navtw {
						opacity: 0;
						-webkit-transform: translate3d(0, -50%, 0);
						transform: translate3d(0, -50%, 0);
						-webkit-transition-delay: 0s;
						transition-delay: 0s;
					}
		
/*---mobile ibutton----------------------------------------------------*/
.mibutton {
	position: absolute;
	top:22px;
	right: 25px;
	width: 52px;
	height: 40px;
	padding: 0 10px;
	border-radius: 7px;
	font-size: 12px;
	z-index: 10;
	cursor:pointer;
	display:none;
}
	.mibutton span {
		display: inline-block;
		width: 29px;
		height: 1px;
		background: #fff;
		transition: .3s ease all;
		position: absolute;
	}
		.mibutton span:nth-child(1) {
			top:10px;
		}
		.mibutton span:nth-child(2) {
			top:20px;
		}
		.mibutton span:nth-child(3) {
			top:31px;
		
		}
	.mibutton_ani span {
		background:#fff;
	}
		.mibutton_ani span:nth-child(1) {
			-webkit-transform:rotate(45deg);
					transform:rotate(45deg);
			-webkit-transform-origin:left top;
					transform-origin:left top;
		}
		.mibutton_ani span:nth-child(2) {
			display: none;
		}
		.mibutton_ani span:nth-child(3) {
			-webkit-transform:rotate(-45deg);
					transform:rotate(-45deg);
			-webkit-transform-origin:left bottom;
					transform-origin:left bottom;
		}
	.menufixed { 
		z-index: 999; 
		position: fixed; 
		top: 0; 
		width: 100%;
		bottom:inherit;
		transition: all 0.3s ease-in-out;
		background:#191919;
		margin:0px;
		padding:1% 0;
	}
	@media screen and (max-width:1800px) {
		.navbar {
			position:fixed;
			top:0px;
			width:100%;
			background:#191919;
			margin:0px;
			padding:1% 1%;
		}
		.dex {
			padding-top:5%;
		}
	}
	@media screen and (max-width:1350px) {
		.mibutton {
			display:block;
		}
		.navs {
			display:none;
			width:100%;
			background: #191919;
			position: absolute;
			top: 85px;
			left: 0px;
			padding: 1%;
			z-index:999;
		}
			.nav {
				float:none;
				display:inline-block;
			}
		.logo {
			float:left;
			padding:0 0 0 1%;
		}
	}
	@media screen and (max-width:1140px) {
		.navs {
			top:80px;
		}
		.nav {
			display:block;
			width:100%;
		}
		.nav a {
			font-size:16px;
		}
		.navtw {
			padding:10px;
		}
		.naven {
			width:100%;
		}
	}
	@media screen and (max-width:940px) {
		.navs {
			top:70px;
		}
	}
	@media screen and (max-width:690px) {
		.navs {
			top:75px;
		}
	}
	@media screen and (max-width:700px) {
		.dex {
			padding-top: 12%;
		}
		.ilogo {
			top:31%;
		}
		.navbar {
			padding:3%;
		}
		.navs {
			top:60px;
		}
		.logo {
			width:20%;
		}
			.logo img {
				width:100%;
			}
		.mibutton {
			top:16px;
		}
	}
	@media screen and (max-width:580px) {
		.navs {
			top:55px;
		}
	}
	@media screen and (max-width:540px) {
		.navs {
			top:50px;
		}
	}
	@media screen and (max-width:495px) {
		.navs {
			top:44px;
		}
		.mibutton {
			top:7px;
		}
	}
	@media screen and (max-width:420px) {
		.navs {
			top:44px;
		}
		.mibutton {
			top:7px;
		}
		.logo {
			width: 26%;
			margin-left: 10px;
		}
		.dex {
			padding-top: 16%;
		}
		.ilogo {
			top:33%;
		}
	}
	@media screen and (max-width:390px) {
		.logo {
			width: 30%;
		}
	}
	@media screen and (max-width:340px) {
		.logo {
			width: 30%;
		}
		.mibutton {
			top:4px;
		}
		.navs {
			top:40px;
		}
	}
	
		
/*---ihot----------------------------------------------------------------------------------------------------------------------------------------------*/	
.ihot {
	padding:5% 0;
}
	.ihot_tit {
		text-align:center;
	}
	.ihot_list {
		padding: 5%;
    	min-height: 190px;
	}
		
/*---about---------------------------------------------------------------------------------------------------------------------------------------------*/
.about {
	text-align:center;
}
	.atop {
		font-size:0px;
		text-align:center;
		padding:0 2%;
	}
		.aslider {
			position:relative;
			display:inline-block;
			z-index:0;
		}
			.aslider1 {
				max-width:1060px;
				display:inline-block;
				position:relative;
			}
				.aslider1 img {
					cursor:pointer;
				}
			.aslider2 {
				position:absolute;
				bottom:0px;
				right:0px;
			}
		.aboutb {
			display:inline-block;
			vertical-align:bottom;
		}
		.a_text {
			line-height:30px;
			padding:8% 2% 2% 2%;
		}
		.aboutc {
			padding-bottom:3%;
		}
		@media screen and (max-width:1682px) {
			.aboutb {
				padding-top:2%;
			}
		}
		@media screen and (max-width:1160px) {
			.aslider1 {
				width:100%;
			}
				.aslider1 img {
					width:100%;
				}
				.slick-slider {
					margin:0 auto;
				}
			.aslider {
				display:block;
			}
		}
		@media screen and (max-width:940px) {
			.aslider2 {
				position: inherit;
			}
				.aslider2 img {
					width:100%;
				}
		}
		@media screen and (max-width:610px) {
			.aboutb img {
				width:100%;
			}
			.a_text {
				padding:13% 3% 5% 3%;
			}
			.aboutc {
				padding-bottom:10%;
			}
		}
		@media screen and (max-width:430px) {
			.a_text {
				padding:20% 2% 10% 2%;
			}
			.aboutc {
				padding:0 3% 13% 3%;
			}
				.aboutc img {
					width:100%;
				}
		}
		
/*---item area-----------------------------------------------------------------------------------------------------------------------------------*/	
.item_area {
}
	.item {
		position: relative;
		margin: 0 auto;
		list-style: none;
		text-align: center;
	}
	.item figure {
		position: relative;
		overflow: hidden;
		margin: 10px 1%;
		width: 100%;
		text-align: center;
		cursor: pointer;
		margin:0px;
	}
	
	.item figure figcaption {
		padding: 2em;
		color: #fff;
		font-size: 1.25em;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}
	
	.item figure figcaption::before,
	.item figure figcaption::after {
		pointer-events: none;
	}
	
	.item figure figcaption,
	.item figure figcaption > a {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0px;
		left: 0px;
		right: 0px;
	}

	/***** Dexter *****/
	figure.item1 {
		min-height:750px;
		background-size:cover;
	}
	
	.ibg_01 {
		background:url(../../images/ibg_01.jpg) center center no-repeat;
	}
	.ibg_02 {
		background:url(../../images/ibg_02.jpg) center center no-repeat;
	}
	.ibg_03 {
		background:url(../../images/ibg_03.jpg) center center no-repeat;
	}
	.ibg_04 {
		background:url(../../images/ibg_04.jpg) center center no-repeat;
	}
	h2 {
		color:#fff;
		font-weight:Myriad,'QuanZhenZhongXiHeiTi';
		font-size:40px;
		letter-spacing:5px;
		font-weight:normal;
		margin-top:60px;
	}
		h2 span {
			font-size:75px;
			font-weight:700;
			letter-spacing:0px;
		}
			h2 strong {
				font-size:30px;
				font-weight:normal;
			}
	figcaption a:hover {
		text-decoration:none;
	}
	figure.item1 figcaption::after {
		position: absolute;
		right: 37%;
		bottom: 30px;
		left: 37%;
		height: -webkit-calc(50% - 30px);
		height: calc(50% - 30px);
		border: 10px solid #fff;
		content: '';
		-webkit-transition: -webkit-transform 0.35s;
		transition: transform 0.35s;
		-webkit-transform: translate3d(0,-100%,0);
		transform: translate3d(0,-100%,0);
	}
	
	figure.item1:hover figcaption::after {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
	
	figure.item1 figcaption {
		padding: 3em;
		display:inline-block;
	}
	
	figure.item1 p {
		position: absolute;
		right: 60px;
		bottom: 60px;
		left: 60px;
		opacity: 0;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-webkit-transform: translate3d(0,-100px,0);
		transform: translate3d(0,-100px,0);
		font-size:16px;
		line-height:30px;
		color:#fff;
		letter-spacing:1px;
	}
	
	figure.item1:hover p {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
	@media screen and (max-width:1645px) {
		figure.item1 figcaption::after {
			right:30%;
			left:30%;
		}
		figure.item1 {
			min-height:620px;
		}
	}
	@media screen and (max-width:1000px) {
		figure.item1 figcaption::after {
			right:20%;
			left:20%;
		}
		figure.item1 {
			min-height:580px;
		}
	}
	@media screen and (max-width:700px) {
		figure.item1 {
			min-height:530px;
		}
		h2 {
			font-size:30px;
		}
			h2 span {
				font-size:55px;
				font-weight:600;
			}
				h2 strong {
					font-size:25px;
				}
			figure.item1 p {
				line-height:24px;
			}
	}
	@media screen and (max-width:515px) {
		figure.item1 {
			min-height:480px;
		}
		figure.item1 figcaption::after {
			border:8px solid #fff;
		}
		h2 {
			font-size:24px;
		}
			h2 span {
				font-size:44px;
				font-weight:600;
			}
				h2 strong {
					font-size:22px;
				}
	}
	@media screen and (max-width:400px) {
		figure.item1 figcaption::after {
			right:7%;
			left:7%;
		}
		figure.item1 {
			min-height:460px;
		}
		h2 span {
			font-size:42px;
			font-weight:600;
		}
	}
		
		
/*---map-------------------------------------------------------------------------------------------------------------------------------------------------*/		
.map {
	background:url(../../images/map_bg.jpg) center center no-repeat;
	background-size:cover;
}
	.map_tit {
		text-align:center;
		padding:5% 0 3% 0;
	}
	@media screen and (max-width:340px) {
		.map_tit {
			padding:6% 6% 5% 6%;
			width:85%;
			margin:0 auto;
		}
			.map_tit img {
				width:100%;
			}
	}
		
		
/*---footer--------------------------------------------------------------------------------------------------------------------------------------------*/
.footer {
	background:url(../../images/footer_bg.jpg) repeat;
	padding-bottom:6%;
}
	.contact {
		font-size: 26px;
		text-align: center;
		color: #efc02f;
		border-bottom: solid 2px #efc02f;
		font-weight: bold;
		line-height: 18px;
		margin: 0 7% 4% 7%;
		padding-top:4%;
		letter-spacing:2px;
	}
	.info {
		padding: 0 15% 3% 15%;
	}
		.info ul {
			text-align:center;
			padding-left:10%;
		}
			.info li {
				display:inline-block;
				width:31%;
				text-align:left;
				line-height:30px;
			}
				.info li a {
					color: #efc02f;
				}
	.card {
		display:inline-block;
		padding: 0 4% 0 24%;
	}
	.copyright {
		display:inline-block;
		color:#6c6c6c;
		font-size:12px;
	}
		.copyright a {
			color:#6c6c6c;
			display:inline-block;
		}
				@media screen and (max-width:1200px) {
					.info {
						padding: 0 6% 3% 6%;
					}
					.info ul {
						padding:0px;
					}
					.info li {
						width:32%;
					}
					.card {
						padding: 0 4% 0 7%;
					}
				}
				@media screen and (max-width:870px) {
					.contact {
						padding-top: 6%;
						margin: 0 7% 5% 7%;
					}
					.info li {
						width:85%;
					}
					.card {
						padding: 0 3%;
						display: block;
						text-align: center;
					}
					.copyright {
						padding: 2% 3% 0;
						display: block;
						text-align: center;
					}
				}
				@media screen and (max-width:500px) {
					.contact {
						padding-top: 8%;
						margin: 0 7% 7% 7%;
					}
					.info li {
						width:85%;
					}
					.card {
						padding: 0 14%;
					}
						.card img {
							width:100%;
						}
					.copyright {
						padding: 3% 3% 2%;
					}
				}
				@media screen and (max-width:350px) {
					.info li:nth-of-type(1) img {
						width:55%;
					}
				}
	
/*gotop*/
#gotop {
	position:fixed;
	right:15px;
	bottom:15px;
	cursor:pointer;
	display:none;
}

/*ordericon*/
.ordericon {
	position:fixed;
	right:15px;
	bottom:100px;
	z-index:99;
}
	.ordericon a {
		display:block;
		-webkit-transform: perspective(1px) translateZ(0);
		transform: perspective(1px) translateZ(0);
		box-shadow: 0 0 1px transparent;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
	}
		.ordericon a:hover {
			-webkit-transform: scale(0.9);
			transform: scale(0.9);
			-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
			transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
		}
		
/*inner*/
.inner {
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	background: #191919;
	padding:1% 0;
	margin-top:0px;
}
	
	
	
/*---main---------------------------------------------------------------------------------------------------------------------------------------------*/
.inbanner {
	padding-top:2%;
}
	.ibnews {
		background:url(../../images/inbanner_news.jpg) left no-repeat;
		background-size:cover;
	}
	.ibnote {
		background:url(../../images/inbanner_note.jpg) left no-repeat;
		background-size:cover;
	}
	.ibview {
		background:url(../../images/inbanner_view.jpg) left no-repeat;
		background-size:cover;
	}
	.ibbook {
		background:url(../../images/inbanner_book.jpg) left no-repeat;
		background-size:cover;
	}
	.ibsce {
		background:url(../../images/inbanner_sce.jpg) left no-repeat;
		background-size:cover;
	}
	.intit {
		padding: 8% 0 5% 9%;
	}
	@media screen and (max-width:900px) {
		.intit {
			padding: 11% 10% 5%;
		} 
			.intit img {
				width:100%;
			}
		.inbanner {
			padding-top: 4%;
		}
	}
	@media screen and (max-width:435px) {
		.inbanner {
			padding-top: 8%;
		}
	}
	@media screen and (max-width:350px) {
		.inbanner {
			padding-top: 13%;
		}
	}
	
	
.main {
	background:url(../../images/inbg.jpg) repeat;
	min-height:580px;
	padding:4% 2%;
}
	.news_deco {
		display:inline-block;
		width:39%;
		text-align:right;
		padding: 0% 2% 0 0;
		vertical-align:top;
	}
	.news {
		display:inline-block;
		width:60%;
	}
		table.ntable {
			width:100%;
			color:#000;
		}
			table.ntable a {
				color:#292928;
			}
				table.ntable a:hover {
					color:#fcc316;
				}
				.ripple2 input[type="button"] {
					color: #fff;
					background: #f0ad4e;
					padding: 10px;
					border-radius: 10px;
					letter-spacing: 2px;
					border: solid 1px #fff;
					transition:.3s ease all;
				}
					.ripple2 input[type="button"]:hover {
						color:#f0ad4e;
						background:none;
						border: solid 1px #f0ad4e;
					}
					.row {
						margin:0px;
					}
					@media screen and (max-width:1480px) {
						.news_deco img {
							width:100%;
						}
					}
					@media screen and (max-width:1000px) {
						.news_deco {
							width: 45%;
							display: block;
							margin: 0 auto;
						}
						.news {
							width:100%;
							display:block;
							padding-top:3%;
						}
					}
					@media screen and (max-width:500px) {
						.news_deco {
							width:65%;
						}
					}
.room_service {
	padding: 8% 0%;
}
	@media screen and (max-width:1120px) {
		.room_service {
			padding: 11% 0 5% 0;
		}
	}
	@media screen and (max-width:600px) {
		.room_service {
			padding: 13% 0 5% 0;
		}
	}
	@media screen and (max-width:400px) {
		.room_service {
			padding: 16% 0 5% 0;
		}
	}
	@media screen and (max-width:370px) {
		.room_service {
			padding: 19% 0 5% 0;
		}
	}
/*---rmbt-------------------------------------------------------------------------------------------------------------------------------------------------*/
.rmbt {
}
	.rmbt ul {
		text-align:center;
	}
		.rmbt li {
			display:inline-block;
			padding:0 1% 3% 1%;
		}
	
	
/*---room-------------------------------------------------------------------------------------------------------------------------------------------------*/	
.room {
	padding:4% 7% 0;
	position:relative;
}
	.room_bg {
		background: url(../../images/room_bg.png) top right no-repeat;
		background-size:auto;
	}
	.r_left {
		width:29%;
		display:inline-block;
		vertical-align:top;
		text-align:center;
		padding:4% 0 0 0;
	}
		.room_tit {
		}
		.room_deco {
			padding: 24% 0 14% 0;
		}
		.room_order {
		}
			.room_order img {
				box-shadow:3px 3px 5px rgba(0,0,0,.2);
				width:30%;
			}
	.r_right {
		width:70%;
		display:inline-block;
		vertical-align:top;
		text-align:right;
	}
		.roomslider {
		}
		.room_line {
			position:relative;
		}
			.room_line img {
				position:absolute;
				top:-20px;
				right:0px;
				z-index:99;
				width:95%;
			}
		.rinfo {
			color:#2b2825;
			padding:10% 0 0 0;
		}
			.rinfo table {
				line-height:28px;
				width:100%;
				padding:0 2%;
			}
			.roomb img {
				padding:1% 0 5% 0;
			}
			@media screen and (max-width:1200px) {
				.r_left {
					width:100%;
					padding:1% 0 0 0;
				}
					.room_deco {
						padding: 6% 0 8% 0;
					}
					.room_order img {
						width:14%;
					}
				.r_right {
					width:100%;
					text-align:center;
					padding:5% 0 0 0;
				}
			}
			@media screen and (max-width:990px) {
				.room {
					padding:4% 3% 0;
				}
				.rmbt li {
					width:25%;
					padding: 0 1% 1% 1%;		
				}
				.roomb img {
					padding: 4% 0 3% 0;
					margin:0 auto;
				}
				.rinfo {
					padding: 6% 0 0 0;
				}
			}
			@media screen and (max-width:600px) {
				.rmbt li {
					width:30%;
				}
				.room_order img {
					width: 20%;
				}
				.room_line img {
					width:100%;
				}
			}	
			@media screen and (max-width:500px) {
				.rmbt li {
					width:35%;
				}
				.room_order img {
					width: 25%;
				}
			}
			@media screen and (max-width:400px) {
				.room {
					font-size:14px;
				}
				.rmbt li {
					width:45%;
				}
				.room_order img {
					width: 32%;
				}
				.room_line img {
					top:-13px;
				}
				.room_tit img {
					width:55%;
				}
			}
	
/*---note-------------------------------------------------------------------------------------------------------------------------------------------------*/
.note {
	text-align:center;
	color:#2b2825;
	line-height:30px;
	padding-bottom:4%;
}
	.notetit {
		padding-bottom:3%;
	}
	@media screen and (max-width:430px) {
		.notetit {
			padding: 2% 8% 3%;
		}
			.notetit img {
				width:100%;
			}
	}
	
/****services_bbs******/
#services_bbs .bbsfont td {
	padding: 6px 0;
	color:#2b2825;
}
#services_bbs .container {
	padding:0 5px;
}

#services_bbs input[type="text"] {
	padding: 2px 0;
	line-height: 26px;
	border-radius: 2px;
	border: 1px #767676 solid;
	background: transparent;
	color: #767676;
}

#services_bbs input:hover {
	border-color: #5c4c15;
	outline: 0
}

#services_bbs input:focus {
	border-color: #5c4c15;
	outline: 0;
}

#services_bbs textarea[type="text"] {
	padding: 2px 0;
	line-height: 26px;
	border-radius: 2px;
	border: 1px #767676 solid;
	background: transparent;
	color: #767676;
}

#services_bbs textarea:hover {
	border-color: #5c4c15;
	outline: 0
}

@media(max-width:768px) {
	#services_bbs input,
	#services_bbs textarea,
	#services_order input,
	#services_order textarea,
	#services_news input,
	#services_news textarea,
	#services_login input,
	#services_login textarea {
		font-size: 16px;
	}
}


/**bbs**/

.ripple button {
	position: relative;
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
	color: #b6a157;
	padding: 8px 20px;
	border-radius: 2px;
	font-size: 14px;
	border: 1px #b6a157 solid;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.ripple button:hover {
	border: 1px #b6a157 solid;
	color: #fff;
	background: #b6a157;
}

.ripple input {
	position: relative;
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
	color: #b6a157;
	padding: 8px 20px;
	border-radius: 2px;
	font-size: 14px;
	border: 1px #b6a157 solid;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.ripple input:hover {
	border: 1px #b6a157 solid;
	color: #fff;
	background: #b6a157;
}
		
/*************************
********services_sce******
**************************/
.sce {
	padding:5% 0 3% 0;
}
@media(max-width:1035px) {
	.sce {
		padding: 8% 0 3% 0;
	}
}
@media(max-width:500px) {
	.sce {
		padding: 11% 0 3% 0;
	}
}
.sce #services_sce {
	padding-top: 30px;
	padding-bottom: 60px;
}

.scebtn {
	text-align: center;
	margin-bottom: 30px;
}

.scebtn h2 {
	display: inline-block;
    margin: 5px;
    color: #fff;
    padding: 25px 5px;
    font-size: 16px;
    border-radius: 100%;
    min-width: 82px;
    border: 3px solid #fff;
    cursor: pointer;
    line-height: 24px;
	letter-spacing:1px;
}

.scebtn h2.scebtn1 {
	background: #d85a51;
}

.scebtn h2.scebtn2 {
	background: #80a076;
}

.scebtn h2.scebtn3 {
	background: #89b5cb;
}

.scebtn h2.scebtn4 {
	background: #8dcfca;
}

.scebtn h2.scebtn5 {
	background: #b7ad6f;
}

.scebtn h2.scebtn6 {
	background: #8b8583;
}

.scebtn h2:hover.scebtn1,
.scebtn h2:hover.scebtn2,
.scebtn h2:hover.scebtn3,
.scebtn h2:hover.scebtn4,
.scebtn h2:hover.scebtn5,
.scebtn h2:hover.scebtn6 {
	background: #fff;
	border: #7e6b5a 3px solid;
	color: #656565;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

@media (max-width:650px) {
	.scebtn {
		padding: 0 120px;
	}
}

@media (max-width:600px) {
	.scebtn {
		padding: 0 100px;
	}
}

@media (max-width:550px) {
	.scebtn {
		padding: 0 60px;
	}
}

@media (max-width:480px) {
	.scebtn {
		padding: 0 25px;
	}
}

@media (max-width:400px) {
	.scebtn {
		padding: 0 5px;
	}
	.scebtn {
		margin-bottom: 10px;
	}
}

@media (max-width:350px) {
	.scebtn {
		padding: 0 0px;
	}
}


/***********/

.scebox {
	border: #c3c3c3 1px solid;
	border-radius: 5px;
	box-shadow: -1px 1px 6px 0.5px rgba(138, 138, 138, 0.75);
	padding: 0 10px 10px 10px;
}

.mount .sceimg {
	background-color: #80a076;
}

.sea .sceimg {
	background-color: #89b5cb;
}

.farm .sceimg {
	background-color: #8dcfca;
}

.city .sceimg {
	background-color: #b7ad6f;
}

.hot .sceimg {
	background-color: #d85a51;
}

.scebox:hover {
	cursor: pointer;
}

.scebox:hover .sceimg img {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	transform: scale(0.95);
	overflow: hidden;
}

.scebox_hot {
	padding: 0 80px;
}

.scebox_hot .scebox {
	display: inline-block;
	float: left;
	width: 23%;
	margin: 0 10px;
}

.scetag {
	float: right;
	color: #fff;
	padding: 0 20px;
	margin-left: 5px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.scetag1 {
	background: #d85a51;
}

.scetag2 {
	background: #80a076;
}

.scetag3 {
	background: #89b5cb;
}

.scetag4 {
	background: #8dcfca;
}

.scetag5 {
	background: #b7ad6f;
}

.scet h3 {
	clear: both;
	color: #3d3d3d;
	font-size: 23px;
	letter-spacing: 1px;
	display:block;
	padding-top:15px;
}

.sceimg img {
	margin: 0 auto;
}

.scep p {
	color: #616161;
}

@media(max-width:1700px) {
	.scebox_hot {
		padding: 0 10px;
	}
}

@media(max-width:1400px) {
	.scebox_hot .scebox {
		width: 24%;
		margin: 0 5px;
	}
}

@media(max-width:1199px) {
	.scebox_hot .scebox {
		width: 48%;
		margin: 5px;
	}
	.scebox_hot .scebox:nth-child(3) {
		clear: both;
	}
}

@media(max-width:700px) {
	.scebox_hot .scebox {
		width: 100%;
		margin: 5px 0px;
	}
	.scet h3 {
		font-size: 22px;
	}
	.scep p {
		line-height: 24px;
	}
}

@media(max-width:550px) {
	.city .sceimg,
	.farm .sceimg,
	.hot .sceimg,
	.mount .sceimg,
	.sea .sceimg {
		background-color: #fff;
	}
}

@media(max-width:500px) {
	.scet h3 {
		letter-spacing: 0px;
	}
}

@media(max-width:450px) {
	.mount .sceimg {
		background-color: #80a076;
	}
	.sea .sceimg {
		background-color: #89b5cb;
	}
	.farm .sceimg {
		background-color: #8dcfca;
	}
	.city .sceimg {
		background-color: #b7ad6f;
	}
	.hot .sceimg {
		background-color: #d85a51;
	}
}

@media(max-width:350px) {
	.scet h3 {
		font-size: 20px;
	}
}


/*************/

.scebox_content {
	padding: 0 120px;
	margin-top: 30px;
}

.scebox_content .scebox {
	display: inline-block;
	float: left;
	width: 100%;
	margin: 5px;
}

@media (max-width: 1800px) {
	.scebox_content {
		padding: 0px;
	}
}

@media(max-width:1700px) {
	.scebox_content {
		padding: 0 0px;
		margin-top: 30px;
	}
}


/*********************** 20170328  以上 優質a****************/

.scecontainer {
	display: block;
	margin: auto;
	width: 100%;
}

.scecontainer .item {
	margin: 0.5%;
	float: left;
	background: #ffffff;
	display: block;
	width: 16.3%;
}

@media (max-width: 1800px) {
	.scecontainer {
		width: 96%;
	}
	.scecontainer .item {
		width: 19%;
	}
}

@media (max-width: 1400px) {
	.scecontainer .item {
		width: 24%;
	}
}

@media (max-width: 991px) {
	.scecontainer .item {
		width: 32%;
	}
}

@media (max-width:767px) {
	.scecontainer .item {
		width: 49%;
	}
}

@media (max-width:550px) {
	.scecontainer .item {
		width: 99%;
		margin-bottom: 10px;
	}
}


/***********20160817  以上A版*********************/


/*************************
*********services_sce******
**************************/		
		
section#services_albumman {
	color: #3d3d3d;
}	
		
/*************************
*********services_loc*****
**************************/

#map_canvas {
	min-height: 500px;
	margin-top: 30px;
}

@media(max-width:768px) {
	#map_canvas {
		min-height: 330px;
	}
}

span.bbshid {
    display: inline-block;
    padding-left: 2%;
}
	@media(max-width:820px) {
		span.bbshid {
			display: block;
			padding-left: 2%;
		}
	}

.pagenum a {
	display:inline-block;
}

.ntable a {
	display:inline-block;
}

.panel-body a {
	display:inline-block;
}
.panel-body img {
	width:100%;
}












		