.right {
  float: left;
  width: 23%;
}

.button-jump {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 42px;
  margin: 5px auto 10px;
  background: linear-gradient(to bottom, #FF1E00, #FF7400);
  border-radius: 8px;
  box-shadow:0 5px 0 #BF1600;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.button-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  margin: 5px auto 10px;
  background: #999;
  border-radius: 8px;
  box-shadow:0 5px 0 rgba(81,81,81,1);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.category-list {
  width: 100%;
}
  .category-list_head {
    width: 100%;
    padding: 6px 3px 3px 10px;
    background: linear-gradient(to bottom, #7ec9ee, #2ca6e0);
    border-bottom: 3px solid #2ca6e0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
    .category-list_icon {
      width: 24px;
      object-fit: contain;
    }
  .category-list_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
    .category-list_item {
      display: block;
      width: 33%;
      margin: 2px 0;
      border-right: solid 1px #ccc;
      border-bottom: solid 1px #ccc;
    }
      .category-list_img {
        width: 100%;
        object-fit: contain;
      }

@media screen and (min-width: 768px) {
  .category-list_item {
    width: 100%;
  }
}

.recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  font-size: 14px;
}
  .recommend__title {
    width: 100%;
    padding: 5px 10px;
    background: #2ca6e0;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  .recommend__item {
    width: 32%;
    min-height: 350px;
    margin: 8px 0;
    text-align: center;
    border: solid 2px #2ca6e0;
  }
    @media screen and (max-width: 767px) {
      .recommend__item {
        width: 95%;
      }
    }
    .recommend__frame {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      height: 80px;
    }
      .recommend__logo {
        width: 85%;
        height: 130px;
        object-fit: contain;
      }
    .recommend__head {
      padding: 5px;
      color: #2ca6e0;
      font-weight: bold;
    }
    .recommend__name {
      font-weight: bold;
    }
    .recommend__text {
      padding: 10px;
      text-align: left;
    }
