#bottomBox {
  margin-top: 0;
  padding: 3vw 16vw;
  box-sizing: border-box;
  width: 100%;
  background: #F6F7F9;

  .logo-box {
    display: flex;
    align-items: center;

    img {
      margin-right: 1vw;
      width: 3vw;
    }

    span {
      font-weight: 700;
      font-size: 1vw;
      color: #333333;
    }
  }

  .listBox {
    display: flex;
    justify-content: space-between;

    .item {
      width: 33%;
      margin-right: 2vw;

      .bt {
        margin: 2vw 0 1vw;
        font-weight: 600;
        font-size: 1vw;
        color: #1E1E1E;
      }

      p {
        margin-bottom: .3vw;
        font-size: .8vw;
        color: #1E1E1E;
      }
    }

    .item:last-child {
      margin-right: 0;
    }

    .sub-btn {
      margin-top: 2vw;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 1vw;
      border: .1vw solid #1E1E1E;
      box-sizing: border-box;
      input {
        flex: 1;
        padding: 0.6vw 1vw;
        border: none;
        background: none;
        outline: none;
        box-sizing: border-box;
      }

      img {
        cursor: pointer;
        width: 3vw;
      }
    }
  }
}

* {
  padding: 0;
  margin: 0;
}

section {
  margin-top: 8vw;
  width: 100%;
}


nav {
  display: flex;
  justify-content: space-between;
}

nav img {
  width: 2vw;
  height: 2vw;
  vertical-align: middle;
}

nav ul {
  list-style-type: none;
}


nav li {
  float: left;
  margin-right: 1vw;
  opacity: 1;
  display: block;
  text-align: center;
  box-sizing: border-box;
  padding: 0 0.4vw;
  box-sizing: border-box;
  height: 2vw;
  margin-top: 1vw;
  line-height: 0vw;
  cursor: pointer;
}

nav li:last-child {
  margin-right: 0;
}

nav li a {
  text-decoration: none;
  display: block;
  color: #333333;
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  padding: 1vw;
  box-sizing: border-box;
}

nav li a:hover {
  color: #9BD258;
}

nav .active {
  font-weight: 700;
  color: #9BD258 !important;
  border: 1px solid #9BD258;
}


html {
  width: 100%;
}

body {
  width: 100%;
  background-color: #fff;
  font-size: 1vw;
  box-sizing: border-box;
}

header {
  height: 4vw;
  width: 100%;
  padding: 0px 16vw;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 99;
  background: #fff;
  color: #333333;
  overflow: hidden;
  .logo{
    display: flex;
    align-items: center;
    img{
      width: 2vw;
      margin-right: 1vw;
    }
    div{
    
      p{
        color: #1E1E1E;
      }
      span{
        color: #1E1E1E;
      }
    }
  }

}