1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- @charset "utf-8";
- #product-data-history {
- .list {
- height: 100%;
- .am-list-body {
- padding: 15px;
- }
- .am-list-body::before {
- background: none;
- }
- .am-list-body::after {
- background: none;
- }
- }
- .list {
- .item {
- border-bottom: 1px solid #eee;
- position: relative;
- padding-top: 20px;
- padding-bottom: 15px;
- .title {
- font-size: 16px;
- color: #303036;
- margin-bottom: 10px;
- .date {
- float: right;
- color: #686872;
- font-size: 14px;
- }
- }
- .tip {
- color: #686872;
- font-size: 12px;
- .new {
- margin-right: 5px;
- .g-tag {
- background: #FFC800;
- border: none;
- }
- }
- }
- .desc {
- font-size: 12px;
- color: #686872;
- margin-top: 10px;
- margin-bottom: 15px;
- }
- .drop {
- width: 22px;
- height: 22px;
- position: absolute;
- bottom: 15px;
- right: 0;
- }
- }
- }
- .empty {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: #999999;
- }
- }
|