12345678910111213141516171819202122232425262728 |
- /* pages/download/download.wxss */
- page{
- background: #F4F7F9;
- }
- .content{
- padding: 12px;
- }
- .list{
- background:rgba(255,255,255,1);
- box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
- border-radius:4px;
- padding: 16px 12px;
- margin-bottom: 12px;
- font-size: 32rpx;
- }
- .list text{
- width:88px;
- height:32px;
- background:rgba(53,139,255,1);
- border-radius:16px;
- text-align: center;
- line-height: 32px;
- float: right;
- color: #fff;
- font-size: 28rpx;
- position: relative;
- top: -2px;
- }
|