style.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .flex_between_center {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. }
  6. .checkbox {
  7. position: relative;
  8. height: 36rpx;
  9. margin-left: 10rpx;
  10. margin-right: 10rpx;
  11. width: 36rpx;
  12. .color {
  13. color: #00aaff;
  14. background-color: #00aaff;
  15. }
  16. .txt {
  17. font-size: 36rpx;
  18. line-height: 36rpx;
  19. width: 100%;
  20. height: 100%;
  21. display: flex;
  22. }
  23. }
  24. .checkBorder {
  25. border: 1px solid #ecdee4;
  26. }
  27. .search {
  28. .uni-input-placeholder, .uni-input-input {
  29. font-size: 28rpx;
  30. }
  31. }
  32. .header {
  33. width: 100%;
  34. position: fixed;
  35. background-color: #fff;
  36. z-index: 9999;
  37. .title {
  38. height: 90rpx;
  39. padding: 0 32rpx;
  40. line-height: 90rpx;
  41. font-size: 30rpx;
  42. background-color: #f5f5f5;
  43. color: #606064;
  44. .iconclass {
  45. display: inline-block;
  46. margin: 0 12rpx;
  47. color: #D0D4DB;
  48. font-size: 28rpx;
  49. }
  50. }
  51. }
  52. .container-list {
  53. overflow-y: scroll;
  54. overflow-x: hidden;
  55. padding-top: 200rpx;
  56. .common {
  57. background-color: #fff;
  58. border-bottom: 1rpx solid #f4f4f4;
  59. padding-left: 10rpx;
  60. .content {
  61. display: flex;
  62. align-items: center;
  63. min-height: 60rpx;
  64. width: 100%;
  65. padding: 15rpx 0;
  66. position: relative;
  67. font-size: 32rpx;
  68. .right {
  69. position: absolute;
  70. right: 30rpx;
  71. color: #babdc3;
  72. font-size: 32rpx;
  73. }
  74. }
  75. }
  76. }
  77. .active {
  78. color: #4297ED !important;
  79. }
  80. .none {
  81. color: #666666;
  82. }
  83. .icon-selected{
  84. color: #0095F2!important;
  85. font-size: 40rpx!important;
  86. }
  87. .icons{
  88. color: #0095F2!important;
  89. font-size: 40rpx!important;
  90. }
  91. .inline-item {
  92. display: inline-block
  93. }
  94. .content-item{
  95. display: flex;
  96. position: relative;
  97. align-items: center;
  98. }
  99. .box_sizing {
  100. -webkit-box-sizing: border-box;
  101. -moz-box-sizing: border-box;
  102. box-sizing: border-box;
  103. }
  104. .btn {
  105. position: fixed;
  106. bottom: 0;
  107. padding: 10px;
  108. background-color: #fff;
  109. width: 100%;
  110. .sureBtn {
  111. background-color: #0095F2;
  112. color: #fff;
  113. }
  114. }