123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /* 字体颜色 */
- .text-primary {
- color: #1890ff !important;
- }
- .text-green{
- color: #55aa00 !important;
- }
- .text-green2{
- color: #44BA93 !important;
- }
- .text-orange {
- color: orangered !important;
- }
- .text-error {
- color: red !important;
- }
- .text-gry {
- color: #888 !important;
- }
- .text-warning {
- color: #ffc107 !important;
- }
- .text-gry2 {
- color: #666666 !important;
- }
- .text-gry3 {
- color: #555555 !important;
- }
- .text-white {
- color: #FFFFFF !important;
- }
- .text-white1 {
- color: #e7e7e7 !important;
- }
- .text-dark{
- color: #000 !important;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- /* 背景色 */
- .bg-white {
- background-color: #FFFFFF;
- }
- .bg-gry{
- background-color: #e3e3e3 !important;
- }
- .bg-gry2{
- background-color: #F7F7F7 !important;
- }
- .bg-green{
- background-color: #6cd800 !important;
- }
- .bg-primary {
- background-color: #1890ff !important;
- }
- .bg-error {
- background-color: #FF6767 !important;
- }
- .bg-white2{
- background-color: #f7f8fa !important;
- }
- /* 字体 */
- .fs-8 {
- font-size: 8px !important;
- }
- .fs-10 {
- font-size: 10px !important;
- }
- .fs-12 {
- font-size: 12px !important;
- }
- .fs-14 {
- font-size: 14px !important;
- }
- .fs-16 {
- font-size: 16px !important;
- }
- .fs-18 {
- font-size: 18px !important;
- }
- .fs-20 {
- font-size: 20px !important;
- }
- .fs-22 {
- font-size: 22px !important;
- }
- .fs-24 {
- font-size: 24px !important;
- }
- .fs-26 {
- font-size: 26px !important;
- }
- .fs-28 {
- font-size: 28px !important;
- }
- .fs-30 {
- font-size: 30px !important;
- }
- .fs-40 {
- font-size: 40px !important;
- }
- /* border */
- .border-primary {
- border-color: #007bff !important;
- }
- .border-secondary {
- border-color: #6c757d !important;
- }
- .border-success {
- border-color: #28a745 !important;
- }
- .border-info {
- border-color: #17a2b8 !important;
- }
- .border-warning {
- border-color: #ffc107 !important;
- }
- .border-danger {
- border-color: #dc3545 !important;
- }
- .border-light {
- border-color: #f8f9fa !important;
- }
- .border-dark {
- border-color: #343a40 !important;
- }
- .border-white {
- border-color: #fff !important;
- }
- .border-light2 {
- border-color: #e6e6e7 !important;
- }
- .box-shadow{
- box-shadow: 1px 1px 10px 1px #dddddd;
- }
|