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. padding: 20px 0px;
  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: 92%;
  40. justify-content: space-between;
  41. align-items: center;
  42. align-content: center;
  43. padding-bottom: 10px;
  44. .userinfo {
  45. display: grid;
  46. width: 100%;
  47. padding-left: 15px;
  48. .userinfo-vip, .userinfo-account {
  49. display: flex;
  50. justify-content: space-between;
  51. text:nth-child(1) {
  52. width: 80%;
  53. }
  54. }
  55. text {
  56. color: #333;
  57. text-align: left;
  58. width: 100%;
  59. padding: 5px 0px;
  60. font-size: 14px;
  61. }
  62. }
  63. }
  64. .button-view {
  65. display: flex;
  66. justify-content: space-around;
  67. margin: 10px;
  68. width: 100%;
  69. .into-gold, .out-gold {
  70. width: 180px;
  71. box-shadow: 5px 5px 5px 5px #eee;
  72. }
  73. }
  74. }
  75. .cell-title {
  76. color: #333;
  77. font-size: 15px;
  78. padding: 5px 10px;
  79. }
  80. .loginOut-view {
  81. display: flex;
  82. width: 100%;
  83. justify-content: center;
  84. margin-top: 20px;
  85. .loginOut {
  86. width: 320px;
  87. font-size: 28rpx;
  88. background-color: #226FD9;
  89. color: white;
  90. }
  91. }
  92. }