123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* pages/integral/exchange.wxss */
- page {
- background-color: #f5f5f5;
- }
- /* 垂直方向布局,水平居中 **/
- .flex-column {
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- justify-content: left;
- }
- /* 水平方向布局,垂直居中 **/
- .flex-row {
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- }
- .card-list {
- width: 750rpx;
- height: 246rpx;
- padding: 24rpx 30rpx;
- background-color: white;
- margin: 16rpx 0;
- }
- .card-list-top {
- width: 690rpx;
- height: 168rpx;
- justify-content: space-between;
- }
- .top-image {
- width: 168rpx;
- height: 168rpx;
- }
- .content {
- width: 50%;
- height: 168rpx;
- line-height: 56rpx;
- padding-left: 24rpx;
- box-sizing: border-box;
- }
- .content-title {
- color: rgb(51, 51, 51);
- font-size: 14px;
- font-weight: 600;
- }
- .content-type {
- color: rgb(102, 102, 102);
- font-size: 12px;
- font-weight: 600;
- }
- .content-num {
- font-size: 12px;
- color: rgb(51, 51, 51);
- font-weight: 600;
- }
- .status {
- width: 200rpx;
- text-align: center;
- height: 168rpx;
- font-size: 14px;
- font-weight: 600;
- text-align: center;
- }
- .status-text {
- display: inline-block;
- width: 100%;
- }
- .time {
- width: 750rpx;
- height: 78rpx;
- line-height: 78rpx;
- font-size: 12px;
- color: #b1b1b1;
- font-weight: 600;
- }
- .card-img {
- width: 750rpx;
- text-align: center;
- }
- .card-img-text {
- color: rgb(153, 153, 153);
- font-size: 14px;
- margin-top: 21px;
- font-weight: bold;
- }
|