12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- @charset "utf-8";
- #textbook-topic-detail {
- background: #fff;
- min-height: 100%;
- .content {
- width: 1140px !important;
- }
- .top {
- padding: 8px 0;
- height: 60px;
- line-height: 44px;
- }
- .center {
- padding-bottom: 100px;
- position: relative;
- .prev {
- position: absolute;
- left: -100px;
- top: 100px;
- cursor: pointer;
- }
- .next {
- position: absolute;
- right: -100px;
- top: 100px;
- cursor: pointer;
- }
- .detail {
- padding: 20px 0;
- border-bottom: 1px solid #eee;
- .t {
- border-left: 6px solid #7876FCFF;
- line-height: 14px;
- padding-left: 10px;
- }
- }
- }
- }
|