index.wxss 2.4 KB
/**index.wxss**/
page {
  background-color: #F7F8FA;
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
}

.bg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* .my {
  position: absolute;
  top: 32rpx;
  left: 42rpx;
  width: 104rpx;
  height: 104rpx;
  border-radius: 50%;
  z-index: 2;
  background: rgba(253, 163, 0, 1);
  border: 2rpx solid rgba(253, 126, 0, 0.51);
  box-shadow: 0px 12rpx 24rpx 0px rgba(253, 126, 0, 0.51);
} */

.my image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.bgpo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.bgpo image {
  width: 100%;
  height: 574rpx;
}

.cat {
  position: absolute;
  top: 418rpx;
  /* left: 32rpx; */
  padding: 0 32rpx;
  box-sizing: border-box;
  width: 100%;
  border-radius: 32rpx;
}

/* .catbg {
  position: relative;
  width: 100%;
  height: 172rpx;
  margin: 0 32rpx;
  box-sizing: border-box;
} */

/* .catbg image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 172rpx;
  z-index: 1;
} */

.catnr {
  padding: 34rpx 40rpx;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 2;
  /* border-radius: 0px 0px 32rpx 32rpx; */
  border-radius: 32rpx;
}

.tlys {
  display: flex;
  align-items: center;
}

.tsList {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tsList image {
  width: 72rpx;
  height: 72rpx;
  z-index: 1;
}

.tbt {
  font-weight: 600;
  color: rgba(61, 68, 76, 1);
  font-size: 28rpx;
  margin-top: 8rpx;
}

.ttext {
  color: rgba(140, 145, 152, 1);
  font-size: 22rpx;
  margin-top: 8rpx;
}

.ann {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100rpx;
  color: #ffffff;
  background: #2CC274;
  /* box-shadow: 0px 6rpx 24rpx 0px rgba(255, 210, 69, 0.73); */
  border-radius: 50rpx;
  margin-top: 56rpx;
  font-size: 28rpx;
  font-weight: bold;
}

.wt {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2CC274;
  font-size: 28rpx;
  margin-top: 32rpx;
}

.my button {
  background-color: transparent;
}

/* 心跳动画 */
.heartbeat {
  animation: heartbeat 5s linear 1s infinite;
}

@keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}