/* 其他通用样式 */
body{
  cursor: none !important;
  background-color: white;
  z-index: 1;
  transition: all .5s;
}

*{
  margin: 0;
  padding: 0;
}

a{
  cursor: none;
  color: black;
  text-decoration: none;
  display: block;
}

/* 滚动界面*/
.load-animation {
  color: white;
  text-align: center;
  line-height: 100vh;
  font-size: 70px;
  font-weight: 1000;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: black;
  animation-fill-mode: forwards;
  z-index: 9999;
}



.load-animation.loadgreen {
  color: white;
  text-align: center;
  line-height: 100vh;
  font-size: 70px;
  font-weight: 1000;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #6fb15b;
  animation-fill-mode: forwards;
  z-index: 9999;
}

@keyframes animation {
  0% {
    top: 0;
  }

  100% {
    top: -100vh;
  }
}

/* 导航栏 */

.w{
  width: 95vw;
  margin: auto;
}

.top{
  position: fixed;
  z-index: 9;
}

.top1 .w{
  visibility: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top .w{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top .w .top-left{
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.top1 .w .top-left{
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.top-left img{
  height: 10vw;
}

.other-page{
  line-height: 12vw;
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: space-between;
  grid-column-gap: 5vw;/*设置间距*/
}

.other-page li{
  font-size: 3.5vw;
  letter-spacing: 0.5vw;
}

.unique-li{
  float: left;
  position: relative;
}

.unique-li span{
  z-index: 100;
}

.unique-li .set-img{
  z-index: -1;
  bottom: 1.5vw;
  left: -1vw;
  position: absolute;
  overflow: hidden;
}

.set-img img{
  float: left;
  width: 11vw;
  height: 3.5vw;
  
}

ul.other-page li:last-child .set-img{
 height: 5vw;
width: 12vw;
 position: absolute;
 top: 7vw;
 left: 6vw;
}

/* 页脚 */
.footer{
  margin-top: 2vw;
  width: 100vw;
  background-color: black;
}

.footer-context{
  text-align: center;
  font-size: 2vw;
  color: white;
  padding: 2vw;
}

@keyframes scrollto {
  0% {
    top: 0px;
  }

  100% {
    top: -150px;
  }
}

@keyframes scrollback {
  0% {
    top: -150px;
  }

  100% {
    top: 0px;
  }
}

/* 获取方案 */
.bottom_img{
    display: none;
}    
.bottom_img_wep{
    width: 90vw;
    height: 13vw;
    margin: auto;
}


.bottom {
    
    margin: auto;
    margin-top: 10vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.bottom_right{
    width: 90%;
    display: flex;
}

.btm_phone {
    margin: 5vw 5vw 0 5vw;
}

.btm_phone span {
    display: inline-block;
    letter-spacing: 0.3vw;
    
    padding: 2vw 4vw;
    border: 0.47vw solid #FFC782;
    border-radius: 20vw;
    font-size: 4vw;
    margin-bottom: 3vw;
   
}

.plan_btn {
    height: 14vw;
    background-color: #9DE787;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 14vw;
    
  box-shadow: rgba(0, 0, 0, 0.3) 0.3vw 0.3vw 0.8vw 0vw;
}

.plan_btn>a {
   width: 30vw;
  height: 14vw;
    color: white;
    font-size: 5vw;
    font-weight: bold;
    letter-spacing: 1vw;
    line-height: 14vw;
}