* {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
  /* overflow-y: auto; */
}
/* body {
  background-color: #f2f2f2;
} */
h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
/* 
* {
  scrollbar-base-color: #eee;
  scrollbar-3dlight-color: #eee;
  scrollbar-highlight-color: #eee;
  scrollbar-track-color: #f1f1f1;
  scrollbar-arrow-color: #000;
  scrollbar-shadow-color: #eee;
  scrollbar-dark-shadow-color: #eee;
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width:9px;
  height:9px;
}
*::-webkit-scrollbar-button {
  display: none;
}
*::-webkit-scrollbar-track-piece {
  background-color: #f2f2f2;
}
*::-webkit-scrollbar-thumb {
  background-color: #C1C1C1;
  border-radius: 10px;
} */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"]{
  -moz-appearance: textfield;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.clearfix {
  zoom: 1;
}

.fl {
  float: left;
}
.flr {
  float: right;
}

.full_pages {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  /*right: 0;
  bottom: 0;*/
  z-index: 11;
}

/* element ui reset or custom */

/* element ui reset or custom end */

/* esri css reset */
.esriSimpleSliderBR, .esriLargeSliderBR {
  right: 20px !important;
  bottom: 220px !important;
}
/*popup css*/
.esriPopup .esriPopupWrapper {
  overflow: hidden;
  width: 200px;
  /*height: 180px;*/
  text-align: left;
}
.esriPopup .sizer {
  width: 200px;
}
.esriPopup .contentPane h4 {
  font-size: 14px;
  padding: 6px;
}
.esriPopup .contentPane ul {
  padding: 0 10px;
}
.esriPopup .contentPane li {
  padding: 4px 0;
  margin-bottom: 4px;
}
.esriPopup .pointer, .esriPopup .outerPointer {
  width: 12px;
  height: 12px;
}
.esriPopup .outerPointer.left {
  left: 14px;
}
.esriPopup .outerPointer.right {
  right: 14px;
}
.esriPopup .outerPointer.bottom {
  bottom: 14px;
}
.esriPopup .outerPointer.top {
  top: 14px;
}
.hotPlace-container .esriSimpleSlider div {
  font-size: 16px;
  width: 24px;
  height: 22px;
  line-height: 20px;
}
.map .container {
  background-color: #FCFCF8;
}
/* esri css reset end */


/* *** custom component pulgin start ****/
.btn {
  display: inline-block;
  padding: 4px 12px;
  font-size: 14px;
  outline: none;
  border-width: 0;
  background-color: transparent;
  cursor: pointer;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
}
.btn-default:hover {
  background-color: #f2f2f2;
}
/* .btn-default:focus {
  background-color: #ddd;
} */
.btn-primary {
  color: #ffffff;
  background-color: #8abb1a;
}
.btn-primary:hover {
  background-color: #709814;
}
/* *** custom component pulgin end ****/

/* transition anmation */

.fade-enter-active {
  transition: opacity .1s;
}
.fade-enter, .fade-leave-active {
  opacity: 0;
}

.fadeIn-enter-active, .fadeIn-leave  {
  transform: all .2s ease;
}
.fadeIn-enter, .fadeIn-leave-active {
  opacity: 0;
}

.slideInDown-enter-active {
  animation: slideInDown .4s;
}
/* .slideInDown-leave-active {
  
} */
.slideInLeft-enter-active {
  display: block;
  animation: slideInLeft .35s;
}
.slideInLeft-leave-active {
  display: none;
}
.scaleIn-enter-active {
  animation: scaleIn .2s;
}

.zoom-in-top-enter-active, .zoom-in-top-leave-active{
  opacity: 1;
  transform: scaleY(1);
  transition:transform .3s cubic-bezier(.23,1,.32,1) .1s, opacity .3s cubic-bezier(.23,1,.32,1) .1s;
  transform-origin: center top
}
.zoom-in-top-enter, .zoom-in-top-leave-active{
  opacity:0;
  transform:scaleY(0)
}

.zoom-in-right-enter-active, .zoom-in-right-leave-active{
  opacity: 1;
  transform: scaleX(1);
  transition:transform .3s cubic-bezier(.23,1,.32,1) .1s, opacity .3s cubic-bezier(.23,1,.32,1) .1s;
  transform-origin: center left
}
.zoom-in-right-enter, .zoom-in-right-leave-active{
  opacity:0;
  transform:scaleX(0)
}

/*.slideInDown {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}*/
/* animation .css */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -10%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(10%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    visibility: visible;
  }

  to {
    transform: scale(1);
  }
}
/* transition anmation end */

