| 1234567891011121314151617181920212223242526 |
- /* pages/mine/mine.wxss */
- .minetop {
- height: 300rpx;
- justify-content: space-between;
- display: flex;
- align-items: center;
- align-content: center;
- margin: 15px;
- background-color: red;
- border-radius: 10px;
- box-shadow: 10px 10px 10px #ddd;
- van-image {
- margin-left: 10px;
- }
-
- van-icon {
- margin-right: 10px;
- }
- }
- .cell-title {
- color: #333;
- font-size: 14px;
- }
|