modulelist.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .lr-modulelist-header {
  2. padding: 6px 6px 6px 40px;
  3. }
  4. .lr-modulelist-header .searchBox {
  5. position: relative;
  6. width: 100%;
  7. height: 100%;
  8. background-color: #0C86D8;
  9. }
  10. .lr-modulelist-header .searchBox i {
  11. position: absolute;
  12. top: 8px;
  13. left: 10px;
  14. color: #fff;
  15. z-index: 1;
  16. font-size: 12px;
  17. }
  18. .lr-modulelist-header .searchBox .search {
  19. position: relative;
  20. width: 100%;
  21. height: 100%;
  22. border-radius: 3px;
  23. line-height: 30px;
  24. font-size: 14px;
  25. background-color: #3d9ee0;
  26. padding-left: 30px;
  27. color: #fff;
  28. }
  29. .lr-modulelist-page .lr-app-panel {
  30. position: relative;
  31. width: 100%;
  32. height: 100%;
  33. margin-bottom:10px;
  34. background-color:#fff;
  35. }
  36. .lr-modulelist-page .lr-app-panel .title {
  37. position: relative;
  38. width: 100%;
  39. height: 40px;
  40. line-height: 40px;
  41. font-size: 14px;
  42. color: #333333;
  43. padding-left: 10px;
  44. text-align: left;
  45. }
  46. .lr-modulelist-page .lr-app-panel .title button {
  47. position: absolute;
  48. right: 7px;
  49. top: 7px;
  50. height: 26px;
  51. line-height: 14px;
  52. }
  53. .lr-modulelist-page .lr-app-panel .title:after {
  54. position: absolute;
  55. right: 0;
  56. bottom: 0;
  57. left: 0;
  58. height: 1px;
  59. content: '';
  60. -webkit-transform: scaleY(.5);
  61. transform: scaleY(.5);
  62. background-color: #c8c7cc;
  63. }
  64. .lr-modulelist-page .lr-app-panel > .content {
  65. position: relative;
  66. width: 100%;
  67. min-height: 90px;
  68. background-color: #fff;
  69. padding: 10px 5px 0 5px;
  70. display: -webkit-box;
  71. display: -webkit-flex;
  72. display: -ms-flexbox;
  73. display: flex;
  74. -webkit-flex-wrap: wrap;
  75. -ms-flex-wrap: wrap;
  76. flex-wrap: wrap;
  77. text-align: center;
  78. -webkit-box-pack: start;
  79. -webkit-justify-content: flex-start;
  80. -ms-flex-pack: start;
  81. justify-content: flex-start;
  82. }
  83. .lr-modulelist-page .appitem {
  84. position:relative;
  85. -webkit-box-flex: 0;
  86. -webkit-flex: 0 0 25%;
  87. -ms-flex: 0 0 25%;
  88. flex: 0 0 25%;
  89. padding-bottom: 10px;
  90. }
  91. .lr-modulelist-page .appitem > div {
  92. margin: auto;
  93. margin-bottom: 5px;
  94. height: 45px;
  95. width: 45px;
  96. line-height: 45px;
  97. text-align: center;
  98. border-radius: 50%;
  99. }
  100. .lr-modulelist-page .appitem:nth-child(7n+1) > div {
  101. background-color: #62bbff;
  102. }
  103. .lr-modulelist-page .appitem:nth-child(7n+2) > div {
  104. background-color: #7bd2ff;
  105. }
  106. .lr-modulelist-page .appitem:nth-child(7n+3) > div {
  107. background-color: #ffd761;
  108. }
  109. .lr-modulelist-page .appitem:nth-child(7n+4) > div {
  110. background-color: #fe955c;
  111. }
  112. .lr-modulelist-page .appitem:nth-child(7n+5) > div {
  113. background-color: #ff6283;
  114. }
  115. .lr-modulelist-page .appitem:nth-child(7n+6) > div {
  116. background-color: #60e3f3;
  117. }
  118. .lr-modulelist-page .appitem:nth-child(7n) > div {
  119. background-color: #acc8fe;
  120. }
  121. .lr-modulelist-page .appitem i {
  122. color: #fff;
  123. font-size: 26px;
  124. }
  125. .lr-modulelist-page .appitem > span {
  126. font-size: 12px;
  127. color: #333;
  128. }