invite-modal-card.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .invite-modal-card {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. z-index: 111;
  6. background: rgba(0, 0, 0, 0.3);
  7. width: 100%;
  8. height: 100%;
  9. }
  10. .modal-content {
  11. background: #fff;
  12. border-radius:8rpx;
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. transform: translate(-50%, -50%);
  17. padding-top: 34rpx;
  18. }
  19. .vr-tag {
  20. position: absolute;
  21. left: 40rpx;
  22. top: 40rpx;
  23. background: #1FE4DC;
  24. color: #fff;
  25. font-size: 24rpx;
  26. padding: 5rpx 10rpx;
  27. z-index: 100;
  28. }
  29. .message-content .can-vr {
  30. position: absolute;
  31. top: 50%;
  32. left: 50%;
  33. margin: -86rpx 0 0 -36rpx;
  34. width: 72rpx;
  35. height: 72rpx;
  36. z-index: 1111;
  37. }
  38. .modal-title {
  39. padding-left: 40rpx;
  40. font-size: 30rpx;
  41. line-height: 42rpx;
  42. font-weight: bold;
  43. margin-bottom: 4rpx;
  44. }
  45. .message-content {
  46. border-top: 1px solid #e5e5e5;
  47. border-bottom: 1px solid #e5e5e5;
  48. margin-top: 32rpx;
  49. padding: 40rpx;
  50. position: relative;
  51. }
  52. .message-content image {
  53. width: 450rpx;
  54. height: 242rpx;
  55. margin: 0 auto 40rpx;
  56. }
  57. .message-content input {
  58. background: #F2F2F2;
  59. height: 72rpx;
  60. line-height: 72rpx;
  61. border-radius: 8rpx;
  62. width: 450rpx;
  63. padding-left: 22rpx;
  64. color: #111;
  65. }
  66. .btn-w {
  67. height: 90rpx;
  68. line-height: 90rpx;
  69. display: flex;
  70. align-items: center;
  71. font-size: 30rpx;
  72. color: #79868F;
  73. text-align: center;
  74. font-weight: bold;
  75. }
  76. .btn {
  77. flex: 1;
  78. height: 100%;
  79. }
  80. .cancle-btn {
  81. border-right: 1px solid #e5e5e5;
  82. color: #111;
  83. }