index.wxss 480 B

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