/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: MiSans-Regular;
}

.main {
  width: 75vw;
  margin: 0 auto;
}

.model-title {
  font-weight: 600;
  font-size: 50px;
  color: #000000;
  line-height: 60px;
  padding-top: 10px;
  text-align: center;
  font-family: MiSans-Semibold;
}

.model-text {
  padding: 20px 0;
  font-size: 18px;
  color: #808080;
  line-height: 1.5em;
  text-transform: uppercase;
  text-align: justify;
}

.model-text p {
  margin: 1em 0;
}

.img-box img {
  width: 100%;
}
/* banner */
.banner-wrap {
  margin-top: 100px;
  width: 100%;
  height: 500px;
  background-color: #f0f0f0;
  position: relative;
  background-image: url(../image/JoinUs-banner.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-shadow {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.banner-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 50px;
  color: #fff;
  line-height: 60px;
  font-family: MiSans-Semibold;
  width: 90%;
  text-align: center;
}

/* 公司简介 */
.company-blurb {
  padding-top: 40px;
  /* background-color: #fbfbfb; */
}

.company-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.company-text-wrap {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

.company-text-title {
  text-align: center;
  font-size: 24px;
  color: #000;
  line-height: 1.5em;
}

#swiperBox {
  padding-top: 40px;
}

#swiperBox2 {
  display: none;
  padding-top: 40px;
}

.swiper-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

/* 招聘信息 */
.recruit-message {
  padding: 40px 0;
}

.recruit-wrap {
  padding: 40px 10px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.item {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
  color: #333333;
}

.tit {
  font-size: 20px;
  line-height: 1.5em;
  height: 3em;
  overflow: hidden;
}

.desc {
  display: flex;
}

.desc-i {
  padding-right: 15px;
  font-size: 16px;
  line-height: 1.5em;
  padding-top: 5px;
}

.more-btn {
  color: #121961;
  padding-top: 20px;
  display: flex;
  font-size: 16px;
  align-items: center;
}

.more-img {
  padding-left: 10px;
  width: 25px;
}

/* 鼠标选中颜色 */
.item:hover {
  background-color: #121961;
  color: #ffffff;
  box-shadow: 0 10px 10px #cccccc;
}

.item:hover .more-btn {
  color: #ffffff;
}

.icon2 {
  display: none;
}

.item:hover .icon2 {
  display: block;
}

.item:hover .icon1 {
  display: none;
}

/* 分页 */
.pages {
  text-align: center;
  padding-top: 10px;
}

/* element */
.el-carousel__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.el-icon-arrow-right {
  width: 24px;
  height: 24px;
  background-image: url(../image/right-arrow.svg);
  background-size: cover;
  background-position: center center;
}
.el-icon-arrow-right:before {
  content: "" !important;
}

.el-icon-arrow-left {
  width: 24px;
  height: 24px;
  background-image: url(../image/left-arrow.svg);
  background-size: cover;
  background-position: center center;
}
.el-icon-arrow-left:before {
  content: "" !important;
}

@media (max-width: 1190px) {
  .recruit-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main {
    width: 90vw;
  }

  .company-text-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  #swiperBox2 {
    display: block;
  }
  #swiperBox {
    display: none;
  }

  .recruit-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-icp {
  text-decoration: none !important;
  color: #000;
}

