@charset "UTF-8";
html {
  font-size: 50px;
}

.wrapper {
  width: 100%;
  max-width: 750px;
  min-height: 100vh;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: constant(safe-area-inset-bottom);
  /* 兼容 IOS<11.2 */
  padding-bottom: env(safe-area-inset-bottom);
  /* 兼容 IOS>11.2 */
}

.footer {
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: calc(constant(safe-area-inset-bottom) + .36rem);
  /* 兼容 IOS<11.2 */
  padding-bottom: calc(env(safe-area-inset-bottom) + .36rem);
  /* 兼容 IOS>11.2 */
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #FFFFFF;
  z-index: 999;
}

.footer .item {
  width: 20%;
}

.footer .item .icon {
  width: .48rem;
  height: .48rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: .14rem;
}

.footer .item .icon img {
  width: 100%;
  height: 100%;
}

.footer .item .text {
  width: 100%;
  height: 0.22rem;
  font-size: 0.38rem;
  font-weight: bold;
  color: #207909;
  line-height: 0.22rem;
  text-align: center;
}

.price-symbol {
  display: inline-block;
  width: .3rem;
  height: .3rem;
  position: relative;
}

.price-symbol::after {
  position: absolute;
  top: -.04rem;
  left: 0;
  width: .3rem;
  height: .3rem;
  content: '￥';
  font-size: 0.3rem;
  font-weight: 400;
  color: #FF4343;
}

.red {
  color: #FF4343;
}
