C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.0 KiB

  1. .modal {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. background-color: rgba(0, 0, 0, 0.5);
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. .modal-content {
  13. background-color: white;
  14. color: #7a7a7a;
  15. padding-top: 20rpx;
  16. border-radius: 20rpx;
  17. width: 80%;
  18. }
  19. .modal-content .protocol {
  20. color: #0c66db;
  21. }
  22. .modal-content .title {
  23. /* color: #000; */
  24. font-weight: 600;
  25. font-size: 34rpx;
  26. text-align: center;
  27. margin-bottom: 15rpx;
  28. }
  29. .modal-content .mainContent {
  30. text-indent: 2em;
  31. font-size: 32rpx;
  32. line-height: 50rpx;
  33. margin-bottom: 15rpx;
  34. padding: 0 20rpx 20rpx 20rpx;
  35. }
  36. .modal-content .bottomBtn {
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. border-top: 1px solid #929292;
  41. }
  42. .modal-content .bottomBtn .btn {
  43. width: 50%;
  44. height: 80rpx;
  45. line-height: 80rpx;
  46. text-align: center;
  47. }
  48. .modal-content .bottomBtn .btn.exit {
  49. /* color: #ff204e; */
  50. }
  51. .modal-content .bottomBtn .btn.continue {
  52. /* color: #0c66db; */
  53. /* font-weight: 600; */
  54. }