/* 黑客24小时在线接单首页CSS */
:root {
  --main-bg: #101417;
  --main-green: #00ff99;
  --main-dark: #181c20;
  --main-gray: #22272b;
  --text-main: #e0ffe0;
  --text-sub: #b2ffb2;
  --card-bg: #181f1c;
  --border: #00ff99;
  --shadow: 0 2px 16px rgba(0,255,153,0.08);
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--main-bg);
  color: var(--text-main);
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  font-size: 16px;
}
.header {
  background: var(--main-dark);
  border-bottom: 2px solid var(--main-green);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5em 1em;
}
.site-brand {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  color: var(--main-green);
}
.brand-icon {
  font-size: 1.5em;
  margin-right: 0.4em;
}
.nav ul {
  display: flex;
  gap: 1.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  padding: 0.3em 0.7em;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nav ul li a:hover {
  background: var(--main-green);
  color: #101417;
}
.nav-toggle {
  display: none;
  font-size: 2em;
  color: var(--main-green);
  cursor: pointer;
  margin-left: 1em;
}
.main-banner {
  background: linear-gradient(120deg, #0a1a13 60%, #00ff99 100%);
  position: relative;
  padding: 3em 1em 2em 1em;
  text-align: center;
  overflow: hidden;
}
.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.banner-content {
  flex: 2 1 340px;
  min-width: 220px;
}
.banner-img-wrap {
  flex: 1 1 260px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img {
  width: 220px;
  height: 220px;
  max-width: 32vw;
  max-height: 32vw;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,255,153,0.18);
  object-fit: cover;
  border: 2.5px solid var(--main-green);
  background: #181c20;
}
.main-banner h1 {
  font-size: 2.5em;
  color: var(--main-green);
  margin-bottom: 0.5em;
  letter-spacing: 2px;
}
.main-banner p {
  font-size: 1.2em;
  color: var(--text-sub);
  margin-bottom: 1.5em;
}
.banner-cta {
  display: inline-block;
  background: var(--main-green);
  color: #101417;
  font-weight: bold;
  padding: 0.8em 2.2em;
  border-radius: 30px;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.banner-cta:hover {
  background: #fff;
  color: var(--main-green);
}
.banner-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: url('images/hrjx.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 1;
}
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em 1em 1em;
}
section {
  margin-bottom: 2.5em;
}
.core-services h2,
.why-us h2,
.workflow h2,
.testimonials h2,
.about h2,
.contact h2 {
  color: var(--main-green);
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
  letter-spacing: 1px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
}
.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--main-green);
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
  padding: 1.5em 1em;
  text-align: center;
  margin-bottom: 1em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 4px 32px rgba(0,255,153,0.18);
}
.service-icon {
  font-size: 2.2em;
  color: var(--main-green);
  margin-bottom: 0.5em;
}
.why-list {
  background: var(--main-gray);
  border-radius: 10px;
  padding: 1.5em 1.2em;
  color: var(--text-main);
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  list-style: none;
}
.why-list li {
  margin-bottom: 0.7em;
  padding-left: 0.5em;
  border-left: 3px solid var(--main-green);
}
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
}
.step {
  background: var(--card-bg);
  border: 1.5px solid var(--main-green);
  border-radius: 10px;
  flex: 1 1 160px;
  max-width: 200px;
  min-width: 140px;
  text-align: center;
  padding: 1em 0.7em;
  margin-bottom: 1em;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-block;
  background: var(--main-green);
  color: #101417;
  font-weight: bold;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  line-height: 2em;
  font-size: 1.2em;
  margin-bottom: 0.3em;
}
.step-title {
  display: block;
  font-weight: bold;
  color: var(--main-green);
  margin-bottom: 0.2em;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
}
.testimonial-item {
  background: var(--main-gray);
  border-left: 4px solid var(--main-green);
  border-radius: 8px;
  padding: 1.2em 1em 1em 1.5em;
  max-width: 320px;
  min-width: 180px;
  margin-bottom: 1em;
  color: var(--text-main);
  box-shadow: var(--shadow);
  font-size: 1.05em;
}
.testimonial-user {
  display: block;
  color: var(--main-green);
  margin-top: 0.7em;
  font-size: 0.95em;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
  justify-content: center;
}
.about-text {
  flex: 2 1 300px;
  min-width: 200px;
  font-size: 1.1em;
  color: var(--text-main);
}
.about-img {
  flex: 1 1 180px;
  min-width: 120px;
  text-align: center;
}
.about-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--main-green);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.contact-form {
  background: var(--main-gray);
  border-radius: 10px;
  padding: 1.5em 1em;
  max-width: 420px;
  margin: 0 auto 1.2em auto;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.contact-form label {
  color: var(--main-green);
  font-weight: 500;
  margin-bottom: 0.2em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #101417;
  color: var(--text-main);
  border: 1.2px solid var(--main-green);
  border-radius: 5px;
  padding: 0.6em 0.7em;
  font-size: 1em;
  margin-bottom: 0.5em;
  outline: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1.5px solid #fff;
}
.contact-form button {
  background: var(--main-green);
  color: #101417;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 0.7em 0;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 0.5em;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #fff;
  color: var(--main-green);
}
.contact-info {
  text-align: center;
  color: var(--text-sub);
  font-size: 1.05em;
}
.footer {
  background: var(--main-dark);
  border-top: 2px solid var(--main-green);
  padding: 1.2em 0 0.7em 0;
  text-align: center;
  color: var(--text-sub);
  font-size: 1em;
}
.footer-inner p {
  margin: 0.2em 0;
}
/* 响应式设计 */
@media (max-width: 900px) {
  .header-inner, main {
    max-width: 98vw;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .service-grid, .workflow-steps, .testimonial-list, .about-content {
    flex-wrap: wrap;
    gap: 1em;
  }
  .banner-flex {
    gap: 1em;
  }
  .banner-img {
    width: 140px;
    height: 140px;
    max-width: 40vw;
    max-height: 40vw;
  }
}
@media (max-width: 700px) {
  .header-inner {
    flex-direction: row;
    padding: 0.5em 0.3em;
  }
  .nav ul {
    display: none;
    flex-direction: column;
    background: var(--main-dark);
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 99;
    border-bottom: 2px solid var(--main-green);
    padding: 1em 0;
    gap: 0.7em;
  }
  .nav ul.nav-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .main-banner h1 {
    font-size: 1.5em;
  }
  .service-grid, .workflow-steps, .testimonial-list, .about-content {
    flex-direction: column;
    align-items: stretch;
  }
  .about-img img {
    width: 80px;
    height: 80px;
  }
  .banner-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .banner-img {
    width: 90vw;
    height: auto;
    max-width: 320px;
    max-height: 180px;
    margin-top: 0.5em;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .main-banner {
    padding: 2em 0.3em 1.2em 0.3em;
  }
  .service-card, .step, .testimonial-item {
    min-width: 0;
    max-width: 100%;
    padding: 1em 0.5em;
  }
  .about-content {
    gap: 1em;
  }
  .contact-form {
    padding: 1em 0.3em;
  }
}
/* 服务亮点/优势区 */
.highlights {
  margin-bottom: 2.5em;
}
.highlights h2 {
  color: var(--main-green);
  text-align: center;
  margin-bottom: 1em;
}
.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
}
.highlight-item {
  background: var(--main-gray);
  border: 1.5px solid var(--main-green);
  border-radius: 10px;
  box-shadow: var(--shadow);
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 140px;
  text-align: center;
  padding: 1.2em 0.7em;
  margin-bottom: 1em;
}
.highlight-icon {
  font-size: 2em;
  color: var(--main-green);
  display: block;
  margin-bottom: 0.3em;
}
/* 案例卡片区 */
.cases h2 {
  color: var(--main-green);
  text-align: center;
  margin-bottom: 1em;
}
.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
}
.case-card {
  background: var(--card-bg);
  border: 1.5px solid var(--main-green);
  border-radius: 10px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 180px;
  padding: 1.2em 1em;
  margin-bottom: 1em;
  color: var(--text-main);
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 4px 24px rgba(0,255,153,0.15);
}
.case-meta {
  display: block;
  color: var(--main-green);
  font-size: 0.95em;
  margin-top: 0.7em;
}
/* 行业资讯/防骗知识区 */
.news h2 {
  color: var(--main-green);
  text-align: center;
  margin-bottom: 1em;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
}
.news-item {
  background: var(--main-gray);
  border-left: 4px solid var(--main-green);
  border-radius: 8px;
  padding: 1.2em 1em 1em 1.5em;
  max-width: 320px;
  min-width: 180px;
  margin-bottom: 1em;
  color: var(--text-main);
  box-shadow: var(--shadow);
  font-size: 1.05em;
}
/* 团队风采与荣誉 */
.team h2 {
  color: var(--main-green);
  text-align: center;
  margin-bottom: 1em;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
  align-items: flex-start;
}
.team-member {
  background: var(--card-bg);
  border: 1.5px solid var(--main-green);
  border-radius: 10px;
  box-shadow: var(--shadow);
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 140px;
  text-align: center;
  padding: 1.2em 0.7em;
  margin-bottom: 1em;
}
.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--main-green);
  object-fit: cover;
  margin-bottom: 0.5em;
}
.team-honor {
  background: var(--main-gray);
  border-radius: 10px;
  padding: 1em 1em 1em 1.2em;
  min-width: 180px;
  max-width: 260px;
  color: var(--main-green);
  font-size: 1em;
  margin-bottom: 1em;
  box-shadow: var(--shadow);
}
.team-honor h5 {
  margin: 0 0 0.5em 0;
  color: var(--main-green);
  font-size: 1.1em;
}
.team-honor ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-main);
}
.team-honor li {
  margin-bottom: 0.4em;
}
/* FAQ与联系咨询横向排版 */
.faq-contact-wrap {
  margin: 2.5em 0;
}
.faq-contact-flex {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  justify-content: center;
}
.faq-block, .contact-block {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 480px;
}
@media (max-width: 900px) {
  .faq-contact-flex {
    gap: 1em;
  }
}
@media (max-width: 700px) {
  .faq-contact-flex {
    flex-direction: column;
    gap: 1.5em;
    align-items: stretch;
  }
  .faq-block, .contact-block {
    max-width: 100%;
    min-width: 0;
  }
}
/* FAQ扩展 */
.faq h2 {
  color: var(--main-green);
  text-align: center;
  margin-bottom: 1em;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  background: var(--main-gray);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.5em 1.2em;
}
.faq-item {
  margin-bottom: 1.2em;
}
.faq-item h4 {
  color: var(--main-green);
  margin-bottom: 0.2em;
}
.faq-item p {
  color: var(--text-main);
  margin: 0 0 0.2em 0;
}
/* 悬浮快捷咨询入口 */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  background: var(--main-green);
  color: #101417;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.7em 1.3em;
  font-size: 1.05em;
  text-decoration: none;
  box-shadow: var(--shadow);
  margin-bottom: 0.1em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.float-btn:hover {
  background: #fff;
  color: var(--main-green);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .highlight-list, .case-list, .news-list, .team-list {
    flex-wrap: wrap;
    gap: 1em;
  }
}
@media (max-width: 700px) {
  .highlight-list, .case-list, .news-list, .team-list {
    flex-direction: column;
    align-items: stretch;
  }
  .floating-contact {
    right: 8px;
    bottom: 12px;
  }
  .float-btn {
    padding: 0.6em 0.8em;
    font-size: 0.98em;
  }
}
/* 核心服务三大框架区 */
.service-frameworks {
  margin: 2.5em 0;
}
.service-frameworks h2 {
  color: var(--main-green);
  text-align: center;
  margin-bottom: 1.2em;
}
.framework-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
}
.framework-card {
  background: var(--main-gray);
  border: 1.5px solid var(--main-green);
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 180px;
  padding: 1.5em 1em 1.2em 1em;
  margin-bottom: 1em;
  color: var(--text-main);
  transition: transform 0.2s, box-shadow 0.2s;
}
.framework-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 24px rgba(0,255,153,0.15);
}
.framework-card h3 {
  color: var(--main-green);
  font-size: 1.2em;
  margin-bottom: 0.7em;
  text-align: center;
}
.framework-card ul {
  padding-left: 1.2em;
  margin: 0;
  color: var(--text-sub);
  font-size: 1.05em;
}
.framework-card li {
  margin-bottom: 0.6em;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .framework-list {
    flex-wrap: wrap;
    gap: 1em;
  }
}
@media (max-width: 700px) {
  .framework-list {
    flex-direction: column;
    align-items: stretch;
  }
  .framework-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2em 0.7em 1em 0.7em;
  }
}
.team-honor-card {
  background: var(--main-bg);
  border: 2px solid var(--main-green);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,255,153,0.13);
  padding: 1.2em 1.2em 1em 1.2em;
  margin: 0 auto;
  max-width: 320px;
  color: var(--main-green);
  text-align: center;
}
.team-honor-card h5 {
  color: var(--main-green);
  font-size: 1.15em;
  margin-bottom: 0.7em;
}
.team-honor-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-main);
  text-align: left;
}
.team-honor-card li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .team-honor-card {
    max-width: 100%;
    padding: 1em 0.7em 0.7em 0.7em;
  }
} 