index-detail.acss 2.3 KB
Newer Older
D
Devil 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
/**
 * 签到
 */
.coming-container {
  background-color: #f6b015;
  position: relative;
  padding: 100rpx 0 120rpx 0;
}
.coming-submit {
  width: 200rpx;
  height: 200rpx;
  line-height: 200rpx;
  border-radius: 50%;
  background-color: #F37B1D;
  color: #f8fb0b;
  border: 12rpx solid #f9f420;
  font-size: 62rpx;
  margin: 0 auto;
}
.already-coming {
  border: 12rpx solid #bebebe;
  background-color: #ccc;
  color: #9f9f9f;
}
.coming-title {
  color: #fff;
  margin-top: 20rpx;
}
.coming-tips {
  color: #ffe7b2;
}
.signin-user-menu-submit {
  border: 1px solid #fff900;
  color: #fffb62;
  position: absolute;
  top: 20rpx;
  right: 20rpx;
  padding: 6rpx 20rpx;
  border-radius: 3rpx;
}
.detail-submit {
  margin-left: 20rpx;
  color: #0e90d2;
  display: inline;
}
.submit-container {
  position: absolute;
  bottom: 20rpx;
  right: 20rpx;
}
.submit-container button:not(:first-child) {
  margin-left: 30rpx;
}
.submit-container button.team-submit {
  color: #5eb95e;
  background-color: #E4F3E4;
  border-color: #d2e8d2;
}
.submit-container button.share-submit {
  color: #F37B1D;
  background-color: #ffe5be;
  border-color: #f8d093;
}

/**
 * 签到成功提示
 */
 .coming-tips-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background: rgb(0 0 0 / 0.6);
  padding-top: 30%;
}
.coming-content {
  max-width: 300px;
  height: 305px;
  margin: 0 auto;
  position: relative;
}
.coming-content .icon-close-submit {
  position: absolute;
  top: 5px;
  right: 5px;
}
.coming-tips-container image {
  max-width: 100%;
  margin-top:60rpx;
}
.coming-tips-content .coming-tips-text {
  background: #fff;
  color: #f00;
  padding: 10rpx 20rpx;
  border-radius: 1000rpx;
}

D
Devil 已提交
100 101 102 103 104 105 106 107 108 109
/**
 * 商品导航
 */
.spacing-nav-title {
  color: #f6b015;
}
.spacing-nav-title .line {
  background: #f6b015;
}

D
Devil 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
/**
 * 商品列表
 */
.data-list {
   overflow: hidden;
}
.data-list .items {
   width: calc(50% - 5rpx);
   margin-bottom: 10rpx;
   padding-bottom: 20rpx;
}
.data-list .items:nth-child(2n) {
   float: right;
}
.data-list .items:nth-child(2n+1) {
   float: left;
}
.data-list .items image {
   width: 100%;
   height: 200px !important;
}
.data-list .items .base {
   text-align: left;
   font-size: 32rpx;
   padding: 0 15rpx;
}
.data-list .items .base,
.data-list .items .base .price {
   margin-top: 15rpx;
}