.section1 {
  background-color: #F4F4F3;
}

.section1 .wrap {
  padding: 120px 0;
  display: flex;
  gap: 30px 40px;
  margin: 0 auto;
  width: 1400px;
  flex-wrap: wrap;
}

.section1 .wrap .item {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  width: 440px;
  height: 160px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  transition: all 0.6s;
  cursor: pointer;
}

.section1 .wrap .item:hover {
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}

.section1 .wrap .item .text {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.section1 .wrap .item .template {
  display: none;
}

.section1 .wrap .item .text .type {
  display: flex;
  align-items: center;
}

.section1 .wrap .item .text .type p {
  color: #888888;
  font-size: 16px;
}

.section1 .wrap .item .text .type .icon {
  margin-right: 15px;
}

.section1 .wrap .item .text .type .icon span {
  color: #FFB3AB;
}

.section1 .wrap .item .text h4 {
  color: #1a1a1a;
  font-size: 18px;
  margin-top: 30px;
}

.section1 .wrap .item .img {
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2 .wrap {
  width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 120px;
}

.section2 .wrap .title {
  margin-bottom: 60px;
}

.section2 .wrap .title h3 {
  text-align: center;
  color: #1a1a1a;
  font-size: 42px;
}

.section2 .wrap .main .item {
  border: 1px solid #ECECEC;
  border-radius: 10px;
  transition: all 0.6s;
}

.section2 .wrap .main .item:not(:last-child) {
  margin-bottom: 20px;
}

.section2 .wrap .main .item.on {
  background-color: #F8F8F8;
  border: 1px solid #F8F8F8;
}

.section2 .wrap .main .item.on .head .add::after {
  transform: rotate(90deg) scaleX(0);
}

.section2 .wrap .main .item .head {
  padding: 30px 40px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}

.section2 .wrap .main .item .head:hover .left .text p {
  color: #FFB3AB;
}

.section2 .wrap .main .item .head .left {
  display: flex;
}

.section2 .wrap .main .item .head .left .icon {
  margin-right: 30px;
}

.section2 .wrap .main .item .head .left .icon span {
  color: #FFB3AB;
  font-size: 28px;
}

.section2 .wrap .main .item .head .left .text {
  display: flex;
  align-items: center;
}

.section2 .wrap .main .item .head .left .text p {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.6s;
}

.section2 .wrap .main .item .head .add {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2 .wrap .main .item .head .add::after,
.section2 .wrap .main .item .head .add::before {
  width: 16px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background-color: #8B8B8B;
}

.section2 .wrap .main .item .head .add::after {
  transform: rotate(90deg);
  transition: all 0.6s;
}

.section2 .wrap .main .item .body {
  padding: 20px 0;
  margin: 0 100px;
  border-top: 1px solid #EAEAEA;
  display: none;
}

.section2 .wrap .main .item .body p {
  color: #666666;
  font-size: 16px;
  line-height: 2;
}

.operation_mark {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.operation_mark.active {
  pointer-events: all;
}

.operation_mark.active .operation_black {
  opacity: 1;
}

.operation_mark.active .box {
  opacity: 1;
  transform: translateY(0);
}

.operation_mark .operation_black {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.6s;
}

.operation_mark .box {
  width: 1200px;
  border-radius: 20px;
  background-color: #fff;
  padding: 70px 180px;
  z-index: 10;
  opacity: 0;
  transition: all 0.6s;
  transform: translateY(20px);
  position: relative;
}

.operation_mark .box .content {
  height: 600px;
  overflow: scroll;
}

.operation_mark .box .content::-webkit-scrollbar {
  height: 0;
}

.operation_mark .box .title {
  text-align: center;
  margin-bottom: 40px;
}

.operation_mark .box .title h3 {
  font-size: 32px;
}

.operation_mark .box .video video {
  width: 100%;
  border-radius: 12px;
}

.operation_mark .box .img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 35px;
}

.operation_mark .box .text h4 {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.operation_mark .box .text p {
  color: #969696;
  font-size: 16px;
  line-height: 2;
}

.operation_mark .box .close {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #969696;
  position: absolute;
  top: 50px;
  right: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  cursor: pointer;
}

.operation_mark .box .close span {
  color: #969696;
  transition: all 0.6s;
}

.operation_mark .box .close:hover {
  background-color: #FFB3AB;
  border: 1px solid #FFB3AB;
}

.operation_mark .box .close:hover span {
  color: #fff;
}

.section1 .wrap .item .text .type .icon {
  display: flex;
  align-content: center;
}

.operation_mark .box video {
  width: 100%;
  height: auto;
}

.operation_mark .box .content .video.PE {
  display: none;
}

@media screen and (max-width: 1919px) {
  .section1 .wrap {
    padding: 6.25vw 0px;
    gap: 1.5625vw 2.0833333333vw;
    width: 72.9166666667vw;
  }

  .section1 .wrap .item {
    border-radius: 0.5208333333vw;
    width: 22.9166666667vw;
    height: 8.3333333333vw;
    padding: 1.0416666667vw 2.0833333333vw;
  }

  .section1 .wrap .item:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0.1041666667vw 0.625vw 0px;
  }

  .section1 .wrap .item .text .type p {
    font-size: 0.8333333333vw;
  }

  .section1 .wrap .item .text .type .icon {
    margin-right: 0.78125vw;
  }

  .section1 .wrap .item .text h4 {
    font-size: 0.9375vw;
    margin-top: 1.5625vw;
  }

  .section2 .wrap {
    width: 72.9166666667vw;
    padding-top: 5.2083333333vw;
    padding-bottom: 6.25vw;
  }

  .section2 .wrap .title {
    margin-bottom: 3.125vw;
  }

  .section2 .wrap .title h3 {
    font-size: 2.1875vw;
  }

  .section2 .wrap .main .item {
    border-radius: 0.5208333333vw;
  }

  .section2 .wrap .main .item:not(:last-child) {
    margin-bottom: 1.0416666667vw;
  }

  .section2 .wrap .main .item .head {
    padding: 1.5625vw 2.0833333333vw;
  }

  .section2 .wrap .main .item .head .left .icon {
    margin-right: 1.5625vw;
  }

  .section2 .wrap .main .item .head .left .icon span {
    font-size: 1.4583333333vw;
  }

  .section2 .wrap .main .item .head .left .text p {
    font-size: 0.9375vw;
  }

  .section2 .wrap .main .item .head .add {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
  }

  .section2 .wrap .main .item .head .add::after,
  .section2 .wrap .main .item .head .add::before {
    width: 0.8333333333vw;
  }

  .section2 .wrap .main .item .body {
    padding: 1.0416666667vw 0px;
    margin: 0px 5.2083333333vw;
  }

  .section2 .wrap .main .item .body p {
    font-size: 0.8333333333vw;
  }

  .operation_mark .box {
    width: 62.5vw;
    border-radius: 1.0416666667vw;
    padding: 3.6458333333vw 9.375vw;
    transform: translateY(1.0416666667vw);
  }

  .operation_mark .box .content {
    height: 31.25vw;
  }

  .operation_mark .box .title {
    margin-bottom: 2.0833333333vw;
  }

  .operation_mark .box .title h3 {
    font-size: 1.6666666667vw;
  }

  .operation_mark .box .video video {
    border-radius: 0.625vw;
  }

  .operation_mark .box .img {
    border-radius: 0.625vw;
    margin-bottom: 1.8229166667vw;
  }

  .operation_mark .box .text h4 {
    font-size: 0.8333333333vw;
  }

  .operation_mark .box .text p {
    font-size: 0.8333333333vw;
  }

  .operation_mark .box .close {
    width: 3.125vw;
    height: 3.125vw;
    top: 2.6041666667vw;
    right: 2.9166666667vw;
  }

  .section1 .wrap .item .text .type .icon span {
    font-size: 0.833333333vw;
  }

  .operation_mark .box .close span {
    font-size: 0.833333vw;
  }
}

@media screen and (max-width: 1024px) {
  .operation_mark .box .content .video.PC {
    display: none;
  }

  .operation_mark .box .content .video.PE {
    display: block;
  }

  .section1 .wrap {
    width: 90vw;
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section1 .wrap .item {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 20px;
    flex-direction: column-reverse;
  }

  .section1 .wrap .item .img {
    height: 150px;
    margin-bottom: 20px;
  }

  .section1 .wrap .item .img img {
    max-width: 80%;
    max-height: 80%;
  }

  .section1 .wrap .item .text {
    height: auto;
  }

  .section1 .wrap .item .text .type .icon span,
  .section1 .wrap .item .text .type p {
    font-size: 12px;
  }

  .section1 .wrap .item .text h4 {
    font-size: 14px;
    margin-top: 10px;
  }

  .section2 .wrap {
    width: 90vw;
    padding: 60px 0;
  }

  .section2 .wrap .title h3 {
    font-size: 28px;
  }

  .section2 .wrap .title {
    margin-bottom: 30px;
  }

  .section2 .wrap .main .item .head {
    padding: 15px 10px;
  }

  .section2 .wrap .main .item .head .left .icon span {
    font-size: 16px;
  }

  .section2 .wrap .main .item .head .left .icon {
    margin-right: 10px
  }

  .section2 .wrap .main .item .head .left .text p {
    font-size: 14px;
  }

  .section2 .wrap .main .item:not(:last-child) {
    margin-bottom: 20px;
  }

  .section2 .wrap .main .item .head .add::after,
  .section2 .wrap .main .item .head .add::before {
    width: 12px;
    height: 1px;
  }

  .section2 .wrap .main .item .head .add {
    width: 12px;
    height: 12px;
  }

  .section2 .wrap .main .item .body {
    padding: 20px 0;
  }

  .section2 .wrap .main .item .body p {
    font-size: 14px;
  }

  .section2 .wrap .main .item .body {
    margin: 0px 20px;
  }

  .section2 .wrap .main .item .head .left .text,
  .section2 .wrap .main .item .head .left {
    flex: 1;
  }

  .section2 .wrap .main .item .head .left .text p {
    width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .section2 .wrap .main .item {
    border-radius: 10px;
  }

  .operation_mark .box {
    width: 90%;
  }

  .operation_mark .box {
    padding: 30px;
    border-radius: 10px;
  }

  .operation_mark .box .content {
    padding-right: 20px;
    /* margin-top: 60px; */
  }

  .operation_mark .box .close {
    width: 32px;
    height: 32px;
    top: -40px;
    right: 0;
    border-color: #fff;
  }

  .operation_mark .box .text h4 {
    font-size: 18px;
  }

  .operation_mark .box .title h3 {
    font-size: 24px;
  }

  .operation_mark .box .content {
    height: 60vh;
  }

  .operation_mark .box .text p {
    font-size: 14px;
  }

  .operation_mark .box .close span {
    font-size: 14px;
    color: #fff;
  }

  .section1 .wrap .item:hover {
    box-shadow: none;
  }

  .operation_mark .box .content .text video {
    width: 100%;
    height: auto;
  }

  html[lang="en"] .section2 .wrap .main .item .head .left .text p {
    width: 70vw;
  }
}

@media screen and (max-width: 767px) {
  .section1 .wrap {
    grid-template-columns: repeat(1, 1fr);
    padding: 50px 0;
  }

  .section1 .wrap .item:hover {
    box-shadow: none;
  }

  .section2 .wrap {
    padding: 50px 0;
  }

  .section2 .wrap .title h3 {
    font-size: 24px;
  }

  .operation_mark .box .title h3 {
    font-size: 20px;
  }

  .operation_mark .box {
    padding: 30px 20px;
  }

}