agreement.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import './theme.scss';
  2. .sld_login {
  3. .sld_login_header {
  4. background: #fff;
  5. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  6. .content {
  7. display: flex;
  8. padding: 20px 0;
  9. align-items: center;
  10. width: 1200px;
  11. margin: auto;
  12. .l_logo {
  13. cursor: pointer;
  14. width: 50%;
  15. .img {
  16. display: inline-block;
  17. vertical-align: top;
  18. max-width: 190px;
  19. max-height: 43px;
  20. }
  21. .text {
  22. font-size: 0;
  23. display: inline-block;
  24. vertical-align: top;
  25. line-height: 48px;
  26. margin-left: 5px;
  27. }
  28. }
  29. .r_register_wrap {
  30. font-size: 14px;
  31. width: 50%;
  32. text-align: right;
  33. .go_register_btn {
  34. font-size: 13px;
  35. display: inline-block;
  36. padding: 6px 22px;
  37. background: $colorMain;
  38. color: #fff;
  39. border-radius: 30px;
  40. margin-left: 7px;
  41. //font-family: Microsoft YaHei;
  42. height: 30px;
  43. line-height: 17px;
  44. cursor: pointer;
  45. }
  46. }
  47. }
  48. }
  49. .agreement_container {
  50. width: 1200px;
  51. margin: auto;
  52. margin-top: 60px;
  53. padding: 30px 20px 30px;
  54. pre {
  55. margin-top: 40px;
  56. }
  57. .agreement_title {
  58. text-align: center;
  59. }
  60. }
  61. }