index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .showmodel-bg {
  2. position: fixed;
  3. width: 100vw;
  4. height: 100vh;
  5. background-color: rgba(0, 0, 0, 0.6);
  6. top: 0;
  7. left: 0;
  8. z-index: 9999999;
  9. }
  10. .showmodel-box {
  11. position: absolute;
  12. width: 558rpx;
  13. background: #FFFFFF;
  14. border-radius: 20rpx;
  15. z-index: 999999999;
  16. left: 50%;
  17. transform: translate(-50%, -50%);
  18. padding: 0 30rpx;
  19. box-sizing: border-box;
  20. text-align: center;
  21. }
  22. .model-title {
  23. font-family: PingFangSC-Medium, PingFang SC;
  24. height: 50rpx;
  25. line-height: 50rpx;
  26. font-size: 36rpx;
  27. font-weight: 550;
  28. color: #000000;
  29. margin-top: 50rpx;
  30. }
  31. .model-content {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. flex-wrap: wrap;
  36. line-height: 40rpx;
  37. min-height: 90rpx;
  38. font-size: 28rpx;
  39. color: rgba(0, 0, 0, .4);
  40. margin-top: 20rpx;
  41. }
  42. .model-but {
  43. width: 95%;
  44. display: flex;
  45. justify-content: space-around;
  46. height: 56rpx;
  47. margin: 30rpx auto 40rpx;
  48. }
  49. .custom-class-but {
  50. font-size: 24rpx !important;
  51. font-family: PingFangSC-Regular, PingFang SC !important;
  52. width: 180rpx !important;
  53. height: 56rpx !important;
  54. background: #F3F3F3;
  55. }
  56. .cancel {
  57. color: #888888 !important;
  58. }