index.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. width: 100%;
  5. justify-content: center;
  6. .minetop {
  7. justify-content: space-around;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. .taaccount-info {
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: space-around;
  15. align-items: center;
  16. align-content: center;
  17. width: 100%;
  18. .item {
  19. display: flex;
  20. flex-direction: column;
  21. text {
  22. text-align: center;
  23. height: 25px;
  24. }
  25. text:nth-child(1) {
  26. color: #AAAAAA;
  27. font-size: 12px;
  28. }
  29. text:nth-child(2) {
  30. color: #000;
  31. font-size: 15px;
  32. }
  33. }
  34. }
  35. .user-info {
  36. display: flex;
  37. flex-direction: row;
  38. width: 92%;
  39. justify-content: space-between;
  40. align-items: center;
  41. align-content: center;
  42. padding-bottom: 10px;
  43. .userinfo {
  44. display: grid;
  45. width: 100%;
  46. padding-left: 15px;
  47. .userinfo-vip, .userinfo-account {
  48. display: flex;
  49. justify-content: space-between;
  50. text:nth-child(1) {
  51. width: 80%;
  52. }
  53. }
  54. text {
  55. color: #333;
  56. text-align: left;
  57. width: 100%;
  58. padding: 5px 0px;
  59. font-size: 14px;
  60. }
  61. }
  62. .icon-view {
  63. display: flex;
  64. justify-content: space-between;
  65. align-content: center;
  66. align-items: center;
  67. flex-direction: row;
  68. width: 80px;
  69. }
  70. }
  71. .button-view {
  72. display: flex;
  73. flex-direction: row;
  74. justify-content: space-between;
  75. margin: 20px 10px;
  76. width: 95%;
  77. align-items: center;
  78. align-content: center;
  79. van-button {
  80. width: 48%;
  81. box-shadow: 5px 5px 5px 5px #eee;
  82. }
  83. }
  84. }
  85. .cell-title {
  86. color: #333;
  87. font-size: 15px;
  88. padding: 5px 10px;
  89. }
  90. .loginOut-view {
  91. display: flex;
  92. flex-direction: row;
  93. width: 100%;
  94. justify-content: center;
  95. margin-top: 20px;
  96. van-button {
  97. width: 90%;
  98. }
  99. }
  100. }