123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @red:#F01740;
- @grey: #666666;
- @orange: #FF8936;
- .title {
- font-weight: Medium;
- font-size: 36rpx;
- color: #222222;
- }
- .text-large {
- font-size: 36rpx;
- }
- .text {
- font-size: 30rpx;
- word-break: keep-all;
- }
- .text-small {
- font-size: 24rpx;
- word-break: keep-all;
- }
- .grey {
- color:#666666;
- }
- .orange {
- color:#FF8936;
- }
- .card {
- display: flex;
- // align-items: center;
- justify-content: space-between;
- .card-start{
- width: 100rpx;
- .start-image-wrapper {
- width: 80rpx;
- height: 80rpx;
- }
-
- .start-image {
- width: 100%;
- height: 100%;
- margin: 0 auto;
- border-radius: 50%;
-
- }
- }
- .card-end {
- display: flex;
- align-items: center;
- width: 120rpx;
- text-align: right;
- }
- .card-content {
- flex:1;
- }
- }
|