123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 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-table-header-cell {
- height: 55px !important;
- color: #8A8F99 !important;
- font-size: 14px !important;
- font-weight: normal !important;
- background: #f5f7fa !important;
- }
- .zy-table-cell {
- font-size: 14px !important;
- color: #1F2533 !important;
- }
- .zy-table-pagination {
- float: right;
- margin-top: 30px;
- }
- /* 模块通用样式 */
- .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;
- }
- /* 搜索框中表单样式 */
- .zy-search-form-item {
- width: 250px;
- display: inline-block;
- margin-right: 30px;
- margin-bottom: 10px !important;
- }
- /*颜色*/
- .green {
- color: #39b54a;
- }
- .red {
- color: #F56C6C;
- }
- .warning {
- color: #E6A23C;
- }
|