1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pages/download/download.wxss */
- .download .li {
- padding: 50rpx 66rpx 0;
- }
- .download .li .h3 {
- width: 160rpx;
- height: 40rpx;
- line-height: 40rpx;
- text-align: center;
- font-size: 28rpx;
- color: #353535;
- font-weight: bold;
- margin-bottom: 20rpx;
- position: relative;
- }
- .download .li .h3::after {
- content: " ";
- width: 160rpx;
- height: 20rpx;
- border-radius: 30rpx;
- background-color: rgba(111, 56, 180, 0.1);
- display: block;
- position: absolute;
- bottom: 0;
- }
- .download .li .textList {
- font-size: 28rpx;
- color: #353535;
- line-height: 40rpx;
- }
- .download .li .textList text {
- color: #6f38b4;
- font-weight: bold;
- }
- .download .code {
- margin-top: 30rpx;
- width: 100vw;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .download .code image {
- width: 280rpx;
- }
- .download .button {
- margin-top: 84rpx;
- width: 100vw;
- display: flex;
- justify-content: center;
- }
- .download .button text {
- width: 520rpx;
- height: 80rpx;
- background: #6547A3;
- border-radius: 45rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 36rpx;
- color: #fff;
- }
- .ex-nav-bgc-class {
- background: rgba(237, 237, 237, 0.9);
- backdrop-filter: blur(10px);
- }
|