/* 服务行业模块样式 */
.service-industry {
  padding: 60px 0;
  background: #fff;
}

.service-industry .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.industry-tabs {
  margin-top: 30px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.tab-btn:hover {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.tab-btn.active {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  font-weight: 500;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #4f46e5;
  border-radius: 1px;
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.industry-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  min-height: 400px;
}

.industry-left {
  flex: 1;
  padding: 40px 20px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-title {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 89%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
}

.industry-desc {
  font-size: 16px;
  color: #15181c;
  line-height: 1.6;
  margin-bottom: 30px;
}
.industry-brand {
  font-size: 14px;
  color: #15181c;
  line-height: 1.6;
  margin-bottom: 16px;
}
.industry-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-item {
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  box-shadow: 0px 2.53px 19px 0px rgba(211, 223, 242, 0.4);
  transition: all 0.3s ease;
}

.logo-grid .logo-item img {
  width: 100%;
 
}
.logo-item img {
  width: 114px;
 
}
.logo-item:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.industry-right {
  flex: 1;
  position: relative;
}

.industry-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.image-placeholder {
  text-align: center;
  padding: 20px;
}

.image-placeholder img {
  width: 600px;
  height: 300px;
  box-shadow: 0px 2.53px 19px 0px rgba(211, 223, 242, 0.4);
}

.image-placeholder:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* 驰蚁信息品牌力模块样式 */
.brand-strength {
  padding: 60px 0;
  background: #f9f9ff;
}

.brand-strength .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.strength-cards {
  display: flex;
  gap: 20px;
}

.strength-card {
  flex: 0 0 calc(25% - 0px);
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.strength-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #4f46e5 !important;
}

.strength-icon {
  margin-bottom: 20px;
}

.strength-icon img {
  width: 40px;
  height: 40px;
}

.strength-title {
  font-size: 24px;
  font-weight: bold;
  color: #15181c;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}

.strength-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}

.strength-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strength-list li {
  font-size: 16px;
  color: #15181c;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
}

.strength-list li::before {
  content: "•";
  color: #15181c;

  margin-right: 8px;
}

.strength-list .highlight {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}

/* 团队实力模块样式 */
.team-strength {
  padding: 60px 0;
  background: #fff;
}

.team-strength .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.team-photos {
  margin-top: 50px;
  background: #f0f0fb;
  padding: 20px;
  border-radius: 24px;
}

.main-photo {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.main-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.main-photo:hover img {
  transform: scale(1.02);
}

.sub-photos {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.sub-photo {
  width: 30%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;
}

.sub-photo-long {
  width: 40% !important;
}

.sub-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sub-photo img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.sub-photo:hover img {
  transform: scale(1.05);
}

/* 品牌客户信赖之选模块样式 */
.brand-customers {
  padding: 60px 0;
  background: #f9f9ff;
}

.brand-customers .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.customer-logos {
  margin-top: 50px;
}

.logo-grid {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: center;
}

.logo-grid .logo-item {
  width: 128px;
  height: 54px;
  box-sizing: border-box;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.3s ease;
}

.logo-grid .logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #4f46e5;
}

.logo-grid .logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-grid .logo-item:hover img {
  transform: scale(1.1);
}

/* 行业权威认可模块样式 */
.industry-recognition {
  padding: 60px 0;
  background: #fff;
}

.industry-recognition .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.recognition-tabs {
  margin-top: 50px;
}

.recognition-tabs .tab-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  position: relative;
}

.recognition-tabs .tab-nav::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.recognition-tabs .tab-btn {
  margin: 0 200px;
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.recognition-tabs .tab-btn:hover {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.recognition-tabs .tab-btn.active {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.recognition-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  border-radius: 2px;
  z-index: 1;
}

.recognition-tabs .tab-content {
  position: relative;
  margin-top: 40px;
}

.recognition-tabs .tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.recognition-tabs .tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.certificates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.certificate-item {
  background: #f9fcff;
  border-radius: 12px;
  width: 212px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 10px;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s ease;
  text-align: center;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.certificate-image {
  width: 100%;
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.certificate-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-image img {
  transform: scale(1.05);
}

.certificate-label {
  font-size: 14px;
  color: #15181c;
  line-height: 1.4;
  font-weight: 500;
  padding: 0px;
  box-sizing: border-box;
}

/* IT人力外包资讯模块样式 */
.it-news {
  padding: 60px 0;
  background: #f9f9ff !important;
}

.it-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.news-content {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.hot-news {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.latest-news {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-header-title {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 150px;
}

.news-header h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.news-header .news-icon {
  display: inline-block;
  width: 16px;
  margin-right: 6px;
}
.news-more {
  float: right;
}

.news-list {
  margin-bottom: 25px;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  border-radius: 8px;

  background: rgba(79, 70, 229, 0.02);
}

.news-image {
  width: 160px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  color: #15181c;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-size: 14px;
  color: rgba(21, 24, 28, 0.8);
  line-height: 1.6;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-time {
  font-size: 12px;
  color: rgba(21, 24, 28, 0.8);
}

.news-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}

.news-more {
  text-align: center;
}

.more-news-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #4f46e5;
  border-radius: 25px;
  color: #4f46e5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.more-news-btn:hover {
  background: #4f46e5;
  color: #fff;

  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.latest-news-list {
  margin-top: 20px;
}

.latest-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.latest-news-item:hover {
  transform: translateX(5px);
}

.latest-news-item:hover .latest-title {
  color: #4f46e5;
}

.latest-title {
  font-size: 16px;
  font-weight: 600;
  color: #15181c;
  flex: 1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-date {
  font-size: 14px;
  color: rgba(21, 24, 28, 0.8);
  margin-left: 10px;
}

/* IT人力外包热门问答模块样式 */
.it-faq {
  padding: 60px 0;
  background: #f9f9ff;
}

.it-faq .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 30px;
  background: url(/template/pc/skin/images/fbg.png) no-repeat center center;
  border-radius: 24px;

  box-shadow: 0px 4px 20px 0px rgba(192, 186, 255, 0.2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  border-radius: 8px;
  padding: 20px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: none;
  box-shadow: none;
  border-color: #4f46e5;
  background: #f8fafc;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  flex-shrink: 0;
  background: url(../images/q_01.png) no-repeat center center;
}

.q-icon {
  /* 渐变 */
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
}

.a-icon {
  background: #22c55e;
}

.faq-text {
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
}

.faq-question .faq-text {
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.faq-answer .faq-text {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

.faq-more {
  text-align: center;
  margin-top: 50px;
}

.more-positions-btn {
  text-align: center;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #4f46e5;
  border-radius: 25px;
  color: #4f46e5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.more-icon {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.more-btn:hover .more-icon {
  transform: translateX(3px);
}

.address .container {
  width: 1200px;
  margin: 0 auto;
  padding: 30px 0 60px 0;
}
.banner-service-bg-about {
  background-image: url('/template/pc/skin/images/banner-home-bg7.jpg') !important;
}
.address dl {
  border-radius: 16px;
  background: #4f46e5;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  border: 2px #4f46e5 solid;
  overflow: hidden;
  align-items: center;
}
.address dl dt .pcShow {
  display: block;
}
.mobileShow {
  display: none;
  
}
.address dl dt {
  width: 660px;
  line-height: 0;
  padding-left: 2px;
  box-sizing: border-box;
}
.address dl dt img {
  width: 100%;
  border-radius: 16px;
}
.address dl dd {
  padding: 30px 0 30px 60px;
}
.address dl dd h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.address dl dd ul.lxdz {
  margin: 20px 0;
}
.address dl dd ul.lxdz li {
  border-radius: 16px;
  padding-left: 32px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0.8;
  font-size: 16px;
}
.address dl dd ul.lxdz li.ico1 {
  background: url(../images/ico_lx1.png) no-repeat left center;
}
.address dl dd ul.lxdz li.ico2 {
  background: url(../images/ico_lx2.png) no-repeat left center;
}
.address dl dd ul.lxdz li.ico3 {
  background: url(../images/ico_lx3.png) no-repeat left center;
}

.address dl dd ul.zxewm {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.address dl dd ul.zxewm li {
  width: 100px;
  text-align: center;
  margin-right: 40px;
}
.address dl dd ul.zxewm li img {
  width: 100%;
}
.address dl dd ul.zxewm li span {
  display: block;
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
  letter-spacing: 0.04em;
  line-height: 16px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  /* 服务行业模块响应式 - 桌面端 */
  .service-industry {
    padding: 60px 0;
  }

  .tab-nav {
    gap: 15px;
    margin-bottom: 35px;
  }

  .tab-btn {
    padding: 9px 18px;
    font-size: 15px;
  }

  .industry-content {
    min-height: 350px;
  }

  .industry-left {
    padding: 35px 30px;
  }

  .industry-title {
    font-size: 28px;
  }

  .industry-desc {
    font-size: 15px;
  }

  .industry-logos {
    gap: 15px;
  }

  .logo-item {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* 驰蚁信息品牌力模块响应式 - 桌面端 */
  .brand-strength {
    padding: 60px 0;
  }

  .strength-cards {
    gap: 20px;
  }

  .strength-card {
    flex: 0 0 calc(25% - 15px);
    padding: 25px 20px;
  }

  .strength-icon {
    margin-bottom: 15px;
  }

  .strength-icon img {
    width: 35px;
    height: 35px;
  }

  .strength-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }

  .strength-list li {
    font-size: 13px;
    margin-bottom: 6px;
  }

  /* 团队实力模块响应式 - 桌面端 */
  .team-strength {
    padding: 60px 0;
  }

  .team-photos {
    margin-top: 40px;
  }

  .main-photo {
    margin-bottom: 25px;
  }

  .sub-photos {
    gap: 15px;
  }

  /* 品牌客户信赖之选模块响应式 - 桌面端 */
  .brand-customers {
    padding: 60px 0;
  }

  .customer-logos {
    margin-top: 40px;
  }

  .logo-grid {
    padding: 30px;
    gap: 15px;
  }

  .logo-grid .logo-item {
    height: 70px;
    padding: 12px;
  }

  /* 行业权威认可模块响应式 - 桌面端 */
  .industry-recognition {
    padding: 60px 0;
  }

  .recognition-tabs {
    margin-top: 40px;
  }

  .recognition-tabs .tab-nav {
    gap: 30px;
    margin-bottom: 35px;
  }

  .recognition-tabs .tab-btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .certificate-item {
    width: 20%;
    margin-bottom: 2.5%;
  }

  .certificate-item {
    height: 180px;
  }

  .certificate-image {
    height: 130px;
  }
}

@media (max-width: 768px) {
  /* 服务行业模块响应式 - 平板 */
  .service-industry {
    padding: 50px 0;
  }

  .tab-nav {
    gap: 15px;
    margin-bottom: 35px;
  }

  .tab-btn {
    padding: 9px 18px;
    font-size: 15px;
  }

  .industry-content {
    min-height: 350px;
  }

  .industry-left {
    padding: 35px 30px;
  }

  .industry-title {
    font-size: 28px;
  }

  .industry-desc {
    font-size: 15px;
  }

  .industry-logos {
    gap: 15px;
  }

  .logo-item {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* 驰蚁信息品牌力模块响应式 - 平板 */
  .brand-strength {
    padding: 50px 0;
  }

  .strength-cards {
    gap: 20px;
  }

  .strength-card {
    flex: 0 0 calc(25% - 15px);
    padding: 25px 20px;
  }

  .strength-icon {
    margin-bottom: 15px;
    text-align: center;
  }

  .strength-icon img {
    width: 35px;
    height: 35px;
  }

  .strength-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }

  .strength-list li {
    font-size: 13px;
    margin-bottom: 6px;
  }

  /* 团队实力模块响应式 - 平板 */
  .team-strength {
    padding: 50px 0;
  }

  .team-photos {
    margin-top: 35px;
    padding: 20px;
    border-radius: 20px;
  }

  .main-photo {
    margin-bottom: 18px;
    border-radius: 10px;
  }

  .main-photo img {
    width: 100%;
    height: auto;
  }

  .sub-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sub-photo {
    width: 100%;
    border-radius: 8px;
  }

  .sub-photo-long {
    width: 100% !important;
    grid-column: span 1;
  }

  /* 品牌客户信赖之选模块响应式 - 平板 */
  .brand-customers {
    padding: 50px 0;
  }

  .customer-logos {
    margin-top: 35px;
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
    gap: 10px;
    border-radius: 14px;
  }

  .logo-grid .logo-item {
    width: 100%;
    height: 52px;
    padding: 8px;
    border-radius: 8px;
    
  }

  .logo-grid .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* 行业权威认可模块响应式 - 平板 */
  .industry-recognition {
    padding: 50px 0;
  }

  .recognition-tabs {
    margin-top: 35px;
  }

  .recognition-tabs .tab-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
    position: relative;
  }

  .recognition-tabs .tab-nav::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    display: none;
  }

  .recognition-tabs .tab-btn {
    margin: 0;
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16x;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #333;
  }

  .recognition-tabs .tab-btn:hover {
    background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .recognition-tabs .tab-btn.active {
    background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .recognition-tabs .tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
    border-radius: 2px;
    z-index: 1;
  }

  .recognition-tabs .tab-content {
    margin-top: 20px !important;
  }

  /* 平板端证书网格布局 */
  .certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .certificate-item {
    width: 100%;
    height: 180px;
    margin: 0;
  }

  .certificate-image {
    height: 120px;
  }

  /* 平板端分页样式 */
  .mobile-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    padding: 0 30px;
  }

  .pagination-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .pagination-arrow {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: #1A2233;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
  }

  .pagination-arrow:hover:not(:disabled) {
    background: #f5f5f5;
    color: #333;
  }

  .pagination-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .page-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #1A2233;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    user-select: none;
  }

  .page-number:hover {
    background: #f5f5f5;
    color: #333;
  }

  .page-number.active {
    background: #e8e0ff;
    color: #7c3aed;
    border: 1px solid #a855f7;
    font-weight: 600;
  }

  .page-number.active:hover {
    background: #e8e0ff;
    color: #7c3aed;
  }

  /* IT人力外包资讯模块响应式 - 平板 */
  .it-news {
    padding: 50px 0;
  }

  .news-content {
    flex-direction: column;
    gap: 20px;
  }

  .hot-news {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }

  .latest-news {
    width: 100% !important;
    padding: 24px;
    box-sizing: border-box;
  }

  .news-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .news-header h3 {
    font-size: 18px;
  }

  .news-header .news-icon {
    width: 14px;
  }

  .news-list {
    margin-bottom: 20px;
  }

  .news-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
  }

  .news-item:last-child {
    border-bottom: none;
  }

  .news-image {
    width: 120px !important;
    height: 90px !important;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .news-info {
    flex: 1;
    min-width: 0;
  }

  .news-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .news-desc {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #1A2233;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .news-time {
    font-size: 11px;
    color: #999;
  }

  .latest-news-list {
    margin-top: 16px;
  }

  .latest-news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .latest-news-item:last-child {
    border-bottom: none;
  }

  .latest-title {
    font-size: 14px;
    flex: 1;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .latest-date {
    font-size: 12px;
    margin-left: 8px;
    color: #999;
    flex-shrink: 0;
  }

  /* IT人力外包热门问答模块响应式 - 平板 */
  .it-faq {
    padding: 50px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-item {
    padding: 18px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .more-btn {
    padding: 0;
    font-size: 14px;
  }

  .more-icon {
    width: 17px;
    height: 17px;
    margin-left: 9px;
  }

  /* IT人力外包资讯模块响应式 - 桌面端 */
  .it-news {
    padding: 60px 0;
  }

  .news-content {
    gap: 25px;
  }

  .hot-news {
    padding: 16px !important;
  }

  .latest-news {
    width: 280px;
    padding: 25px;
  }

  /* IT人力外包热门问答模块响应式 - 桌面端 */
  .it-faq {
    padding: 60px 0;
  }

  .faq-grid {
    gap: 25px;
  }

  .faq-item {
    padding: 20px;
  }

  .address .container {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .banner-service-bg-about {
    background-image: url('/template/pc/skin/images/banner-home-bg7_1.jpg') !important;
  }
  .address dl {
    flex-direction: column;
    box-sizing: border-box;
  }
  .address dl dt .pcShow {
    display: none!important;
  }
  .mobileShow {
    display: block !important;
    
  }

  .address dl dt {
    width: 100%;
    padding: 3rem 3rem 0 2rem;
    box-sizing: border-box;
  }
  .address dl dd {
    width: 100%;
    padding: 16rem 20rem 20rem 20rem;
    box-sizing: border-box;
  }
  .address dl dd h3 {
    line-height: 40rem;
    font-size: 20rem;
  }
  .address dl dd ul.lxdz li {
    font-size: 12rem;
    line-height: 24rem;
    padding-left: 20rem;
    margin-bottom: 0;
    letter-spacing: 0em;
  }
  .address dl dd ul.lxdz li.ico1 {
    background: url(../images/ico_lx1.png) no-repeat left 5px;
    background-size: 16rem;
  }
  .address dl dd ul.lxdz li.ico2 {
    background: url(../images/ico_lx2.png) no-repeat left 5px;
    background-size: 16rem;
  }
  .address dl dd ul.lxdz li.ico3 {
    background: url(../images/ico_lx3.png) no-repeat left 5px;
    background-size: 16rem;
  }

  .lxwm dl dd ul.lxdz li.wapdz {
    padding-left: 82rem;
    line-height: 12rem;
    margin-bottom: 6rem;
  }
  .lxwm dl dd ul.zxewm li {
    width: 100rem;
    text-align: center;
    margin-right: 20rem;
  }

  .lxwm dl dd ul.zxewm li span {
    font-size: 12rem;
    letter-spacing: 0;
  }
  .lxwm dl dd ul.lxdz {
    margin: 0;
  }
  .lxwm dl dd ul.zxewm {
    margin-top: 12rem;
  }
}

@media (max-width: 480px) {
  /* 服务行业模块响应式 - 手机 */
  .service-industry {
    padding: 40px 0;
  }

  .tab-nav {
    gap: 10px;
    margin-bottom: 10px;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .industry-content {
    flex-direction: column;
    min-height: auto;
  }

  .industry-left {
    padding: 30px 20px;
  }

  .industry-title {
    font-size: 24px;
  }

  .industry-desc {
    font-size: 14px;
  }
  .industry-brand {
    font-size: 12px;
  }

  .industry-logos {
    gap: 10px;
  }

  .logo-item {
    padding: 8px 15px;
    font-size: 12px;
  }

  .industry-right {
    min-height: 200px;
  }

  /* 驰蚁信息品牌力模块响应式 - 手机 */
  .brand-strength {
    padding: 40px 0;
  }

  .strength-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .strength-card {
    flex: none;
    padding: 20px 15px;
  }

  .strength-icon {
    margin-bottom: 12px;
    text-align: center;
  }

  .strength-icon img {
    width: 30px;
    height: 30px;
  }

  .strength-title {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
  }

  .strength-list li {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.6;
  }

  /* 团队实力模块响应式 - 手机 */
  .team-strength {
    padding: 40px 0;
  }

  .team-photos {
    margin-top: 30px;
    padding: 16px;
    border-radius: 16px;
  }

  .main-photo {
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .main-photo img {
    width: 100%;
    height: auto;
  }

  .sub-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sub-photo {
    width: 100%;
    border-radius: 6px;
  }

  .sub-photo-long {
    width: 100% !important;
    grid-column: span 1;
  }

  /* 移动端隐藏第五张图 */
  .sub-photo:nth-child(5) {
    display: none;
  }

  /* 品牌客户信赖之选模块响应式 - 手机 */
  .brand-customers {
    padding: 40px 0;
  }

  .customer-logos {
    margin-top: 30px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 16px;
    gap: 8px;
    border-radius: 12px;
  }

  .logo-grid .logo-item {
    width: 100%;
    height: 44px;
    padding: 6px;
    border-radius: 6px;
   
  }

  .logo-grid .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* 行业权威认可模块响应式 - 手机 */
  .industry-recognition {
    padding: 40px 0;
  }

  .recognition-tabs {
    margin-top: 30px;
  }

  .recognition-tabs .tab-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
  }

  .recognition-tabs .tab-nav::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    display: none;
  }

  .recognition-tabs .tab-btn {
    margin: 0;
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #333;
  }

  .recognition-tabs .tab-btn:hover {
    background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .recognition-tabs .tab-btn.active {
    background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .recognition-tabs .tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
    border-radius: 2px;
    z-index: 1;
  }

  .recognition-tabs .tab-content {
    margin-top: 20px !important;
  }

  /* 移动端证书网格布局 */
  .certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .certificate-item {
    width: 100%;
    height: 160px;
    margin: 0;
  }

  .certificate-image {
    height: 100px;
  }

  .certificate-label {
    font-size: 12px;
  }

  /* 移动端分页样式 */
  .mobile-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
  }

  .pagination-container {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pagination-arrow {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: #1A2233;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
  }

  .pagination-arrow:hover:not(:disabled) {
    background: #f5f5f5;
    color: #333;
  }

  .pagination-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .page-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #1A2233;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    user-select: none;
  }

  .page-number:hover {
    background: #f5f5f5;
    color: #333;
  }

  .page-number.active {
    background: #e8e0ff;
    color: #7c3aed;
    border: 1px solid #a855f7;
    font-weight: 600;
  }

  .page-number.active:hover {
    background: #e8e0ff;
    color: #7c3aed;
  }

  /* IT人力外包资讯模块响应式 - 手机 */
  .it-news {
    padding: 40px 0;
  }

  .news-content {
    flex-direction: column;
    gap: 16px;
  }

  .hot-news {
    width: 100%;
    padding: 16px !important;
  }

  .latest-news {
    width: 100%;
    padding: 16px;
  }

  .news-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .news-header h3 {
    font-size: 16px;
  }

  .news-header .news-icon {
    width: 12px;
  }

  .news-list {
    margin-bottom: 16px;
  }

  .news-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
  }

  .news-item:last-child {
    border-bottom: none;
  }

  .news-image {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .news-info {
    flex: 1;
    min-width: 0;
  }

  .news-title {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .news-desc {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
    color: #1A2233;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .news-time {
    font-size: 10px;
    color: #999;
  }

  .latest-news-list {
    margin-top: 12px;
  }

  .latest-news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .latest-news-item:last-child {
    border-bottom: none;
  }

  .latest-title {
    font-size: 13px;
    flex: 1;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .latest-date {
    font-size: 11px;
    margin-left: 8px;
    color: #999;
    flex-shrink: 0;
  }

  /* IT人力外包热门问答模块响应式 - 手机 */
  .it-faq {
    padding: 40px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .faq-text {
    font-size: 12px;
  }

  .faq-question {
    margin-bottom: 10px;
  }

  .faq-question .faq-text {
    font-size: 13px;
  }

  .faq-answer .faq-text {
    font-size: 12px;
  }

  .more-btn {
    padding: 0;
    font-size: 14px;
  }

  .more-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }
  .mobileShow {
    display: block !important;
   
 
    z-index: 9;
  }
}

/* ==================== 服务行业模块响应式样式 ==================== */

/* 平板端响应式样式 */
@media (max-width: 768px) {
  .service-industry {
    padding: 40px 0;
  }

  .service-industry .container {
    padding: 0 10px;
  }

  .industry-tabs {
    margin-top: 20px;
  }

  /* 平板端tab标签保持一行，可滑动 */
  .tab-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding-bottom: 10px;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  /* 平板端内容模块样式调整 */
  .industry-content {
    flex-direction: column;
    min-height: auto;
    border-radius: 12px;
  }

  .industry-left {
    padding: 24px;
    order: 2;
  }

  .industry-title {
    font-size: 24px;
    margin: 16px 0;
    text-align: left;
  }

  .industry-desc {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
  }

  .industry-right {
    order: 1;
  }

  .industry-image {
    height: 200px;
  }

  .industry-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .logo-item {
    padding: 12px;
  }
}

/* 移动端响应式样式 */
@media (max-width: 480px) {
  .service-industry {
    padding: 30px 0;
  }

  .service-industry .container {
    padding: 0 10px;
  }

  .industry-tabs {
    margin-top: 16px;
  }

  /* 移动端tab标签保持一行，可滑动 */
  .tab-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* 移动端内容模块样式调整 */
  .industry-content {
    flex-direction: column;
    min-height: auto;
    border-radius: 10px;
  }

  .industry-left {
    padding: 20px;
    order: 2;
  }

  .industry-title {
    font-size: 20px;
    margin: 16px 0;
    text-align: left;
  }

  .industry-desc {
    font-size: 13px;
    text-align: left;
    line-height: 1.4;
  }

  .industry-right {
    order: 1;
  }

  .industry-image {
    height: 160px;
  }

  .industry-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  .logo-item {
    padding: 10px;
  }
}
