equipList.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*列表*/
  2. .equipItem {
  3. margin: 0 15px 10px;
  4. background: #fff;
  5. border-radius: 7px;
  6. }
  7. .equipItem_top,
  8. .equipItem_bottom {
  9. padding: 0 10px;
  10. }
  11. .equipItem_top {
  12. position: relative;
  13. height: 60px;
  14. }
  15. .equipTitle {
  16. border-bottom: 1px dashed #ccc;
  17. height: 45px;
  18. line-height: 45px;
  19. }
  20. .equipTitle img {
  21. vertical-align: middle;
  22. }
  23. .equipIdIcon {
  24. margin-right: 5px;
  25. }
  26. .equipType {
  27. float: right;
  28. margin-top: 8px;
  29. }
  30. .equipItem_line {
  31. position: absolute;
  32. bottom: 5px;
  33. left: 0;
  34. right: 0;
  35. }
  36. .equipItem_line:before,
  37. .equipItem_line:after {
  38. position: absolute;
  39. bottom: 5px;
  40. width: 15px;
  41. height: 15px;
  42. border-radius: 50%;
  43. content: '';
  44. background: #efeff4;
  45. }
  46. .equipItem_line:before {
  47. left: -6px;
  48. }
  49. .equipItem_line:after {
  50. right: -6px;
  51. }
  52. .equipItem_bottom {
  53. padding-bottom: 10px;
  54. }
  55. .equipMsg {
  56. text-align: right;
  57. line-height: 28px;
  58. }
  59. .equipMsg>label {
  60. float: left;
  61. color: #ccc;
  62. }
  63. ul {
  64. padding: 0;
  65. }
  66. .mescroll {
  67. position: fixed;
  68. top: 73px;
  69. bottom: 0;
  70. height: auto;
  71. /*如设置bottom:50px,则需height:auto才能生效*/
  72. }