12345678910111213141516171819202122232425 |
- /* components/diy-account/index.wxss */
- .diy_account {
- display: flex;
- align-items: center;
- justify-content: space-evenly;
- .account_info {
- text-align: center;
- .num {
- font-weight: 700;
- }
- .name {
- color: #4d4c4c;
- }
- }
- .line {
- width: 2rpx;
- height: 128rpx;
- border-right: 4rpx solid #a8a8a8;
- }
- .line2 {
- width: 2rpx;
- height: 128rpx;
- border-right: 4rpx dotted #a8a8a8;
- }
- }
|