service.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* templates/service/service.wxss */
  2. .model-container {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. background: rgba(0,0,0,0.50);
  9. z-index: 9;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .model-wrapper {
  15. margin: auto 30rpx;
  16. max-height: 900rpx;
  17. background: #FFFFFF;
  18. border-radius: 8rpx;
  19. padding: 30rpx;
  20. position: relative;
  21. }
  22. .model-cancel {
  23. position: absolute;
  24. top: -66rpx;
  25. right: 0;
  26. width: 40rpx;
  27. height: 40rpx;
  28. border: solid 4rpx #fff;
  29. border-radius: 100rpx;
  30. cursor: pointer;
  31. }
  32. .model-scroll {
  33. height: 900rpx;
  34. overflow: hidden;
  35. }
  36. .model-cancel::before {
  37. content: '';
  38. position: absolute;
  39. width: 30rpx;
  40. height: 4rpx;
  41. top: 5rpx;
  42. left: 5rpx;
  43. background: #fff;
  44. transform: translate(0rpx, 15rpx) rotate(45deg);
  45. }
  46. .model-cancel::after {
  47. content: '';
  48. position: absolute;
  49. width: 30rpx;
  50. height: 4rpx;
  51. top: 5rpx;
  52. left: 5rpx;
  53. background: #fff;
  54. transform: translate(0rpx, 15rpx) rotate(-45deg);
  55. }
  56. .model-title {
  57. font-size: 40rpx;
  58. color: #000000;
  59. }
  60. .model-title-center {
  61. font-size: 40rpx;
  62. color: #000000;
  63. text-align: center;
  64. }
  65. .model-section {
  66. font-size: 32rpx;
  67. color: #333333;
  68. margin-top: 20rpx;
  69. }
  70. .model-text {
  71. margin-top: 10rpx;
  72. }