index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. page {
  2. background-color: #f2f2f2;
  3. height: 100%;
  4. }
  5. .tab {
  6. height: 90rpx;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. background-color: #fff;
  11. }
  12. .tab view {
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. color: #333;
  17. font-size: 30rpx;
  18. width: 25%;
  19. height: 100%;
  20. }
  21. .border {
  22. width: 1rpx;
  23. border: 1rpx solid #f3f3f3;
  24. }
  25. .tab-check {
  26. color: #33ad37 !important;
  27. border-bottom: 4rpx solid #33ad37;
  28. }
  29. /* 内容 */
  30. .content {
  31. width: 690rpx;
  32. margin: 0 auto;
  33. }
  34. .title {
  35. font-size: 30rpx;
  36. color: #333;
  37. height: 86rpx;
  38. display: flex;
  39. align-items: center;
  40. border-bottom: 1rpx solid #efefef;
  41. font-weight: bold;
  42. }
  43. .content_text view {
  44. font-size: 26rpx;
  45. color: #333;
  46. }
  47. .content_text view.required {
  48. width: 20rpx;
  49. color: red;
  50. position: absolute;
  51. left: 0;
  52. }
  53. .content_text :last-child {
  54. border: none;
  55. }
  56. .form {
  57. display: flex;
  58. align-items: flex-start;
  59. /* height: 80rpx; */
  60. border-bottom: 1rpx solid #efefef;
  61. /* margin-left: 20rpx; */
  62. padding: 20rpx;
  63. position: relative;
  64. }
  65. /* .form :last-child {
  66. color: #666;
  67. } */
  68. .xing {
  69. width: 24rpx;
  70. }
  71. .form_title {
  72. width: 240rpx;
  73. font-size: 26rpx;
  74. color: #666;
  75. display: flex;
  76. align-items: center;
  77. }
  78. .form_input {
  79. width: 60%;
  80. }
  81. .picker {
  82. width: 390rpx;
  83. display: flex;
  84. align-items: center;
  85. margin-left: 4rpx;
  86. }
  87. .picker image {
  88. margin-left: 20rpx;
  89. }
  90. .picker text {
  91. color: #666;
  92. }
  93. .place {
  94. font-size: 26rpx;
  95. color: #999;
  96. }
  97. .btn {
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. margin-top: 80rpx;
  102. }
  103. .btn button {
  104. width: 260rpx;
  105. height: 70rpx;
  106. background-color: #33ad37;
  107. display: flex;
  108. justify-content: center;
  109. align-items: center;
  110. border-radius: 70rpx;
  111. color: #fff;
  112. }
  113. textarea {
  114. height: 80px;
  115. width: 100%;
  116. }
  117. button::after {
  118. border: none;
  119. }