index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. height: 160px;
  12. .taaccount-info {
  13. display: flex;
  14. flex-direction: row;
  15. justify-content: space-around;
  16. align-items: center;
  17. align-content: center;
  18. width: 90%;
  19. .item {
  20. display: flex;
  21. flex-direction: column;
  22. text {
  23. text-align: center;
  24. height: 25px;
  25. }
  26. text:nth-child(1) {
  27. color: #666;
  28. font-size: 14px;
  29. }
  30. text:nth-child(2) {
  31. color: #333;
  32. font-size: 18px;
  33. }
  34. }
  35. }
  36. .user-info {
  37. display: flex;
  38. flex-direction: row;
  39. width: 95%;
  40. justify-content: space-between;
  41. align-items: center;
  42. align-content: center;
  43. margin-top: 10px;
  44. van-image {
  45. margin-left: 15px;
  46. }
  47. .userinfo {
  48. display: grid;
  49. width: 100%;
  50. padding-left: 15px;
  51. .userinfo-vip, .userinfo-account {
  52. display: flex;
  53. justify-content: space-between;
  54. text:nth-child(1) {
  55. width: 60%;
  56. }
  57. }
  58. text {
  59. color: #333;
  60. text-align: left;
  61. width: 100%;
  62. padding: 5px 0px;
  63. font-size: 14px;
  64. }
  65. }
  66. }
  67. }
  68. .button-view {
  69. display: flex;
  70. justify-content: space-around;
  71. margin: 10px;
  72. .into-gold, .out-gold {
  73. width: 180px;
  74. box-shadow: 5px 5px 5px 5px #eee;
  75. }
  76. }
  77. .cell-title {
  78. color: #333;
  79. font-size: 14px;
  80. padding-left: 10px;
  81. }
  82. .loginOut-view {
  83. display: flex;
  84. width: 100%;
  85. justify-content: center;
  86. margin-top: 20px;
  87. .loginOut {
  88. width: 320px;
  89. font-size: 28rpx;
  90. background-color: #226FD9;
  91. color: white;
  92. }
  93. }
  94. }