style.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .case-con {
  2. position: relative;
  3. width: 100%;
  4. background-color: #fff;
  5. .case-header {
  6. position: relative;
  7. max-width: 1200px;
  8. padding-left: 260px;
  9. img {
  10. position: absolute;
  11. left: 0;
  12. margin-top: 48px;
  13. padding-left: 70px;
  14. height: 126px;
  15. width: auto;
  16. }
  17. .case-nav {
  18. padding-top: 38px;
  19. border-left: 1px solid #e5e5e5;
  20. padding-bottom: 44px;
  21. .nav-con {
  22. font-size: 48px;
  23. .list-txt {
  24. padding-left: 30px;
  25. font-weight: bold;
  26. }
  27. .list-navs {
  28. border-bottom: 1px solid #e5e5e5;
  29. margin-top: 30px;
  30. line-height: 70px;
  31. height: 70px;
  32. font-size: 0;
  33. .active {
  34. color: #111111;
  35. }
  36. li {
  37. border-right: 1px solid #e5e5e5;
  38. // width: 97px;
  39. padding: 0 20px;
  40. text-align: center;
  41. float: left;
  42. cursor: pointer;
  43. height: 70px;
  44. font-size: 14px;
  45. line-height: 70px;
  46. color: #a1a1a1;
  47. &:hover {
  48. color: #111111;
  49. }
  50. &:first-child {
  51. background-color: #1fe4dc;
  52. width: 240px;
  53. color: #fff;
  54. padding-left: 40px;
  55. text-align: left;
  56. cursor: auto;
  57. span {
  58. font-size: 18px;
  59. }
  60. &:hover {
  61. color: #fff;
  62. }
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
  69. }
  70. .case-body {
  71. max-width: 1470px;
  72. .card {
  73. margin-bottom: 20px;
  74. }
  75. .paging {
  76. // border-left: #e5e5e5 1px solid;
  77. height: 100%;
  78. margin-bottom: 40px;
  79. & /deep/ .layout {
  80. text-align: center;
  81. margin-top: 40px;
  82. }
  83. & /deep/ .layout a:not(:last-child) {
  84. margin: 10px 8px;
  85. font-size: 16px;
  86. display: inline-block;
  87. font-weight: 500;
  88. cursor: pointer;
  89. user-select: none;
  90. color: #999;
  91. position: relative;
  92. transition: color 0.3s;
  93. }
  94. & /deep/ .layout a:last-child {
  95. position: relative;
  96. top: -5px;
  97. display: -ms-inline-flexbox;
  98. display: inline-flex;
  99. -ms-flex-align: center;
  100. align-items: center;
  101. height: 22px;
  102. padding: 0 9.6px;
  103. padding: 0 0.6rem;
  104. }
  105. & /deep/ .layout a:last-child::before,
  106. & /deep/ .layout a:last-child::after {
  107. content: "";
  108. display: inline-block;
  109. will-change: transform;
  110. transition: transform 0.3s;
  111. }
  112. & /deep/ .layout a:not(:last-child).active::after,
  113. & /deep/ .layout a:not(:last-child).active,
  114. & /deep/ .layout a:not(:last-child):hover,
  115. & /deep/ .layout a:not(:last-child):hover::after {
  116. color: #111111;
  117. transform: scaleX(1);
  118. }
  119. & /deep/ .layout a:not(:last-child)::after {
  120. content: "";
  121. height: 3px;
  122. width: 140%;
  123. background-color: #111;
  124. display: block;
  125. margin-left: -20%;
  126. margin-top: 3px;
  127. transform-origin: 50% 50%;
  128. transform: scaleX(0);
  129. will-change: transform;
  130. transition: transform 0.3s;
  131. }
  132. }
  133. }