index.less 437 B

12345678910111213141516171819202122232425
  1. /* components/diy-account/index.wxss */
  2. .diy_account {
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-evenly;
  6. .account_info {
  7. text-align: center;
  8. .num {
  9. font-weight: 700;
  10. }
  11. .name {
  12. color: #4d4c4c;
  13. }
  14. }
  15. .line {
  16. width: 2rpx;
  17. height: 128rpx;
  18. border-right: 4rpx solid #a8a8a8;
  19. }
  20. .line2 {
  21. width: 2rpx;
  22. height: 128rpx;
  23. border-right: 4rpx dotted #a8a8a8;
  24. }
  25. }