﻿@charset "utf-8";
html{-webkit-text-size-adjust:100%;font-size:100px; overflow-x: hidden;}
html{font-size:5.2083334vw}

@media (min-width:769px) and (max-width:1024px) {
	html{font-size: calc((100 / 1200) * 100vw);} 
}
@media (max-width:768px) {
	html{font-size: calc((100 / 768) * 100vw);} 
}
@media (max-width:480px){
    html{font-size:calc(100 / 480 * 100vw);}
}

*{margin:0;padding:0;box-sizing: border-box;}
body{ font-family:sans-serif;margin:0px; padding:0px; margin:0px auto; font-size:0.16rem; color:#222; width:100%;  zoom:1;line-height: 1.68;}
ul,li,form, dl,dt,dd,div,ul,li,p,em,i,address{ font-style:normal; list-style:none; padding: 0px; margin: 0px;}
h1,h2,h3,h4,h5,h6{ padding:0px; margin:0px;}
select,input,textarea,button{ font-size:0.16rem; border-radius:0; -webkit-border-radius:0; color:#222;font-family:sans-serif;}
input:focus { outline: none;}
input,button,select,textarea{ border:0px;outline:none;/*-webkit-appearance:none;*//*强制去除表单自带的样式*/}
button{ cursor:pointer;}
textarea{resize:none;/*-webkit-appearance:none;*//*强制去除textarea自带的样式*/}
textarea,input,select { background:none; border:none; margin:0; padding:0;}
article,aside,footer,header,hgroup,nav,section,figure,fxigcaption,address{ display: block;} /*html5设置*/
figure,figcaption{ margin:0px; padding:0px;}
audio,canvas,progress,video { display: inline-block; vertical-align: baseline;}
img{ max-width:100%; border:none; border:0;  vertical-align:middle;}
a{ color:#222; text-decoration:none;}
a:focus {outline:none; -moz-outline:none;}
a:hover{ text-decoration:none; color:#ff7500;}
table{border-collapse: collapse;border-spacing: 0;border: 1px solid #b3b2b2;}

.fl{ float:left;}
.fr{ float:right;}
.tl{ text-align:left !important;}
.tr{ text-align:right;}
.tc{ text-align:center !important;}
.hide{ display:none;}
.block{ display:block;}
.clear{ clear:both;}
.clearfix{overflow:hidden;_zoom:1;}
.clearfix:after{ content: ''; display: block; clear: both; height: 0; visibility: hidden;}
.clearfix{*zoom:1;}.relative{ position:relative;}
.bodyon{ overflow:hidden;}
.nones{ position:absolute; visibility:hidden; opacity:0; top:0;}
.table {display: table;width: 100%;border-collapse: collapse;}
.table-tr {display: table-row;}
.table-th {display: table-cell;height: 100%;border: 1px solid gray;text-align: center;vertical-align: middle;}
.table .cell {display: table-cell;vertical-align: middle;}
.flex{display: flex;}
.flex_sw{display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;}

input[type="radio"],
input[type="checkbox"]{width: 0.19rem; height: 0.19rem;vertical-align: middle;appearance: none;print-color-adjust: exact;cursor: pointer;border: 1px solid #9b9b9b;position: relative;margin: -0.04rem 0.1rem 0 0;}
input[type="radio"]{border-radius: 50%;}
input[type="radio"]:checked:after{width: 50%;height: 50%;left:50%;top:50%;background: #ff7500;content: "";position: absolute;border-radius: 50%;transform: translate(-50%,-50%);}
input[type="radio"]:checked{border: 1px solid  #ff7500;}

input[type="checkbox"]{border-radius: 4px;border: 1px solid #bfbfbf;background-color: #fff;}
input[type="checkbox"]:checked{background:#ff7500 url(../images/gou.svg) no-repeat center center;border: 1px solid  #ff7500;}


/*单行文本省略号*/
.dot {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.dot2, .dot3, .dot4 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
}
.dot2 {
	-webkit-line-clamp: 2;
}
/*多行文本省略号*/
.dot3 {
	-webkit-line-clamp: 3;
}
.dot4 {
	-webkit-line-clamp: 4;
}

/*input字体*/
:-moz-placeholder {color: #999999;}
::-moz-placeholder {color: #999999;}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {color: #999999;}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {color: #999999;}

select {
	/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
	border: solid 1px #d9d9d9; text-indent:1em;
	/*很关键：将默认的select选择框样式清除*/
	appearance: none; color:#999999;
	-moz-appearance: none;
	-webkit-appearance: none;
	/*在选择框的最右侧中间显示小箭头图片*/
	background: url(../images/selectarr.png) no-repeat scroll 95% center transparent;
	/*为下拉小箭头留出一点位置，避免被文字覆盖*/
	padding-right: 14px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
display: none;
}

.disable-hover {pointer-events: none;}

/*网页滚动条*/
::-webkit-scrollbar-button{display: none;}
::-webkit-scrollbar{width: 6px; height:6px;-webkit-overflow-scrolling : touch;background-color: #e6e6e6;}
::-webkit-scrollbar-track{background-color: #e6e6e6;}
::-webkit-scrollbar-thumb{border-radius: 10px;background-color: #58504a;}
::-webkit-scrollbar-button{height: 0px;background-color: #e6e6e6;}

.scroll{overflow: auto;}
.scroll::-webkit-scrollbar-button{display: none;}
.scroll::-webkit-scrollbar{width: 2px; height:2px;-webkit-overflow-scrolling : touch;background-color: #f5f5f5;}
.scroll::-webkit-scrollbar-track{background-color: #f5f5f5;}
.scroll::-webkit-scrollbar-thumb{border-radius: 2px;background-color: #c5c5c5;}
.scroll::-webkit-scrollbar-button{height: 0px;background-color: #f5f5f5;}

/*effict*/
.Scale-img {overflow: hidden; zoom:1; overflow: hidden;}
.Scale-img img,.Scale-img span {opacity: 1;-webkit-transition: opacity 0.6s, -webkit-transform 0.6s;transition: opacity 0.6s, transform 0.6s;}
.Scale-img:hover img,.Scale-img:hover span {opacity: 1;-webkit-transform: scale3d(1.05,1.05,1.05);transform: scale3d(1.05,1.05,1.05); top:0px; left:0px;}
.effict{transition: all ease 0.3s;}
.imgbox{ overflow:hidden; position:relative;}
.imgbox span{ background-position:center center; background-repeat:no-repeat; background-size:cover; position:absolute; left:0px; top:0px; width:100%; height:100%;display: flex;align-items: center;justify-content: center;transition: all .5s;-webkit-transition: all .3s;}
.imgbox img{ width:100%;height:100%;object-fit: cover;}

.ico{width:0.6rem;height:0.6rem;position: relative;margin:0 auto;}
.ico img{position: absolute;top:50%;left:50%;transform: scale(0) translate(-50%,-50%);transition: all .5s;max-height:0.6rem;max-width:0.6rem;transform-origin:top left;}
.ico .img1{transform: scale(1) translate(-50%,-50%);}
.item:hover .ico .img1{transform: scale(0) translate(-50%,-50%);}
.item:hover .ico .img2{transform: scale(1) translate(-50%,-50%);}

/*pages*/
.Pages{padding-top:0.6rem;text-align: center;}
.Pages a{display: inline-block;width:0.5rem;height: 0.5rem;border:1px solid #f5f7f8;margin:0 0.05rem;line-height: 0.5rem;color:#666;overflow: hidden;border-radius: 50%;background: #f5f7f8;transition: all .5s;}
.Pages .p_cur, .Pages .p_count, .Pages .p_total, .Pages .p_jump,.Pages .a_first,.Pages .a_end{display: none;}
.Pages .a_prev,.Pages .a_next{color:transparent !important;font-size: 12px;position: relative;background: #fff;border:1px solid #e5e5e5;}
.Pages .a_prev::after,
.Pages .a_next::after{content:'';display: block;width:100%;height:100%;position: absolute;top:0;left:0;background-position: center;background-repeat: no-repeat;background-size: 0.2rem;}

.Pages .a_prev::after{background-image: url(../images/slick_prevg.svg);}
.Pages .a_next::after{background-image: url(../images/slick-nextg.svg);}
.Pages .a_cur{color:#ff7500;border:1px solid #ff7500;background: #fff;}
.Pages a:hover{color:#ff7500;border:1px solid #ff7500;background: #fff;}
.Pages .a_prev:hover{background: #ff7500;border:1px solid #ff7500;}
.Pages .a_next:hover{background: #ff7500;border:1px solid #ff7500;}
.Pages .a_prev:hover::after{background-image: url(../images/slick-prevw.svg);}
.Pages .a_next:hover::after{background-image: url(../images/slick-nextw.svg);}


@media(max-width:640px){
	.Pages a{margin:0 2px;}
	.Pages{padding-top:20px;}
	.Pages a{width:30px;height:30px;line-height: 30px;}
}

/*pages end*/


.m-btn{display: none;cursor: pointer;padding:0.15rem 0.05rem;border-radius: 5px;z-index:999;margin-top:0.2rem;margin-left:0.2rem;}
.m-btn span{display: block;width:25px;height:3px;background:#fff;position: relative;-webkit-transition: all 200ms cubic-bezier(.4,0,0,1);-o-transition: all 200ms cubic-bezier(.4,0,0,1);transition: all 200ms cubic-bezier(.4,0,0,1);}
.m-btn span::before, .m-btn span::after{content:'';display: block;height:3px;width:25px;background: #fff;position: absolute;left: 0;-webkit-transition: all 200ms cubic-bezier(.4,0,0,1);-o-transition: all 200ms cubic-bezier(.4,0,0,1);transition: all 200ms cubic-bezier(.4,0,0,1);}
.m-btn span:before {top: -8px;}
.m-btn span:after {bottom: -8px;}
.m-btn.active span {background: transparent;}
.m-btn.active span:before {transform: rotate(-48deg) translate(-6px, 5px);-webkit-transform: rotate(-48deg) translate(-6px, 5px);-o-transform: rotate(-48deg) translate(-6px, 5px);width: 24px;}
.m-btn.active span:after {transform: rotate(48deg) translate(-6px, -5px);-webkit-transform: rotate(48deg) translate(-6px, -5px);-o-transform: rotate(48deg) translate(-6px, -5px);width: 24px;}


.w1600{width:95%;max-width:16rem;margin:0 auto;}
.w1440{width:95%;max-width:14.4rem;margin:0 auto;}
.f14{font-size: 0.14rem;}
.f18{font-size: 0.18rem;}
.f20{font-size: 0.2rem;}
.f22{font-size: 0.22rem;}
.f24{font-size: 0.24rem;}
.f28{font-size: 0.28rem;}
.f30{font-size: 0.3rem;}
.f32{font-size: 0.32rem;}
.f36{font-size: 0.36rem;}
.f40{font-size: 0.4rem;}
.f42{font-size: 0.42rem;}
.f48{font-size: 0.48rem;}



@media(max-width:1024px){
	.f14{font-size: 12px;}
	.f20{font-size: 0.18rem;}
	.f22{font-size: 0.18rem;}
	.f24{font-size: 0.2rem;}
	.f28{font-size: 0.22rem;}
	.f30{font-size: 0.22rem;}
	.f32{font-size: 0.24rem;}
	.f36{font-size: 0.28rem;}
	.f40{font-size: 0.32rem;}
	.f42{font-size: 0.32rem;}
	.f48{font-size: 0.36rem;}
}

@media(max-width:768px){
	.f18{font-size: 0.16rem;}
	.f20{font-size: 0.16rem;}
	.f22{font-size: 0.18rem;}
	.f24{font-size: 0.18rem;}
	.f28{font-size: 0.2rem;font-weight: bold;}
	.f30{font-size: 0.2rem;font-weight: bold;}
	.f32{font-size: 0.2rem;font-weight: bold;}
	.f36{font-size: 0.22rem;font-weight: bold;}
	.f40{font-size: 0.24rem;font-weight: bold;}
	.f42{font-size: 0.26rem;font-weight: bold;}
	.f48{font-size: 0.28rem;font-weight: bold;}

}

/* Top */
.Top{line-height: 1rem;border-bottom:1px solid rgba(255,255,255,0.2);position: fixed;z-index:999;width:100%;left:0;top:0;transition: all .5s;}
.Top .Logo img{height:0.46rem;transition: all .5s;}
.Top .Logo .img2{display: none;}
.Top .Search .SearchIco{width:0.22rem;cursor: pointer;}
.Top .Search .SearchIco .img2{display: none;}
.Top .SearchBox{position: absolute;width:100%;box-sizing: border-box;top:100%;left:0;z-index:99;background: #333;padding:0.9rem 0.3rem;display: none;}
.Top .SearchBox .w1600{position: relative;}
.Top .SearchBox .close{width:0.3rem;height:0.3rem;background: url(../images/close.svg) no-repeat center center;background-size: contain;position: absolute;right:0rem;top:-0.6rem;cursor: pointer;}
.Top .SearchBox .box{max-width:8rem;margin:0 auto;width:90%;}
.Top .SearchBox .box .SearchInupt{background: #fff;padding-right:1rem;position: relative;}
.Top .SearchBox .box .SearchInupt input{height:0.5rem;width:100%;;box-sizing: border-box;padding:0 0.2rem;display: block;}
.Top .SearchBox .box .SearchInupt button{width:0.7rem;height:100%;background: url(../images/search_w.png) no-repeat center center #ff7500;position: absolute;right:0;top:0;background-size: 0.2rem;}

.MainNav ul::after{content:'';display: block;clear: both;}
.MainNav ul li{float:left;margin-right:0.7rem;font-size: 0.18rem;}
.MainNav ul li em{display: block;position: relative;}
.MainNav ul li em::before{content:"";display: block;width:0.08rem;height:0.08rem;border-radius: 50%;border:1px solid #ff7500;position: absolute;left:-0.22rem;top:50%;transform: translateY(-50%);opacity: 0;transition: all .5s;}
.MainNav ul li em a{color:#fff;}
.MainNav ul li:hover em a{color:#ff7500;}
.MainNav ul li:hover em::before{opacity: 1;}
.MainNav ul li.onnav em a{color:#ff7500;}
.MainNav ul li.onnav em::before{opacity: 1;}

.MainNav ul li .NavPull{width:100%;position: absolute;left:0;top:100%;background: #fff;box-shadow: 0 0 10px rgba(0,0,0,0.05);text-align: center;display: none;}
.MainNav ul li .NavPull dl dd{display: inline-block;margin:0 0.4rem;font-weight: lighter;}

.MainNav ul li.pronav .NavPull .item:first-child{border-top:none;}
.MainNav ul li.pronav .NavPull .item{padding:0.3rem 0;border-top:1px solid #eee;line-height: 0.4rem;display: flex;flex-wrap: wrap;justify-content:space-between;align-items: flex-start;} 
.MainNav ul li.pronav .NavPull .item .type{width:16%;text-align: right;position: relative;padding-right:0.5rem;}
.MainNav ul li.pronav .NavPull .item .type::before{content:'';display: block;width:1px;height:80%;background: #eee;position: absolute;right:0;top:50%;transform: translateY(-50%);}
.MainNav ul li.pronav .NavPull .item dl{width:84%;justify-content: flex-start;text-align: left;display: flex;flex-wrap: wrap;}
.MainNav ul li.pronav .NavPull .item dl dd{width:25%;margin:0;padding-left:0.5rem;}
.MainNav ul li.pronav .NavPull .item:last-child dl dd{width:33.33%;}


.Top.on{background: #fff;}
.Top.on .Logo .img2{display: inline-block;}
.Top.on .Logo .img1{display: none;}
.Top.on .Search .SearchIco .img2{display: inline-block;}
.Top.on .Search .SearchIco .img1{display: none;}
.Top.on .MainNav ul li em a{color:#222;}
.Top.on .MainNav ul li:hover em a{color:#ff7500;}
.Top.on .MainNav ul li.onnav em a{color:#ff7500;}
.Top.on .m-btn span,.Top.on .m-btn span::before, .Top.on .m-btn span::after{background: #ff7500;}
.Top.on .m-btn.active span{background: transparent;}

.Top.onn{}
.Top.onn .Logo .img2{display: inline-block;}
.Top.onn .Logo .img1{display: none;}
.Top.onn .Search .SearchIco .img2{display: inline-block;}
.Top.onn .Search .SearchIco .img1{display: none;}
.Top.onn .MainNav ul li em a{color:#222;}
.Top.onn .MainNav ul li:hover em a{color:#ff7500;}
.Top.onn .MainNav ul li.onnav em a{color:#ff7500;}
.Top.onn .m-btn span,.Top.onn .m-btn span::before, .Top.onn .m-btn span::after{background: #ff7500;}
.Top.onn .m-btn.active span{background: transparent;}

.Top.fixed{line-height: 0.8rem;box-shadow: 0 0 10px rgba(0,0,0,0.1);}
.Top.fixed .Logo img{height:0.36rem;}

@media(max-width:1024px){
body{padding-top:0.7rem}
	.Top{line-height: 0.7rem;background: #fff;}
	.Top .Logo img{height:0.36rem;}
	.Top.fixed{line-height: 0.7rem;}
    .Top.fixed .Logo img{height:0.36rem;}
	.m-btn{display: block;}
	.MainNav{width:2.8rem;background: #fff;position: absolute;right:0;top:100%;height:calc(100vh - 0.7rem);box-shadow: 0 0 10px rgba(0,0,0,0.1);width:0;overflow: hidden;visibility: hidden;opacity: 0;transition: all .5s;}
	.MainNav.show{width:2.8rem;opacity: 1;visibility: visible;}
	.MainNav ul li{margin-right:0;line-height: 0.5rem;width:100%;}
	.MainNav ul{width:2.8rem;padding:0.2rem;max-height:100%;overflow: auto;}
	.MainNav ul li em a{color:#333;}
	.MainNav ul li em::before{display: none;}
	.MainNav ul li em b{display: block;width:0.5rem;height:100%;background: url(../images/navmore.svg) no-repeat center center;background-size: 0.2rem;position: absolute;right:0;top:0;transition: all .5s;}
	.MainNav ul li em b.on{transform: rotate(90deg);}
	.MainNav ul li .NavPull{position: static;background: #f7f8f9;}
	.MainNav ul li .NavPull dd{line-height: 0.3rem;padding:0.05rem 0;}

	.MainNav ul li.pronav .NavPull .item{padding:0.1rem;}
	.MainNav ul li.pronav .NavPull .item .type{width:100%;padding-right:0;text-align: left;font-weight: bold;font-size: 0.2rem;}
	.MainNav ul li.pronav .NavPull .item .type::before{display: none;}
	.MainNav ul li.pronav .NavPull .item dl{width:100%;}
	.MainNav ul li.pronav .NavPull .item dl dd{width:100%;padding-left:0;}
	.MainNav ul li.pronav .NavPull .item:last-child dl dd{width:100%;}
}



/* Bottom */
.Bottom{background: #f0f4fa;position: relative;z-index:998;}
.Bottom .BottomBox{padding:0.9rem 0 0.6rem 0;}
.Bottom .BottomBox .BottomLogo{width:25%;}
.Bottom .BottomBox .BottomLogo img{height:0.46rem;}
.Bottom .BottomBox .BottomNav{width:73.75%;display: flex;justify-content: space-between;}
.Bottom .BottomBox .BottomNav dl dt{margin-bottom:0.1rem;}
.Bottom .BottomBox .BottomNav dl dd{font-weight: lighter;margin:0.08rem 0;}
.Bottom .BottomBox .BottomNav dl dd a{color:#666;}
.Bottom .BottomBox .BottomNav dl dd:hover a{color:#ff7500;}

.Bottom .BotomCon{padding:0.25rem 0;border-top:1px solid #e3e3e3;border-bottom:1px solid #e3e3e3;}
.Bottom .BotomCon .BottomContact ul{display: flex;flex-wrap: wrap;line-height: 0.38rem;}
.Bottom .BotomCon .BottomContact ul li{display: flex;font-weight: lighter;color:#666;}
.Bottom .BotomCon .BottomContact ul li:not(:last-child){margin-right:0.5rem;}
.Bottom .BotomCon .BottomContact ul li .icon{width:0.16rem;margin-right:0.1rem;}
.Bottom .BotomCon .BottomContact ul li .icon img{max-height:0.16rem;}
.Bottom .BotomCon .Enjoy ul{display: flex;}
.Bottom .BotomCon .Enjoy ul li{margin-left:0.3rem;position: relative;}
.Bottom .BotomCon .Enjoy ul li .icon{width:0.38rem;height:0.38rem;border-radius: 50%;background: #fff;display: flex;align-items: center;justify-content: center;}
.Bottom .BotomCon .Enjoy ul li .icon img{max-width:0.21rem;max-height:0.18rem;}
.Bottom .BotomCon .Enjoy ul li .tcbox{position: absolute;left:50%;bottom:118%;transform: translateX(-50%);z-index:99;width:1.2rem;display: none;box-shadow: 0 0 10px rgba(0,0,0,0.1);}
.Bottom .BotomCon .Enjoy ul li .tcbox::before{content:"";display: block;border:5px solid transparent;border-top:5px solid #fff;position: absolute;top:100%;left:50%;transform: translateX(-50%);}
.Bottom .BotomCon .Enjoy ul li:hover .tcbox{display: block;}

.Bottom .CopyRight{padding:0.25rem 0;color:#999;font-weight: lighter;}
.Bottom .CopyRight a{color:#999;}
.Bottom .CopyRight a:hover{color:#ff7500;}
.Bottom .CopyRight .links{display: flex;align-items: center;}
.Bottom .CopyRight .links a{display: block;padding-left:0.15rem;margin-left:0.15rem;position: relative;}
.Bottom .CopyRight .links a::before{content:'';display: block;width:1px;height:0.14rem;background: #ddd;position: absolute;left:0;top:50%;transform: translateY(-50%);}
.Bottom .CopyRight .links a:first-child::before{display: none;}
.Bottom .CopyRight .links a:first-child{margin-left:0;padding-left:0;}

@media(max-width:1024px){
	.Bottom .BotomCon .Enjoy{width:100%;margin-top:0.2rem;}
	.Bottom .BotomCon .Enjoy ul{justify-content: center;}
	.Bottom .BotomCon .Enjoy ul li:first-child{margin-left:0;}
	.Bottom .BottomBox{padding:0.4rem 0;}
	.Bottom .BottomBox .BottomLogo{width:100%;}
	.Bottom .BottomBox .BottomNav{display: none;}
}

@media(max-width:768px){
	.Bottom .CopyRight .links{width:100%;justify-content: center;margin-bottom:0.1rem;}
	.Bottom .CopyRight .text{width:100%;text-align: center;}
}


@media(max-width:640px){
	.Bottom .BotomCon .BottomContact ul{line-height: 1.68;}
	.Bottom .BotomCon .BottomContact{width:100%;}
	.Bottom .BotomCon .BottomContact ul li:not(:last-child){margin-right:0;margin-bottom:0.1rem;}
}






