mask.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* pages/mask/mask.wxss */
  2. page{
  3. padding: 20rpx 20rpx 0 20rpx;
  4. }
  5. .invitation{
  6. display: flex;
  7. }
  8. .invitationTitle{
  9. border: 1rpx solid gray;
  10. padding: 10rpx 20rpx;
  11. border-radius: 30rpx;
  12. }
  13. /* 以下是蒙层样式 */
  14. .maskWrapper{
  15. z-index: 3;
  16. margin-left: -20rpx;
  17. padding: 20rpx;
  18. position: absolute;
  19. height: 70%;
  20. bottom: 0;
  21. background-color: #D1D1D1;
  22. border-top-left-radius: 30rpx;
  23. border-top-right-radius: 30rpx;
  24. }
  25. /* 可滚动区域 */
  26. .scrollVertical{
  27. height: 76%;
  28. }
  29. /* 选项区 */
  30. .chooseList{
  31. display: flex;
  32. flex-direction: column;
  33. }
  34. /* 单个选项样式 */
  35. .chooseDetail{
  36. width: 94%;
  37. padding: 10rpx;
  38. margin: 10rpx 0;
  39. border: 1rpx solid gray;
  40. border-radius: 20rpx;
  41. background-color: #DEEBF7;
  42. }
  43. /* 设置选项与圆圈的距离 */
  44. .courseTitle{
  45. margin-left: 30rpx;
  46. }
  47. /* 课程号、辅导科目详情 */
  48. .courseDetail{
  49. margin-left: 20rpx;
  50. font-weight: bold;
  51. }
  52. /* 底部按钮 */
  53. .commitAndCancel{
  54. display: flex;
  55. width: 100%;
  56. justify-content: space-around;
  57. position: fixed;
  58. bottom: 40rpx;
  59. }
  60. .cancel,
  61. .commit{
  62. font-size: 40rpx;
  63. border: 1rpx solid gray;
  64. padding: 10rpx 60rpx;
  65. border-radius: 40rpx;
  66. background-color: #8FAADC;
  67. color: white;
  68. }