123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .lr-modulelist-header {
- padding: 6px 6px 6px 40px;
- }
- .lr-modulelist-header .searchBox {
- position: relative;
- width: 100%;
- height: 100%;
- background-color: #0C86D8;
- }
- .lr-modulelist-header .searchBox i {
- position: absolute;
- top: 8px;
- left: 10px;
- color: #fff;
- z-index: 1;
- font-size: 12px;
- }
- .lr-modulelist-header .searchBox .search {
- position: relative;
- width: 100%;
- height: 100%;
- border-radius: 3px;
- line-height: 30px;
- font-size: 14px;
- background-color: #3d9ee0;
- padding-left: 30px;
- color: #fff;
- }
- .lr-modulelist-page .lr-app-panel {
- position: relative;
- width: 100%;
- height: 100%;
- margin-bottom:10px;
- background-color:#fff;
- }
- .lr-modulelist-page .lr-app-panel .title {
- position: relative;
- width: 100%;
- height: 40px;
- line-height: 40px;
- font-size: 14px;
- color: #333333;
- padding-left: 10px;
- text-align: left;
- }
- .lr-modulelist-page .lr-app-panel .title button {
- position: absolute;
- right: 7px;
- top: 7px;
- height: 26px;
- line-height: 14px;
- }
- .lr-modulelist-page .lr-app-panel .title:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .lr-modulelist-page .lr-app-panel > .content {
- position: relative;
- width: 100%;
- min-height: 90px;
- background-color: #fff;
- padding: 10px 5px 0 5px;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- text-align: center;
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- }
- .lr-modulelist-page .appitem {
- position:relative;
- -webkit-box-flex: 0;
- -webkit-flex: 0 0 25%;
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- padding-bottom: 10px;
- }
- .lr-modulelist-page .appitem > div {
- margin: auto;
- margin-bottom: 5px;
- height: 45px;
- width: 45px;
- line-height: 45px;
- text-align: center;
- border-radius: 50%;
- }
- .lr-modulelist-page .appitem:nth-child(7n+1) > div {
- background-color: #62bbff;
- }
- .lr-modulelist-page .appitem:nth-child(7n+2) > div {
- background-color: #7bd2ff;
- }
- .lr-modulelist-page .appitem:nth-child(7n+3) > div {
- background-color: #ffd761;
- }
- .lr-modulelist-page .appitem:nth-child(7n+4) > div {
- background-color: #fe955c;
- }
- .lr-modulelist-page .appitem:nth-child(7n+5) > div {
- background-color: #ff6283;
- }
- .lr-modulelist-page .appitem:nth-child(7n+6) > div {
- background-color: #60e3f3;
- }
- .lr-modulelist-page .appitem:nth-child(7n) > div {
- background-color: #acc8fe;
- }
- .lr-modulelist-page .appitem i {
- color: #fff;
- font-size: 26px;
- }
- .lr-modulelist-page .appitem > span {
- font-size: 12px;
- color: #333;
- }
|