
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
*{
    margin: 0;
    padding: 0;
    outline: none;
    letter-spacing: 0px;
}
html{
    background-color: #fff;
}
html,body{
  font-family: PingFang, PingFangSC-Regular, PingFang SC, Microsoft Yahei UI, Microsoft Yahei,微软雅黑,Segoe UI,Tahoma,Arial,宋体b8b体,SimSun,sans-serif;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
  margin: 0;
  padding: 0;
  border: 0;
  /* font-size: 100%; */
  font-weight: normal;
  vertical-align: baseline;
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* custom */
a {
  text-decoration: none;
  color: inherit;
  -webkit-backface-visibility: hidden;
}
a:hover, a:active{
  color: inherit;
}
li {
  list-style: none;
}


html *::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html *::-webkit-scrollbar-track-piece {
  background-color: transparent;
  -webkit-border-radius: 3px;
  -webkit-box-shadow: unset;
}

/* 垂直方向 */
html *::-webkit-scrollbar-thumb:vertical {
  width: 6px;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

/* 水平方向 */
html *::-webkit-scrollbar-thumb:horizontal {
  width: 6px;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

html, body {
  width: 100%;
}

body {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


select {
/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
border: solid 1px #ededed;
/*很关键：将默认的select选择框样式清除*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
/*将背景改为红色*/
background:none;
/*加padding防止文字覆盖*/
padding-right: 14px;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }

/* .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
} */

.clearfix:before,.clearfix:after{
  content:"";
  display:block;
}
.clearfix:after{
  clear:both;
}
.clearfix{
  *zoom: 1;
  *display: inline;
}
.clear{
  clear: both;
}
.pointer{
  cursor: pointer;
}
input{
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 点击高亮的颜色*/
  font-size: 14px;
  color: #333333;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;;
}
textarea{
  font-size: 14px;
  color: #333333 !important;
  resize:none;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;;
}
input,button{
  outline: none;
  border: none;
}
button{
  cursor: pointer;
  background: none;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;;
}
.margin-right0{
  margin-right: 0!important;
}
.z-index-100{
  z-index: 100!important;
}
.z-index-120{
  z-index: 120!important;
}
.cantainer{
  width: 100%;
  min-width: 1200px;
  margin:0 auto;
  position: relative;
  /* z-index:750; 互动页面层级问题*/
}

@-webkit-keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 123px;
  }
}

@keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 123px;
  }
}





@-webkit-keyframes takeup {
  from {
    height: 123px;
  }
  to {
    height: 0;
  }
}

@keyframes takeup {
  from {
    height: 123px;
  }
  to {
    height: 0;
  }
}



@-webkit-keyframes bigger {
  from {
    -webkit-transform: scale3d(1.005,1.005,1.005);
    transform: scale3d(1.005,1.005,1.005);
  }
  to {
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }
}

@keyframes bigger {
  from {
    -webkit-transform: scale3d(1.005,1.005,1.005);
    transform: scale3d(1.005,1.005,1.005);
  }
  to {
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }
}


@-webkit-keyframes smaller {
  from {
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }
  to {
    -webkit-transform: scale3d(1.005,1.005,1.005);
    transform: scale3d(1.005,1.005,1.005);
  }
}

@keyframes smaller {
  from {
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }
  to {
    -webkit-transform: scale3d(1.005,1.005,1.005);
    transform: scale3d(1.005,1.005,1.005);
  }
}
.smaller {
  -webkit-animation-name: smaller;
  animation-name: smaller;
}
.bigger {
  -webkit-animation-name: bigger;
  animation-name: bigger;
}

