@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
	background: #fff;
	font-size: 0.16rem;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
input,
select,
textarea {
	outline: 0;
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}
img {
	border: 0;
	display: inline-block;
	max-width: 100%;
	width: auto;
}
ul,
li {
	list-style-type: none;
}
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: none;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.cl {
	clear: both;
}
.clear:after {
	content:"";
	display: block;
	clear:both;
}
.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bigimg img {
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.bigimg:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.to1{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.to2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.content {
	width: 12rem;
	margin: 0 auto;
}
.phone {
	display: none;
}
/* [v-cloak]{
	display: none;
} */


/*首页*/
.ind_header{
	width: 100%;
	height: 0.8rem;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
.ind_header .content{
	height: 0.8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.logo{
	width: 3.16rem;
}
.logo img{
	width: 100%;
}
.ind_tel{
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
	font-family: Arial;
}
.ind_tel img{
	width: 0.2rem;
	height: 0.2rem;
	margin-right: 0.06rem;
	vertical-align: middle;
}
.banner_box{
	width: 100%;
	position: relative;
}
.banner{
	width: 100%;
	height: 7.45rem;
	position: relative;
}
.banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .swiper-pagination{
	width: 100%;
}
.banner .swiper-pagination-bullet{
	width: 0.3rem;
	height: 0.02rem;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.6);
	opacity: 1;
}
.banner .swiper-pagination-bullet-active{
	background: #fff;
}
.menu_box{
	position: absolute;
	top: 0.8rem;
	left: 50%;
	transform: translateX(-6rem);
	z-index: 20;
}
.menu_list{
	width: 3rem;
	height: 6.65rem;
	background: rgba(0, 0, 0, 0.5);
}
.menu_list ul{
	height: 6.65rem;
	padding-top: 0.1rem;
	display: flex;
	flex-direction: column;
}
.menu_list li{
	padding: 0.1rem 0 0.15rem;
	text-align: center;
	color: #fff;
	font-size: 0.15rem;
	line-height: 0.24rem;
	margin-bottom: 0.14rem;
	position: relative;
}
.menu_list h1{
	font-size: 0.2rem;
	line-height: 0.32rem;
	font-weight: normal;
}
.menu_list a{
	padding: 0 0.07rem;
}
.menu_list a:hover{
	color: #53a8bb;
}
.menu_list li:hover{
	background: rgba(0, 0, 0, 0.5);
}
.menu_list li:hover .submenu{
	display: block;
}
.submenu{
	padding: 0.05rem 0.28rem;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 3rem;
	display: none;
}
.submenu ul{
	display: block;
	height: auto;
	margin-right: -5%;
	padding: 0;
}
.submenu li{
	float: left;
	width: 45%;
	text-align: center;
	line-height: 0.24rem;
	font-size: 0.15rem;
	margin: 0.12rem 5% 0.12rem 0;
	padding: 0;
}
.submenu li:hover{
	background: none;
}
.submenu a:hover{
	color: #fff;
}
#one_box,#three_box,#six_box{
	width: 3rem;
}
#two_box{
	width: 6rem;
	padding: 0.2rem;
	/* height: 5.6rem;
	overflow-y: scroll;
	overflow-x: hidden; */
}
#two_box li{
	width: auto !important;
	text-align: left;
}
#four_box{
	width: 4.5rem;
	text-align: left;
	padding: 0.05rem 0.28rem 0.2rem;
}
#four_box h1{
	font-size: 0.15rem;
	line-height: 0.24rem;
	font-weight: normal;
	margin: 0.2rem 0 0.1rem;
}
#four_box a{
	margin: 0.1rem 0.3rem 0.1rem 0;
}
#five_box{
	width: 7rem;
	text-align: left;
	padding: 0.05rem 0.28rem 0.2rem;
}
#five_box h1{
	font-size: 0.15rem;
	line-height: 0.24rem;
	font-weight: normal;
	margin: 0.2rem 0 0.05rem 0.07rem;
}

