123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- @import "../../../../public/pages/public-view.wxss";
- Page {
- background-color: white;
- }
- .bg-scroll-view {
- background-color: white;
- }
- .item-bg {
- margin: 0 50rpx 0 40rpx;
- }
- .item {
- display: flex;
- flex-direction: column;
- float: left;
- width: 210rpx;
- height: 210rpx;
- margin-left: 10rpx;
- margin-top: 10rpx;
- background-color: white;
- box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.05);
- }
- .item>image {
- width: 210rpx;
- height: 210rpx;
- display: block;
- }
- .item>view {
- width: 210rpx;
- height: 210rpx;
- margin-top: -210rpx;
- display: flex;
- }
- .item>view>image {
- width: 80rpx;
- height: 80rpx;
- display: block;
- margin: auto auto;
- }
|