| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .content {
- padding-top: 20rpx;
- }
- .content .integral-box {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- border-bottom: 1px solid #EEEEEE;
- background: #FFFFFF;
- }
- .content .integral-box .integral-left .integral-title {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .content .integral-box .integral-left .integral-time {
- font-size: 22rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .content .integral-box .integral-number {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF0000;
- }
|