index.wxss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /**index.wxss**/
  2. @import '../../../app.wxss';
  3. .list {
  4. width: 100%;
  5. position: relative;
  6. overflow: hidden;
  7. background: #fff;
  8. margin-top: 20rpx;
  9. }
  10. .list > view {
  11. padding: 28rpx 50rpx;
  12. border-top: 1rpx solid #eee;
  13. align-items: center;
  14. }
  15. .list > view:first-child {
  16. border: none;
  17. }
  18. .userIcon {
  19. width: 96rpx;
  20. position: relative;
  21. overflow: hidden;
  22. border-radius: 100%;
  23. height: 96rpx;
  24. background: #eee;
  25. }
  26. .list > view > text {
  27. font-size: 26rpx;
  28. line-height: 38rpx;
  29. margin-right: 10rpx;
  30. color: #666;
  31. }
  32. .list > view > text:first-child {
  33. min-width: 175rpx;
  34. }
  35. .list > view > text text {
  36. font-size: 26rpx;
  37. line-height: 38rpx;
  38. color: red;
  39. margin-right: 10rpx;
  40. }
  41. .list > view > view input {
  42. width: 100%;
  43. font-size: 26rpx;
  44. text-align: right;
  45. color: #666;
  46. }
  47. .btn {
  48. padding: 0 50rpx;
  49. position: relative;
  50. overflow: hidden;
  51. margin-top: 290rpx;
  52. margin-bottom: 40rpx;
  53. }
  54. .btn text {
  55. width: 100%;
  56. display: block;
  57. text-align: center;
  58. color: #fff;
  59. line-height: 88rpx;
  60. font-size: 28rpx;
  61. background-color: #ccc;
  62. border-radius: 10rpx;
  63. }
  64. .btn.active text {
  65. background: #bb9c79;
  66. }
  67. .popup {
  68. width: 100%;
  69. position: absolute;
  70. left: 0;
  71. bottom: 0;
  72. top: 0;
  73. overflow: hidden;
  74. z-index: 1000;
  75. background: rgba(0, 0, 0, 0.6);
  76. }
  77. .popup > view {
  78. width: 100%;
  79. position: absolute;
  80. left: 0;
  81. bottom: 0;
  82. overflow: hidden;
  83. }