/**
 * 首页样式（参照 WH5 HomePage）
 */
.page-home {
  min-height: 100vh;
  background: #f7f7f7;
  padding: 0;
}

.page-home .home-content {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #f7f7f7;
  padding-bottom: 80px;
}

.page-home .home-top-bg {
  width: 100%;
  position: relative;
}

.page-home .home-bg-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  background: linear-gradient(180deg, #e8f4fd 0%, #f7f7f7 100%);
  min-height: 120px;
}

.page-home .home-action-area {
  margin-top: 20px;
  padding: 0 5%;
}

.page-home .home-action-box {
  border-radius: 8px;
  width: 90%;
  max-width: 670px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
}

.page-home .home-action-box:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.page-home .home-action-icon {
  width: 50px;
  height: 50px;
  margin-right: 2em;
}

.page-home .home-action-title {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 15px;
  color: #1d1d1d;
  text-align: center;
}

.page-home .home-action-box.save {
  background: radial-gradient(ellipse at center, #84c2f9 0%, #a3d0f9 100%);
  box-shadow: 0 5px 10px rgba(128, 192, 249, 0.5);
}

.page-home .home-action-box.save:active {
  background: radial-gradient(ellipse at center, #97caf9 0%, #b3d5f9 100%);
}

.page-home .home-action-box.takeout {
  margin-top: 20px;
  background: radial-gradient(ellipse at center, #f8bf93 0%, #f9c9a4 100%);
  box-shadow: 0 5px 10px rgba(249, 180, 128, 0.5);
}

.page-home .home-action-box.takeout:active {
  background: radial-gradient(ellipse at center, #ffd2a5 0%, #ffd9b8 100%);
}

/* 首页广告 banner 容器 */
.page-home .home-ad-wrap {
  margin: 16px 5% 0;
  min-height: 80px;
}
.page-home .home-ad-wrap #banner_2_0 {
  width: 100%;
  min-height: 80px;
}

.page-home .home-ask-server {
  position: fixed;
  left: 0;
  bottom: 120px;
  display: flex;
  width: 120px;
  height: 48px;
  padding-left: 20px;
  padding-right: 10px;
  border-top-right-radius: 23px;
  border-bottom-right-radius: 23px;
  box-shadow: 0 0 10px #d3d3d3;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.page-home .home-ask-server:active {
  background-color: #f5f5f5;
}

.page-home .home-ask-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-home .home-text-bold {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #333;
}

.page-home .home-text-desc {
  font-size: 9px;
  color: #999999;
}

.page-home .home-ask-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-ask-icon-svg {
  width: 25px;
  height: 25px;
  color: #0287fc;
}

@media (max-width: 375px) {
  .page-home .home-action-title {
    font-size: 30px;
    letter-spacing: 10px;
  }
  .page-home .home-action-icon {
    width: 45px;
    height: 45px;
  }
}
