index.wxss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. .list > view > text {
  19. font-size: 26rpx;
  20. line-height: 38rpx;
  21. margin-right: 10rpx;
  22. color: #666;
  23. }
  24. .list > view > text:first-child {
  25. min-width: 175rpx;
  26. }
  27. .list > view > text text {
  28. font-size: 26rpx;
  29. line-height: 38rpx;
  30. color: red;
  31. margin-right: 10rpx;
  32. }
  33. .list > view > picker text {
  34. font-size: 26rpx;
  35. line-height: 38rpx;
  36. margin-right: 10rpx;
  37. color: #666;
  38. }
  39. .list > view > view input {
  40. width: 100%;
  41. display: block;
  42. line-height: 38rpx;
  43. border: none;
  44. font-size: 26rpx;
  45. }
  46. .remark {
  47. display: block;
  48. padding: 0 50rpx;
  49. line-height: 32rpx;
  50. font-size: 20rpx;
  51. color: #fe4019;
  52. margin-top: 30rpx;
  53. }
  54. .btn {
  55. padding: 0 50rpx;
  56. position: relative;
  57. overflow: hidden;
  58. margin-top: 290rpx;
  59. margin-bottom: 40rpx;
  60. }
  61. .btn text {
  62. width: 100%;
  63. display: block;
  64. text-align: center;
  65. color: #fff;
  66. line-height: 88rpx;
  67. font-size: 28rpx;
  68. background: #bb9c79;
  69. border-radius: 10rpx;
  70. }
  71. .popup {
  72. width: 100%;
  73. position: absolute;
  74. left: 0;
  75. bottom: 0;
  76. top: 0;
  77. overflow: hidden;
  78. z-index: 1000;
  79. background: rgba(0, 0, 0, .6);
  80. }
  81. .popup > view {
  82. width: 100%;
  83. position: absolute;
  84. left: 0;
  85. bottom: 0;
  86. overflow: hidden;
  87. }