123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .container {
- position: relative;
- width: 100%;
- height: 100%;
- background: #EE3A43;
- }
- .img {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- overflow: hidden;
- background: #fff;
- border:2rpx dashed #333;
- }
- .img image {
- height:400px;
- }
- .imgcrop {
- position: absolute;
- left: -50000rpx;
- top: -500000rpx;
- }
- .footer {
- position: absolute;
- width: 100%;
- height: 110rpx;
- color: #fff;
- background: #EE3A43;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .footer view {
- width: 30%;
- text-align: center;
- }
- .background {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- z-index: -1;
- }
|