.int_bg{
	background: #f9f9f9;
	padding: 1.22rem 0;
}
.int_pic{
	float: left;
	width: 5.07rem;
	height: 5.07rem;
	border-radius: 0.1rem;
	overflow: hidden;
}
.int_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.int_pic:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.int_right{
	float: right;
	width: 6.3rem;
	padding-top: 0.18rem;
}
.int_right h1{
	color: #ededed;
	font-size: 0.52rem;
	line-height: 0.58rem;
}
.int_right h2{
	color: #333;
	font-size: 0.45rem;
	margin-bottom: 0.08rem;
}
.int_txt{
	color: #555;
	font-size: 0.14rem;
	line-height: 0.24rem;
	height: 1.44rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.3rem;
}
.int_list{
	width: 100%;
}
.int_list ul{
	margin-right: -0.2rem;
}
.int_list li{
	float: left;
	width: 3rem;
	height: 0.9rem;
	padding: 0.1rem;
	border: solid 0.01rem #53a8bb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-right: 0.2rem;
}
.int_list li:hover .int_img{
	background: #cfe8f4;
}
.int_img{
	width: 0.7rem;
	height: 0.7rem;
	background: #ecf9ff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.6s;
}
.int_img img{
	width: 0.36rem;
	height: 0.36rem;
}
.int_r{
	width: 1.92rem;
	color: #666;
	font-size: 0.14rem;
	padding-bottom: 0.1rem;
}
.int_r h1{
	color: #222;
	font-size: 0.16rem;
	line-height: 0.3rem;
	font-weight: normal;
}

