|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- /* pages/prizes/prizes.wxss */
- image{
- display: block;
- }
- view{
- -webkit-overflow-scrolling: touch;
- }
- .main{
- height: calc(100vh - 150rpx);
- overflow: auto;
- padding-top: 222rpx;
- padding-bottom: 152rpx;
- box-sizing: border-box;
- }
- .prizeTitle{
- width:710rpx;
- height:70rpx;
- background-color: #17528A;
- border-radius: 20rpx;
- margin: 0 auto;
- line-height: 70rpx;
- text-align: center;
- font-size:30rpx;
- font-family:PingFang;
- font-weight:500;
- color:rgba(255,255,255,1);
- }
- .ticketGroup{
- padding: 0 45rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top:35rpx;
- }
- .prizeTicket{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .prizeTicketPic{
- width: 206rpx;
- height: 83rpx;
- }
- .prizeTicketName{
- font-size:20rpx;
- line-height: 20rpx;
- font-family:PingFang;
- font-weight:400;
- color:rgba(35,33,34,1);
- margin-top: 30rpx;
- }
- .thirdAward{
- width:128rpx;
- height:30rpx;
- background-color: #17528A;
- font-size:18rpx;
- line-height: 30rpx;
- font-family:PingFang;
- font-weight:400;
- color:rgba(255,255,255,1);
- border-radius: 20rpx;
- text-align: center;
- margin-top: 65rpx;
- margin-left: 45rpx;
- }
- .thirdAwardGroup{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 45rpx;
- }
- .threeFrame{
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 45rpx;
- }
- .threeGroup{
- width: 168rpx;
- height: 191rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .three1{
- width: 86rpx;
- height: 191rpx;
- }
- .three2{
- width: 168rpx;
- height: 168rpx;
- }
- .three3{
- width: 147rpx;
- height: 166rpx;
- }
- .threeText{
- line-height: 20rpx;
- font-size:20rpx;
- font-family:PingFang;
- font-weight:400;
- color:rgba(35,33,34,1);
- margin-top: 30rpx;
- }
- .introductionGroup{
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- padding: 0 45rpx;
- }
- .introduction{
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-top: 15rpx;
- }
- .introductionPic{
- width: 194rpx;
- height: 107rpx;
- margin-bottom: 26rpx;
- margin-top: 30rpx;
- }
- .introductionText{
- font-size:20rpx;
- line-height: 20rpx;
- font-family:PingFang;
- font-weight:400;
- color:rgba(35,33,34,1);
- }
- .immediateFetching{
- position: fixed;
- left: 0;
- bottom: 150rpx;
- width: 750rpx;
- padding-top: 37rpx;
- padding-bottom: 45rpx;
- background-color: white;
- }
- .firstPrize{
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 35rpx;
- }
- .firstPrizePic{
- width:460rpx;
- height:172rpx;
- }
- .firstPrizeText{
- line-height: 28rpx;
- font-size:28rpx;
- font-family:PingFang;
- font-weight:400;
- color:rgba(35,33,34,1);
- margin-top: 30rpx;
- }
- .prizeTitleFrame{
- position: fixed;
- top: 0;
- left: 0;
- padding-top: 87rpx;
- padding-bottom:65rpx;
- background-color: white;
- width: 750rpx;
- }
|