| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*列表*/
- .equipItem {
- margin: 0 15px 10px;
- background: #fff;
- border-radius: 7px;
- }
- .equipItem_top,
- .equipItem_bottom {
- padding: 0 10px;
- }
- .equipItem_top {
- position: relative;
- height: 60px;
- }
- .equipTitle {
- border-bottom: 1px dashed #ccc;
- height: 45px;
- line-height: 45px;
- }
- .equipTitle img {
- vertical-align: middle;
- }
- .equipIdIcon {
- margin-right: 5px;
- }
- .equipType {
- float: right;
- margin-top: 8px;
- }
- .equipItem_line {
- position: absolute;
- bottom: 5px;
- left: 0;
- right: 0;
- }
- .equipItem_line:before,
- .equipItem_line:after {
- position: absolute;
- bottom: 5px;
- width: 15px;
- height: 15px;
- border-radius: 50%;
- content: '';
- background: #efeff4;
- }
- .equipItem_line:before {
- left: -6px;
- }
- .equipItem_line:after {
- right: -6px;
- }
- .equipItem_bottom {
- padding-bottom: 10px;
- }
- .equipMsg {
- text-align: right;
- line-height: 28px;
- }
- .equipMsg>label {
- float: left;
- color: #ccc;
- }
- ul {
- padding: 0;
- }
- .mescroll {
- position: fixed;
- top: 73px;
- bottom: 0;
- height: auto;
- /*如设置bottom:50px,则需height:auto才能生效*/
- }
|