index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. }
  63. .button-view {
  64. display: flex;
  65. flex-direction: row;
  66. justify-content: space-between;
  67. margin: 20px 10px;
  68. width: 95%;
  69. align-items: center;
  70. align-content: center;
  71. van-button {
  72. width: 48%;
  73. box-shadow: 5px 5px 5px 5px #eee;
  74. }
  75. }
  76. }
  77. .cell-title {
  78. color: #333;
  79. font-size: 15px;
  80. padding: 5px 10px;
  81. }
  82. .loginOut-view {
  83. display: flex;
  84. flex-direction: row;
  85. width: 100%;
  86. justify-content: center;
  87. margin-top: 20px;
  88. van-button {
  89. width: 90%;
  90. }
  91. }
  92. }