.slideDown {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
.takeup {
  -webkit-animation-name: takeup;
  animation-name: takeup;
}
.animated {
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.visiable{
    overflow: visible!important;
    position: relative;
    z-index: 99;
}


/* 解决input写完之后留有默认背景色 */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #333;
 }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-transition-delay: 99999s;
	-webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
/* 去掉safari浏览器下input 右侧的图标 */
input:focus::-webkit-contacts-auto-fill-button{
    opacity: 0;
}

/*css解决浏览器记住密码后input框的背景色为淡黄色的代码  */
/* input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;
  background-color:transparent;
  background-image: none;
  transition: background-color 50000s ease-in-out 0s; //背景色透明  生效时长  过渡效果  启用时延迟的时间
}
input {
   background-color:transparent;
} */

/* placeholder默认字体颜色 */
input::-webkit-input-placeholder { /* WebKit browsers */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}

textarea::-webkit-input-placeholder { /* WebKit browsers */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
textarea:-ms-input-placeholder { /* Internet Explorer 10+ */
  font-size: 14px;
  color: #afafaf!important;
  font-family: "PingFang SC", Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
.border-none{
  border:none!important;
}



/*webkit内核*/
.content-list-right,.map-list,.park-content::-webkit-scrollbar {
    width:0px;
    /*height:0px;*/
    /*display: none;*/
}
/*o内核*/
.content-list-right,.map-list,.park-content .-o-scrollbar{
    -moz-appearance: none !important;
    background: rgba(0,255,0,0) !important;
}



/*IE10,IE11,IE12*/
.content-list-right,.map-list,.park-content{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}




.swiper-pagination-switch{
  cursor: pointer;
}

/*清楚ie浏览器的input的清楚icon*/
::-ms-clear,::-ms-reveal{display:none;}



/*滚动*/
.ovf-hiden{
  overflow: hidden;
}



.div-height-47{
  height:47px;
}



.hidden-box{
  overflow: hidden;
}


#zc__sdk__sys__btn{
  z-index: 900!important;
  cursor: pointer;
    right: 100px!important;
    bottom: 100px!important;
}
#zc__sdk__container{
  z-index: 900!important;
  right: 40px!important;
}




/* 全局的按钮置灰 */
.loading-btn{
  background: #ccc!important;
}
.loading-btn:hover{
  background: #ccc!important;
  cursor: default;
}
.loading-btn-save{
  border:1px solid #ededed;
  color: #ccc;
}
.loading-btn-save:hover{
  border:1px solid #ededed;
  color: #ccc;
  cursor: default;
}

.singlePage .mainBox{
    border:none!important;
}

.common-btn{
    height: 32px;
    border: 1px solid #D9D9D9;
    padding: 0 15px;
    border-radius: 4px;
    background: #FFFFFF;
    color: #333333;
    font-size: 14px;
    display: inline-block;
    line-height: 30px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
}
.common-btn:hover{
    color: #ffffff;
    background: #1f6cdd;
    border-color: #1f6cdd;
}
.common-btn.primary-line{
    color: #1F6CDD;
    background: #F0F8FF;
    border-color: #468EEB;
}
.common-btn.primary-line:hover{
    color: #468EEB;
}
/* .common-btn:active{
    color: #ffffff;
    background: #114eb8;
    border-color: #114eb8;
} */
.common-btn.common-btn-primary{
  background: #1f6cdd;
  border-color: #1f6cdd;
  color: #ffffff;
}
.common-btn.common-btn-primary:hover{
  background: #468eeb;
  border-color: #468eeb;
  color: #ffffff;
}
.common-btn.common-btn-primary:active{
  background: #114eb8;
  border-color: #114eb8;
  color: #ffffff;
}
.common-btn.common-btn-large{
  height: 40px;
  line-height: 38px;
}
.common-btn.common-search-btn{
  border-radius: 0px 4px 4px 0px;
}
.mobile-btn.common-btn:hover{
  color: #333333;
  background: #FFFFFF;
  border-color: #D9D9D9;
}
.mobile-btn.common-btn.primary-line:hover{
  color: #1F6CDD;
  background: #F0F8FF;
  border-color: #468EEB;
}
.mobile-btn.common-btn.common-btn-primary:hover{
  background: #1F6CDD;
  border-color: #1F6CDD;
  color: #ffffff;
}
.common-input{
  height: 32px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  padding: 0 7px;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.common-input:hover{
  border-color: #468EEB;
}
.common-input:focus{
  border-color: #468EEB;
}
.common-input.common-input-focus{
  border-color: #468EEB;
}
.common-input.common-input-large{
  height: 40px;
}
.common-search-input{
  display: inline-block;
  position: relative;
  /* 更改行内块对齐方式，解决页面放大后，输入框位置不正确的问题 */
  vertical-align: top;
}
.common-search-input > .common-input{
  border-radius: 4px 0px 0px 4px;
  border-right: 0;
  padding-left: 8px;
}

.common-input::placeholder {
  color: #BBBBBB;
}
.common-input::-webkit-input-placeholder{
  color: #BBBBBB;
} /* 使用webkit内核的浏览器 */
.common-input:-moz-placeholder{
  color: #BBBBBB;
} /* Firefox版本4-18 */
.common-input::-moz-placeholder{
  color: #BBBBBB;
} /* Firefox版本19+ */
.common-input:-ms-input-placeholder{
  color: #BBBBBB;
} /* IE浏览器 */
