/* css初始化 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}
@media (max-width:428px) {
	html {
	    font-size: 10px;
	}
}
@media (max-width:375px) {
	html {
	    font-size: 10px;
	}
}

body {
    position: relative;
    font-family: "microsoft yahei", "PingFangSC Regular", "sans-serif";
    background-color: #f5f5f5!important;
    color: #333;
    max-width: 750px;
    margin: 0 auto;
}

img {
    vertical-align: bottom;
}
i{
	font-style: normal;
}
ul,
li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-weight: inherit;
}

button {
    cursor: pointer;
    /* 定义鼠标形状 */
}

input,textarea,button,a {
    border: none;
    outline: none;
}

input::-webkit-input-placeholder{color: #ccc;}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}
/* 公共样式 */
.d-box{
	width: 100%;
	max-width: 750px;
	position: relative;
	margin: 0 auto;
	background-color: #f7f7f7;
}
.box{
	width: 100%;
	position: relative;
	padding: 0 20px;
}
.img img{max-width: 100%;}
input::-webkit-input-placeholder{color: #ccc;}
li>a{display: block;}
.radius16{border-radius: 16px;overflow: hidden;}
.radius8{border-radius: 8px;overflow: hidden;}
.radius4{border-radius: 4px;overflow: hidden;}

/* 文本限制行数 */
.text1{
	word-break: keep-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.textn{
	text-align: justify;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}




/* 内容 */
.function{
	padding: 20px 10px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	background-color: #fff;
}
.function li{
	flex: 1;
	padding: 0 10px;
}
.function li a{
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 2.1875rem 0;
}
.function li:nth-child(1) a{background-image: url(../images/bg01.jpg);}
.function li:nth-child(2) a{background-image: url(../images/bg02.jpg);}
.function li:nth-child(3) a{background-image: url(../images/bg03.jpg);}

.function li a img{
	display: block;
	margin: 0 auto;
	width: 30%;
	height: auto;
	filter: drop-shadow(3px 3px 6px rgba(50,50,50,0.2));
}
.function li a span{
	display: block;
	text-align: center;
	color: #fff;
	font-size: 1.875rem;
	margin-top: 1rem;
}

/* 公告 */
.notice{
	background-color: #f2f2f2;
	height: 3.75rem;
}
.notice .swiper-container1{
	height: 100%;
	padding-left: 2.6rem;
	background-image: url(../images/ico04.png);
	background-position: left center;
	background-size: 2rem;
	background-repeat: no-repeat;
}
.notice .swiper-slide1{
	line-height: 3.75rem;
	font-size: 1.375rem;
	color: #666;
}

/* 驿站 */
.hotel li{
	margin-top: 2.5rem;
	background-color: #fff;
	position: relative;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}

/* css实现等比显示 */
.hotel li .img{
    position: relative;
    height: 0; 
    width: 100%; 
	overflow: hidden;
}
.hotel li .img[data-ratio="16:9"] {
    padding-top: 56%;
}
.hotel li .img img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}
/* -------- */

.hotel li .title{
	padding: 0 1rem;
	position: relative;
}
.hotel li .navigation{
	position: absolute;
	top: -2rem;
	z-index: 1;
}
.hotel li .navigation a{
	width: 5rem;
	display: block;
}
.hotel li .navigation a img{
	max-width: 100%;
}
.hotel li .title h3{
	padding-top: 3rem;
	font-size: 2rem;
	color: #333;
	line-height: 2;
}
.hotel li .title p{
	color: #ff4c4c;
	font-size: 1.375rem;
}
.hotel li .title p span{
	margin: 0 0.5rem;
}
.hotel li .title p b{
	margin-right: 0.5rem;
}
.hotel li .title .anniu{
	color: #fff;
	font-size: 1.375rem;
	background: linear-gradient(to left top, #1c73fe,#45a4fe);
	display: block;
	width: 70%;
	margin: 5px auto 0;
	/*width: 7.875rem;*/
	height: 3rem;
	/*position: absolute;*/
	/*right: 2.5rem;*/
	/*bottom: 0;*/
	text-align: center;
	line-height: 3rem;
}
.hotel li .address{
	margin-top: 1rem;
	padding: 0 2.5rem 0 5rem;
	line-height: 4.1rem;
	color: #666;
	font-size: 1.375rem;
	background-image: url(../images/ico05.png);
	background-position: 2.5rem center;
	background-size: 1.8rem;
	background-repeat: no-repeat;
	border-top: solid 1px #ccc;
}

.more-hotel a{
	display: block;
	width: 60%;
	background-color: #3ab2eb;
	font-size: 1.375rem;
	color: #fff;
	text-align: center;
	line-height: 3.75rem;
	margin: 1.875rem auto;
}

/* 魅力城市 */
.charm-city{
	background-color: #fff;
	padding-bottom: 2.5rem;
}
.charm-city .title span{
	color: #1c73fe;
	font-size: 2rem;
	line-height: 4.375rem;
}
.charm-city .title a{
	color: #666;
	font-size: 1.375rem;
	line-height: 4.375rem;
	float: right;
}

.charm-city .city-img{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.city-img>div{
	width: calc(50% - 10px);
}
.city-img .left-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.city-img .right-img div:nth-child(1){
	margin-bottom: 20px;
}


/* css实现等比显示 */
.city-img .right-img .img{
    position: relative;
    height: 0; 
    width: 100%; 
	overflow: hidden;
}
.city-img .right-img .img[data-ratio="16:9"] {
    padding-top: 56%;
}
.city-img .right-img .img img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}
/* -------- */


/* 技术支持 */
.jishu-zhichi{
	color: #ccc;
	font-size: 14px;
	text-align: center;
	margin: 20px 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
.jishu-zhichi span{
	display: block;
	width: 3.125rem;
	height: 1px;
	background-color: #ccc;
	margin: 0 0.625rem;
}

/* 底部导航 */
.nav-kong{
	height: 6rem;
}
.nav{
	height: 6rem;
	background-color: #fff;
	position: fixed;
	/*left: 0;*/
	bottom: 0;
	width: 100%;
	max-width: 750px;
	z-index: 10;
}
.nav ul{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	height: 100%;
}
.nav ul li{
	flex: 1;
}
.nav li a{
	color: #666;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.nav li img{
	width: 2.5rem;
}
.nav li span{
	font-size: 1.2rem;
	line-height: 1.8rem;
}
.nav li a .img2{
	display: none;
}
.nav li .current{
	color: #1c73fe;
}
.nav li .current .img1{
	display: none;
}
.nav li .current .img2{
	display: block;
}

/* -------首页完结-------- */

.ny-bt{
	font-size: 2rem;
	background-color: #fff;
	color: #333;
	text-align: center;
	padding: 1.25rem 0;
	letter-spacing: 2px;
	font-weight: 600;
}

.gonggao{
	padding-top: 20px;
}

.gonggao li{
	margin-bottom: 1.875rem;
	border-bottom: solid 1px #ccc;
	padding-bottom: 1.25rem;
}
.gonggao li h3{
	font-size: 1.875rem;
	color: #333;
}
.gonggao li p{
	font-size: 1.375rem;
	-webkit-line-clamp: 2;
	color: #666;
	line-height: 1.5;
	margin: 0.5rem 0;
}
.gonggao li span{
	font-size: 1.375rem;
	color: #999;
}

.fangyuan-banner{
	background-color: #fff;
	
}
/* css实现等比显示 */
.fangyuan-banner .swiper-slide2{
    position: relative;
    height: 0; 
    width: 100%; 
	overflow: hidden;
}
.fangyuan-banner .swiper-slide2[data-ratio="2:1"] {
    padding-top: 50%;
}
.fangyuan-banner .swiper-slide2 img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}
/* -------- */


.fangyuan-title{
	width: 90%;
	background-color: #fff;
	margin: 2rem auto;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
	padding: 20px;
}
.fangyuan-title h3{
	font-size: 2rem;
	color: #333;
	line-height: 2;
	border-bottom: solid 1px #ccc;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
}
.fangyuan-title .title a{
	width: 3rem;
	height: 100%;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
}
.fangyuan-title .title a img{
	width: 100%;
	vertical-align: middle;
}
.fangyuan-title p{
	color: #ff4c4c;
	font-size: 1.375rem;
	background-position: left center;
	background-size: 1.8rem;
	background-repeat: no-repeat;
	padding: 0 2.5rem 0 2.5rem;
}
.fangyuan-title p span{
	margin: 0 0.5rem;
}
.fangyuan-title p b{
	margin-right: 0.5rem;
}
/*.fangyuan-title p:nth-child(2){*/
/*	background-image: url(../images/ico07.png);*/
/*}*/
.fangyuan-title .address{
    margin-top: 1rem;
    color: #666;
	background-image: url(../images/ico05.png);
}

.fangyuan-introduce h3{
	text-align: center;
	position: relative;
}
.fangyuan-introduce h3::after{
	position: absolute;
	width: 6.25rem;
	height: 0.4rem;
	background: #1C73FE;
	display: block;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	border-radius: 0.04rem;
}

.fangyuan-introduce h4{
	font-size: 1.625rem;
	margin-bottom: 1rem;
}

.fangyuan-introduce p{
	color: #666;
	font-size: 1.375rem;
	padding: 0;
	text-align: justify;
	line-height: 1.5;
	background-image: none!important;
}
.fangyuan-introduce-box{
    border-bottom: solid 1px #ccc;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

#dituContent{
	width: 100%;
	height: 23.4375rem;
}

.xiangqing-nav ul li:nth-last-child(1){
	flex: 2;
}
.xiangqing-nav ul li:nth-last-child(1) a{
	background-color: #1C73FE;
	color: #fff;
	font-size: 2rem;
}




/* 预约 */

.yuyue-top{
	background-color: #1C73FE;
	color: #fff;
	width: 100%;
	line-height: 5rem;
	font-size: 18px;
	text-align: center;
	position: relative;
}
.yuyue-top a{
	position: absolute;
	left: 20px;
	color: #fff;
}
.yuyue-top a i{
    font-size: 20px;
}
.yuyue-top a:hover{
	color: #fff;
}

.yuyue-shengming p{
	margin: 20px 0;
	font-size: 14px;
	text-align: justify;
	background-color: #fff;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
	padding: 20px;
}
.biaodan form .wrap-input100{
	width: 100%;
}
.biaodan form .wrap-input100 input{
	width: 100%;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #555;
	text-align: left;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px!important;
	
}

.validate-input .biaodan-sex{
	display: inline-block;
}
.biaodan form label{
	font-size: 14rpx;
	font-weight: 400;
}
.biaodan .validate-input .biaodan-sex input{
	display: inline-block;
	width: auto;
}
.biaodan .validate-input .biaodan-sex label{
	padding: 0 10vw 0 3px;
}
.validate-input .biaodan-sex:nth-child(1){
	margin-left: 15vw;
}
.biaodan-sex-box{
	margin: 0!important;
}

.biaodan form .contact100-form-btn{
	display: block;
	width: 60%;
	background-color: #1C73FE;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 45px;
	margin: 1.875rem auto;
}

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "!";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  z-index: 11;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

/* 预约表单结束 */

/* 单页 */
.gonggao-title{
	text-align: center;
	margin-bottom: 20px;
	margin-top: 10px;
}
.gonggao-title h3{
	font-size: 2rem;
	color: #333;
}
.gonggao-title p{
	color: #999;
}
.gonggao-neirong p{
	font-size: 16px;
	line-height: 1.6;
}
.gonggao-neirong{
    background-color: #fff;
}
.gonggao-neirong img{
    max-width: 100%;
    margin-bottom: 1rem;
}

.xiangguan-yuedu{
	background-color: #fff;
	padding: 20px;
	margin-top: 30px;
}
.xiangguan-yuedu h3{
	margin: 0;
	font-size: 20px;
}
.xiangguan-yuedu p{
	margin: 10px 0 0;
	font-size: 1.375rem;
	
}
.xiangguan-yuedu p a{
	color: #666;
}

/* 魅力城市 */
.ny-city{
	margin: 2rem;
	padding-bottom: 10px;
	column-count: 2;
	-moz-column-count:2; /* Firefox */
	-webkit-column-count:2; /* Safari 和 Chrome */
	column-gap: 10px;/*  IE9以下浏览器版本兼容 */
	-moz-column-gap: 10px; 
	-webkit-column-gap: 10px;
}
.ny-city li{
	margin-bottom: 10px;
}
.ny-city li a{
	background-color: #fff;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
	display: block;
	break-inside: avoid;/*column布局禁止折行*/
}
.ny-city li a h3{
	font-size: 1.375rem;
	padding: 10px 20px;
	color: #333;
	margin: 0;
	line-height: 2;
}






/*筛选*/

.product_box {
    padding: 20px 20px 0;
}

.classify-screen {
    font-size: 14px;
    padding: 16px 20px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}

.classify-box {
    
}

.classify-box .classify-name {
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.classify-box .classify-screen-con {
    font-size: 16px;
    width: 100%;
}

.classify-box .classify-screen-con .classify-choose {
    width: 100%;
   display: flex;
   flex-flow: row wrap;
   justify-content: flex-start;
}

.classify-box .classify-screen-con a {
    width: 25%;
    color: #666;
    font-size: 14px;
    line-height: 22px;
    padding: 4px 5px;
    cursor: pointer;

}

.classify-box .classify-screen-con a:hover {
    color: #1c73fe;
}

.classify-box .classify-screen-con a span {
    display: block;
        text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}

.classify-box .classify-screen-con a.selected span {
    background: linear-gradient(to left top, #1c73fe,#45a4fe);
    color: #ffffff;
}



/*分页*/
#pages {
    text-align: center;
    margin: 20px 0;
}

#pages li {
    margin: 0 2px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #e6e6e6;
    color: #333;
    display: inline-block;
}
#pages li a{
    font-size: 14px;
    display: block;
    padding: 0 12px;
	color:#666;
}
#pages li span{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li.active {
    text-align: center;
    background: #1c73fe;
    color: #fff;
    display: inline-block;
}

#pages li:hover {
    background: #1c73fe;
}

#pages li:hover a {
    color: #fff;
}

.zhezhao{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: none;
}

.zhezhao div{
    width: 70%;
    padding: 30px;
    background: #fff;
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%,-50%);
}
.zhezhao p{
    font-size: 18px;
    text-align: center;
}
.zhezhao a{
    color: #fff;
    font-size: 1.375rem;
    background: linear-gradient(to left top, #1c73fe,#45a4fe);
    display: block;
    width: 70%;
    margin: 16px auto 0;
    height: 2.625rem;
    text-align: center;
    line-height: 2.625rem;
}

.jishu-zhichi{
    height: 0;
    overflow: hidden;
}

.apply_btn{
	display: block;
	height:2.5rem;
	text-align: center;
	margin: 5px auto 0;
}
.apply_btn img{
	max-height: 100%;
}

.text-swip{
	line-height: 3.75rem;
	word-break: keep-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

