| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* pages/mine/mine.wxss */
- .minetop {
- height: 250rpx;
- justify-content: space-around;
- display: flex;
- align-items: center;
- margin: 15px;
- background-color: red;
- border-radius: 10px;
- box-shadow: 10px 10px 10px #ddd;
- van-image {
- margin-left: 15px;
- }
- .userinfo {
- display: grid;
- width: 100%;
- padding-left: 15px;
- view {
- display: flex;
- justify-content: space-between;
- text:nth-child(1) {
- width: 120px;
- }
- }
- text {
- color: white;
- text-align: left;
- width: 100%;
- padding: 5px 0px;
- font-size: 14px;
- }
- }
-
- van-icon {
- margin-right: 15px;
- }
- }
- .cell-title {
- color: #333;
- font-size: 14px;
- }
|