123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- @import "~@less/mixin.less";
- @import "~@less/variables.less";
- .mainHistory {
- .maskZIndex;
- position: fixed;
- margin-left: -500px;
- left: 50%;
- width: 1000px;
- top: 7%;
- bottom: 7%;
- height: 86%;
- background-color: #fff;
- overflow: hidden;
- .close {
- position: absolute;
- top: 0;
- right: 0;
- cursor: pointer;
- .contentZIndex1
- }
- .mainHistoryLeft {
- width: 300px;
- height: 100%;
- background: #d2d1d1;
- position: relative;
- float: left;
- padding-top: 80px;
- .title {
- height: 80px;
- line-height: 80px;
- padding: 0 20px;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- background: #d2d1d1;
- }
- .his {
- font-size: 18px;
- }
- .sort {
- float: right;
- cursor: pointer;
- img {
- vertical-align: middle;
- width: 15px;
- height: 15px;
- }
- }
- .lists {
- box-sizing: border-box;
- overflow-y: auto;
- height: 100%;
- span {
- display: inline-block;
- max-width: 120px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- li {
- height: 54px;
- line-height: 54px;
- padding: 0 10px;
- font-size: 14px;
- cursor: pointer;
- border: 1px solid transparent;
- }
- li:hover {
- border: 1px solid #66afe9;
- border: 1px solid #66afe9\0;
- }
- .time {
- float: right;
- }
- .bgc {
- background-color: #fff;
- }
- .quote {
- width: 50px;
- height: 22px;
- line-height: 22px;
- border-radius: 15px;
- border: 0 none;
- color: #fff;
- background-color: @template-color;
- float: right;
- margin-top: 16px;
- font-size: 12px;
- // display: none;
- outline: none;
- margin-left: 10px;
- }
- .quoteShow {
- display: block;
- }
- .quoteHide {
- display: none;
- }
- }
- }
- .mainHistoryRight {
- // margin-left: 300px;
- // position: absolute;
- overflow: auto;
- height: 100%;
- padding-top: 40px;
- // top: 42px;
- float: left;
- }
- .closeHis {
- width: 700px;
- height: 40px;
- margin-left: 300px;
- position: absolute;
- .contentZIndex1;
- // border-bottom: 1px solid #EAEDF1;
- }
- }
- .center {
- text-align: center;
- font-size: 16px;
- padding-top: 10px;
- padding-bottom: 50px;
- }
|