style.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .lca {
  2. background-color: #fefefe;
  3. padding: 0;
  4. text-align: center;
  5. position: relative;
  6. flex: none;
  7. height: 15rem;
  8. &_left {}
  9. &_right {
  10. right: 0;
  11. position: relative;
  12. @media (max-width: 1000px) {
  13. right: -17rem;
  14. }
  15. }
  16. &_shape1 {
  17. position: absolute;
  18. top: 0;
  19. left: -5%;
  20. z-index: 1;
  21. }
  22. &_logo {
  23. width: 24rem;
  24. display: block;
  25. position: absolute;
  26. left: 3rem;
  27. top: 7rem;
  28. z-index: 10;
  29. @media (max-width: 800px) {
  30. width: 20rem;
  31. top: 8rem;
  32. }
  33. }
  34. &_shape2 {
  35. position: absolute;
  36. top: 0;
  37. right: calc(27rem + 10vw);
  38. z-index: 1;
  39. @media (max-width: 800px) {
  40. display: none;
  41. }
  42. }
  43. &_greenshape {
  44. position: absolute;
  45. top: -5rem;
  46. right: calc(25rem + 5vw);
  47. font-weight: bold;
  48. color: #fff;
  49. margin: 1em auto;
  50. background: #004943;
  51. border-radius: 10rem;
  52. width: 15.625rem;
  53. height: 15.625rem;
  54. overflow: hidden;
  55. flex: none;
  56. text-align: center;
  57. display: flex;
  58. align-items: center;
  59. z-index: 20;
  60. font-size: 1.5rem;
  61. span {
  62. display: block;
  63. width: 100%;
  64. padding: 1rem;
  65. }
  66. @media (max-width: 800px) {
  67. width: 10rem;
  68. height: 10rem;
  69. font-size: 1rem;
  70. top: -4rem;
  71. }
  72. }
  73. &_robot {
  74. position: absolute;
  75. top: 0;
  76. right: calc(2rem + 2vw);
  77. }
  78. }