审查视图

刘晓艳 authored
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

/* 自定义tabbar */
.null_box{
  width: 100%;
  height: 120rpx;
}
/* 弹窗 */
.mask_box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
}

.popup_box {
  width: 718rpx;
  height: 380rpx;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.08);
  border-radius: 36rpx;
  text-align: center;
  position: relative;
}

.popup_title {
  font-size: 36rpx;
  color: #000;
  text-align: center;
  border-bottom: 1rpx solid #ebebeb;
  padding: 20rpx 0;
  margin-bottom: 40rpx;
}

.popup_btn_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 40rpx;
  padding: 0 30rpx;
  box-sizing: border-box;
}

.popup_btn {
  width:312rpx;
  height: 82rpx;
  background: rgba(247, 247, 247, 1);
  border: 1rpx solid rgba(226, 226, 226, 1);
  border-radius: 40rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30rpx;
  color: #000000;
}

/*  */
@font-face {
  font-family: 'iconfont';  /* project id 1040767 */
刘晓艳 authored
67 68 69 70 71 72
  src: url('//at.alicdn.com/t/font_1040767_g8bsa22vu0w.eot');
  src: url('//at.alicdn.com/t/font_1040767_g8bsa22vu0w.eot?#iefix') format('embedded-opentype'),
  url('//at.alicdn.com/t/font_1040767_g8bsa22vu0w.woff2') format('woff2'),
  url('//at.alicdn.com/t/font_1040767_g8bsa22vu0w.woff') format('woff'),
  url('//at.alicdn.com/t/font_1040767_g8bsa22vu0w.ttf') format('truetype'),
  url('//at.alicdn.com/t/font_1040767_g8bsa22vu0w.svg#iconfont') format('svg');
刘晓艳 authored
73 74
}
刘晓艳 authored
75
刘晓艳 authored
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-caret-up:before {
  content: "\e60e";
}

.icon-jubao:before {
  content: "\e6fb";
}

.icon-quxiao:before {
  content: "\e60b";
}

.icon-jian:before {
  content: "\e628";
}

.icon-jia1:before {
  content: "\e69b";
}

.icon-pinglun:before {
  content: "\e606";
}

.icon-fanhui:before {
  content: "\e600";
}

.icon-quan:before {
  content: "\e607";
}

.icon-bianji:before {
  content: "\e621";
}
刘晓艳 authored
120 121 122 123
.icon-dianzan:before {
  content: "\e610";
}
刘晓艳 authored
124 125 126 127
.icon-haibao:before {
  content: "\e73c";
}
刘晓艳 authored
128 129 130 131
.icon-shoucang3:before {
  content: "\e609";
}
刘晓艳 authored
132 133 134 135
.icon-gengduo:before {
  content: "\e7e0";
}
刘晓艳 authored
136 137 138 139 140 141 142 143
.icon-dianzan1:before {
  content: "\e61e";
}

.icon-huida:before {
  content: "\e618";
}
刘晓艳 authored
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
.icon-search:before {
  content: "\e601";
}

.icon-shaixuan:before {
  content: "\e602";
}

.icon-shoucang:before {
  content: "\e603";
}

.icon-caogaoxiang:before {
  content: "\e69d";
}

.icon-jia:before {
  content: "\e63b";
}
刘晓艳 authored
164 165 166 167
.icon-dianzan2:before {
  content: "\e61f";
}
刘晓艳 authored
168 169 170 171
.icon-shanchu:before {
  content: "\e60f";
}
刘晓艳 authored
172 173 174 175
.icon-shoucang1:before {
  content: "\e8a8";
}
刘晓艳 authored
176 177 178 179
.icon-jia2:before {
  content: "\e6cb";
}
刘晓艳 authored
180 181 182 183
.icon-cai:before {
  content: "\e608";
}
刘晓艳 authored
184 185 186 187
.icon-xiaoxi:before {
  content: "\e6bb";
}
刘晓艳 authored
188 189 190 191
.icon-dianzan3:before {
  content: "\ebdd";
}
刘晓艳 authored
192 193 194 195
.icon-suo:before {
  content: "\e616";
}
刘晓艳 authored
196 197 198 199
.icon-shoucang2:before {
  content: "\e670";
}
刘晓艳 authored
200 201 202 203
.icon-dianzan-:before {
  content: "\e604";
}
刘晓艳 authored
204 205 206 207
.icon-shoucang4:before {
  content: "\e60a";
}
刘晓艳 authored
208 209 210 211 212 213 214 215 216 217 218
.icon-shanchu2:before {
  content: "\e649";
}

.icon-dui:before {
  content: "\e617";
}

.icon-shanchu1:before {
  content: "\e605";
}