.trip_box{
	padding: 0.8rem 0 0.51rem;
}
.trip_tit{
	width: 100%;
	text-align: center;
	line-height: 0.36rem;
	text-transform: uppercase;
	color: #a1a1a1;
	font-size: 0.2rem;
	margin-bottom: 0.49rem;
}
.trip_tit h1{
	color: #585858;
	font-size: 0.36rem;
	line-height: 0.56rem;
	font-weight: normal;
}
.trip_box .content{
	position: relative;
}
.trip_con{
	width: 100%;
}
.trip_con .swiper-slide{
	background: #fff;
}
.trip_left{
	float: left;
	width: 6.66rem;
}
.trip_lt{
	width: 6.32rem;
}
.trip_tt{
	width: 100%;
	margin-bottom: 0.1rem;
}
.trip_tt h1{
	color: #ededed;
	font-size: 0.52rem;
	line-height: 0.58rem;
}
.trip_tt h2{
	color: #333;
	font-size: 0.45rem;
	line-height: 0.74rem;
}
.trip_text{
	width: 6.32rem;
	color: #333;
	font-size: 0.14rem;
	line-height: 0.22rem;
	height: 1.1rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.55rem;
}
.trip_w{
	width: 6.66rem;
	height: 1.45rem;
	position: absolute;
	top: 3.64rem;
	left: 0;
	z-index: 10;
}
.trip_tabs{
	width: 6.16rem;
	margin: 0 auto;
}
.trip_tabs .swiper-slide{
	height: 1.45rem;
	position: relative;
	border-radius: 0.1rem;
	overflow: hidden;
}
.trip_tabs img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.trip_w .swiper-button-next, .trip_w .swiper-button-prev{
	width: 0.32rem;
  height: 0.44rem;
	background: #d8d8d8;
	border-radius: 0.05rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
}
.trip_w .swiper-button-prev{
  left: -0.18rem;
}
.trip_w .swiper-button-next{
  right: -0.18rem;
}
.trip_w .swiper-button-next:after, .trip_w .swiper-button-prev:after{
	font-size: 0.2rem;
	color: #fff;
}
.trip_tabs .swiper-slide-active .trip_txt{
	opacity: 0;
}
.trip_tabs .swiper-slide-active .trip_tm{
	opacity: 1;
}
.trip_txt{
	width: 100%;
	height: 0.35rem;
	line-height: 0.35rem;
	text-align: center;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 0.14rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.trip_tm{
	width: 100%;
	height: 100%;
	background: rgba(83, 168, 187, 0.5);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	opacity: 0;
}
.trip_right{
	float: right;
	width: 5.07rem;
	border-radius: 0.1rem;
	overflow: hidden;
}
.trip_pic{
	width: 100%;
	height: 5.07rem;
}
.trip_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.made_bg{
	background: #fff;
	box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
	padding: 0.14rem 0.18rem 0.23rem;
	margin-top: 0.58rem;
}
.made_tit{
	color: #878787;
	font-size: 0.24rem;
	line-height: 0.48rem;
}
.made_box{
	border: solid 0.02rem #53a8bb;
	border-radius: 0.08rem;
	padding: 0.12rem 0.25rem 0.25rem;
	display: flex;
	justify-content: space-between;
}
.made{
	width: 1.8rem;
}
.made h1{
	color: #878787;
	font-size: 0.15rem;
	font-weight: normal;
	line-height: 0.32rem;
}
.made input{
	width: 100%;
	height: 0.42rem;
	line-height: 0.42rem;
	border: solid 0.01rem #e6e6e6;
	color: #ababab;
	font-size: 0.15rem;
	padding-left: 0.13rem;
	border-radius: 0.05rem;
}
.made input::-webkit-input-placeholder {
	color: #ababab;
}
.made_btn{
	width: 0.8rem;
	height: 0.42rem;
	background: #53a8bb;
	border: none;
	border-radius: 0.05rem;
	cursor: pointer;
	color: #fff;
	font-size: 0.15rem;
	margin-top: 0.32rem;
}

.global_box{
	padding-bottom: 0.64rem;
}
.global_box .trip_tit{
	line-height: 0.26rem;
}
.global{
	width: 100%;
	padding-bottom: 0.37rem;
}
.global ul{
	margin-right: -0.13rem;
}
.global li{
	float: left;
	width: 2.9rem;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
	margin: 0 0.13rem 0.25rem 0;
	transition: all 0.6s;
}
.global li:hover{
	transform: translate(0,-0.18rem);
}
.global_pic{
	width: 100%;
	height: 2.85rem;
	overflow: hidden;
}
.global_pic img{
	width: 100%;
	height: 100%;
	transition: all 0.6s;
}
.global li:hover .global_pic img {
	transform: scale(1.1);
}
.global_bot{
	height: 1.2rem;
	padding: 0.15rem 0.12rem 0;
	background: #fff;
}
.global_bot h1{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.global_price{
	color: #ff4e00;
	line-height: 0.26rem;
	font-size: 0.14rem;
}
.global_price .rmb{
	font-weight: bold;
}
.global_price .rmb span{
	font-size: 0.18rem;
}
.global_bot .label{
	color: #53a8bb;
	font-size: 0.14rem;
	line-height: 0.22rem;
}
.global_more{
	width: 2.1rem;
	height: 0.5rem;
	line-height: 0.5rem;
	text-align: center;
	color: #fff;
	font-size: 0.16rem;
	background: #53a8bb;
	margin: 0 auto;
	position: relative;
}
.global_more a{
	display: block;
	position: relative;
	z-index: 2;
}
.global_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #2a99b2;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	overflow: hidden;
	transition: all 0.6s;
}
.global_more:hover::before {
	width: 100%;
}

.domestic_bg{
	width: 100%;
	padding: 0.4rem 0 0.48rem;
	background: linear-gradient(20deg, #53a8bb, #61c1a3);
}
.domestic_tit{
	width: 100%;
	text-align: center;
	line-height: 0.3rem;
	text-transform: uppercase;
	color: #fff;
	font-size: 0.2rem;
	margin-bottom: 0.3rem;
}
.domestic_tit h1{
	font-size: 0.36rem;
	line-height: 0.54rem;
	font-weight: normal;
}
.domestic{
	margin: 0 auto 0.32rem;
}
.domestic ul{
	margin-right: -0.22rem;
}
.domestic li{
	float: left;
	width: 3.85rem;
	height: 1.9rem;
	background: #fff;
	margin: 0 0.22rem 0.16rem 0;
	transition: all 0.6s;
}
.domestic li:hover{
	transform: translate(0,-0.15rem);
}
.domestic_pic{
	float: left;
	width: 50%;
	height: 1.9rem;
	overflow: hidden;
	position: relative;
}
.domestic_pic img{
	width: 100%;
	height: 100%;
	transition: all 0.6s;
}
.domestic li:hover .domestic_pic img {
	transform: scale(1.1);
}
.domestic_label{
	width: 100%;
	text-align: center;
	line-height: 0.3rem;
	height: 0.3rem;
	color: #fff;
	font-size: 0.14rem;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.domestic_r{
	float: right;
	width: 40%;
	margin: 0.16rem 0.18rem 0 0;
}
.domestic_r h1{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.domestic_price{
	color: #ff4e00;
	line-height: 0.28rem;
	font-size: 0.14rem;
	margin-bottom: 0..04rem;
}
.domestic_price .rmb{
	font-weight: bold;
}
.domestic_price .rmb span{
	font-size: 0.18rem;
}
.domestic_r ul{
	width: 100%;
}
.domestic_r ul li{
	color: #808080;
	font-size: 0.14rem;
	line-height: 0.28rem;
	height: 0.28rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	float: none;
	width: 100%;
	background: none;
	margin: 0;
}
.domestic_r ul li:hover{
	transform: translate(0);
}
.domestic_more{
	width: 2.1rem;
	height: 0.5rem;
	line-height: 0.5rem;
	text-align: center;
	color: #53a8bb;
	background: #fff;
	font-size: 0.16rem;
	margin: 0 auto;
	position: relative;
}
.domestic_more a{
	display: block;
	position: relative;
	z-index: 2;
}
.domestic_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #dbf2f7;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	overflow: hidden;
	transition: all 0.6s;
}
.domestic_more:hover::before {
	width: 100%;
}

.news_box{
	padding: 0.72rem 0 0.7rem;
}
.news_box .trip_tit{
	line-height: 0.26rem;
	margin-bottom: 0.44rem;
}
.news{
	width: 100%;
	padding-bottom: 0.52rem;
}
.news ul{
	margin-right: -0.22rem;
}
.news li{
	float: left;
	width: 3.85rem;
	margin: 0 0.22rem 0.24rem 0;
	transition: all 0.6s;
}
.news li:hover{
	transform: translate(0,-0.16rem);
}
.news_pic{
	width: 100%;
	height: 2.15rem;
	overflow: hidden;
	position: relative;
}
.news_pic img{
	width: 100%;
	height: 100%;
	transition: all 0.6s;
}
.news li:hover .news_pic img {
	transform: scale(1.1);
}
.news li:hover .news_tt,.news li:hover .news_date{
	color: #53a8bb;
}
.news_tt{
	color: #333;
	font-size: 0.18rem;
	font-weight: bold;
	line-height: 0.3rem;
	height: 0.3rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0.15rem 0 0.12rem;
}
.news_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.14rem;
}
.news_date{
	color: #999;
	font-size: 0.16rem;
	line-height: 0.3rem;
}

.foot_bg{
	width: 100%;
	background: #53a8bb;
	padding: 0.55rem 0 0.63rem;
	color: #fff;
}
.foot_left{
	float: left;
	width: 2.3rem;
}
.foot_right{
	float: right;
	width: 8.84rem;
}
.f_tel{
	font-size: 0.18rem;
	line-height: 0.3rem;
	margin-bottom: 0.39rem;
}
.f_tel h1{
	font-size: 0.24rem;
	line-height: 0.28rem;
	font-family: Arial;
}
.f_code{
	width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.f_code img{
	width: 1.26rem;
	height: 1.26rem;
}
.f_nav{
	width: 100%;
	margin-bottom: 0.53rem;
}
.f_nav ul{
	display: flex;
	justify-content: space-between;
}
.f_nav li{
	font-size: 0.16rem;
	line-height: 0.34rem;
}
.link{
	width: 100%;
	/* padding-left: 0.9rem;
	position: relative; */
}
.link li{
	float: left;
	line-height: 0.34rem;
	font-size: 0.16rem;
	margin-right: 0.32rem;
}
.link_tit{
	font-size: 0.16rem;
	line-height: 0.34rem;
	margin-bottom: 0.2rem;
	/* position: absolute;
	top: 0;
	left: 0; */
}
.copyright{
	width: 100%;
	padding: 0.2rem 0 0.42rem;
	text-align: center;
	line-height: 0.3rem;
	color: #ababab;
	font-size: 0.14rem;
}
.copyright div{
	margin-bottom: 0.2rem;
}
.copyright img{
	width: 1.36rem;
}


/* 游学列表 */
.main_header{
	width: 100%;
	background: #fff;
}
.main_header .content{
	height: 0.8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.main_header .ind_tel{
	color: #ec6918;
}
.search_box{
	width: 4.21rem;
	height: 0.4rem;
	margin-right: 0.23rem;
}
.search{
	float: left;
	width: 78%;
	height: 0.4rem;
	line-height: 0.4rem;
	border: solid 0.02rem #53a8bb;
	border-right: none;
	color: #777;
	font-size: 0.14rem;
	padding-left: 0.12rem;
}
.search::-webkit-input-placeholder {
	color: #777;
}
.search_btn{
	float: left;
	width: 22%;
	height: 0.4rem;
	border: none;
	background: #53a8bb;
	color: #fff;
	font-size: 0.16rem;
	cursor: pointer;
}

.tour_box{
	padding-bottom: 0.58rem;
}
.backhome{
	width: 0.8rem;
	height: 0.32rem;
	line-height: 0.3rem;
	text-align: center;
	border: solid 0.01rem #53a8bb;
	border-radius: 0.05rem;
	font-size: 0.14rem;
	color: #53a8bb;
	overflow: hidden;
	position: absolute;
	top: 0.12rem;
	right: 0.3rem;
}
.backhome a{
	display: block;
}
.tour_type{
	width: 100%;
	height: 0.54rem;
	border-bottom: solid 0.01rem #eee;
	margin-bottom: 0.2rem;
	position: relative;
}
.tour_type li{
	float: left;
	line-height: 0.52rem;
	height: 0.54rem;
	position: relative;
	color: #999;
	font-weight: bold;
	font-size: 0.2rem;
	margin-right: 0.4rem;
}
.tour_type li i{
	width: 100%;
	height: 0.03rem;
	background: #53a8bb;
	display: block;
	opacity: 0;
}
.tour_type li.on{
	color: #333;
}
.tour_type li.on i{
	opacity: 1;
}
.tour_line{
	border: solid 0.01rem #eee;
	padding: 0 0.3rem 0.2rem;
	margin-bottom: 0.22rem;
}
.tour_btnbox{
	width: 100%;
	text-align: right;
}
.tour_btn{
	width: 0.8rem;
	height: 0.34rem;
	border: none;
	background: #53a8bb;
	border-radius: 0.05rem;
	font-size: 0.15rem;
	color: #fff;
	margin-left: 0.2rem;
	cursor: pointer;
}
.tour_list{
	width: 100%;
}
.tour_list dl{
	font-size: 0.16rem;
	line-height: 0.52rem;
	border-bottom: dashed 0.01rem #ededed;
}
.tour_list dl:last-child{
	border: none;
}
.tour_list dl dt{
	float: left;
	width: 10%;
	color: #666;
}
.tour_list dl dd{
	float: left;
	width: 90%;
	color: #333;
}
.tour_list ul{
	width: 100%;
	margin-right: -0.5rem;
}
.tour_list ul li{
	float: left;
	margin-right: 0.5rem;
	cursor: pointer;
}
.tour_list ul li:hover{
	color: #ec6918;
}
.tour_list ul li.on{
	color: #ec6918;
}

.page{
	width: 100%;
	text-align: center;
	color: #606266;
	font-size: 0.16rem;
}
.page a{
	width: 0.3rem;
	height: 0.28rem;
	line-height: 0.28rem;
	display: inline-block;
	background: #f4f4f5;
	margin: 0 0.02rem;
	border-radius: 0.05rem;
}
.page a:hover{
	color: #fff;
	background: #53a8bb;
}
.page a.on{
	color: #fff;
	background: #53a8bb;
}
.page input{
	width: 0.46rem;
	height: 0.28rem;
	line-height: 0.28rem;
	text-align: center;
	border: solid 0.01rem #dcdfe6;
	background: #fff;
	font-size: 0.16rem;
	border-radius: 0.05rem;
	margin: 0 0.04rem;
}


/* 游学详情 */
.tour_show_box{
	padding: 0.33rem 0 1.1rem;
}
.tour_top{
	padding-bottom: 0.32rem;
}
.fangdajing {
	float: left;
	width: 5.2rem;
	height: auto;
	overflow: hidden;
}
.pro-zoom {
	width: 100%;
}
.pro-zoom img {
	max-width: 9999rem;
}
.jqzoom {
	border: none;
	position: relative;
	padding: 0;
	cursor: pointer;
	margin: 0;
	display: block;
}
.jqzoom img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zoomdiv {
	z-index: 100;
	position: absolute;
	top: 0;
	left: 0;
	width: 5.2rem !important;
	height: 5.2rem !important;
	background: #fff;
	border: solid 0.01rem #ccc;
	display: none;
	text-align: center;
	overflow: hidden;
}
.zoomdiv img{
	width: 10rem;
	height: 10rem;
	object-fit: cover;
}
.jqZoomPup {
	z-index: 10;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 0.2rem;
	height: 0.2rem;
	background: #fff;
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	filter: alpha(Opacity=50);
}
.spec-preview {
	width: 5.2rem;
	height: 5.2rem;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.spec-scroll {
	clear: both;
	width: 100%;
	margin-top: 0.3rem;
	position: relative;
}
.spec-scroll .prev,
.spec-scroll .next {
	display: block;
	width: 0.2rem;
	height: 0.2rem;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.spec-scroll .prev {
	background: url(../images/tour_03.png) no-repeat;
	background-size: 100% 100%;
	left: 0;
}
.spec-scroll .prev:hover{
	background: url(../images/tour_05.png) no-repeat;
	background-size: 100% 100%;
}
.spec-scroll .next {
	background: url(../images/tour_04.png) no-repeat;
	background-size: 100% 100%;
	right: 0;
}
.spec-scroll .next:hover{
	background: url(../images/tour_06.png) no-repeat;
	background-size: 100% 100%;
}
.spec-scroll .items {
	position: relative;
	width: 4.5rem;
	height: 1rem;
	overflow: hidden;
	margin: 0 auto;
}
.spec-scroll .items ul {
	position: absolute;
	width: 9999rem;
	height: 1rem;
	margin-right: -0.15rem;
}
.spec-scroll .items ul li {
	float: left;
	width: 1.16rem;
	height: 1rem;
	background: #fff;
	/* margin-right: 0.16rem; */
	position: relative;
}
.spec-scroll .items ul li img{
	width: 1rem;
	height: 100%;
	object-fit: cover;
}
.spec-scroll .items ul li img:hover{
	border: solid 0.02rem #53a8bb;
}

.tour_right{
	float: right;
	width: 6.31rem;
	padding-top: 0.5rem;
}
.tour_right h1{
	color: #333;
	font-size: 0.24rem;
	line-height: 0.4rem;
	font-weight: normal;
	margin-bottom: 0.2rem;
}
.tour_intro{
	padding-bottom: 0.17rem;
}
.intro_item{
	float: left;
	line-height: 0.34rem;
	color: #333;
	font-size: 0.2rem;
	margin-right: 0.5rem;
}
.intro_item:last-child{
	margin: 0;
}
.intro_item img{
	float: left;
	width: 0.24rem;
	height: 0.24rem;
	margin: 0.05rem 0.08rem 0 0;
}
.intro_detail{
	color: #999;
	font-size: 0.16rem;
	line-height: 0.34rem;
	padding-bottom: 0.25rem;
	border-bottom: solid 0.01rem #eee;
}
.tour_price{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.4rem;
	margin: 0.25rem 0 0.27rem;
}
.tour_price .price{
	color: #ff4e00;
	font-size: 0.16rem;
	display: inline-block;
}
.tour_price .price span{
	font-size: 0.3rem;
	font-weight: bold;
	padding-right: 0.05rem;
}
.ljzx{
	width: 2.3rem;
	height: 0.5rem;
	line-height: 0.5rem;
	text-align: center;
	color: #fff;
	font-size: 0.2rem;
	background: #53a8bb;
	position: relative;
}
.ljzx a{
	display: block;
	position: relative;
	z-index: 2;
}
.ljzx::before {
	position: absolute;
	display: block;
	content: '';
	background: #2a99b2;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	overflow: hidden;
	transition: all 0.6s;
}
.ljzx:hover::before {
	width: 100%;
}

.spot_tit{
	color: #333;
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.58rem;
	border-bottom: solid 0.01rem #eee;
	margin-bottom: 0.58rem;
}
.spot_tit span{
	display: inline-block;
	position: relative;
}
.spot_tit span i{
	width: 100%;
	height: 0.03rem;
	background: #53a8bb;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}
.spot_info{
	width: 100%;
}


/* 品牌介绍 */
.int_box{
	padding: 1.22rem 0 1.12rem;
}
.deve_bg{
	width: 100%;
	padding: 0.64rem 0 0.9rem;
	background: #f9fafc;
}
.deve_bg .trip_tit{
	margin-bottom: 0.74rem;
}
.deve_box{
	width: 100%;
	position: relative;
}
.deve_line{
	width: 100%;
	height: 0.01rem;
	background: #dce6e8;
	position: absolute;
	top: 1rem;
	left: 0;
}
.deve{
	width: 15.8rem;
	margin: 0 auto;
}
.deve_date{
	color: #53a8bb;
	font-size: 0.3rem;
	line-height: 0.66rem;
}
.yuan01{
	width: 0.31rem;
	height: 0.31rem;
	background: #ededed;
	border-radius: 50%;
	margin: 0 0 0.46rem 0.18rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.yuan02{
	width: 0.15rem;
	height: 0.15rem;
	background: #53a8bb;
	border-radius: 50%;
}
.line{
	width: 0.03rem;
	height: 0.61rem;
	background: #acd7e1;
	position: absolute;
	top: 0.31rem;
	left: 0.14rem;
}
.yuan03{
	width: 0.1rem;
	height: 0.1rem;
	border-radius: 50%;
	border: solid 0.02rem #53a8bb;
	position: absolute;
	left: -0.03rem;
	bottom: -0.1rem;
}
.deve_txt{
	width: 92%;
	background: #fff;
	padding: 0.35rem 0.28rem 0.28rem;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
	line-height: 0.3rem;
	color: #666;
	font-size: 0.16rem;
	text-align: justify;
	margin: 0 4% 4%;
}


/* 新闻列表 */
.gray{
	background: #f8f8f8;
}
.news_part{
	padding-bottom: 0.58rem;
}
.news_scroll{
	width: 100%;
	height: 6rem;
	margin-bottom: 0.34rem;
}
.news_scroll img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_tm{
	width: 100%;
	padding: 0.2rem 0.68rem;
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.news_tm h1{
	height: 0.48rem;
	line-height: 0.48rem;
	color: #fff;
	font-size: 0.3rem;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_tm div{
	height: 0.34rem;
	line-height: 0.34rem;
	color: #fff;
	font-size: 0.18rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_type{
	width: 100%;
	margin-bottom: 0.3rem;
}
.news_type li{
	float: left;
	line-height: 0.3rem;
	color: #333;
	font-size: 0.2rem;
	margin-right: 0.48rem;
}
.news_type i{
	width: 100%;
	height: 0.01rem;
	background: #53a8bb;
	display: block;
	opacity: 0;
}
.news_type li.on{
	color: #53a8bb;
}
.news_type li.on i{
	opacity: 1;
}
.news_left{
	float: left;
	width: 8.6rem;
}
.news_right{
	float: right;
	width: 2.9rem;
	background: #fff;
	padding: 0.14rem 0.17rem;
}
.news_list{
	width: 100%;
	padding-bottom: 0.35rem;
}
.news_list li{
	background: #fff;
	padding: 0.3rem;
	margin-bottom: 0.2rem;
}
.news_img{
	float: left;
	width: 2.86rem;
	height: 1.6rem;
	overflow: hidden;
}
.news_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.news_img:hover img {
	transform: scale(1.1);
}
.news_r{
	float: right;
	width: 4.9rem;
}
.news_r h1{
	height: 0.48rem;
	line-height: 0.48rem;
	color: #333;
	font-size: 0.18rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_text{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin: 0.03rem 0 0.12rem;
}
.news_bot{
	color: #999;
	font-size: 0.16rem;
	line-height: 0.3rem;
	height: 0.3rem;
}
.rec_tit{
	color: #333;
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.54rem;
	margin-bottom: 0.1rem;
}
.rec{
	width: 100%;
}
.rec li{
	margin-bottom: 0.22rem;
}
.rec_pic{
	width: 100%;
	height: 1.2rem;
	overflow: hidden;
	margin-bottom: 0.08rem;
}
.rec_pic img{
	transition: all 0.6s;
}
.rec_pic:hover img {
	transform: scale(1.1);
}
.rec_tt{
	color: #333;
	font-size: 0.14rem;
	font-weight: bold;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.rec_bot{
	color: #999;
	font-size: 0.12rem;
	line-height: 0.32rem;
	height: 0.32rem;
}


/* 新闻详情 */
.show_box{
	padding: 0.25rem 0 1.5rem;
}
.show_box .news_right{
	margin-top: 0.06rem;
}
.path{
	color: #333;
	font-size: 0.14rem;
	line-height: 0.32rem;
	margin-bottom: 0.25rem;
}
.show_top{
	border-bottom: solid 0.01rem #e4e4e4;
	padding-bottom: 0.2rem;
	margin-bottom: 0.3rem;
}
.show_tit{
	color: #111;
	font-size: 0.36rem;
	line-height: 0.5rem;
	margin-bottom: 0.12rem;
}
.show_t{
	color: #999;
	font-size: 0.16rem;
	line-height: 0.3rem;
}
.show_txt{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.3rem;
	text-align: justify;
}


.baoming_box {
	background: #fff;
	padding-bottom: 1.5rem;
	width: 12rem;
	margin: 0 auto;
}

.baoming_pic {
	width: 100%;
}

.baoming_pic img {
	width: 100%;
}

.baoming_bg {
	background: #fff;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
	padding: 0.34rem 0.3rem;
	margin: -1rem auto 0;
	position: relative;
	z-index: 1;
}

.dingzhi_tit {
	width: 100%;
	text-align: center;
	line-height: 0.62rem;
	color: #53a8bb;
	font-size: 0.36rem;
	margin-bottom: 0.46rem;
}

.dingzhi {
	width: 100%;
}

.dingzhi li {
	margin-bottom: 0.15rem;
}

.dingzhi h1 {
	color: #878787;
	font-size: 0.24rem;
	font-weight: normal;
	line-height: 0.58rem;
}

.dz_inp {
	width: 100%;
	height: 0.6rem;
	line-height: 0.6rem;
	border: solid 0.01rem #e6e6e6;
	border-radius: 0.05rem;
	padding-left: 0.12rem;
	color: #ababab;
	font-size: 0.2rem;
}

.dz_inp::-webkit-input-placeholder {
	color: #ababab;
}

.dz_btn {
	width: 100%;
	text-align: center;
	padding-top: 0.45rem;
}

.dz_ljtj {
	width: 75%;
	height: 0.65rem;
	border: none;
	background: #53a8bb;
	color: #fff;
	font-size: 0.3rem;
}