123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* pages/clip/clip.wxss */
- .clip {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .head-img,
- movable-area {
- position: absolute;
- left: 50%;
- top: 20%;
- transform: translateX(-50%);
- }
- movable-view {
- border: 6rpx solid #fe9d00;
- box-sizing: border-box;
- }
- .btn {
- position: absolute;
- left: 0;
- bottom: 10rpx;
- display: flex;
- justify-content: space-around;
- align-items: center;
- height: 88rpx;
- width: 100%;
- }
- .btn text {
- width: 40%;
- height: 100%;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: skyblue;
- color: #fff;
- }
|