index.module.less 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .cashProtocol {
  2. position: relative;
  3. .submit {
  4. width: 85%;
  5. margin-left: 7.5%;
  6. margin-bottom: 15px;
  7. position: absolute;
  8. bottom: 0;
  9. height: 44px;
  10. line-height: 44px;
  11. z-index: 99;
  12. }
  13. }
  14. .dialogPopup {
  15. width: 84%;
  16. border-radius: 8px;
  17. }
  18. .dialogSection {
  19. padding: 18px;
  20. .dialogTitle {
  21. display: flex;
  22. align-items: center;
  23. font-size: 18px;
  24. font-weight: 500;
  25. color: #333333;
  26. line-height: 30px;
  27. &::before {
  28. content: '';
  29. width: 4px;
  30. height: 17px;
  31. background: linear-gradient(180deg, #59E5D5 0%, #2DC7AA 100%);
  32. border-radius: 3px;
  33. margin-right: 7px;
  34. }
  35. }
  36. .dialogContent {
  37. padding-top: 20px;
  38. padding-bottom: 32px;
  39. font-size: 14px;
  40. color: #666666;
  41. line-height: 20px;
  42. }
  43. .dialogBtn {
  44. display: block;
  45. width: 114px;
  46. height: 40px;
  47. font-size: 16px;
  48. margin: 0 auto;
  49. }
  50. }