12345678910111213141516171819202122232425262728293031323334353637383940 |
- .modal-poster {
- width: 100vw;
- height: 100vh;
- // height: calc(100vh - 62rpx);
- box-sizing: border-box;
- padding: 40rpx;
-
- &-img-box {
- flex: auto;
- width: 70%;
- height: calc(100% - 92rpx - 40rpx);
- margin: 0 auto;
- background: #fff;
- box-shadow: 0 14rpx 24rpx 0 rgba(0, 0, 0, 0.2);
- position: relative;
-
- image {
- width: 100%;
- height: 100%;
- }
- }
-
- &-action {
- margin-top: 40rpx;
- width: 100%;
- height: 92rpx;
- background: #193C83;
- border-radius: 46rpx;
- text-align: center;
- color: #fff;
- font-size: 30rpx;
- font-weight: 600;
- line-height: 90rpx;
- }
- }
-
- page-container {
- position: fixed;
- z-index: 1000;
- }
|