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. justify-content: space-around;
  66. margin: 20px 10px;
  67. width: 100%;
  68. .into-gold, .out-gold {
  69. width: 180px;
  70. box-shadow: 5px 5px 5px 5px #eee;
  71. }
  72. }
  73. }
  74. .cell-title {
  75. color: #333;
  76. font-size: 15px;
  77. padding: 5px 10px;
  78. }
  79. .loginOut-view {
  80. display: flex;
  81. flex-direction: row;
  82. width: 100%;
  83. justify-content: center;
  84. margin-top: 20px;
  85. .loginOut {
  86. width: 360px;
  87. font-size: 28rpx;
  88. background-color: #407DB8;
  89. color: white;
  90. }
  91. }
  92. }