123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- .wux-card {
- position: relative;
- min-height: 192rpx;
- padding-bottom: 12rpx;
- display: flex;
- flex-direction: column;
- background-color: #fff
- }
- .wux-card--hover {
- background-color: #ececec
- }
- .wux-card--bordered {
- border-radius: 20rpx
- }
- .wux-card--bordered::before {
- content: " ";
- position: absolute;
- top: 0;
- left: 0;
- width: 200%;
- height: 200%;
- transform: scale(.5);
- transform-origin: 0 0;
- pointer-events: none;
- box-sizing: border-box;
- border: 0 solid #d9d9d9;
- border-radius: 20rpx;
- border-top-width: 1PX;
- border-right-width: 1PX;
- border-bottom-width: 1PX;
- border-left-width: 1PX
- }
- .wux-card--full {
- border-radius: 0
- }
- .wux-card--full::before {
- border-radius: 0;
- border-right-width: 0;
- border-left-width: 0
- }
- .wux-card--has-actions {
- padding-bottom: 0
- }
- .wux-card__hd {
- position: relative;
- display: flex;
- font-size: 34rpx;
- padding: 18rpx 30rpx;
- align-items: center
- }
- .wux-card__hd::before {
- content: " ";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1PX;
- border-bottom: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 0 100%;
- transform: scaleY(.5)
- }
- .wux-card__content {
- flex: 1;
- text-align: left;
- color: #000
- }
- .wux-card__thumb {
- width: 64rpx;
- height: 64rpx;
- display: inline-block;
- position: relative;
- margin-left: auto;
- margin-right: 10rpx;
- overflow: hidden;
- vertical-align: middle
- }
- .wux-card__extra {
- flex: 1;
- text-align: right;
- font-size: 34rpx;
- color: rgba(0,0,0,.45)
- }
- .wux-card__bd {
- position: relative;
- padding: 30rpx 30rpx 12rpx;
- font-size: 30rpx;
- color: rgba(0,0,0,.85);
- min-height: 80rpx
- }
- .wux-card__ft {
- display: flex;
- font-size: 28rpx;
- color: rgba(0,0,0,.45);
- padding: 0 30rpx
- }
- .wux-card__actions {
- position: relative;
- display: flex;
- line-height: 100rpx;
- margin-top: 12rpx;
- justify-content: center;
- align-items: center
- }
- .wux-card__actions::before {
- content: " ";
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- height: 1PX;
- border-top: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 0 0;
- transform: scaleY(.5)
- }
- .wux-card__action {
- position: relative;
- display: block;
- flex: 1;
- color: #33cd5f;
- text-align: center
- }
- .wux-card__action::before {
- content: " ";
- position: absolute;
- right: 0;
- top: 0;
- width: 1PX;
- bottom: 0;
- border-right: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 100% 0;
- transform: scaleX(.5)
- }
- .wux-card__action:last-child::before {
- display: none
- }
- .wux-card__action--default {
- color: #444!important
- }
- .wux-card__action--primary {
- color: #33cd5f!important
- }
- .wux-card__action--light {
- color: #ddd!important
- }
- .wux-card__action--stable {
- color: #b2b2b2!important
- }
- .wux-card__action--positive {
- color: #387ef5!important
- }
- .wux-card__action--calm {
- color: #11c1f3!important
- }
- .wux-card__action--assertive {
- color: #ef473a!important
- }
- .wux-card__action--balanced {
- color: #33cd5f!important
- }
- .wux-card__action--energized {
- color: #ffc900!important
- }
- .wux-card__action--royal {
- color: #886aea!important
- }
- .wux-card__action--dark {
- color: #444!important
- }
- .wux-card__action--bold {
- font-weight: 500!important
- }
- .wux-card__action--hover {
- background-color: #ececec!important
- }
- .wux-card__action--disabled {
- opacity: .3
- }
|