meCopy.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* pages/me/me.wxss */
  2. .me .head-logo {
  3. padding: 38rpx 0 28rpx;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. }
  9. .me .head-logo image {
  10. width: 240rpx;
  11. height: 240rpx;
  12. border-radius: 50%;
  13. border: 10rpx solid rgba(101, 71, 163, 0.2);
  14. margin-bottom: 28rpx;
  15. }
  16. .me .head-logo text {
  17. font-size: 36rpx;
  18. font-weight: bold;
  19. }
  20. .me .head-logo .goLogin {
  21. color: #999;
  22. }
  23. .me .head-logo .userName {
  24. color: #353535;
  25. }
  26. .me .br {
  27. height: 20rpx;
  28. background: #999999;
  29. opacity: 0.05;
  30. }
  31. .me .list {
  32. padding: 0 30rpx;
  33. }
  34. .me .list .li {
  35. height: 102rpx;
  36. display: flex;
  37. }
  38. .me .list .li .icon {
  39. height: 102rpx;
  40. display: flex;
  41. align-items: center;
  42. margin-right: 20rpx;
  43. }
  44. .me .list .li image {
  45. width: 40rpx;
  46. }
  47. .me .list .li .button {
  48. width: calc(100% - 60rpx);
  49. border-bottom: 1rpx solid #E0DCD7;
  50. position: relative;
  51. display: flex;
  52. align-items: center;
  53. }
  54. .me .list .li .button button, .me .list .li .button text {
  55. margin: 0;
  56. background: none;
  57. text-align: left;
  58. padding: 0;
  59. line-height: 102rpx;
  60. font-size: 30rpx;
  61. color: #353535;
  62. font-weight: 400;
  63. }
  64. .me .list .li .button image.j {
  65. height: 22rpx;
  66. position: absolute;
  67. top: 40rpx;
  68. right: 0rpx;
  69. }
  70. .me .list .li .button image.logo {
  71. height: 34rpx;
  72. margin-left: 12rpx;
  73. }
  74. .login{
  75. position: fixed;
  76. bottom: 54rpx;
  77. width: 100vw;
  78. display: flex;
  79. justify-content: center;
  80. }
  81. .login>view{
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. width: 520rpx;
  86. height: 80rpx;
  87. background: #999999;
  88. border-radius: 45rpx;
  89. font-size: 36rpx;
  90. font-weight: 400;
  91. color: #FFFFFF;
  92. }
  93. .login>view.action{
  94. background: #6547A3;
  95. }