@charset "UTF-8";
.team-welfare {
  padding-bottom: 70px;
}
.team-welfare .img-list {
  display: flex;
  margin-top: 40px;
}
.team-welfare .img-list > img {
  flex: 1;
}

.team-post {
  padding-bottom: 70px;
  background: #f8f8f8;
}
.team-post .content-tab {
  height: 48px;
  display: flex !important;
  align-items: center;
}
.team-post .content-tab .tab {
  flex: 1;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: center;
  color: #333333;
  line-height: 16px;
  cursor: pointer;
  position: relative;
}
.team-post .content-tab .tab::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -16px;
  border-bottom: 1px solid #297bff;
  transition: all ease-in-out 0.5s;
}
.team-post .content-tab .tab.active {
  color: #297bff;
}
.team-post .content-tab .tab.active::after {
  left: 30%;
  right: 30%;
}
.team-post .content-tab .tab:hover {
  color: #297bff;
}
.team-post .content-tab .tab:hover::after {
  left: 40%;
  right: 40%;
}
.team-post .panels {
  margin-top: 26px;
  padding-left: 89px;
  background: #fff;
}
.team-post .panels .panel {
  display: none;
}
.team-post .panels .panel .row {
  overflow: hidden;
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #333333;
  border-bottom: 1px solid #eeeeee;
}
.team-post .panels .panel .row .row-brif {
  height: 66px;
  display: flex;
  align-items: center;
}
.team-post .panels .panel .row .row-brif .row-address {
  flex: 2;
}
.team-post .panels .panel .row .row-brif .row-position {
  flex: 5;
}
.team-post .panels .panel .row .row-brif .row-price {
  flex: 1;
}
.team-post .panels .panel .row .row-brif .row-turn {
  width: 60px;
  text-align: center;
  cursor: pointer;
}
.team-post .panels .panel .row .row-brif .row-turn i {
  display: block;
  transition: all 0.2s ease-in-out;
}
.team-post .panels .panel .row .row-message {
  display: none;
  padding-bottom: 46px;
}
.team-post .panels .panel .row .row-message .message-title {
  height: 40px;
  line-height: 40px;
}
.team-post .panels .panel .row .row-message .messgae-list > li {
  padding-left: 34px;
  margin-bottom: 10px;
  position: relative;
}
.team-post .panels .panel .row .row-message .messgae-list > li::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #297bff;
  border-radius: 50%;
  position: absolute;
  left: 24px;
  top: 50%;
  margin-top: -2px;
}
.team-post .panels .panel .row .row-message .messgae-list > li.title {
  padding-left: 17px;
}
.team-post .panels .panel .row .row-message .messgae-list > li.title::after {
  display: none;
}
.team-post .panels .panel .row .row-message .message-tip {
  margin-top: 26px;
}
.team-post .panels .panel .row:nth-child(1) .row-message {
  display: block;
}
.team-post .panels .panel .row.active .row-brif .row-turn i {
  transform: rotateZ(180deg);
}
.team-post .panels .panel.active {
  display: block;
}

.care-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  height: 400px;
  margin: 0 auto;
  max-width: 2100px;
}
.care-list .care-item {
  position: relative;
  width: 120px;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  overflow: hidden;
  flex-shrink: 0;
}
.care-list .care-item:nth-child(odd) {
  background: linear-gradient(135deg, #0056b3 0%, #0088cc 100%);
}
.care-list .care-item:nth-child(even) {
  background: linear-gradient(135deg, #4da6ff 0%, #0088cc 100%);
}
.care-list .care-item .item-title {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 24px;
  font-family: "Arial Black", sans-serif;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.care-list .care-item .item-title-text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 24px;
  font-family: "Arial Black", sans-serif;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  writing-mode: vertical-lr;
  text-orientation: upright;
}
.care-list .care-item .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.care-list .care-item .item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.care-list .care-item .item-content .content-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.care-list .care-item .item-content .content-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
  text-align: left;
}
.care-list .care-item.active {
  width: 1500px;
}
.care-list .care-item.active .item-title {
  opacity: 0;
}
.care-list .care-item.active .item-image {
  opacity: 0.8;
}
.care-list .care-item.active .item-content {
  opacity: 1;
  transform: translateY(0);
}
.care-list .care-item:hover:not(.active) {
  width: 120px;
}
.care-list .care-item:hover:not(.active) .item-title {
  font-size: 28px;
}
.care-list:hover .care-list .care-item:not(:hover):not(.active) {
  width: 80px;
}
.care-list:hover .care-list .care-item:not(:hover):not(.active) .item-title {
  font-size: 20px;
}
.care-list .content-title {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  text-align: left;
}
.care-list .care-item.active {
  width: 450px;
}
.care-list .care-item.active .item-title-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.main-panel-title {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.main-panel-title .title {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.promotion-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .promotion-content {
    flex-direction: column;
  }
}

.promotion-text {
  flex: 1.5;
  text-align: justify;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #555;
}
.promotion-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
  text-indent: 2em;
  letter-spacing: 0.5px;
}
.promotion-text p:first-child {
  margin-top: 10px;
}

.promotion-image {
  flex: 1;
  position: relative;
  align-self: center;
  min-width: 45%;
}
.promotion-image img {
  width: 100%;
  max-width: 600px;
  min-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.promotion-image img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.promotion-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(41, 123, 255, 0.3);
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
}
.promotion-image:hover::before {
  transform: translate(5px, 5px);
  border-color: rgba(41, 123, 255, 0.25);
}

@media (max-width: 992px) {
  .promotion-content {
    gap: 40px;
  }
  .promotion-text {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .main-panel-title {
    margin-bottom: 40px;
  }
  .main-panel-title .title {
    font-size: 28px;
  }
  .promotion-image {
    order: -1;
    margin-bottom: 30px;
    text-align: center;
  }
  .promotion-image img {
    max-width: 100%;
  }
  .promotion-image::before {
    display: none;
  }
}
/* 标签导航样式 */
.tab-nav .tab-item {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}
.tab-nav .tab-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.tab-nav .tab-item.active {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* 招聘流程整体样式 */
.recruitment-process {
  margin: 60px auto;
  max-width: 1200px;
}

/* 标签导航样式 */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: -15px;
  margin: 30px 0;
  padding: 0 20px;
}
.tab-nav .tab-item {
  flex: 1;
  max-width: 200px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.tab-nav .tab-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.tab-nav .tab-item.active {
  background: #297bff;
  color: white;
  box-shadow: 0 4px 20px rgba(41, 123, 255, 0.3);
}
.tab-nav .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #297bff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* 内容区域样式 */
.tab-content {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.tab-content .content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.tab-content .content-item.active {
  display: block;
}
.tab-content .content-item .content-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.tab-content .content-item .content-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  color: white;
}
.tab-content .content-item .content-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}
.tab-content .content-item .content-text p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 响应式调整 */
@media (max-width: 768px) {
  .tab-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .tab-nav .tab-item {
    flex: 1 1 40%;
    max-width: none;
    padding: 12px 15px;
    font-size: 16px;
  }
  .tab-nav .tab-item.active::after {
    bottom: -6px;
    width: 12px;
    height: 12px;
  }
  .tab-content {
    height: 400px;
  }
  .tab-content .content-item .content-text {
    padding: 20px;
  }
  .tab-content .content-item .content-text h2 {
    font-size: 28px;
  }
  .tab-content .content-item .content-text p {
    font-size: 16px;
  }
}/*# sourceMappingURL=pc.css.map */