agreement.scss 1.4 KB

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