123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- @charset "utf-8";
- @base_color: #444444;
- @empty_color: #fff;
- @base_bg_color: #f0f0f0;
- @admin_bg_color: #f0f2f5;
- @base_size: 14px;
- @second_color: #999999;
- @second_bg_color: #f5f5f5;
- @select_bg_color: #e5e5e5;
- @small_size: 12px;
- @shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.18);
- @border: 1px solid #e1e1e1;
- @light_color: #777777;
- @holder_color: #bbbbbb;
- @theme_color: rgb(24, 144, 255);
- @theme_shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
- @theme_second_color: rgb(230, 247, 255);
- @error_bg_color: #fff1f0;
- @error_color: #f5222d;
- @error_shadow: 0 0 0 1px #f85a62;
- @magenta: #fff0f6;
- @red: #fff1f0;
- @volcano: #fff2e8;
- @orange: #fff7e6;
- @gold: #fffbe6;
- @lime: #fcffe6;
- @green: #f6ffed;
- @cyan: #e6fffb;
- @blue: #e6f7ff;
- @geekblue: #f0f5ff;
- @purple: #f9f0ff;
- .theme,
- .theme a,
- .theme a:hover {
- color: @theme_color;
- }
- .t-l {
- text-align: left;
- }
- .t-r {
- text-align: right;
- }
- .t-c {
- text-align: center;
- }
- .f-l {
- float: left;
- }
- .f-r {
- float: right;
- }
- .p-a {
- position: absolute;
- }
- .d-i-b {
- display: inline-block;
- }
- .m-l-5 {
- margin-left: 5px;
- }
- .m-l-1 {
- margin-left: 10px;
- }
- .m-l-2 {
- margin-left: 20px;
- }
- .m-r-5 {
- margin-right: 5px;
- }
- .m-r-1 {
- margin-right: 10px;
- }
- .m-r-2 {
- margin-right: 10px;
- }
- .m-t-5 {
- margin-top: 5px;
- }
- .m-t-1 {
- margin-top: 10px;
- }
- .m-t-2 {
- margin-top: 20px;
- }
- .m-b-5 {
- margin-bottom: 5px;
- }
- .m-b-1 {
- margin-bottom: 10px;
- }
- .m-b-2 {
- margin-bottom: 20px;
- }
- .p-l-5 {
- padding-left: 5px;
- }
- .p-l-1 {
- padding-left: 10px;
- }
- .p-l-2 {
- padding-left: 20px;
- }
- .p-r-5 {
- padding-right: 5px;
- }
- .p-r-1 {
- padding-right: 10px;
- }
- .p-r-2 {
- padding-right: 10px;
- }
- .p-t-5 {
- padding-top: 5px;
- }
- .p-t-1 {
- padding-top: 10px;
- }
- .p-t-2 {
- padding-top: 20px;
- }
- .p-b-5 {
- padding-bottom: 5px;
- }
- .p-b-1 {
- padding-bottom: 10px;
- }
- .p-b-2 {
- padding-bottom: 20px;
- }
- .c-p {
- cursor: pointer;
- }
- .w-1 {
- width: 10%;
- }
- .w-2 {
- width: 20%;
- }
- .w-3 {
- width: 30%;
- }
- .w-4 {
- width: 40%;
- }
- .w-5 {
- width: 50%;
- }
- input,
- textarea {
- outline: none;
- }
- input::-webkit-input-placeholder,
- textarea::-webkit-input-placeholder {
- color: @holder_color;
- }
- .d-i-b {
- display: inline-block;
- overflow: hidden;
- }
- .nowrap {
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- body {
- color: @base_color;
- font-size: @base_size;
- line-height: 1.7;
- font-family: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Hiragino Sans GB', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: subpixel-antialiased;
- background: @base_bg_color;
- }
- * {
- box-sizing: border-box;
- }
- html,
- body,
- #root {
- margin: 0;
- padding: 0;
- }
|