1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/downloadPage/index.wxss */
- .page {
- position: relative;
- .headImage {
- width: 750rpx;
- height: 558rpx;
- background-color: #000;
- }
- .main {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- top: 508rpx;
- border-top-right-radius: 60rpx;
- border-top: 3rpx solid #26B4EC;
- border-right: 3rpx solid #26B4EC;
- background-color: #ffffff;
- padding: 46rpx 46rpx 0 36rpx;
- line-height: 40rpx;
- color: #666666;
- font-size: 28rpx;
- line-height: 40rpx;
- .iconImage {
- width: 34rpx;
- height: 24rpx;
- }
- .main_title {
- color: #222222;
- font-size: 32rpx;
- font-weight: 500;
- height: 44rpx;
- line-height: 44rpx;
- }
- .btn {
- width: 500rpx;
- height: 72rpx;
- line-height: 72rpx;
- text-align: center;
- background: linear-gradient(180deg, #26B4EC 0%, #2F8AFF 100%);
- border-radius: 36rpx;
- color: #FFFFFF;
- font-size: 24rpx;
- margin: 188rpx auto 0 auto;
- }
- }
- }
|