12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* pages/room/room.wxss */
- .invitation-view {
- position: fixed;
- left: 10%;
- right: 10%;
- background-color: rgba(0, 0, 0, 1);
- opacity: .9;
- color: #fff;
- z-index: 9999;
- border-radius: 5px;
- padding: 70rpx;
- top: 50%;
- transform: translateY(-50%);
- color: rgba(255, 255, 255, 0.88);
- /* height: 420rpx; */
- .title {
- font-size: 36rpx;
- font-weight: bold;
- margin-bottom: 40rpx;
- }
- .content {
- font-size: 30rpx;
- line-height: 36rpx;
- margin-bottom: 40rpx;
- white-space: pre-wrap;
- }
- .btns {
- text-align: center;
- height: 200rpx;
- }
- .btn {
- width: 100%;
- background-color: #fff;
- border-radius: 4px;
- height: 90rpx;
- line-height: 90rpx;
- font-size: 36rpx;
- color: #131D34;
- text-align: center;
- padding: 0;
-
- &.cancel{
- line-height: 86rpx;
- margin-top: 20rpx;
- background-color: rgba(0, 0, 0, 0);
- color: #fff;
- border: 1px solid #fff;
- width: 100%;
- box-sizing: border-box;
- }
- }
- &.single-btn .btns {
- text-align: center;
- height: 110rpx;
- }
- }
|