/* css all */
.bgAll{
	background-color: #f8f8f8;
}
.titleHome{
	text-align: center;
	margin-bottom: 40px;
}
.titleHome h2{
	position: relative;
	display: inline-block;
	font-size: 45px;
	line-height: 60px;
    font-family: 'Minion';
	font-weight: 600;
	color: #000000;
	padding-bottom: 50px;
}
.titleHome h2::before{
	content: '';
	position: absolute;
	content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-image: url(../images/line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* css all */
.formRoom{

	margin-bottom: 60px;
}
.formRoom button{
	width: 100%;
	height: 42px;
	background: #f58220;
	border: 1px solid #f58220;
	color:#fff;
	font-size: 13px;
	border-radius: 5px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
	overflow: hidden;
}
.formRoom .nameSearch{
	font-size: 30px;
	color: #211e1e;
	line-height: 45px;
	text-transform: uppercase;
}
.formRoomRest .formRoom .nameSearch{
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #fff;
}
.formRoom button::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
	height: 100%;
	border-radius: 5px;
    background: rgba(0,0,0,0.2);
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.formRoom button:hover::before{
	opacity: 1;
    background-color: rgba(0,0,0,0.2);
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.formRoom .g{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.formRoom .g .c1,
.formRoom .g .c2{
	width: 34%;
}
.formRoomRest .formRoom .g{
	margin: 0 -5px;
}
.formRoomRest .formRoom .g .c2{
	width: calc(100%/6);
	padding: 0 5px;
}
.formRoom .g .c2{
	width: 16%;
}
.formRoom .formFa{
	position: relative;
}
.formRoom .formFa:before{
	position: absolute;
	font-family: fontAwesome;
	right:10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 13px;
	line-height: 21px;
	color:var(--primary-color);
	font-weight: normal;
	pointer-events: none;
}
.formRoom .formFa input,
.formRoom .formFa select{
	padding: 0 12px;
	padding-right: 30px;
	border-radius: 5px;
}
.formRoom input,
.formRoom select{
	width: 100%;
	height: 42px;
	background: #ffffff;
	border:none;
	color:#333333;
}
.formRoom input::-webkit-input-placeholder {
  	color: #333333;
}
.formRoom input::-moz-placeholder {
  	color: #333333;
}
.formRoom input:-ms-input-placeholder {
  	color: #333333;
}
.formRoom input:-moz-placeholder {
  	color: #333333;
}
/*===================================================*/
.vnt-room {

}
.roomOther .vnt-room{
	border-bottom: none;
}
.vnt-room .room:nth-child(odd){
	flex-direction: row-reverse;
}
.vnt-room .room:nth-child(oeven){
	flex-direction: row;
}
.vnt-room .room:last-child{
	margin-bottom: 0;
}
.room{
	/* display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center; */
	margin-bottom: 10px;
	position: relative;
}
.room .img{
	/* width:-webkit-calc(100% - 560px);
	width:-moz-calc(100% - 560px);
	width:-o-calc(100% - 560px);
	width:calc(100% - 560px); */
	overflow: hidden;
}
.room .img a{
	display: block;
	transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1),
	 -webkit-transform 7s cubic-bezier(0,.6,.45,1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.room .img a:hover{
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}
.room .caption{
	width: 530px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 90px 20px;
	position: absolute;
	bottom: 0;
	background-color: #efefe7;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
.room:nth-child(odd) .caption{
	left: 140px;
}
.room:nth-child(even) .caption{
	right: 140px;
}
.room .wrap{
	max-width: 420px;
	margin: 0 auto;
	text-align: center;
}
.room .tend h3{
	margin-bottom: 30px;
}
.room .tend a{
	display: block;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 40px;
	line-height: 50px;
	color:#2a2a2a;
	text-transform: uppercase;
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
}
.room .tend a:hover{
	color:#dba646;
}
.room .text{
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	font-style: italic;
	color: #3e2914;
	margin-bottom: 25px;
}
.room .des{
	font-size: 18px;
	line-height: 27px;
	text-align: center;
	margin-bottom: 40px;
	color: #606060;
	max-height: 124px;
	overflow: hidden;
}
.room .link{
	text-align: center;
}
.room .link a {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #717171;
    border-bottom: solid 3px #dba646;
    padding: 4px 10px;
    white-space: nowrap;
}
.room .link a:hover{
	color:#dba646;
}
/*================================================================*/
.wrapper.v2{
	max-width: 870px;
}
.roomHeadTop{
	position: relative;
}
.roomHeadTop .toggleForm .popFomR{
	position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 40px 10px;
    z-index: 1;
    background-color: rgba(241,241,241,1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.roomHeadTop .toggleForm.active .popFomR{
	opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% - 25px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.roomHead{
	margin-bottom: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

.roomHead .title h1{
	font-size: 45px;
	line-height: 55px;
	font-weight: 600;
    font-family: 'Minion';
}
.roomHead .title .des{
	font-size: 18px;
	line-height: 27px;
}
.roomHead .title .des .priceNews{
	margin-right: 30px;
}
.roomHead .title .des .priceod{
	color: #999999;
}
.roomHead .title .des .priceNews .price{
	font-size: 28px;
	line-height: 40px;
	font-weight: bold;
	color: #f58220;
}
.roomHead .title .des .priceNews .line{
	position: relative;
	display: inline-block;
	top: -10px;
}
.roomHead .title .des .priceod span{
	text-decoration: line-through;
}
.roomHead .toggleForm{
	z-index: 3;
	margin-top: 10px;
}
.roomHead .toggleForm .viewall{
	width: 240px;
	text-align: right;
}
.roomHead .popup{
	position: absolute;
	top: 130px;
	left: 0;
	right: 0;
	background: #f4f0ea;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.25);
	padding: 25px 0 50px ;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.roomHead .popup .slideForm{
	padding: 0;
	border-bottom: none;
}
.roomHead.active .popup{
	opacity: 1;
	visibility: initial;
	pointer-events: auto;
}
.roomHead .popup .formRoom{
	margin-bottom: 0;
}
.roomInfo .roomtitle{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 5px;
	font-weight: bold;
}
.roomDes{
	font-size: 16px;
	line-height: 24px;
	text-align: justify;
	margin-bottom: 50px;
	color: #555555;
}
.roomAttr{
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 24px;
}
.roomAttr .title{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 15px;
	font-weight: bold;
}
.roomAttr ul{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}
.roomAttr ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border-top: solid 1px rgba(0,0,0,0.15);
    padding: 17px 0;
    width: 50%;
}
.roomAttr ul li .icon{
	display: inline-block;
	width: 30px;
	margin-right: 20px;
}
.roomShare{
	padding: 16px 0;
	margin-bottom: 45px;
	border-bottom: solid 1px rgba(0,0,0,0.15);
	border-top: solid 1px rgba(0,0,0,0.15);
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.roomShare .fa-reply:before{
	font: normal normal normal 14px/1 FontAwesome;
	margin-right: 10px;
}
.roomShare ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.roomShare ul li{
    margin-right: 10px;
}
.roomShare ul li a{
    display: block;
    width: 35px;
    height: 35px;
    background: transparent;
    border:solid 1px #aaaaaa;
    border-radius: 100%;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    border-radius: 100%;
    position: relative;
    color: #aaaaaa;
}
.roomShare ul li a:hover{
	border-radius: 0;
}
.roomShare ul li a:hover i.fa-facebook{
    color:#3b5a9b;
}
.roomShare ul li a:hover i.fa-twitter{
    color:#2b97f1;
}
.roomShare ul li a:hover i.fa-instagram{
    color:#e52c27;
}
.roomShare ul li a i,
.roomShare ul li a img{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/*============================================================*/
.roomOther .title{
	margin-bottom: 30px;
	text-align: center;
}
.roomOther .title h2{
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 60px;
    text-transform: uppercase;
}
.roomOther .title h2::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -85px;
    transform: translate(0%, -50%);
    height: 1px;
    width: 65px;
    background-color: var(--primary-color);
}
.roomOther .title h2::after{
	content: '';
    position: absolute;
    top: 50%;
    right: -85px;
    transform: translate(0%, -50%);
    height: 1px;
    width: 65px;
    background-color: var(--primary-color);
}
.slideForm{
	padding: 25px 30px 30px;
	background-color: #f5f5f5;
	margin-bottom: 50px;
}
.slideForm .formRoom{
	margin-bottom: 0;
}
.slideForm .formRoom .coltitle{
	text-align: center;
	margin-bottom: 15px;
	font-size: 25px;
	line-height: 38px;
	text-transform: uppercase;
	font-weight: bold;
}
.slideForm .formRoom .g .c1,
.slideForm .formRoom .g .c2{
	width: 33.333%;
	padding: 0 10px;
	margin-bottom: 25px;
}
.formRoom .g .c2 label{
	color: #4d4d4d;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 5px;
}

/* begin boxInfoHome   home */

/* end boxInfoHome  home */

/* \ */
.wrapRoom{
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
}
.formRoomRest{
	background-color: var(--primary-color);
	color: #ffffff;
	padding: 10px 20px;

}
.formRoomRest .formRoom{
	margin-bottom: 0;
}

/* roomHome */
.roomHome .tabRoom{
	text-align: center;
	display: block;
}
.roomHome .tabRoom ul{
	display: inline-block;
	margin-bottom: 60px;
	border-bottom: 1px solid #333333;
}
.roomHome .tabRoom ul li{
	margin-right: 30px;
	display: inline-block;
}
.roomHome .tabRoom ul li a{
	padding: 10px 0;
	display: block;
	position: relative;
    font-family: 'Minion';
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #000000;
}
.roomHome .tabRoom ul li a::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 3px;
	background-color: var(--primary-color);
	width: 0;
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.roomHome .tabRoom ul li.active a, .roomHome .tabRoom ul li:hover a{
	color: var(--primary-color);
}
.roomHome .tabRoom ul li.active a::before, .roomHome .tabRoom ul li:hover a::before{
	width: 100%;
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.roomHome .tabRoom ul li:last-child{
	margin-right: 0;
}
.contentRoomTab .tabPane {
	display: none;
}
.contentRoomTab .tabPane.active{
	display: block;
}
.gripRoom{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -4px;
}
.gripRoom .colRoom{
	width: 50%;
	padding: 0 4px;
	position: relative;
	margin-bottom: 0px;
}

/*  */
.listRoom .itemRoom1:nth-child(even) .decs{
	right: 0;
	left: initial;
}
.itemRoom1{
	position: relative;
	margin-bottom: 20px;
}
.itemRoom1:last-child{
	margin-bottom: 0;
}
.itemRoom1 .thumb a{
	display: block;
	position: relative;
	overflow: hidden;
	/* height: 0;
	padding-top: 600px;
	overflow: hidden; */
}
/* .itemRoom1 .thumb a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	opacity: 0.3;
	width: 70%;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
	-webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	pointer-events: none;
} */
.itemRoom1:nth-child(even) .thumb a::before{

	left: initial;
	right: 0;
	background: rgb(0,0,0);
	background: linear-gradient(275deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}
.itemRoom1 .thumb a img{
	/* position: absolute;
	top: 0;
	left: 0; */
	width: 100%;
	/* height: 100%; */
	transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1), -webkit-transform 7s cubic-bezier(0,.6,.45,1);

}
.itemRoom1 .thumb a:hover img{
	transform: scale(1.05);
}
.itemRoom1 .thumb a:hover::before{
	opacity: 0;
	-webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.itemRoom1 .decs{
	padding: 20px ;
	z-index: 2;
	max-width: 730px;
	margin: 0 auto;
}
.itemRoom1 .decs h3{
    font-size: 35px;
    line-height: 50px;
    font-weight: 400;
	margin-bottom: 10px;
	text-align: center;
}
.itemRoom1 .decs a{
}
.itemRoom1 .decs .tend{
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}
.itemRoom1 .decs .view {
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
}
.itemRoom1 .decs .view a{
	font-size: 13px;
	line-height: 21px;
	text-decoration: underline;
}
/*  */
/*  */
.itemRoom{
	position: relative;
}
.itemRoom .thumb a{
	display: block;
	position: relative;
	height: 0;
	padding-top: 65.56%;
	overflow: hidden;
}
.itemRoom .thumb a img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1), -webkit-transform 7s cubic-bezier(0,.6,.45,1);
}
.itemRoom .thumb a:hover img{
	transform: scale(1.05);
}
.itemRoom .decs{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	color: #fff;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}
.itemRoom .decs h3{
	font-size: 24px;
	line-height: 36px;
	font-weight: 400;
	margin-bottom: 10px;
}
.itemRoom .decs a{
	color: #fff;
}
.itemRoom .decs .tend{

}

/*==========================================================================*/
/*============================RESPONSIVE====================================*/
/*==========================================================================*/
@media all and (max-width: 1100px){

}

@media all and (max-width: 1025px){

}

@media all and (max-width: 991px){
	.itemRoom1 .thumb a img{
		/* display: none; */
	}
	.itemRoom1 .decs .tend{
		font-size: 14px;
		line-height: 22px;
	}
	.itemRoom .thumb a::before{
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 50%;
		top: initial;
		background: rgb(0,0,0);
		background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
	}
	.listRoom .itemRoom{
		margin-bottom: 6px;
	}
	.itemRoom .thumb a{
		padding-top: 72.224%;
	}

	/* css all */
	.titleHome{
		margin-bottom: 20px;
	}
	.titleHome h2{
		font-size: 30px;
		line-height: 45px;
		padding-bottom: 35px;
	}
	.titleHome h2::before{
		width: 25px;
		height: 25px;
	}
	/* css all */
	.roomOther .vnt-room{
		border-bottom: 1px solid #ddd;
	}
	.roomHead .title .des .priceNews{
		margin-right: 20px;
	}
	.formRoom button{
		height: 45px;
		max-width: 400px;
		margin: 0 auto;
	}
	.result_room .infoRoomT .title{
		font-size: 26px;
		line-height: 36px;
	}
	.tableInfo{
		margin-bottom: 60px;
	}
	.formRoom .nameSearch{
		font-size: 24px;
		line-height: 36px;
		font-weight: bold;
	}
	.formRoom input,
	.formRoom select{
		color:#333333;
	}
	.formRoom .g .c1{
		border-bottom: solid 1px rgba(0,0,0,0.15);
	}
	.formRoom .g .c1,
	.formRoom .g .c2{
		width: 50%;
		/* border-right: solid 1px rgba(0,0,0,0.15); */
	}
	.formRoomRest .formRoom .g .c2{
		width: 50%;
		margin-bottom: 10px;
	}
	.roomHead .title{
		margin-bottom: 20px;
		font-size: 18px;
		line-height: 37px;
	}
	.roomHead .title h1{
		font-size: 25px;
		line-height: 36px;
		margin-bottom: 10px;
	}
	.roomHead .title .des{
		font-size: 16px;
		line-height: 24px;
	}
	.roomDes{
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 10px;
	}
	.roomHead .title .des .priceNews .price{
		font-size: 25px;
		line-height: 38px;
	}
	.roomHead .title .des .priceod{
		font-size: 16px;
		line-height: 24px;
	}
	.roomHead .popup {
		top: 100%;
		margin-top: -3px;
		padding: 30px 0;
	}
	.room .caption{
		padding: 15px 30px;
		position: static;
		width: 100%;
		height:initial;
		padding: 20px;
		padding-bottom: 50px;
		display: block;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		background-color: transparent;
	}
	.room .tend h3{
		margin-bottom: 20px;
	}
	.room .tend a{
		font-size: 25px;
		line-height: 38px;
	}
	.room .text{
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 20px;
	}
	.slideForm .formRoom .g .c1, .slideForm .formRoom .g .c2{
		border-bottom:none;
		/* border-right:solid 1px rgba(0,0,0,0.15); */
		margin-bottom: 20px;
	}
	.slideForm{
		padding: 20px 0px;
		margin-bottom: 30px;
	}
	/*  */
	/* .roomHome */
	.roomHome{
		padding: 0px 0 0px;
	}
	.roomHome .tabRoom{
		padding: 0 20px;
	}
	.roomHome .tabRoom ul li a{
		font-size: 16px;
		line-height: 24px;
	}
	.roomHome .tabRoom li a span{
		display: block;
	}
	.roomHome .tabRoom ul{
		margin-bottom: 30px;
	}


	/* .roomHome */
	.itemRoom1 .decs{
		padding: 20px;
		padding-bottom: 10px;
		left: 0;
		right: 0;
		top: initial;
		transform: initial;
		bottom: 10px;
		text-align: left;
	}
	.listRoom .itemRoom1:nth-child(even) .decs{
		left: 0;
	}
	.itemRoom1 .decs h3{
		font-size: 22px;
		line-height: 33px;
	}

	/* .roomHome */
	.itemRoom .decs{
		padding: 20px;
		padding-bottom: 10px;
	}
	.itemRoom .decs h3{
		font-size: 20px;
		line-height: 30px;
		text-align: center;
	}
	.itemRoom .decs .tend{
		display: none;
	}
	.roomHeadTop .toggleForm .popFomR{
		top: 110%;
	}
	.roomHeadTop .toggleForm.active .popFomR{
		top: 100%;
	}
	.itemRoom1 .thumb a{
		/* padding-top: 50.56%; */
	}
	.roomAttr{
		font-size: 14px;
		line-height: 22px;
	}
}

@media all and (max-width: 768px){
	.slideForm .formRoom .g .c1{
		border-bottom: solid 1px rgba(0,0,0,0.15);
	}
	.formRoom .g{
		margin: 0 -5px;
	}
	.slideForm .formRoom .g .c1, .slideForm .formRoom .g .c2{
		width: 50%;
		padding: 0 5px;
	}
}

@media all and (max-width: 767px){
	.roomHead .toggleForm .viewall{
		width: 100%;
		text-align: left;
	}
	.itemRoom1{
		margin-bottom: 20px;
	}
	.itemRoom1:last-child{
		margin-bottom: 0;
	}
	.itemRoom1 .thumb a{
	    /* padding-top: 58.56%; */
	}

	.itemRoom1 .thumb a::before{
		display: none;
	}
	.itemRoom1 .decs{
		position: relative;
		pointer-events: auto;
		color: #333333;
		bottom: 0;
	}
	.itemRoom1 .decs h3{
		text-align: center;
	}
	.itemRoom1 .decs a{
		color: #333333;
	}
	.gripRoom .colRoom{
		width: 100%;
		margin-bottom: 6px;
		padding: 0 2px;
	}

	.roomHead .toggleForm{
		width: 100%;
		margin-bottom: 15px;
		text-align: center;
	}
	.roomHead{
		display: block;
	}
	.room{
		display: block;
	}
	.room .img,
	.room .caption{
		width: 100%;
	}
	.room .caption{

	}
	.room .wrap{
		max-width: initial;
	}
	.room .des{
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 20px;
	}
	.roomHead>.wrapper{
		display: block;
	}
	.roomAttr ul li{
		width: 100%;
	}
	.roomShare{

		margin-bottom: 30px;
	}
	.roomOther .title h2{
		font-size: 20px;
		line-height: 30px;
	}
}

@media all and (max-width: 767px){
	.boxInfoHome .lstInfo .colitem{
		width: 100%;
	}
}

@media all and (max-width: 480px){

}

@media all and (max-width: 380px){

}