123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* pages/luckDraw/recordPrize.wxss */
- page{
- background: #F7F7F7;
- display:flex;
- flex-flow: column nowrap;
- justify-content: left;
- align-items: center;
- box-sizing: border-box;
- padding-top: 22rpx;
- }
- /* 垂直方向布局,水平居中 **/
- .flex-column{
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- justify-content: left;
- }
- /* 水平方向布局,垂直居中 **/
- .flex-row{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- }
- .record{
- width: 707rpx;
- height: 203rpx;
- background-image: url(https://dy.shpr.top/welfareGo/luck-draw.png);
- background-size: 100% 100%;
- justify-content: space-between;
- margin-bottom: 19rpx;
- }
- .no-record{
- width: 707rpx;
- height: 203rpx;
- background-image: url(https://dy.shpr.top/welfareGo/no-luck-draw.png);
- background-size: 100% 100%;
- justify-content: space-between;
- margin-bottom: 19rpx;
- }
- .record-title,.record-data{
- padding-left: 49rpx;
- }
- .record-data{
- width: 400rpx;
- justify-content: space-between;
- margin-top: 45rpx;
- }
- .record-title{
- width: 400rpx;
- height: 40rpx;
- font-size: 34rpx;
- font-weight: bold;
- color: #000000;
- line-height: 30rpx;
- }
- .record-data-time{
- font-size: 26rpx;
- font-weight: 400;
- color: #000000;
- line-height: 30rpx;
- }
- .record-img{
- width: 202rpx;
- height: 203rpx;
- justify-content: center;
- }
- .record-img-url{
- width: 178rpx;
- height: 166rpx;
- }
- .no-record-img-url{
- width: 119rpx;
- height: 127rpx;
- }
- .record-refund{
- width: 139rpx;
- height: 40rpx;
- border: 1px solid #B01717;
- border-radius: 50rpx;
- }
- .lower-record-text{
- font-size: 22rpx;
- font-weight: 500;
- color: #B01717;
- }
- .no_result {
- font-size: 24rpx;
- color: #B1B1B1;
- line-height: 100rpx;
- font-weight: 1000;
- text-align: center;
- }
|