123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /* pages/piano/wallpaper/wallpaper.wxss */
- /* .ex-nav-bgc-class {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- } */
- .img_section {
- margin-top: 32rpx;
- margin-left: 170rpx;
- width: 400rpx;
- position: relative;
- align-items: center;
- justify-content: center;
- }
- .select_img {
- width: 400rpx;
- height: 400rpx;
- border-radius: 16rpx;
- background-color: #F2F5F7;
- overflow: hidden;
- }
- .canvas_img {
- width: 400rpx;
- 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_super {
- overflow-y: auto;
- margin-top: 40rpx;
- }
- .grid-container {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- grid-gap: 32rpx;
- margin-inline: 32rpx;
- /* height: calc(100vh - 200px); */
- }
- .up_down_img {
- width: 100%;
- height: 44rpx;
- margin-top: 20rpx;
- justify-content: center;
- align-items: center;
- display: flex;
- margin-bottom: 200rpx;
- }
- .up_down_img>image {
- width: 24rpx;
- height: 16rpx;
- }
- .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;
- }
|