12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* nova-tourism/components/modal/index.wxss */.modal-overlay {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- background-color: rgba(76, 76, 76,.2);
- z-index: 99;
- }
- .modal-wrapper {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- // width: 70%;
- // height: 70vh;
- border-radius: 20rpx;
- background-color: #fff;
- z-index: 999;
- .modal-header {
- padding: 20rpx;
- // display: flex;
- // align-items: center;
- // justify-content: space-between;
- .modal-title {
- padding: 20rpx 0;
- text-align: center;
- }
- .modal-close {
- position: fixed;
- top: 20rpx;
- right: 20rpx;
- padding:20rpx;
-
- }
-
- }
- .modal-content {
- flex:1;
- width: 100%;
- padding: 20rpx;
- overflow: auto;
- }
- .modal-footer {
- width: 100%;
- .footer-btn {
- width: 100%;
- padding: 20rpx;
- text-align: center;
- letter-spacing: 6rpx;
- background-color: #46a9a4;
- }
- }
- }
|