record.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. page {
  2. padding: 400rpx 0 0;
  3. background: #f4f4f4;
  4. }
  5. .header_view{
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. z-index: 2;
  10. width: 100vw;
  11. background: #fff;
  12. padding: 0 30rpx;
  13. }
  14. .header_view_top>view{
  15. margin: 24rpx 0;
  16. width: 210rpx;
  17. height: 112rpx;
  18. border-radius: 8rpx;
  19. background: #F8F8F8;
  20. }
  21. .header_view_top>view>view:nth-child(1){
  22. font-size: 40rpx;
  23. color: #333;
  24. margin-bottom: 2rpx;
  25. }
  26. .header_view_top>view>view:nth-child(2){
  27. font-size: 24rpx;
  28. color: #999;
  29. }
  30. .input_select_left{
  31. flex: 1;
  32. height: 80rpx;
  33. border-radius: 8rpx;
  34. background: #f6f6f6;
  35. }
  36. .input_select_left>view:nth-child(1){
  37. margin: 0 30rpx;
  38. justify-content: center;
  39. font-size: 24rpx;
  40. color: #666;
  41. }
  42. .input_select_left>view:nth-child(2){
  43. flex: 1;
  44. height: 80rpx;
  45. font-size: 24rpx;
  46. color: #333;
  47. }
  48. .select_inp_input{
  49. width: 100%;
  50. height: 100%;
  51. }
  52. .input_select_right{
  53. margin-left: 30rpx;
  54. width: 136rpx;
  55. height: 68rpx;
  56. border-radius: 8rpx;
  57. background: #52A1FF;
  58. font-size: 28rpx;
  59. color: #fff;
  60. }
  61. .input_select_view{
  62. margin: 24rpx 0;
  63. }
  64. .select_inp_icon{
  65. width: 20rpx;
  66. height: 20rpx;
  67. display: inline-block;
  68. margin-left: 6rpx;
  69. }
  70. .header_bottom{
  71. font-size: 28rpx;
  72. color: #333;
  73. height: 88rpx;
  74. }
  75. .header_bottom>view{
  76. flex: 1;
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. border-right: 1rpx solid #ededed;
  81. }
  82. .header_bottom>view:nth-last-child(1){
  83. border-right: 0 solid #ededed;
  84. }
  85. .header_bottom_icon{
  86. display: inline-block;
  87. width: 24rpx;
  88. height: 24rpx;
  89. margin-left: 6rpx;
  90. }
  91. .item_view{
  92. margin: 0 30rpx 24rpx;
  93. padding: 30rpx;
  94. background: #fff;
  95. border-radius: 8rpx;
  96. }
  97. .item_view_tit>view:nth-child(1){
  98. font-size: 28rpx;
  99. font-weight: bold;
  100. color: #333;
  101. }
  102. .item_view_tit>view:nth-child(2){
  103. font-size: 24rpx;
  104. color: #FF4D19;
  105. }
  106. .item_cont_left{
  107. flex: 1;
  108. font-size: 24rpx;
  109. color: #999;
  110. }
  111. .item_cont_left>view{
  112. margin-top: 20rpx;
  113. }
  114. .item_cont_left>view:nth-child(1)>view:nth-child(1){
  115. margin-right: 60rpx;
  116. }
  117. .color_view{
  118. width: 28rpx;
  119. height: 28rpx;
  120. margin-right: 16rpx;
  121. }
  122. .item_icon{
  123. width: 24rpx;
  124. height: 24rpx;
  125. display: inline-block;
  126. margin-left: 20rpx;
  127. }
  128. .font_maxw{
  129. max-width: 180rpx;
  130. display: -webkit-box;
  131. -webkit-box-orient: vertical;
  132. -webkit-line-clamp: 1;
  133. overflow: hidden;
  134. }