/* ============================================================
   样式重置 
   ============================================================ */
* {
	box-sizing: border-box;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	outline: none;
}
body, p, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, select, textarea, button, th, td {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: 400;
}
ul, dl, ol {
	list-style: none;
}
img, fieldset, input[type="submit"] {
	border: 0 none;
}
img {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}
em {
	font-style: normal;
}
strong {
	font-weight: bolder;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button, input {
	cursor: pointer;
	border: 0 none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
textarea {
	word-wrap: break-word;
	resize: none;
}  /* word-wrap for opera, resize for webkit */
menu {
	margin: 0;
	padding: 0;
}
body {
	margin: 0 auto;
	-webkit-user-select: none;
	-webkit-text-size-adjust: none!important;
	font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Arial", sans-serif, Droidsansfallback;
	font-size: 0.26rem;
	font-weight: 400;
	background: #fff;
	color: #333;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}
input, textarea {
	font-family: "Helvetica Neue", "Helvetica", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Arial", sans-serif, Droidsansfallback;
	font-weight: 400;
}
input[type="number"] {
	-webkit-user-select: text;
}
a, button, input {
	-webkit-touch-callout: none;
}/* 1.ios 长按时不触发系统的菜单 2.禁止长按时下载图片 */
input, select, textarea {
	outline: none;
	background: none;
	font-weight: 400;
}
/* input { -webkit-appearance: none; } */
/* 去除android4.0以下 a/button/input标签被点击时产生的边框 因为边框引起了不少bug */
a, button, input, select, li {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* Android4.0下不识别选择器-webkit-transform-3d 使用它可做Android4.0下版本兼容 */
@media all and (-webkit-transform-3d) {
/* android4.0+ ios4+ 恢复按钮被点击时产生的效果 */
    /*a,button,input{-webkit-tap-highlight-color:rgba(130,130,130,.52);}*/
a, button, input, select {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	outline: none;
}
}
a {
	text-decoration: none;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
/*弹性盒子*/
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.flex-v {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flex-1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.flex-align-top {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: center;
	align-items: flex-start;
}
.flex-align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-pack-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-pack-justify {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-space-around {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.flex-space-between {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.hor-view {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	flex-direction: row
}
.ver-view {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column
}
.hor-gap {
	width: 1px;
	height: 100%;
	line-height: 0
}
.ver-gap {
	height: 1px;
	width: 100%;
	line-height: 0
}
/*弹性盒子*/
.between {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between
}
.center {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center
}
.start {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	-webkit-justify-content: flex-start
}
.end {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end
}
.middle {
	display: flex;
	display: -webkit-flex;
	-webkit-align-items: center;
	align-items: center;
}
.v-bottom {
	display: flex;
	display: -webkit-flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.v-baseline {
	display: flex;
	display: -webkit-flex;
	-webkit-align-items: baseline;
	align-items: baseline;
}
.col {
	display: flex;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.row {
	display: flex;
	display: -webkit-flex;
	-webkit-flex-direction: row;
	flex-direction: row;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	-webkit-box-lines: single;
	-moz-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.wrap {
	-webkit-flex-wrap: wrap;
	-webkit-box-lines: single;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
}
　 .fn-hide {
	display: none
}
.clearfix:after, .clearfix:before {
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}
.clearfix {
*zoom: 1;
}
::-moz-placeholder {
color: #777;
font-size:0.3rem;
}
::-webkit-input-placeholder {
color: #777;
font-size: 0.3rem;
}
:-ms-input-placeholder {
color: #777;
font-size: 0.3rem;
}
.text-overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hide-text-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.midcenter {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
html {
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
	max-width: 750px;
	margin: 0 auto;
}
body {
	max-width: 750px;
	min-height: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	position: relative;
}
.page1 {
	position: relative;
	background: url('https://image.360eol.com/leap/2025/bg7.png') no-repeat;
	background-position: 0 12rem;
	background-size: 100% auto;
	background-color: #2267c6;
}
.top1 img {
	display: block;
	width: 100%;
}
.topbg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
}
.bird {
	position: absolute;
	z-index: 2;
	top: 1.38rem;
	right: 0.32rem;
	width: 1.77rem;
	height: 0.93rem;
	background: url(https://image.360eol.com/leap/2025/bird.png) left top no-repeat;
	background-size: 1.77rem 0.93rem;
	-webkit-animation: linexian 1.2s ease;
	animation: linexian 1.2s ease;
}
@-webkit-keyframes linexian {
 0% {
 height:0;
 width:0;
}
 100% {
 width:1.77rem;
 height:0.93rem;
}
}
 @keyframes linexian {
 0% {
 height:0;
 width:0;
}
 100% {
 width:1.77rem;
 height:0.93rem;
}
}
.flower {
	-webkit-animation: aniIcon5 1.6s infinite linear;
	animation: aniIcon5 1.6s infinite linear
}
.flower1 {
	position: absolute;
	z-index: 2;
	top: 0.58rem;
	right: 0.4rem;
	width: 0.76rem;
	animation-delay: 0.2s
}
.flower2 {
	position: absolute;
	z-index: 2;
	top: 1.8rem;
	right: 1.89rem;
	width: 0.51rem;
	animation-delay: 0.4s
}
.flower3 {
	position: absolute;
	z-index: 2;
	top: 2.65rem;
	left: 0.32rem;
	width: 0.93rem;
	animation-delay: 0.3s
}
.flower4 {
	position: absolute;
	z-index: 2;
	top: 3.95rem;
	left: 1.02rem;
	width: 0.59rem;
	animation-delay: 0.5s
}
 @-webkit-keyframes aniIcon5 {
 0% {
 opacity:0.2;
 -webkit-transform:scale(0.5);
 transform:scale(0.5);
}
 80% {
 opacity:1;
 -webkit-transform:scale(1);
 transform:scale(1);
}
 100% {
 opacity:0;
 -webkit-transform:scale(1.2);
 transform:scale(1.2);
}
}
 @keyframes aniIcon5 {
 0% {
 opacity:0.2;
 -webkit-transform:scale(0.5);
 transform:scale(0.5);
}
 80% {
 opacity:1;
 -webkit-transform:scale(1);
 transform:scale(1);
}
 100% {
 opacity:0;
 -webkit-transform:scale(1.2);
 transform:scale(1.2);
}
}
.top1 {
	position: relative;
	z-index: 3;
	padding-top: 0.64rem;
}
.top1 .logo {
	margin: 0 auto;
	width: 2.05rem;
}
.top1 .ztwz1 {
	margin-top: 0.9rem;
	
}
.top1 .ztwz2 {
	margin-right: 0.97rem;
	width: 3.43rem;
}
.top1 .ztwz3 {
	margin: 0.23rem auto 0.5rem;
	width: 5.6rem;
}
.top1 .ztwz4 {
	margin: 0rem auto;
	width: 3.6rem;
}
.top1 .house {
	margin: 0.19rem auto 0.55rem;
	width: 4.89rem;
}
.main {
	position: relative;
	z-index: 3;
	margin: 3.5rem auto 0;
	/*width: 6.9rem;*/
}
.main.page1{
	background: url(https://image.360eol.com/leap/2025/bg7.png) no-repeat;
    background-position: 0 0rem;
    background-size: cover;
}
.menus{
	width: 6.9rem;
	height: 1rem;
	background: url(https://image.360eol.com/leap/2025/nav.png) no-repeat;
	background-size: 100% 100%;
	display: flex;
    align-items: center;
    margin: 0 auto;
}
.menus span{
	color: #fff;
	font-size: .28rem;
	color: #FFFFFF;
	text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
	display: block;
	flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .1rem;
    font-weight: 600;
}
.menus span.active{
	background: url(https://image.360eol.com/leap/2025/bg.png) no-repeat;
	background-size: 100% auto;
	background-position: center center;
	position: relative;
}
.menus span.active em{
  background: linear-gradient(to right, #FEFF00, #00FFBB); /* 从左到右的渐变色 */
  -webkit-background-clip: text; /* 使背景渐变应用于文字 */
  color: transparent; /* 将文字颜色设置为透明，以便背景渐变显示 */
}
.menus span.active:before{
	position: absolute;
    content: '';
    left: 50%;
    bottom: -0.2rem;
    width: .33rem;
    height: .33rem;
    background: url(https://image.360eol.com/leap/2025/cur.png) no-repeat;
	background-size: 100% auto;
    margin-left: -0.16rem;
}
.tabs{
	width: 6.9rem;
	margin: .36rem auto 0;

}
.tabs .list{display: none;}
.tabs .list .item{
	
	height: 2.8rem;
	/*background: url(https://image.360eol.com/leap/2025/bg6.png) no-repeat;*/
	background-size: 100% 100%;
	border-radius: .32rem;
	margin-bottom: .26rem;
	padding: 0 .32rem;

}
.tabs .list .item h2{
	font-size: .3rem;
	color: #FFFFFF;
	line-height: .42rem;
	padding-top: .6rem;
}
.tabs .list .item p{
	font-size: .24rem;
	color: #FFFFFF;
	line-height: .32rem;
	margin-top: 0.08rem;
	opacity: .8;
}

.tabs .list .item-1{
	min-height: 2.1rem;
	background: rgba(255,255,255,0.8);
	border-radius: .32rem;
	padding: 0.06rem;
	margin-bottom: .25rem;
}
.tabs .list .item-1 .inner{
	background: #FFFFFF;
	border-radius: .32rem;
	display: flex;
	padding: .16rem;
}

.tabs .list .item-1 .img{
	width: 2.5rem;
	margin-right: .2rem;
}
.tabs .list .item-1 .img img{
	border-radius: .24rem;
}
.tabs .list .item-1 .text{
	width: 3.59rem;
	display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.tabs .list .item-1 .text h2{
	font-size: .26rem;
	color: #000000;
	line-height: .32rem;
	font-weight: 600;
	
}
.tabs .list .item-1 .text p{
	font-size: .24rem;
	color: #000000;
	line-height: .24rem;
	opacity: 0.4;
	
}

.tabs .list .item-v .inner{display: block;}
.tabs .list .item-1 .video{
	position: relative;
}
.tabs .list .item-1 .video .play{
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -0.5rem 0 0 -0.5rem;
	background: url(https://image.360eol.com/leap/2025/play.png) no-repeat;
	background-size: 100% 100%;
}
.tabs .list .item-1 .video img{
	height: 3.2rem;
	border-radius: .2rem;
}
.tabs .list .item-1 .title{
	padding: .4rem 0;
	font-size: .28rem;
	color: #222222;
	line-height: .38rem;
	font-weight: bold;
	text-align: center;
}

.button{
	width: 5.98rem;
	height: .96rem;
	background: linear-gradient( 270deg, #00A9FA 0%, #0070F2 100%);
	box-shadow: 0px 0px 40px 0px rgba(25,89,132,0.2);
	border-radius: .48rem;
	/*border: 4px solid;*/
	border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(127, 240, 255, 1)) 4 4;
	display: block;
	position: fixed;
    left: 50%;
    margin-left: -3rem;
    bottom: .5rem;
    font-size: .38rem;
	color: #FFFFFF;
	font-weight: bold;
	display: flex;
    align-items: center;
    justify-content: center;
}

.card {
	position: relative;
	margin-bottom: 0.68rem;
}
.card:last-child {
	margin-bottom: 0
}
.card .titlebt {
	position: absolute;
	top: -0.36rem;
	left: 0;
	right: 0;
	margin: 0 auto
}
.card .titlebt1 {
	width: 2.89rem;
	height: 0.74rem;
}
.card .titlebt2 {
	width: 3.76rem;
	height: 0.74rem;
}
.card .titlebt3 {
	width: 2.89rem;
	height: 0.74rem;
}
.card img {
	display: block;
	width: 100%;
}
.bk_bg {
	background: linear-gradient( 180deg, #FFEFE1 0%, #FFEBD8 100%);
	padding: 0.43rem 0.32rem 0.17rem;
}
.bkwz {
	font-weight: 400;
	font-size: 0.24rem;
	color: #111111;
	line-height: 0.42rem;
}
.indent {
	text-indent: 2em;
}
.wzbt {
	width: 1.2rem;
	font-weight: 600;
}
.wzjs {
	width: calc(100% - 1.2rem)
}
.lab_bt {
	padding: 0.08rem 0 0.12rem;
}
.lab_bt img {
	width: 0.32rem;
	height: 0.32rem;
}
.lab_wz {
	margin-left: 0.1rem;
	font-weight: 600;
	font-size: 0.28rem;
	color: #111111;
	line-height: 0.42rem;
}
.lab_line {
	padding-bottom: 0.1rem;
	border-bottom: 1px dashed rgba(194, 15, 46, 0.28)
}
.foot {
	position: relative;
	z-index: 3;
	padding: 0 0.5rem 0.5rem;
}
.foot .bg {
	position: absolute;
	z-index: 1;
	top: 0.22rem;
	left: 0.49rem;
	width: 6.21rem;
	height: 1.61rem;
}
.foot_wz {
	position: relative;
	z-index: 2;
	font-size: 0.24rem;
	color: #FFFFFF;
	line-height: 0.37rem;
	text-align: center
}
.page_high {
	padding-bottom: 1.28rem;
}
.f_bottom {
	position: relative;
	z-index: 3;
	background: #FFF
}
.f_bottom .con {
	padding: 0.2rem 0.38rem;
}
.f_bottom .btn {
	background: linear-gradient( 270deg, #E4B78A 0%, #FADEC6 100%);
	border-radius: 0.44rem;
	border: 1px solid #FFEFD8;
	height: 0.88rem;
	box-sizing: border-box;
	font-weight: 600;
	font-size: 0.30rem;
	color: #000000;
}


/*项目详情*/

.tab_page,.ny-list .tab_page{ display:none;}
.tab_page:first-child{ display:block;}

.xm-detail {padding: 0.58rem 0.4rem 0.4rem;}
.title-bt{ line-height:0.48rem; padding:0 0rem; font-size:0.34rem; font-weight:600; text-align:center;}
.xm-nav{ height:0.9rem;}
.xm-nav .time{ width:4rem; font-size:0.3rem; color:#999;}
.xm-nav .like{ padding-left:0.45rem; height:0.36rem; font-size:0.22rem; color:#515253;}
.xm-nav .like.zan1{ background:url(../images/zan1.png) left center no-repeat; background-size:0.36rem 0.36rem;}
.xm-nav .like.zan2{ background:url(../images/zan2.png) left center no-repeat; background-size:0.36rem 0.36rem;}
.article{ line-height:0.6rem; font-size:0.31rem; color:#000;}
.article p{ margin-top:0.2rem; text-indent:2em;text-align: justify;}
.describe_ask{ line-height:0.6rem; font-size:0.31rem; color:#000;}
.describe_ask p{ margin-top:0.2rem; text-indent:0em;text-align: justify;}
.article-bottom{word-break:break-all; margin-top:0rem; line-height:1rem;font-size:0.3rem; color:#333;}
.article-bottom p{ margin-bottom:0rem; line-height:0.6rem}
.article-bottom p span{ font-weight:600;}
.article-bottom p a{ color:#1518b5; text-decoration:underline;}
.article_left{float: left;    width: 30%;}
.article_right{float: left;    width: 68%;}


.open_img{ display:none;position: fixed;z-index:10000;background: rgba(0,0,0,0.9);width: 100%;height: 100%;top:0;left:0; padding-top:1.5rem; box-sizing:border-box;}
.open_img .close{ display: block; position: absolute; z-index:3; top: 0; right: 0; background: url(../images/close2.png) no-repeat center; background-size: 30px 30px;  width: 1.5rem; height: 1.5rem;opacity:1; cursor: pointer; transition: 0.3s ease; }
.open_img .tuwarp{position: relative; z-index:2;width: 100%;height: 100%; overflow:auto;}
.open_img .tuwarp img{ display:block; width:100%; }
.open_img .open_wz{ padding:0.4rem; text-align:center; font-size:0.56rem; color:#fff;}


.viewbg {
	position: relative;
	z-index: 3;
	/*width: 6.9rem;*/
	margin: 0 auto;
}

.viewbg .swiper-container {
	padding-bottom: 0rem;
}

.viewbg .swiper-slide {
	height: 3.90rem;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.viewbg .videobox {
	margin: 0 auto;
	height: 3.90rem;
	position: relative;
	width: 100%;
}

.viewbg .swiper-slide.swiper-slide-active .videobox {
	height: 100%;
}

.viewbg .on-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0.32rem;
	background: #000;
	overflow: hidden;
	height: 100%;
	z-index: 10;
}

.viewbg .on-box .play {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	background: url(https://gkbimg.360eol.com/2025/qmu/play.png) no-repeat;
	width: 0.8rem;
	height: 0.8rem;
	background-size: cover;
}

.viewbg .cover-img {
	height: 100%;
}

.viewbg .video-play {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	background: #000;
	border-radius: 0.32rem;
}

.viewbg .swiper-pagination {
	height: 0.06rem;
	font-size: 0;
	vertical-align: top;
	bottom: 0.2rem;
}

.viewbg .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 0.05rem;
	width: 0.24rem;
	height: 0.06rem;
	border-radius: 0;
	background: #67aed1;
	border-radius: 2px;
	opacity: 0.47;
}

.viewbg .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
	opacity: 1;
}

.endstatus {

	color: white;background: #a870d2;
	width: 1.4rem;
	height: 0.32rem;
	border-radius: 0.1rem;
	text-align: center;
	line-height: 0.32rem;
	font-size: .22rem;
}

/**适配**/
@media screen and (min-width:320px) {
html {
	font-size: 42.66px
}
}
 @media screen and (min-width:360px) {
html {
	font-size: 48px
}
}
 @media screen and (min-width:375px) {
html {
	font-size: 50px
}
}
 @media screen and (min-width:384px) {
html {
	font-size: 51.2px
}
}
 @media screen and (min-width:400px) {
html {
	font-size: 54px
}
}
 @media screen and (min-width:414px) {
html {
	font-size: 54px
}
}
 @media screen and (min-width:424px) {
html {
	font-size: 56.54px
}
}
 @media screen and (min-width:480px) {
html {
	font-size: 64px
}
}
 @media screen and (min-width:540px) {
html {
	font-size: 72px
}
}
 @media screen and (min-width:640px) {
html {
	font-size: 85.32px
}
}
 @media screen and (min-width:720px) {
html {
	font-size: 96px
}
}
 @media screen and (min-width:750px) {
html {
	font-size: 100px
}
}
 @media only screen and (device-width: 375px) and (device-height: 667px) {
}
	
	/* x/xs */
	@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
.f_bottom {
	padding-bottom: 0.42rem;
}
}
	
	/* xs max/xr/11 */
	@media only screen and (device-width: 414px) and (device-height: 896px) {
.f_bottom {
	padding-bottom: 0.42rem;
}
}
 @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
.f_bottom {
	padding-bottom: 0.42rem;
}
}
 @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
.f_bottom {
	padding-bottom: 0.42rem;
}
}


