12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* pages/piano/wallpaper/wallpaper.wxss */
- .img_section {
- margin-top: 32rpx;
- margin-left: 108rpx;
- width: 533rpx;
- position: relative;
- align-items: center;
- justify-content: center;
- }
- .select_img {
- width: 533rpx;
- height: 400rpx;
- border-radius: 16rpx;
- background-color: #F2F5F7;
- overflow: hidden;
- }
- .select_icon {
- position: absolute;
- width: 56rpx;
- height: 56rpx;
- bottom: 32rpx;
- right: 32rpx;
- z-index: 1;
- }
- .grid-container {
- margin-top: 32rpx;
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- grid-gap: 32rpx;
- margin-inline: 32rpx;
- }
- .device_img {
- width: 320rpx;
- height: 240rpx;
- border-radius: 16rpx;
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
- width: 750rpx;
- height: 170rpx;
- background: #FFFFFF;
- box-shadow: 0rpx -4rpx 16rpx 0rpx #E8EAEB;
- border-radius: 72rpx 72rpx 0rpx 0rpx;
- justify-content: center;
- align-items: center;
- }
- .footer>image {
- margin-right: 8rpx;
- width: 48rpx;
- height: 48rpx;
- margin-top: -16rpx;
- }
- .footer>view {
- color: #6546A3;
- width: 128rpx;
- font-weight: Medium;
- font-size: 32rpx;
- margin-top: -16rpx;
- }
- /*
- .bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 0 32rpx;
- box-sizing: border-box;
- }
- .bottom button {
- flex: 1;
- margin: 0 16rpx;
- height: 88rpx;
- font-size: 32rpx;
- } */
|