.case_head {
  position: relative;
  z-index: 2;
  max-width: 192rem;
  margin: 0 auto;
  padding-top: 19.2rem;
}
.case_head .content {
  max-width: 104rem;
}
.case_head .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
.case_head .metas {
  gap: 2rem;
  display: flex;
  align-items: center;
}
.case_head .metas .cat {
  padding: 0.8rem 1.7rem 0.9rem;
  font-size: 1.8rem;
  border-radius: 100px;
  background-color: var(--secondary);
}
.case_head .metas .date {
  color: #5C5C5C;
  font-size: 1.7rem;
}
.case_head h1 {
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 6.3rem;
  margin-top: 1.6rem;
}
.case_head .image {
  position: relative;
  z-index: 2;
  margin: 5.4rem 0;
}
.case_head .image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(1.8rem, 1.8rem);
  border-radius: 2.2rem;
  background-color: rgba(6, 28, 51, 0.3);
}
.case_head .image .img {
  border-radius: 2.2rem;
  padding-bottom: 47.307692%;
}
.case_main {
  position: relative;
  z-index: 2;
  max-width: 192rem;
  margin: 0 auto;
  padding: 9.6rem 0 14.5rem;
}
.case_main .content {
  max-width: 104rem;
}
.case_main .inner {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto 1fr;
}
.case_main .summary {
  padding: 3rem 5rem 0;
  position: sticky;
  top: 90px;
}
.case_main .summary .title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}
.case_main .summary li {
  position: relative;
}
.case_main .summary li::before {
  content: '';
  display: block;
  width: 0.8rem;
  height: 1.2rem;
  position: absolute;
  left: -2.2rem;
  top: 0.6rem;
  opacity: 0;
  transition: all 0.3s;
  background: url(../img/arrow-r-s.svg) no-repeat center / contain;
}
.case_main .summary li + li {
  margin-top: 1.2rem;
}
.case_main .summary .active::before {
  opacity: 1;
}
.case_main .summary .active a {
  color: var(--secondary);
}
.case_main .summary a {
  color: #516171;
  transition: all 0.3s;
}
.case_main .summary a:hover {
  color: var(--secondary);
}
.case_main .content > *:first-child,
.case_main .syedittext > *:first-child {
  margin-top: 0;
}
.case_main .content > *:last-child,
.case_main .syedittext > *:last-child {
  margin-bottom: 0;
}
.case_main .syedittext h2 {
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 5.7rem;
  margin: 10rem 0 2.8rem;
}
.case_main .syedittext h3 {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.35;
  margin: 6rem 0 2.4rem;
}
.case_main .syedittext p {
  color: var(--text);
  font-size: 2rem;
  line-height: 3.6rem;
  margin: 2.8rem 0 3.6rem;
}
.case_main .syedittext .button a {
  gap: 1.6rem;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.case_main .syedittext .button a::before {
  content: '';
  display: block;
  position: absolute;
  right: 1.75rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-r-b.svg) no-repeat center / contain;
}
.case_main .syedittext .button a::after {
  content: '';
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: var(--primary);
}
.case_main .syedittext .button a:hover::before {
  filter: none;
}
.case_main .syedittext .button a:hover::after {
  background-color: var(--secondary);
}
.case_main .syedittext a {
  transition: all 0.3s;
  color: var(--primary);
  text-decoration: underline;
}
.case_main .syedittext a:hover {
  color: var(--secondary);
}
.case_main .syedittext ul li {
  position: relative;
  padding-left: 2.6rem;
  color: var(--text);
  font-size: 2rem;
  line-height: 3.6rem;
}
.case_main .syedittext ul li::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #4A555E;
  position: absolute;
  left: 0;
  top: 1.3rem;
}
.case_main .syedittext ul li + li {
  margin-top: 1.2rem;
}
.case_main .syedittext ol {
  margin: 6rem 0 5.2rem;
  counter-reset: list;
}
.case_main .syedittext ol li {
  gap: 2.4rem;
  display: grid;
  align-items: start;
  grid-template-columns: auto 31.346154% 1fr;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2;
  border-bottom: 1px solid #E8ECEF;
  counter-increment: list;
  padding: 2.1rem 0;
}
.case_main .syedittext ol li::before {
  content: counter(list, decimal-leading-zero);
  border-radius: 100px;
  min-width: 3.4rem;
  line-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #DCE1E5;
  color: var(--title);
  font-weight: 500;
  font-size: 1.4rem;
}
.case_main .syedittext ol li strong {
  color: var(--title);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: normal;
}
.case_main .apply {
  margin: 8.8rem 0 11.4rem;
}
.case_main .apply .steps {
  margin-top: 4.4rem;
}
.case_main .apply .steps .step {
  gap: 3.2rem;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  position: relative;
}
.case_main .apply .steps .step::before {
  content: '';
  display: block;
  width: 2.6rem;
  position: absolute;
  top: 6.6rem;
  left: 1.4rem;
  height: 0;
  opacity: 0.39;
  transition: all 0.5s;
  border-radius: 1.1rem;
  background-image: linear-gradient(to top, var(--secondary), transparent);
}
.case_main .apply .steps .step.active::before {
  height: calc(100% - 8rem);
}
.case_main .apply .steps .step + .step {
  margin-top: 3.2rem;
}
.case_main .apply .steps .order {
  position: relative;
  z-index: 2;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  background-color: var(--secondary);
  padding-bottom: 2px;
  margin-top: 2.8rem;
}
.case_main .apply .steps .syedittext {
  border-radius: 2.8rem;
  background-color: #F7F5F2;
  padding: 3.144654% 3.983229% 4.402516%;
}
.case_main .experience {
  margin: 11.4rem 0 8.4rem;
}
.case_main .experience .swiper-slide:nth-child(3n + 1) {
  background-color: #E4EFF9;
}
.case_main .experience .swiper-slide:nth-child(3n + 2) {
  background-color: #BBEAE4;
}
.case_main .experience .swiper-slide:nth-child(3n + 3) {
  background-color: #F9ECCF;
}
.case_main .experience .experience_thumbs_swiper {
  overflow: hidden;
  margin-top: 4.2rem;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide {
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  padding: 1.9rem 8.8rem;
  max-width: max-content;
  border-radius: 2.8rem 2.8rem 0 0;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(1) {
  z-index: 6;
  padding: 1.9rem 6.9rem;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(2) {
  z-index: 5;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(3) {
  z-index: 4;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(4) {
  z-index: 3;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(5) {
  z-index: 2;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(6) {
  z-index: 1;
}
.case_main .experience .experience_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
  z-index: 7;
}
.case_main .experience .experience_swiper {
  overflow: hidden;
  border-radius: 0 2.8rem 2.8rem 2.8rem;
}
.case_main .experience .experience_swiper .swiper-slide {
  padding: 6.730769% 5.769231% 3.653846%;
}
.case_main .experience .experience_swiper .total {
  text-align: right;
  font-size: 2.1rem;
  margin-top: 8rem;
}
.case_main .experience .experience_swiper .total strong {
  font-weight: 500;
  font-size: 3.2rem;
  padding-left: 1.2rem;
}
.case_main .experience .swiper_controls {
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5rem;
}
.case_main .list {
  margin: 6.2rem 0 7.6rem;
}
.case_main .list .syeditorlist {
  gap: 4.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.case_main .list .item {
  border-radius: 2.4rem;
  border: 1px solid #C8CCCE;
  min-height: 12.6rem;
  gap: 6.944444%;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  padding: 6.425703%;
}
.case_main .list .item::before {
  content: '';
  display: block;
  width: 5.5rem;
  height: 5rem;
  background: url(../img/icon-gou-case.svg) no-repeat center / contain;
}
.case_related {
  position: relative;
  z-index: 2;
  max-width: 192rem;
  margin: 0 auto;
  padding: 20.4rem 0 5.4rem;
}
.case_related .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
.case_related .bg img {
  width: 113.958333%;
  margin: 0 -6.979166%;
}
.case_related .swiper_box {
  margin-top: 4rem;
}
.case_related .swiper_btns {
  top: 45%;
}
.case_related .case_related_swiper {
  overflow: hidden;
}
.case_related .btn {
  margin-top: 7.6rem;
}
.footer_gallery .mask {
  filter: none;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .case_main .content {
    max-width: 650px;
  }
  .case_related .bg img {
    width: 130%;
    margin: 0 -15%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .case_head .bg img {
    width: 120%;
    margin: 0 -10%;
  }
  .case_main .content {
    max-width: 550px;
  }
  .case_main .summary {
    padding: 3rem 4rem 0;
  }
  .case_main .list .syeditorlist {
    gap: 2rem;
  }
  .case_main .list .item::before {
    width: 3rem;
    height: 3rem;
  }
  .case_related .bg img {
    width: 150%;
    margin: 0 -25%;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .case_main .inner {
    grid-template-columns: 1fr auto;
  }
  .case_related .bg img {
    width: 160%;
    margin: 0 -30%;
  }
}
@media screen and (max-width: 768px) {
  .case_head {
    padding-top: 130px;
  }
  .case_head .bg img {
    width: 120%;
    margin: 0 -10%;
  }
  .case_head .metas {
    gap: 10px;
  }
  .case_head .metas .cat {
    font-size: 14px;
    padding: 8px 17px 9px;
  }
  .case_head .metas .date {
    font-size: 14px;
  }
  .case_head h1 {
    font-size: 22px;
    line-height: 1.3;
  }
  .case_head .image {
    margin: 20px 0;
  }
  .case_head .image::before {
    transform: translate(10px, 10px);
  }
  .case_main {
    padding: 30px 0 50px;
  }
  .case_main .inner {
    grid-template-columns: 1fr auto;
  }
  .case_main .summary {
    padding: 30px 0 0 30px;
  }
  .case_main .content {
    max-width: 580px;
  }
  .case_main .syedittext h2 {
    font-size: 20px;
    line-height: 1.3;
    margin: 30px 0 10px;
  }
  .case_main .syedittext h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 20px 0 10px;
  }
  .case_main .syedittext p {
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0;
  }
  .case_main .syedittext ul li {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 20px;
  }
  .case_main .syedittext ul li::before {
    width: 6px;
    height: 6px;
    top: 8px;
  }
  .case_main .syedittext ul li + li {
    margin-top: 10px;
  }
  .case_main .apply {
    margin: 50px 0;
  }
  .case_main .apply .steps {
    margin-top: 20px;
  }
  .case_main .apply .steps .order {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-top: 15px;
  }
  .case_main .apply .steps .step {
    gap: 15px;
  }
  .case_main .apply .steps .step + .step {
    margin-top: 20px;
  }
  .case_main .apply .steps .step.active::before {
    height: calc(100% - 50px);
  }
  .case_main .apply .steps .step::before {
    width: 10px;
    left: 10px;
    top: 40px;
  }
  .case_main .apply .steps .syedittext {
    padding: 20px;
    border-radius: 20px;
  }
  .case_main .experience {
    margin: 50px 0;
  }
  .case_main .experience .experience_thumbs_swiper {
    margin-top: 20px;
  }
  .case_main .experience .experience_thumbs_swiper .swiper-slide,
  .case_main .experience .experience_thumbs_swiper .swiper-slide:nth-child(1) {
    font-size: 14px;
    padding: 8px 30px 9px;
    border-radius: 8px 8px 0 0;
  }
  .case_main .experience .experience_swiper {
    border-radius: 0 8px 8px 8px;
  }
  .case_main .experience .experience_swiper .swiper-slide {
    padding: 20px;
  }
  .case_main .experience .experience_swiper .total {
    margin-top: 20px;
    font-size: 16px;
  }
  .case_main .experience .experience_swiper .total strong {
    font-size: 22px;
    padding-left: 5px;
  }
  .case_main .experience .swiper_controls {
    margin-top: 20px;
  }
  .case_main .list {
    margin: 30px 0;
  }
  .case_main .list .syeditorlist {
    gap: 15px;
  }
  .case_main .list .item {
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    min-height: unset;
  }
  .case_main .list .item::before {
    width: 20px;
    height: 20px;
  }
  .case_related {
    padding: 50px 0;
  }
  .case_related .bg img {
    width: 140%;
    margin: 0 -20%;
  }
  .case_related .swiper_box {
    margin-top: 30px;
  }
  .case_related .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .case_head {
    padding-top: 30px;
  }
  .case_head .bg img {
    width: 140%;
    margin: 0 -20%;
  }
  .case_head .image::before {
    border-radius: 20px;
  }
  .case_head .image .img {
    border-radius: 20px;
  }
  .case_main .inner {
    display: block;
  }
  .case_main .summary {
    position: static;
    padding: 0 20px 30px;
  }
  .case_main .summary li::before {
    left: -12px;
  }
  .case_main .list .syeditorlist {
    grid-template-columns: 1fr;
  }
  .case_related {
    overflow: hidden;
  }
  .case_related .case_related_swiper {
    overflow: visible;
  }
  .case_related .swiper_btns {
    display: none;
  }
}
