123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* templates/nodata/nodata.wxss */
- .nodata,
- .nodata-three,
- .nodata-four,
- .nodata-five {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- margin: 280rpx auto;
- }
- .nodata-four {
- margin: 360rpx auto;
- }
- .nodata-five {
- margin: 200rpx auto;
- }
- .nodata-image {
- width: 357rpx;
- height: 276rpx;
- margin-bottom: 20rpx;
- }
- .nodata-three-image {
- width: 357rpx;
- height: 276rpx;
- margin-bottom: 15rpx;
- }
- .nodata-four-image {
- width: 287rpx;
- height: 241rpx;
- margin-bottom: 27rpx;
- }
- .nodata-five-image {
- width: 610rpx;
- height: 390rpx;
- margin-bottom: 27rpx;
- }
- .nodata-three-text {
- font-size: 36rpx;
- color: #393939;
- }
- .nodata-four-text,
- .nodata-five-text {
- color: #7E7E7E;
- font-size: 36rpx;
- }
- .nodata-two {
- font-size: 24rpx;
- color: #CCCCCC;
- margin: 40rpx 30rpx;
- text-align: center;
- position: relative;
- }
- .nodata-two::before {
- position: absolute;
- content: '';
- top: 16rpx;
- margin-left: -152rpx;
- width: 112rpx;
- height: 2rpx;
- background: #CCCCCC;
- }
- .nodata-two::after {
- position: absolute;
- content: '';
- top: 16rpx;
- margin-left: 35rpx;
- width: 112rpx;
- height: 2rpx;
- background: #CCCCCC;
- }
|