| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- .invite-modal-card {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 111;
- background: rgba(0, 0, 0, 0.3);
- width: 100%;
- height: 100%;
- }
- .modal-content {
- background: #fff;
- border-radius:8rpx;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- padding-top: 34rpx;
- }
- .vr-tag {
- position: absolute;
- left: 40rpx;
- top: 40rpx;
- background: #1FE4DC;
- color: #fff;
- font-size: 24rpx;
- padding: 5rpx 10rpx;
- z-index: 100;
- }
- .message-content .can-vr {
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -86rpx 0 0 -36rpx;
- width: 72rpx;
- height: 72rpx;
- z-index: 1111;
- }
- .modal-title {
- padding-left: 40rpx;
- font-size: 30rpx;
- line-height: 42rpx;
- font-weight: bold;
- margin-bottom: 4rpx;
- }
- .message-content {
- border-top: 1px solid #e5e5e5;
- border-bottom: 1px solid #e5e5e5;
- margin-top: 32rpx;
- padding: 40rpx;
- position: relative;
- }
- .message-content image {
- width: 450rpx;
- height: 242rpx;
- margin: 0 auto 40rpx;
- }
- .message-content input {
- background: #F2F2F2;
- height: 72rpx;
- line-height: 72rpx;
- border-radius: 8rpx;
- width: 450rpx;
- padding-left: 22rpx;
- color: #111;
- }
- .btn-w {
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- align-items: center;
- font-size: 30rpx;
- color: #79868F;
- text-align: center;
- font-weight: bold;
- }
- .btn {
- flex: 1;
- height: 100%;
- }
- .cancle-btn {
- border-right: 1px solid #e5e5e5;
- color: #111;
- }
|