12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* pages/piano/wallpaper/wallpaper.wxss */
- .img_section {
- width: 100%;
- height: 400rpx;
- position: relative;
- align-items: center;
- justify-content: center;
- }
- .select_img {
- margin-top: 32rpx;
- padding-inline: 108rpx;
- width: 533rpx;
- height: 400rpx;
- border-radius: 16rpx;
- }
- .select_icon {
- position: absolute;
- width: 56rpx;
- height: 56rpx;
- bottom: 32rpx;
- right: 32rpx;
- z-index: 1;
- }
- .grid-container {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- grid-column-gap: 32rpx;
- /* grid-row: 32rpx; */
- padding-inline: 32rpx;
- padding-top: 16rpx;
- }
- .cell {
- width: 320rpx;
- height: 240rpx;
- border-radius: 16rpx;
- }
|