1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- @charset "utf-8";
- #textbook {
- .tip {
- background: #7660A4;
- color: #fff;
- line-height: 36px;
- font-size: 12px;
- padding: 0 10px;
- }
- .list {
- padding: 0 15px;
- .log-title {
- padding: 10px 0;
- color: #A7A7B7;
- font-size: 12px;
- }
- .item {
- border-bottom: 1px solid #eee;
- position: relative;
- padding-top: 5px;
- padding-bottom: 10px;
- .title {
- font-size: 14px;
- color: #303036;
- margin-bottom: 10px;
- .date {
- float: right;
- color: #686872;
- font-size: 12px;
- }
- }
- .desc {
- font-size: 12px;
- color: #686872;
- margin-bottom: 15px;
- }
- }
- }
- .empty {
- position: fixed;
- top: 40%;
- text-align: center;
- color: #999999;
- width: 100%;
- .text {
- margin-bottom: 20px;
- }
- }
- .fixed {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- }
- }
|