123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- page {
- min-height: 100%;
- background: linear-gradient(180deg, #FFFFFF, #F2F2F2);
- }
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .card {
- width: 100%;
- min-height: 292rpx;
- background: linear-gradient(43deg, #E77E1E, #FF5E45);
- border-radius: 24rpx;
- padding: 24rpx 42rpx 14rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .card-label {
- color: #FAE6D7;
- font-size: 28rpx;
- }
- .card-middle {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .money {
- color: #FFFFFF;
- font-size: 40rpx;
- }
- .money text {
- font-size: 70rpx;
- font-weight: bold;
- }
- .btn {
- width: 182rpx;
- height: 64rpx;
- line-height: 64rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #FFFFFF;
- border-radius: 100rpx;
- color: #F2501A;
- font-size: 28rpx;
- }
- .card-bottom {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .card-bottom-row {
- display: flex;
- flex-direction: column;
- }
- .card-bottom-row-label {
- font-size: 30rpx;
- color: rgba(255, 255, 255, 0.8);
- margin-bottom: 5rpx;
- }
- .small-money {
- color: #fff;
- font-size: 30rpx;
- }
- .small-money text {
- font-size: 40rpx;
- font-weight: bold;
- }
- .password-msg {
- color: #FEF2EE;
- font-size: 24rpx;
- }
- .bottom {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .row-between {
- width: 100%;
- height: 82rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .row-label {
- color: #F6793F;
- font-size: 32rpx;
- }
- .tab-list {
- display: flex;
- align-items: center;
- padding-right: 5rpx;
- }
- .child {
- display: flex;
- align-items: center;
- font-size: 30rpx;
- color: #A7A7A7;
- margin-right: 60rpx;
- }
- .child text {
- font-size: 38rpx;
- margin-left: 10rpx;
- }
- .child:last-child {
- margin-right: 0;
- }
- .child.active {
- color: #F2501A;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .item {
- width: 100%;
- display: flex;
- flex-direction: column;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- padding: 0 24rpx 24rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .item-top {
- width: 100%;
- display: flex;
- align-items: center;
- padding: 32rpx 0;
- }
- .item-avatar {
- width: 76rpx;
- height: 76rpx;
- border-radius: 50%;
- margin-right: 30rpx;
- }
- .item-top-column {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .item-top-name {
- width: 100%;
- color: #000000;
- font-size: 32rpx;
- margin-bottom: 10rpx;
- }
- .item-top-msg {
- width: 100%;
- color: #A7A7A7;
- font-size: 24rpx;
- }
- .item-bottom {
- width: 100%;
- display: flex;
- align-items: center;
- }
- .item-img {
- width: 186rpx;
- height: 186rpx;
- border-radius: 12rpx;
- margin-right: 24rpx;
- }
- .item-bottom-sidebar {
- flex: 1;
- height: 186rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .item-bottom-sidebar-top {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .product-name {
- width: 60%;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- font-size: 26rpx;
- color: #202020;
- }
- .product-column-row {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- .product-column-row text:first-child {
- color: #202020;
- font-size: 26rpx;
- }
- .product-column-row text:last-child {
- color: #A7A7A7;
- font-size: 24rpx;
- }
- .product-tag {
- width: 100%;
- color: #A7A7A7;
- font-size: 24rpx;
- }
- .item-bottom-sidebar-bottom {
- width: 100%;
- text-align: right;
- color: #F2501A;
- }
- .font {
- font-size: 26rpx;
- margin-right: 8rpx;
- }
- .price {
- font-size: 24rpx;
- }
- .price text {
- font-size: 40rpx;
- font-weight: bold;
- }
|