12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .receiving {
- width: 100vw;
- min-height: 100vh;
- background-color: rgb(247, 247, 247);
- position: relative;
- .empty {
- position: absolute;
- top: 176rpx;
- left: 50%;
- transform: translateX(-50%);
- @include flex(center, column, 0);
- image {
- width: 320rpx;
- height: 320rpx;
- display: block;
- }
- text {
- color: rgba(0, 0, 0, 0.4);
- font-size: 28rpx;
- font-weight: 500;
- margin: 32rpx 0 48rpx;
- }
- .btn {
- width: 246rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- background-color: #fe4b1e;
- border-radius: 16rpx;
- color: #ffffff;
- font-size: 28rpx;
- }
- }
- .receiving-box {
- width: 100%;
- // padding-top: 32rpx;
- padding: 32rpx;
- box-sizing: border-box;
- .receiving-title {
- width: 100%;
- margin-bottom: 16rpx;
- color: rgba(0, 0, 0, 0.9);
- font-size: 32rpx;
- font-weight: 600;
- }
- .receiving-card {
- width: 100%;
- padding-right: 8rpx;
- box-sizing: border-box;
- .card-box {
- width: 100%;
- height: 270rpx;
- padding: 0 32rpx;
- padding-top: 32rpx;
- box-sizing: border-box;
- background-color: #C22525;
- border-radius: 16rpx;
- position: relative;
- .card-title{
- @include flex(space-between, null);
- text{
- color: #FFFFFF;
- font-size: 32rpx;
- font-size: 500;
- }
- }
- .card-eye{
- margin-top: 24rpx;
- @include flex(flex-start,null,18rpx);
- padding-bottom: 26rpx;
- border-bottom: 2rpx solid rgba(255, 255, 255, 0.2);
- text{
- color: #FFFFFF;
- font-size: 32rpx;
- font-size: 500;
- }
- }
- .card-prople{
- margin-top: 24rpx;
- font-size: 28rpx;
- position: absolute;
- left: 32rpx;
- bottom: 30rpx;
- text{
- &:nth-of-type(1){
- color: rgba(255, 255, 255, 0.4);
- }
- &:nth-of-type(2){
- color: #FFFFFF;
- margin-left: 100rpx;
- }
- }
- }
- }
- }
- }
- }
|