| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | /* pages/download/download.wxss */page {  height: 100vh;  display: flex;  flex-direction: column;  background: #F4F4F4;}.pageInfo {  height: 100%;  display: flex;  flex-direction: column;}.record-content {  display: flex;  flex-direction: column;  width: 100%;  flex: 1;  overflow-y: auto;}.record-list {  flex: 1;  overflow-y: scroll;  box-sizing: border-box;}.container {  background: url('https://oss.dayaedu.com/ktyq/1733231022871.png') no-repeat top center;  background-size: contain;  background-color: #FFFFFF;  .section {    display: flex;    align-items: center;    flex-direction: column;    padding: 414rpx 20rpx 190rpx;  }  .qrCodeImg  {    width: 296rpx;    height: 296rpx;  }  .func {    width: 100%;    margin: 23px 0 0;  }  .btnGroup {    position: fixed;    bottom: 0;    left: 0;    right: 0;    width: 100%;    padding: 16px 20px 30px;    background: linear-gradient( 180deg, rgba(255,255,255,0) 0%, #FFFFFF 50%, #FFFFFF 100%);    box-sizing: border-box;    .btnImg {      width: 100%;      &:active {        opacity: 0.7;      }    }  }}
 |