index.acss 3.82 KB
.top-space {
  height: 0;
}

.page {
  font-size: 0;
  padding-bottom: 124rpx;
}

.main {
  /* font-size: 28rpx; */
}

.ebg {
  font-size: 0;
  width: 750rpx;
  position: relative;
  z-index: 11;
}

.table {
  width: 750rpx;
  height: 1120rpx;
  background-image: linear-gradient(to top, #ede9ff, #d6c0ff);
  box-sizing: border-box;
  margin: 0px auto 0;
}

.func-wrap {
  background: url('/images/index/search-wrap-bg.png') center no-repeat;
  background-size: 100% 100%;
  width: 701rpx;
  height: 311rpx;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 60rpx;
}

.search-wrap {
  width: 608rpx;
  height: 58rpx;
  border-radius: 16rpx;
  border: solid 1rpx #905cff;
  background-color: #fcf8ff;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rpx 0rpx 0rpx 19rpx;
}

.search-icon {
  background: url('/images/index/search-icon.png') center no-repeat;
  background-size: 100% 100%;
  width: 32rpx;
  height: 32rpx;
  /* margin: 0rpx 19rpx 0rpx 12rpx; */
}

.search-input {
  flex: 1;
  background-color: transparent;
  padding: 0 12rpx;
  box-sizing: border-box;
}

.search-btn {
  width: 153rpx;
  height: 58rpx;
  line-height: 58rpx;
  border-radius: 16rpx;
  background-image: linear-gradient(to top, #be8bff, #7934ff);
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 30rpx;
}

.tag-list {
  width: 614rpx;
  margin: 21rpx auto 0;
  display: flex;
  flex-wrap: wrap;
}

.tag-list :nth-child(4n) {
  margin-right: 0rpx;
}

.tag-item {
  width: 140rpx;
  height: 49rpx;
  line-height: 50rpx;
  border-radius: 21rpx;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-image: linear-gradient(to top, #be8bff, #7934ff);
  margin-right: 18rpx;
  margin-bottom: 11rpx;
  font-size: 28rpx;
}

.tag-item-act {
  background-image: linear-gradient(to top, #ff0072, #ff00a2);
}

/* 号码 */
.number-wrap {
  margin: 24rpx auto 0;
  padding: 0 16rpx;
  box-sizing: border-box;
  position: relative;
  z-index: 21;
  height: 660rpx;
}

.number-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* max-height: 660rpx; */
  /* height: 660rpx; */
  overflow-y: hidden;
}

.number-item {
  width: 341rpx;
  height: 114rpx;
  background: url('/images/index/number-item-bg.png') center no-repeat;
  background-size: 100% 100%;
  margin: 0 9rpx 18rpx;
  font-size: 48rpx;
  color: #fff;
  font-weight: bold;
  box-sizing: border-box;
  text-align: center;
  padding-top: 8rpx;
}

.number-item .text {
  font-size: 48rpx;
  color: #fff;
}

.number-item .highlight {
  color: #fcff04;
}

.page-btn-wrap {
  margin: 26rpx auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn {
  width: 184rpx;
  height: 69rpx;
  margin: 0 8px;
}

.btn-prev {
  background: url('/images/index/page-btn-prev.png') center no-repeat;
  background-size: 100% 100%;
}

.btn-next {
  background: url('/images/index/page-btn-next.png') center no-repeat;
  background-size: 100% 100%;
}


/* 弹窗框 */
.popup {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup .popup-mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  opacity: .7;
}

.popup .dialog {
  position: relative;
}

text {
  color: #333;
  font-size: 30rpx;
}

.highlight {
  color: red;
}

.bot-btn {
  background: url('/images/form/submit-btn.png') center no-repeat;
  background-size: 100% 100%;
  width: 630rpx;
  height: 102rpx;

  position: fixed;
  left: 0;
  right: 0;
  bottom: 40rpx;
  margin: auto;
  z-index: 111;
}


.ani-heart {
  animation: ani-heart-key 1.2s linear infinite;
}

@keyframes ani-heart-key {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

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