123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- /* color start*/
- .tui-primary {
- background: #5677fc !important;
- color: #fff;
- }
- .tui-light-primary {
- background: #5c8dff !important;
- color: #fff;
- }
- .tui-dark-primary {
- background: #4a67d6 !important;
- color: #fff;
- }
- .tui-dLight-primary {
- background: #4e77d9 !important;
- color: #fff;
- }
- .tui-danger {
- background: #ed3f14 !important;
- color: #fff;
- }
- .tui-red {
- background: #ff201f !important;
- color: #fff;
- }
- .tui-warning {
- background: #ff7900 !important;
- color: #fff;
- }
- .tui-green {
- background: #19be6b !important;
- color: #fff;
- }
- .tui-high-green {
- background: #52dcae !important;
- color: #52dcae;
- }
- .tui-black {
- background: #000 !important;
- color: #fff;
- }
- .tui-white {
- background: #fff !important;
- color: #333 !important;
- }
- .tui-translucent {
- background: rgba(0, 0, 0, 0.7);
- }
- .tui-light-black {
- background: #333 !important;
- }
- .tui-gray {
- background: #ededed !important;
- }
- .tui-phcolor-gray {
- background: #ccc !important;
- }
- .tui-divider-gray {
- background: #eaeef1 !important;
- }
- .tui-btn-gray {
- background: #ededed !important;
- color: #999 !important;
- }
- .tui-hover-gray {
- background: #f7f7f9 !important;
- }
- .tui-bg-gray {
- background: #fafafa !important;
- }
- .tui-light-blue {
- background: #ecf6fd;
- color: #4dabeb !important;
- }
- .tui-light-brownish {
- background: #fcebef;
- color: #8a5966 !important;
- }
- .tui-light-orange {
- background: #fef5eb;
- color: #faa851 !important;
- }
- .tui-light-green {
- background: #e8f6e8;
- color: #44cf85 !important;
- }
- .tui-primary-outline::after {
- border: 1px solid #5677fc !important;
- }
- .tui-primary-outline {
- color: #5677fc !important;
- background: none;
- }
- .tui-danger-outline {
- color: #ed3f14 !important;
- background: none;
- }
- .tui-danger-outline::after {
- border: 1px solid #ed3f14 !important;
- }
- .tui-red-outline {
- color: #ff201f !important;
- background: none;
- }
- .tui-red-outline::after {
- border: 1px solid #ff201f !important;
- }
- .tui-warning-outline {
- color: #ff7900 !important;
- background: none;
- }
- .tui-warning-outline::after {
- border: 1px solid #ff7900 !important;
- }
- .tui-green-outline {
- color: #44cf85 !important;
- background: none;
- }
- .tui-green-outline::after {
- border: 1px solid #44cf85 !important;
- }
- .tui-high-green-outline {
- color: #52dcae !important;
- background: none;
- }
- .tui-high-green-outline::after {
- border: 1px solid #52dcae !important;
- }
- .tui-gray-outline {
- color: #999 !important;
- background: none;
- }
- .tui-gray-outline::after {
- border: 1px solid #ccc !important;
- }
- .tui-black-outline {
- color: #333 !important;
- background: none;
- }
- .tui-black-outline::after {
- border: 1px solid #333 !important;
- }
- .tui-white-outline {
- color: #fff !important;
- background: none;
- }
- .tui-white-outline::after {
- border: 1px solid #fff !important;
- }
- /* color end*/
- /* tag start*/
- .tui-tag {
- padding: 16rpx 26rpx;
- font-size: 28rpx;
- border-radius: 6rpx;
- /* display: inline-block;
- vertical-align: middle; */
- line-height: 28rpx;
- }
- .tui-tag-small {
- padding: 10rpx 16rpx;
- font-size: 24rpx;
- border-radius: 6rpx;
- /* display: inline-block;
- vertical-align: middle; */
- line-height: 24rpx;
- }
- .tui-tag-outline {
- position: relative;
- background: none;
- color: #5677fc;
- }
- .tui-tag-outline::after {
- content: "";
- position: absolute;
- width: 200%;
- height: 200%;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- -webkit-transform: scale(0.5, 0.5);
- transform: scale(0.5, 0.5);
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- left: 0;
- top: 0;
- border-radius: 80rpx;
- border: 1px solid #5677fc;
- }
- .tui-tag-fillet {
- border-radius: 50rpx;
- }
- .tui-white.tui-tag-fillet::after {
- border-radius: 80rpx;
- }
- .tui-tag-outline-fillet::after {
- border-radius: 80rpx;
- }
- .tui-tag-fillet-left {
- border-radius: 50rpx 0 0 50rpx;
- }
- .tui-tag-fillet-right {
- border-radius: 0 50rpx 50rpx 0;
- }
- .tui-tag-fillet-left.tui-tag-outline::after {
- border-radius: 100rpx 0 0 100rpx;
- }
- .tui-tag-fillet-right.tui-tag-outline::after {
- border-radius: 0 100rpx 100rpx 0;
- }
- /* tag end*/
|