123456789101112131415161718192021222324252627282930313233343536 |
- @charset "utf-8";
- #read {
- height: 100%;
- background: rgba(221, 227, 237, 1);
- .layout {
- height: 100%;
- .layout-body {
- width: 1000px;
- margin: 0 auto;
- height: 100%;
- overflow: hidden;
- overflow-y: auto;
- background: #fff;
- padding: 20px 30px;
- .crumb {
- color: #5E677B;
- margin-bottom: 5px;
- }
- .title {
- color: #000000;
- font-size: 20px;
- font-weight: 600;
- margin-bottom: 40px;
- }
- .text {
- color: #000000;
- }
- }
- }
- }
|