| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- page {
- box-sizing: border-box;
- padding: 20rpx 0rpx;
- overflow: hidden;
- }
- .cHcontainer {
- height: 600x;
- width: 100%;
- overflow: hidden;
- }
- .bg {
- height: 600rpx;
- width: 600rpx;
- }
- button {
- margin: 20rpx 40rpx 0rpx;
- }
- .hat {
- height: 200rpx;
- width: 200rpx;
- position: absolute;
- border: 2rpx dashed #ff0;
- top: 200rpx;
- }
- .cancel,
- .handle {
- position: absolute;
- z-index: 1;
- width: 40rpx;
- height: 50rpx;
- }
- .scrollView {
- width: 100%;
- position: absolute;
- bottom: 10rpx;
- white-space: nowrap;
- }
- .imgList {
- height: 140rpx;
- width: 140rpx;
- border: 2rpx solid #3677f0;
- margin: 10rpx;
- }
- .cbtn {
- background-color: #3677f0;
- color: #fff;
- box-sizing: border-box;
- }
|