@keyframes fadeInLeft {
  0% {
    
    transform: translate3d(-3000px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  0% {
    transform: translate3d(0, 100px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
	animation: fadeInLeft 1.5s;
}
.fadeInBottom {
	animation: fadeInBottom 1.5s;
}
.myhidden {
	visibility: hidden;
}

.tabs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 50px;
	border-bottom: none;
	font-size: 25px;
	width: 500px;
	border: none;
	text-align: center;
}

.tabs::before {
	content: none;
}

.tabs::after {
	content: none;
}

.tabs>li>a{
	color: #555;
	margin-right: 0;
	padding: 10px 0;
	padding-bottom: 10px;
	transition: 0.3s;
	transform: translateZ(0);
}

.tabs>li>a:hover {
	transform:scale(1.1);
}

.tabs>li>a:focus, .tabs>li>a:hover {
	background: none;
	border-color: transparent;
}

.tabs>li.active>a, .tabs>li.active>a:focus, .tabs>li.active>a:hover {
	border: none;
	border-bottom: 2px solid #B58B72;
	color: #B38D70;
}

/* banner */
#mobile {
	/* height: 220px; */
	width: 100%;
	background-position: 50% 50%!important;
	background-size: cover!important;
	position: relative;
}
#mobile img {
	width: 100%;
	/* height: 100%; */
}
#mybanner {
	/* height: 390px; */
	width: 100%;
	background-position: 50% 50% !important;
	cursor: pointer !important;
	background-size: cover !important;
	position: relative !important;
}
#mybanner img {
	width: 100%;
	/* height: 100%; */
}
#mybanner div {
	position: absolute;
	top: 35%;
	width: 100%;
}
#mybanner h1, #mybanner h2 {
	width: 100%;
	text-align: center;
	color: rgb(181, 139, 114);
	font-family: SimHei;
}
#mybanner h1 {
	font-size: 3.2em;
	line-height: 1.4;
}
#mybanner h2 {
	font-size: 1.1em;
}

/* main */
#main {
	margin: 5% 15px;
	overflow: hidden;
	font-family: SimHei;
}
#main .time {
	color: rgb(129, 101, 84);
    font-size: 1em;    
}
#main h3 {
	color: rgb(129, 101, 84);
    font-size: 1.6em;
}
#main .mydetails {
    color: rgb(181, 139, 114);
}
#contanctBox01, #contanctBox03, #contanctBox05 {
	margin-top: 0;
}
.contanctBox_left {
	margin-top: 0!important;
}
.contanctBox {
	margin-top: 8%;
	min-height: 14vmax;
	position: relative;
}
.picBox {
	overflow: hidden;
	/*position: relative;*/
}
.picBox img {
	/*width: 100%;*/
    height: 100%;
    width: 130%;
    transition: 0.3s;
    margin-left: -20%;
    /*width: 178%;*/
    /*transform: scale(1.2,1.2);   */
}
#pic01,#pic05,#pic06 {
	margin-left: -39%;
    width: 178%;
    /*transform: scale(1,1);   	*/
}
.pic_left {
	margin-left: -39%!important;
	/* width: 178%!important; */
}
.contanctBoxOdd::before {
	content: "";
	display: block;
    position: absolute;
    top: 0px;
    right: -9px;
    width: 18px;
    height: 18px;
    border-radius: 180px;
    background: url(../img/dot.png) repeat-y;
}
.contanctBoxOdd::after {
	content: "";
    position: absolute;
    top: 18px;
    right: 0px;
    width: 1px;
    height: 350px;
    background: #fcf5f1;
}
.contanctBoxEven::before {
	content: "";
	display: block;
    position: absolute;
    top: 0px;
    left: -9px;
    width: 18px;
    height: 18px;
    border-radius: 180px;
    background: url(../img/dot.png) repeat-y;
}
.infoBox {
	padding: 3% 10% 0 3%;
}
#infoBox02,#infoBox04 {
	padding: 3% 3% 0 10%;
}
.btns:hover .picBox img {
    transform:scale(1.2,1.2);
    transition: 0.3s;
}


#contact {
	margin-top: 5%;
}
#contact h3, #contact p {
	color: rgb(181, 139, 114)!important;
	text-align: center;
	width: 100%;
	line-height: 1;
}

#myTabContent {
	margin-top: 50px;
	width: 100%;
}

.pc {
	width: 65vw;
	margin: 0 auto;
	display: none;
}

.pc .video {
	width: 100%;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 50px;
}

.pc>.video>video {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
}

.mobile {
	width: 100vw;
	display: none;
}

.mobile .video {
	margin: 0 auto;
	margin-top: 50px;
	width: 70%;
	margin-bottom: 20px;
}

.mobile>.video>video {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.img>img {
	width: 100%;
}

@media (max-width:767px) {
    #mybanner {
    	height: 220px;
    }
    #mybanner h1 {
		font-size: 2em;
		line-height: 1.4;
	}
	#mybanner h2 {
		font-size: 1em;
	}

	#main {
		margin: 8% 15px;
	}
	#main h3 {
		color: rgb(129, 101, 84);
	    font-size: 1.5em;
	}

    .btns {
		padding-left: 50px;
    }

    .contanctBoxOdd {
    	padding-left: 50px;
    }
    .contanctBoxOdd::before {
	    left: -9px;
	}
	.contanctBoxOdd::after {
	    left: 0px;
	}

	.tabs {
		width: 280px;
		font-size: 13px;
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.tabs>li>a{
		padding-bottom: 2px;
	}

	#myTabContent {
		margin-top: 15px;
		width: 100vw;
	}
}
