123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- .qzy-card {
- padding: 0upx 0upx;
- min-height: 88upx;
- border-radius: 16upx;
- background-color: rgba(255, 255, 255, 1);
- }
- .text-theme {
- color: #405eff;
- }
- .text-22 {
- font-size: 44upx;
- }
- .text-20 {
- font-size: 40upx;
- }
- .text-18 {
- font-size: 36upx;
- }
- .text-17 {
- font-size: 34upx;
- }
- .text-16 {
- font-size: 32upx;
- }
- .text-15 {
- font-size: 30upx;
- }
- .text-14 {
- font-size: 28upx;
- }
- .text-13 {
- font-size: 26upx;
- }
- .text-12 {
- font-size: 24upx;
- }
- .text-10 {
- font-size: 20upx;
- }
- .color-red {
- color: #ff6062;
- }
- .color-green {
- color: #00cda3;
- }
- .color-blue {
- color: #1eaeff;
- }
- .btn-blue {
- background: #407bfe;
- color: #fff;
- }
- .bg-white {
- background: #fff;
- }
- .text-500 {
- font-weight: 500;
- }
- .text-600 {
- font-weight: 600;
- }
- .text-bold {
- font-weight: bold;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- .cursor-not-allow {
- cursor: not-allowed;
- }
- .qzy-flex {
- display: flex;
- }
- .qzy-row {
- flex-direction: row;
- }
- .qzy-column {
- flex-direction: column;
- }
- .qzy-flex-wrap {
- flex-wrap: wrap;
- }
- .qzy-space-between {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .qzy-space-between-center {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .qzy-space-between-center-column {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .qzy-flex-start {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .qzy-flex-end {
- justify-content: flex-end;
- }
- .qzy-space-around {
- justify-content: space-around;
- }
- .qzy-flex-center {
- justify-content: center;
- }
- .qzy-align-items-center {
- align-items: center;
- }
- .qzy-center {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .qzy-align-items-flex-start {
- align-items: flex-start;
- }
- .margin-bottom-10 {
- margin-bottom: 10px;
- }
- .margin-top-10 {
- margin-top: 10px;
- }
- .margin-bottom-15 {
- margin-bottom: 15px;
- }
- .margin-left-10 {
- margin-left: 10px;
- }
- .margin-left-16 {
- margin-left: 16px;
- }
- .margin-left-20 {
- margin-left: 20px;
- }
- .margin-right-10 {
- margin-right: 10px;
- }
- .margin-right-20 {
- margin-right: 20px;
- }
- .color-666 {
- color: #666;
- }
- .color-999 {
- color: #999 !important;
- }
- .color-333 {
- color: #333 !important;
- }
- .tag-999 {
- background-color: rgba(202, 202, 202, 0.2) !important;
- color: #999 !important;
- }
- .color-red {
- color: #ff2f2f;
- }
- .color-blue {
- color: #1989fa;
- }
- .color-yellow {
- color: #fdaf27;
- }
- .tag-red {
- background-color: rgba(234, 76, 55, 0.2) !important;
- color: #ea4c37 !important;
- }
- .ellipsis-nowrap {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .ellipsis_2 {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .ellipsis_3 {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- }
|