.mod,
.mod .mod-bd {
  padding: 0;
}

.row {
  padding: 0.8rem 0;
}

.row .wrapper {
  position: relative;
  z-index: 1;
}

/* row1 */

.r1 {
  background-color: rgb(249, 249, 249);
  padding: 0.72rem 0 0.92rem;
}

.r1 .mod-bd {
  padding-top: 0.38rem;
}

.talent-box {
  display: flex;
  flex-wrap: wrap;
}

.talent-box .talent-box-left {
  box-sizing: border-box;
  width: 50%;
  padding-right: 0.92rem;
}

.talent-box .talent-box-right {
  box-sizing: border-box;
  width: 50%;
  display: flex;
  align-items: center;
}

.talent-box .talent-box-left .pic img {
  border-radius: 0.08rem;
}

.talent-info {
  font-size: 0.18rem;
  line-height: 2;
  padding: 0.16rem 0.96rem;
}

.quote:before,
.quote::after {
  /* font-family: "Font Awesome 6 Free"; */
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #ece9f0;
  font-size: 1rem;
  display: block;
  line-height: 1;
}

.quote:before {
  /* content: "\f10d"; */
  content: "\201c";
}

.quote::after {
  /* content: "\f10e"; */
  content: "\201d";
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .talent-box {
    padding: 0;
  }

  .talent-box .talent-box-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 12px;
  }

  .talent-box .talent-box-right {
    width: 100%;
    padding-left: 0;
  }

  .r1 .mod-bd {
    padding-top: 8px;
  }

  .talent-info {
    font-size: 14px;
    padding: 0 20px;
  }

  .quote:before,
  .quote::after {
    font-size: 48px;
  }
}

/* row2 */

.r2 {
  position: relative;
  padding: 1.68rem 0 0.24rem;
}

.r2::after,
.r2::before {
  content: "";
  position: absolute;
  background-image: url("../images/bg-dot1.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 6.47rem auto;
}

.r2::before {
  width: 6.18rem;
  height: 1.48rem;
  left: 0;
  top: 0;
}

.r2::after {
  width: 4.8rem;
  height: 1.1rem;
  right: 0;
  bottom: 0;
}

.welfare-area {
  padding-bottom: 0.72rem;
}

.welfare-list-item,
.welfare-list-item:hover .pic img {
  border-radius: 0.08rem;
}

.welfare-list-item {
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
}

.welfare-list-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s;
  border-radius: 0.08rem;
}

.welfare-list-item:hover::after {
  opacity: 1;
}

.welfare-list-item .pic .upimg {
  transition: all 0.3s;
  opacity: 0;
}

.welfare-list-item .meta {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0.48rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.welfare-list-item .icon {
  transition: all 0.3s;
  width: 0.8rem;
  height: 0.8rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  margin-bottom: 0.14rem;
}

.welfare-list-item .title {
  transition: all 0.3s;
  font-size: 0.36rem;
  font-weight: 400;
  margin-bottom: 0.08rem;
}

.welfare-list-item .subtitle {
  transition: all 0.3s;
  font-size: 0.2rem;
  color: rgb(120, 120, 120);
  position: relative;
  padding-bottom: 0.76rem;
  margin-bottom: 0.28rem;
}

.welfare-list-item .subtitle::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0.6rem;
  background-color: rgba(50, 50, 50, 0.4);
}

.welfare-list-item .desc {
  transition: all 0.3s;
  font-size: 0.2rem;
  line-height: 1.8;

  height: 1.08rem;
}

.welfare-list-item.item1 .icon {
  background-image: url("../images/icons/welfare/inco1-dark.png");
}

.welfare-list-item.item2 .icon {
  background-image: url("../images/icons/welfare/inco2-dark.png");
}

.welfare-list-item.item3 .icon {
  background-image: url("../images/icons/welfare/inco3-dark.png");
}

.welfare-list-item.item4 .icon {
  background-image: url("../images/icons/welfare/inco4-dark.png");
}

.welfare-list-item.item1:hover .icon {
  background-image: url("../images/icons/welfare/inco01hover.png");
}

.welfare-list-item.item2:hover .icon {
  background-image: url("../images/icons/welfare/inco02hover.png?v=3");
}

.welfare-list-item.item3:hover .icon {
  background-image: url("../images/icons/welfare/inco03hover.png");
}

.welfare-list-item.item4:hover .icon {
  background-image: url("../images/icons/welfare/inco04hover.png");
}

.welfare-list-item.item2,
.welfare-list-item.item4 {
  margin-top: 1rem;
}

.welfare-list-item:hover .pic .upimg {
  opacity: 1;
}

.welfare-list-item:hover .title,
.welfare-list-item:hover .subtitle,
.welfare-list-item:hover .desc {
  color: #fff;
}

.welfare-list-item:hover .subtitle::after {
  background-color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 767px) {
  .r2 {
    padding: 1.68rem 0 0.96rem;
  }

  .r2::after,
  .r2::before {
    display: none;
  }

  .welfare-area {
    padding-bottom: 40px;
  }

  .welfare-list-item .meta {
    padding: 20px 40px 40px;
    align-items: center;
  }

  .welfare-list-item .icon {
    margin-bottom: 12px;
  }

  .welfare-list-item .title {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .welfare-list-item .subtitle {
    font-size: 14px;
    padding-bottom: 120px;
    margin-bottom: 28px;
  }

  .welfare-list-item .subtitle::after {
    width: 1px;
    height: 92px;
    left: 50%;
    transform: translateX(-50%);
  }

  .welfare-list-item .desc {
    font-size: 14px;
    height: 50.4px;
    text-align: center;
  }

  .welfare-list-item.item2,
  .welfare-list-item.item4 {
    margin-top: 0;
  }
}
/* row3 */

.r3 {
  position: relative;
}

.r3 .mod-hd {
  margin-bottom: 0.36rem;
}

.r3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: rgb(248, 248, 250);
}

.job-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.2rem;
}

.job-list li {
  box-sizing: border-box;
  width: 33.33%;
  padding: 0 0.2rem;
  margin-bottom: 0.46rem;
}

.job-list li .meta {
  box-sizing: border-box;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 0.08rem;
  box-shadow: 0.0166rem 0.0112rem 0.05rem 0px rgba(0, 0, 0, 0.2);
  background: rgb(255, 255, 255);

  transition: all 0.3s;
  padding: 0.36rem 0.32rem;
}

.job-list li .title {
  transition: all 0.3s;
  color: rgb(50, 50, 50);
  font-size: 0.24rem;
  padding-bottom: 0.18rem;
  margin-bottom: 0.32rem;
  border-bottom: 1px solid #ddd;
}

.job-list li .desc {
  box-sizing: border-box;
  transition: all 0.3s;
  color: rgb(120, 120, 120);
  font-size: 0.16rem;
  line-height: 1.875;
  overflow-y: auto;
  height: 0.9rem;
  margin-bottom: 0.17rem;
}

@media only screen and (max-width: 767px) {
  .row {
    padding: 24px 0;
  }

  .r3 .mod-hd {
    margin-bottom: 8px;
  }

  .job-list {
    margin: 0;
  }

  .job-list li {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .job-list li .meta {
    padding: 24px;
  }

  .job-list li .title {
    font-size: 16px;
    padding-bottom: 0.18rem;
    margin-bottom: 0.32rem;
  }

  .job-list li .desc {
    font-size: 14px;
    height: auto;
    margin-bottom: 0;
    overflow-y: visible;
  }
}
