tianjiachengyuan.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. .lin-checkbox{
  2. width: 24px;
  3. height: 24px;
  4. border-radius: 15px;
  5. border: 1px solid #ccc;
  6. margin: 22px 20px 0px 0px;
  7. }
  8. .doc-item div.content{
  9. -webkit-box-flex: 1;
  10. }
  11. .doc-item.checked div.lin-checkbox, .lin-checkbox.checked{
  12. background: url(../images/checked_blue.png) no-repeat;
  13. background-size: 24px 24px;
  14. border: none;
  15. }
  16. .doc-item .p2{
  17. padding: 0px 0px 0px 10px;
  18. color: #999;
  19. }
  20. .lin-radio{
  21. width: 24px;
  22. height: 24px;
  23. border-radius: 15px;
  24. margin: 22px 30px 0px 0px;
  25. background: url(../images/xanxuan_btn.png) no-repeat;
  26. background-size: 24px 24px;
  27. }
  28. .doc-item.checked div.lin-radio{
  29. background: url(../images/banxuan_pre.png) no-repeat;
  30. background-size: 24px 24px;
  31. border: none;
  32. }
  33. .lin-footer {
  34. position: absolute;
  35. z-index: 2;
  36. bottom: 0;
  37. left: 0;
  38. width: 100%;
  39. height: 48px;
  40. background: #fff;
  41. padding: 0;
  42. border-top: 1px solid #ddd;
  43. display: -webkit-box;
  44. }
  45. .asel-text{
  46. width: 70px;
  47. font-size: 16px;
  48. color: #333;
  49. line-height: 47px;
  50. }
  51. .checked-num{
  52. -webkit-box-flex: 1;
  53. text-align: right;
  54. padding-right: 20px;
  55. font-size: 14px;
  56. line-height: 47px;
  57. /*color: #909090;*/
  58. }
  59. .checked-num label{
  60. color: #17B3EC;
  61. margin: 0px 4px;
  62. }
  63. .search-box{
  64. background: #fff; padding: 10px 16px;
  65. }
  66. .search-box>div{
  67. background: #f2f4f6; border-radius: 8px;
  68. }
  69. .search-box input{
  70. height: 40px; font-size: 14px; width: 100%;
  71. background: url(../../../images/sousuo_icon.png) no-repeat;
  72. background-size: 40px 40px;
  73. -webkit-background-size: 40px 40px;
  74. -moz-background-size: 40px 40px;
  75. -o-background-size: 40px 40px;
  76. padding-left: 40px;
  77. }
  78. .loading{
  79. height: 100%;
  80. position: absolute;
  81. width: 100%;
  82. padding-top: 150px;
  83. text-align: center;
  84. background: #fff;
  85. line-height: 32px;
  86. font-size: 16px;
  87. display: none;
  88. }
  89. .jm-title{
  90. background: #fff;
  91. border-bottom: 1px solid #f2f4f6;
  92. border-top: 1px solid #f2f4f6;
  93. color: #909090;
  94. font-size: 12px;
  95. padding: 8px 16px;
  96. }
  97. .jm-more{
  98. font-size: 12px;
  99. color: #909090;
  100. text-align: center;
  101. background: #fff;
  102. padding: 8px;
  103. border-bottom: 1px solid #f2f4f6;
  104. }
  105. .c-17b3ec{
  106. color: #17B3EC;
  107. }
  108. /*不用任何图标实现删除icon效果*/
  109. .u-icon-delete
  110. {
  111. position: absolute;
  112. top: 54px;
  113. right: 16px;
  114. width: 40px;
  115. height: 40px;
  116. }
  117. /*给before伪类设置一个默认背景色 设置content*/
  118. .u-icon-delete:before
  119. {
  120. position: absolute;
  121. top: 10px;
  122. left: 10px;
  123. width: 20px;
  124. height: 20px;
  125. border-radius: 20px;
  126. background-color: #8e8e93;
  127. content: '';
  128. }
  129. /*给after伪类 -webkit-transform: rotate(-45deg);旋转 background-color: #e1e2e4;设置X的一边的颜色*/
  130. .u-icon-delete:after
  131. {
  132. position: absolute;
  133. top: 19px;
  134. left: 14px;
  135. width: 12px;
  136. height: 2px;
  137. -webkit-transform: rotate(-45deg);
  138. background-color: #e1e2e4;
  139. content: '';
  140. }
  141. /* -webkit-transform: rotate(45deg); 运用的特别巧秒*/
  142. .u-icon-delete i
  143. {
  144. position: absolute;
  145. top: 19px;
  146. left: 14px;
  147. width: 12px;
  148. height: 2px;
  149. background-color: #e1e2e4;
  150. -webkit-transform: rotate(45deg);
  151. }
  152. .checked-num.disabled{
  153. color: #909090;
  154. }