1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- a {
- text-decoration: none;
- }
- ::-webkit-scrollbar {
- width: 7px;
- }
- ::-webkit-scrollbar-thumb {
- background: #b9b9b9;
- border-radius: 10px;
- }
- ::-webkit-scrollbar-track-piece {
- background: transparent;
- }
- /*自定义公共样式*/
- html, body {
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- overflow: hidden;
- }
- .zy-module {
- overflow: hidden;
- box-sizing: border-box;
- border-radius: 5px;
- width: 100%;
- background: white;
- padding: 20px;
- margin-bottom: 20px;
- }
- .zy-template {
- width: 100%;
- }
- .zy-main-title {
- width: 100%;
- height: 20px;
- font-size: 15px;
- overflow: hidden;
- line-height: 20px;
- margin-bottom: 20px;
- box-sizing: border-box;
- }
- .zy-main-title::after {
- border-radius: 5px;
- content: "";
- width: 4px;
- height: 100%;
- background: #0054FE;
- float: left;
- margin-right: 10px;
- }
|