information.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .setting-container {
  2. padding-bottom: 32rpx;
  3. }
  4. .setting-container .avatar-cell {
  5. position: relative;
  6. padding: 32rpx 0;
  7. text-align: center;
  8. }
  9. .setting-container .avatar-cell::after {
  10. position: absolute;
  11. bottom: 0;
  12. left: 24rpx;
  13. content: '';
  14. width: calc(100% - 48rpx);
  15. height: 2rpx;
  16. background: rgba(110, 123, 143, 0.16);
  17. }
  18. .setting-container .avatar-cell .avatar {
  19. display: block;
  20. width: 160rpx;
  21. height: 160rpx;
  22. margin: auto;
  23. border-radius: 50%;
  24. }
  25. .setting-container .avatar-cell .label {
  26. margin-top: 24rpx;
  27. color: #D32D2F;
  28. }
  29. .setting-container .cell {
  30. position: relative;
  31. padding: 24rpx;
  32. line-height: 80rpx;
  33. color: rgba(118, 126, 139, 0.57);
  34. }
  35. .setting-container .border::after {
  36. position: absolute;
  37. bottom: 0;
  38. left: 24rpx;
  39. content: '';
  40. width: calc(100% - 48rpx);
  41. height: 2rpx;
  42. background: rgba(110, 123, 143, 0.16);
  43. }
  44. .setting-container .cell .label {
  45. color: #50555F;
  46. }
  47. .setting-container .cell .error {
  48. color: #D32D2F;
  49. }
  50. .setting-container .cell .suc {
  51. color: #0FC917;
  52. }
  53. .setting-container .btn {
  54. width: calc(100% - 48rpx);
  55. margin: 48rpx auto 0;
  56. background: #D32D2F;
  57. border-radius: 90rpx;
  58. text-align: center;
  59. line-height: 80rpx;
  60. font-size: 28rpx;
  61. color: #fff;
  62. }
  63. .auth-popup .van-cell {
  64. margin-bottom: 24rpx;
  65. padding: 16rpx 20rpx;
  66. background: #f5f5f5;
  67. border-radius: 8rpx;
  68. }
  69. .auth-popup .van-cell .van-cell__title {
  70. max-width: 3.6em !important;
  71. min-width: 3.6em !important;
  72. margin-right: 24rpx;
  73. font-size: 26rpx;
  74. color: #060606;
  75. }
  76. .auth-popup .van-cell .van-cell__value {
  77. text-align: left;
  78. color: #060606;
  79. }
  80. .auth-popup .van-cell .van-field__label {
  81. color: #060606;
  82. }
  83. .auth-popup .van-cell .van-field__placeholder {
  84. font-size: 26rpx;
  85. color: #999;
  86. }