room.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* pages/room/room.wxss */
  2. .invitation-view {
  3. position: fixed;
  4. left: 10%;
  5. right: 10%;
  6. background-color: rgba(0, 0, 0, 1);
  7. opacity: .9;
  8. color: #fff;
  9. z-index: 9999;
  10. border-radius: 5px;
  11. padding: 70rpx;
  12. top: 50%;
  13. transform: translateY(-50%);
  14. color: rgba(255, 255, 255, 0.88);
  15. /* height: 420rpx; */
  16. .title {
  17. font-size: 36rpx;
  18. font-weight: bold;
  19. margin-bottom: 40rpx;
  20. }
  21. .content {
  22. font-size: 30rpx;
  23. line-height: 36rpx;
  24. margin-bottom: 40rpx;
  25. white-space: pre-wrap;
  26. }
  27. .btns {
  28. text-align: center;
  29. height: 200rpx;
  30. }
  31. .btn {
  32. width: 100%;
  33. background-color: #fff;
  34. border-radius: 4px;
  35. height: 90rpx;
  36. line-height: 90rpx;
  37. font-size: 36rpx;
  38. color: #131D34;
  39. text-align: center;
  40. padding: 0;
  41. &.cancel{
  42. line-height: 86rpx;
  43. margin-top: 20rpx;
  44. background-color: rgba(0, 0, 0, 0);
  45. color: #fff;
  46. border: 1px solid #fff;
  47. width: 100%;
  48. box-sizing: border-box;
  49. }
  50. }
  51. &.single-btn .btns {
  52. text-align: center;
  53. height: 110rpx;
  54. }
  55. }