|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/guessPoster/guessPoster.wxss */
- image{
- display: block;
- }
- view{
- -webkit-overflow-scrolling: touch;
- }
- .main{
- height: calc(100vh - 120rpx);
- overflow: auto;
- position: relative;
- }
- .selectGroup{
- position: relative;
- margin: 50rpx auto 70rpx;
- width: 611rpx;
- height: 71rpx;
- }
- .selectImg{
- width: 100%;
- height: 100%;
- }
- .selectMask{
- position: absolute;
- left: 0;
- top: 0;
- width: 50%;
- height: 100%;
- opacity: 0;
- }
- .posterGroup{
- width: 395rpx;
- height: 749rpx;
- margin: 0 auto;
- }
- .posterImg{
- width: 100%;
- height:100%;
- }
- .bottomGroup{
- position: relative;
- margin-top: 35rpx;
- width: 750rpx;
- height: 217rpx;
- }
- .bottomImg{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .saveGroup{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- flex-direction: column;
- }
- .saveIcon{
- width: 95rpx;
- height: 96rpx;
- margin-top: 30rpx;
- margin-bottom: 15rpx;
- }
- .saveBtn{
- width: 267rpx;
- height: 54rpx;
- }
|