index.wxss 1.9 KB

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