1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- Page {
- width: 100%;
- height: 100%;
- background-color: #BF2637;
- box-sizing: border-box;
- padding-top: 102px;
- /* padding-left: 26px; */
- }
- .info{
- width: 100%;
- height: 428px;
- /* margin-top: 102px; */
- align-items: center;
- /* margin-left: 26px; */
- }
- .top{
- height: 46px;
- width: 327px;
- background: #EEEEEE;
- border-radius: 5px 5px 10px 10px;
- }
- .contain{
- width: 100%;
- height: 100%;
- justify-content: center!important;
- }
- .top-image{
- width: 142px;
- height: 25px;
- margin-left: 19px;
- }
- .bottom{
- width: 327px;
- height: 382px;
- background: #FFFFFF;
- border-radius: 10px 10px 5px 5px;
- box-sizing: border-box;
- padding:31px 13px;
- align-items: center;
- }
- .title{
- width: 300px;
- height: 24px;
- font-size: 24px;
- font-weight: bold;
- color: #444444;
- text-align: center;
- line-height: 24px;
- }
- .coupon-info{
- width: 300px;
- height: 18px;
- font-size: 16px;
- font-weight: 400;
- color: #444444;
- text-align: center;
- line-height: 18px;
- margin-top: 15px;
- }
- .qrcode-img{
- margin-top: 28px;
- margin-left: 300rpx;
- }
- .qrcode-title{
- width: 200px;
- height: 14px;
- font-size: 14px;
- font-weight: 400;
- color: #444444;
- line-height: 14px;
- text-align: center;
- margin-top: 16px;
- }
- .bottom-line{
- border-bottom: 1px solid #ABABAB;
- width: 300px;
- margin-top: 24px;
- }
- .bottom-date{
- margin-top: 24px;
- justify-content: space-between;
- width: 300px;
- font-size: 14px;
- line-height: 14px;
- height: 14px;
- font-weight: 400;
- color: #444444;
- }
- .flex-column {
- justify-content: center;
- flex-direction: column;
- align-items: center;
- }
|