| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- .mui-bar-nav~.mui-content {
- padding-top: 51px;
- }
- #timeSelect {
- background: #fff url(../images/calendar.png) no-repeat 10px center;
- background-size: 20px;
- padding-left: 30px;
- font-size: 16px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- height: 34px;
- border: 0;
- border-radius: 6px;
- line-height: 34px;
- color: #535353;
- }
- /*列表*/
- ul {
- padding: 0;
- list-style: none;
- }
- #dataList>li {
- border-left: 1px dashed #b8b8b8;
- margin-left: 20px;
- padding-bottom: 10px;
- }
- .equipItem {
- margin: 0 20px 0px 18px;
- position: relative;
- background: #fff;
- border-radius: 7px;
- padding: 12px;
- }
- .equipItem:before {
- position: absolute;
- top: 20px;
- left: -25px;
- width: 12px;
- height: 12px;
- border-radius: 50%;
- content: '';
- }
- .equipItem:after {
- position: absolute;
- top: 18px;
- left: -7px;
- width: 0;
- height: 0;
- content: '';
- background-size: 100% 100%;
- border: 8px solid #fff;
- border-left-color: transparent;
- border-top-color: transparent;
- transform: rotate(-225deg);
- }
- .upl_time {
- font-size: 16px;
- line-height: 30px;
- font-weight: bold;
- }
- .equipItem:active {
- background-color: #e4e3e3 !important;
- }
- .equipItem:active.equipItem:after {
- border: 8px solid #e4e3e3;
- border-left-color: transparent;
- border-top-color: transparent;
- }
- /*皮肤*/
- .blue:before {
- background: #00b9fe;
- }
- .blue .upl_time {
- color: #00b9fe;
- }
- .purple:before {
- background: #c8c6f7;
- }
- .purple .upl_time {
- color: #c8c6f7;
- }
- .searchBox {
- position: fixed;
- left: 0;
- right: 0;
- z-index: 222;
- padding: 0;
- }
- .mescroll {
- position: fixed;
- top: 100px;
- bottom: 0;
- height: auto;
- /*如设置bottom:50px,则需height:auto才能生效*/
- }
|