index.css 618B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .container {
  2. padding: 20px;
  3. border-radius: 10px;
  4. }
  5. .agreement-title {
  6. width: 100%;
  7. height: 65px;
  8. font-size: 16px;
  9. font-weight: 600;
  10. text-align: center;
  11. line-height: 65px;
  12. color: #3e84e9;
  13. letter-spacing: 1px;
  14. }
  15. .agreement {
  16. max-height: calc(100vh - 387px);
  17. overflow: auto;
  18. color:#666;
  19. line-height: 25px;
  20. }
  21. .agreement a{
  22. color:#3e84e9;
  23. }
  24. .agreement p{
  25. color: #000;
  26. }
  27. .agree-btn {
  28. width: 120px;
  29. height: 40px;
  30. color: white;
  31. text-align: center;
  32. line-height: 40px;
  33. font-size: 16px;
  34. border-radius: 40px;
  35. background-color: #3e84e9;
  36. margin: 30px auto 0;
  37. cursor: pointer;
  38. }