/* changupin.css - 创 up 人 页面样式 */
@import url('https://fonts.googleapis.com/earlyaccess/notosanskr.css');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}

/* ========== 顶部导航栏 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #0f3d7a 0%, #144f9b 45%, #1a5fb4 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 4px 20px rgba(20, 79, 155, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.scrolled {
  background: linear-gradient(165deg, #0e3a72 0%, #144f9b 50%, #1659a8 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 8px 32px rgba(0, 0, 0, 0.18);
}

.site-header .site-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
  height: 68px !important;
  min-height: 68px !important;
  padding: 0 20px !important;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box !important;
}

.site-header .site-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin: 0 !important;
  padding: 0 !important;
  height: 68px !important;
  box-sizing: border-box !important;
}

.site-header .site-logo:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.site-header .site-logo-img {
  height: 38px !important;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  display: block !important;
  margin: 0 !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.site-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0;
}

.site-header .btn-download {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 11px 22px !important;
  line-height: 1 !important;
  font-size: 15px !important;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header .btn-download:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  transform: translateY(-2px);
}

.site-header .btn-download:active {
  transform: translateY(0);
}

.site-header .btn-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  margin: 0 !important;
  gap: 6px;
  padding: 11px 26px !important;
  line-height: 1 !important;
  font-size: 15px !important;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #144f9b;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-contact:hover {
  background: #f8fbff;
  color: #0f3d7a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 1) inset;
  transform: translateY(-2px);
}

.btn-contact:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

/* ========== 文의하기 모달 ========== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 79, 155, 0.35);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.contact-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 24px 56px rgba(20, 79, 155, 0.22), 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 34px 38px 38px;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-modal.is-open .contact-modal-dialog {
  transform: scale(1) translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  color: #888;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.contact-modal-close:hover {
  color: #144f9b;
  background: #e8f0fa;
}

.contact-modal-header {
  margin-bottom: 28px;
  padding-right: 28px;
}

.contact-modal-title {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 700;
  color: #0f3d7a;
  letter-spacing: -0.02em;
}

.contact-modal-desc {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.55;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-form .required {
  color: #e74c3c;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #222;
  background: #f8f9fa;
  border: 1px solid #e2e6ea;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-control::placeholder {
  color: #aaa;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #144f9b;
  box-shadow: 0 0 0 3px rgba(20, 79, 155, 0.12);
}

.contact-form .form-control-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 8px;
}

.form-actions .btn-cancel {
  flex: 1;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #666;
  background: #f0f0f0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.form-actions .btn-cancel:hover {
  background: #e5e5e5;
  color: #444;
}

.form-actions .btn-submit {
  flex: 1;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, #144f9b 0%, #1a5fb4 50%, #1e6ac4 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1) inset, 0 4px 16px rgba(20, 79, 155, 0.4);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.form-actions .btn-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08) inset, 0 8px 24px rgba(20, 79, 155, 0.45);
  transform: translateY(-2px);
}

.form-actions .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12) inset, 0 2px 10px rgba(20, 79, 155, 0.35);
}

@media (max-width: 768px) {
  .site-header {
    height: 58px;
  }

  .site-header .site-header-inner {
    height: 58px !important;
    min-height: 58px !important;
  }

  .site-header .site-logo {
    height: 58px !important;
  }

  .site-header .site-logo-img {
    height: 32px !important;
  }

  .site-header-actions {
    gap: 8px !important;
  }

  .site-header .btn-download {
    padding: 9px 16px !important;
    font-size: 14px !important;
    border-radius: 24px;
  }

  .site-header .btn-contact {
    padding: 9px 20px !important;
    font-size: 14px !important;
    border-radius: 24px;
  }

  .contact-modal-dialog {
    padding: 24px 20px 28px;
  }

  .contact-modal-title {
    font-size: 20px;
  }
}

/* 避免首屏被固定导航遮挡 */
body.has-site-header {
  padding-top: 68px;
}

@media (max-width: 768px) {
  body.has-site-header {
    padding-top: 58px;
  }
}

/* ========== 首页区块 ========== */
.home-section {
  position: relative;
  width: 100%;
  min-height: 100px;
  overflow: hidden;
}

/* home-hero 三区布局 - 响应式 */
.home-hero-layout {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1870px;
  margin: 0 auto;
  gap: 20px;
  overflow: hidden;
  padding: 15px 20px;
  box-sizing: border-box;
}

.home-hero-carousel-area {
  flex: 1 1 63.4%;
  min-width: 0;
  max-width: 1185px;
  aspect-ratio: 1185 / 535;
  max-height: 535px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8e4f5 0%, #ebe8f7 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(120, 100, 180, 0.12);
}

.home-hero-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: 16px;
}

.home-hero-carousel .swiper-wrapper {
  height: 100%;
}

.home-hero-carousel .swiper-slide {
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  overflow: hidden;
}

.home-hero-carousel .swiper-slide img {
  width: 100%;

  object-fit: cover;
  display: block;
}

.home-hero-right {
  flex: 0 1 36.6%;
  min-width: 0;
  max-width: 685px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-hero-matrix {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  align-items: flex-start;
}

.matrix-row {
  display: flex;
  gap: 25px;
  flex: 0 0 auto;
  min-height: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.matrix-card {
  width: calc((100% - 75px) / 4);
  min-width: 0;
  flex: 1 1 calc((100% - 75px) / 4);
  max-width: 150px;
  aspect-ratio: 150 / 180;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  filter: blur(4px);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.matrix-card.active {
  filter: none;
  opacity: 1;
}

.matrix-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.home-hero-control {
  width: 100%;
  flex: 0 0 125px;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}

.home-hero-carousel-btn {
  width: min(230px, 100%);
  min-width: 160px;
  height: 70px;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #144f9b 0%, #1a5fb4 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(20, 79, 155, 0.35);
}

.home-hero-carousel-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 79, 155, 0.4);
}

.home-hero-carousel-btn:active {
  transform: translateY(0);
}

/* 平板 */
@media (max-width: 1199px) {
  .home-hero-layout {
    flex-wrap: wrap;
  }

  .home-hero-carousel-area {
    flex: 1 1 100%;
    max-width: none;
    aspect-ratio: 1185 / 535;
    max-height: none;
  }

  .home-hero-right {
    flex: 1 1 100%;
    max-width: none;
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
  }

  .home-hero-matrix {
    flex: 1 1 auto;
    min-width: 0;
    max-height: 320px;
  }

  .matrix-card {
    width: calc((100% - 75px) / 4);
    flex: 0 1 calc((100% - 75px) / 4);
  }

  .home-hero-control {
    flex: 0 0 auto;
    width: auto;
    min-height: 125px;
  }
}

/* 小屏 */
@media (max-width: 768px) {
  .home-hero-layout {
    padding: 0 12px;
    gap: 16px;
  }

  .home-hero-carousel-area {
    aspect-ratio: 16 / 9;
  }

  .home-hero-right {
    flex-direction: column;
  }

  .home-hero-matrix {
    gap: 16px;
    max-height: none;
  }

  .matrix-row {
    gap: 16px;
  }

  .matrix-card {
    width: calc((100% - 48px) / 4);
    flex: 0 1 calc((100% - 48px) / 4);
    max-width: none;
    aspect-ratio: 150 / 180;
  }

  .matrix-card img {
    height: 100%;
  }

  .home-hero-control {
    min-height: 100px;
  }

  .home-hero-carousel-btn {
    width: 100%;
    max-width: 230px;
    min-width: 140px;
    height: 56px;
    font-size: 16px;
  }
}

/* 超小屏：2 列矩阵，每行 2 张卡片 */
@media (max-width: 480px) {
  .matrix-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .matrix-card {
    width: calc((100% - 12px) / 2);
    flex: 0 1 calc((100% - 12px) / 2);
    max-width: none;
  }
}

/* ========== 창업 지원 성공 사례 ========== */
.success-projects-section {
  padding: 50px 0 60px;
  background: #fff;
}

.success-projects-section .re-container {
  max-width: 1870px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.success-projects-section .section-title {
  margin-bottom: 36px;
  text-align: center;
}

.success-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.success-project-card {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.success-project-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}

.project-card-img {
  width: 100%;
  height: 0;
  padding-bottom: 56.989%;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.project-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card-body {
  padding: 12px 14px 14px;
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.project-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  flex: 1;
}

.project-stats {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 2px;
}

.project-stats:last-of-type {
  margin-bottom: 10px;
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.project-wish {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  font-size: 13px;
  color: #999;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

.project-wish:hover {
  color: #e84c5c;
  border-color: #e84c5c;
}

.project-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #144f9b;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, background 0.2s;
}

.project-btn:hover {
  opacity: 0.9;
  background: #1a5fb4;
}

.project-add-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #888;
}

.project-add {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.project-add:hover {
  background: #144f9b;
  color: #fff;
  border-color: #144f9b;
}

@media (max-width: 1024px) {
  .success-projects-section .re-container {
    padding: 0 20px;
  }

  .success-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .success-projects-section {
    padding: 36px 0 48px;
  }

  .success-projects-section .re-container {
    padding: 0 12px;
  }

  .success-projects-section .section-title {
    margin-bottom: 24px;
  }

  .success-projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========== 이용 방법 ========== */
.usage-guide-section {
  padding: 60px 0 72px;
  background: #fff;
}

.usage-guide-container {
  max-width: 1870px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.usage-guide-section .section-title {
  margin: 40px 0 30px;
}

.usage-guide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usage-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 22px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 28px rgba(0, 0, 0, 0.04);
}

.usage-step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #144f9b 0%, #1a5fb4 100%);
  box-shadow: 0 10px 22px rgba(20, 79, 155, 0.28);
}

.usage-step-title {
  margin: 2px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0f3d7a;
  letter-spacing: -0.01em;
}

.usage-text {
  margin: 0 0 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.usage-subblock {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f5f8fc;
  border: 1px solid rgba(20, 79, 155, 0.12);
}

.usage-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #144f9b;
  margin-bottom: 6px;
}

.usage-bullets {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #444;
  line-height: 1.7;
  font-size: 14px;
}

.usage-bullets li {
  margin: 6px 0;
}

.usage-inline-strong {
  font-weight: 700;
  color: #144f9b;
}

@media (max-width: 768px) {
  .usage-guide-section {
    padding: 44px 0 56px;
  }

  .usage-guide-container {
    padding: 0 12px;
  }

  .usage-step {
    grid-template-columns: 44px 1fr;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .usage-step-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }

  .usage-step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .usage-text,
  .usage-bullets {
    font-size: 13px;
  }
}

/* ========== 창업 프로젝트 순위 (3대 분류) ========== */
.project-ranking-section {
  padding: 60px 0 72px;
  background: #f8f9fb;
}

.project-ranking-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.project-ranking-container {
  max-width: 1870px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.ranking-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ranking-col {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.ranking-hero {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.ranking-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ranking-title {
  font-size: 19px;
  font-weight: 600;
  color: #222;
  margin: 24px 24px 18px;
  line-height: 1.4;
}

.ranking-list {
  padding: 0 24px;
  flex: 1 1 auto;
}

.ranking-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ranking-card:last-child {
  border-bottom: none;
}

.ranking-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
}

.ranking-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ranking-card-body {
  flex: 1;
  min-width: 0;
}

.ranking-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.ranking-stat {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.ranking-more {
  display: block;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #144f9b;
  text-decoration: none;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s;
}

.ranking-more:hover {
  background: #f5f8fc;
  color: #1a5fb4;
}

@media (max-width: 1024px) {
  .ranking-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .project-ranking-section {
    padding: 40px 0 52px;
  }

  .project-ranking-container {
    padding: 0 20px;
  }

  .ranking-columns {
    gap: 20px;
  }

  .ranking-title {
    font-size: 17px;
    margin: 20px 20px 14px;
  }

  .ranking-list {
    padding: 0 20px;
  }

  .ranking-card {
    padding: 12px 0;
  }

  .ranking-logo {
    width: 50px;
    height: 50px;
  }
}

.main_bg {
  position: relative;
  width: 100%;
  text-align: center;
  background: #f5f5f5;
}

.main_bg img {
  display: block;
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  vertical-align: middle;
}

.main_bg_right {
  position: absolute;
  right: 8%;
  bottom: 15%;
  z-index: 10;
}

.main_bg_btn {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.main_bg_btn a {
  display: inline-block;
}

.main_bg_btn .google_store,
.main_bg_btn .app_store {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: opacity 0.3s;
}

.main_bg_btn a:hover img {
  opacity: 0.85;
}

/* ========== 容器 ========== */
.re-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== 区块标题 ========== */
.section-title {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin: 40px 0 30px;
  line-height: 1.5;
  color: #333;
}

.section-title .bold {
  font-weight: 700;
  color: #144f9b;
}

/* ========== 杂志/新闻区块 ========== */
.magazine-section {
  padding: 60px 0 80px;
  background: #fff;
}

.magazine-swiper-container {
  position: relative;
  padding: 0 0 50px;
}

.magazine-swiper-container .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.magazine-slide {
  height: auto;
  padding: 0 15px;
}

.slide-centents {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: box-shadow 0.3s;
}

.slide-centents:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.slide-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.slide-text {
  padding: 20px;
  flex: 1;
}

.slide-text small {
  display: inline-block;
  font-size: 12px;
  color: #144f9b;
  margin-bottom: 8px;
  font-weight: 600;
}

.slide-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.4;
  color: #222;
}

.slide-text p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

.slide-text p.last {
  max-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.text-left {
  text-align: left;
}

/* Swiper 分页器 */
.magazine-pagination {
  bottom: 10px !important;
}

.magazine-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.8;
}

.magazine-pagination .swiper-pagination-bullet-active {
  background: #144f9b;
  opacity: 1;
}

/* ========== FAQ 区块 ========== */
.qna-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
}

.qna-section .section-title {
  margin-bottom: 40px;
}

.qna-section .panel-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 -15px;
}

.qna-group {
  flex: 1;
  min-width: 300px;
  padding: 0 15px;
}

.qna-category {
  font-size: 18px;
  font-weight: 600;
  color: #144f9b;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #144f9b;
}

.panel-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.panel-heading {
  padding: 0;
  border: none;
  background: transparent;
}

.qna-link {
  display: block;
  padding: 18px 20px;
  color: #333;
  text-decoration: none !important;
  transition: background 0.2s;
}

.qna-link:hover {
  background: #f5f8fc;
  color: #144f9b;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #144f9b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.accordion-title {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.arrow-wrapper {
  flex-shrink: 0;
}

.arrow-wrapper .icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.3s;
}

.panel-collapse.collapse.in .arrow-wrapper .icon,
.panel-heading .qna-link[aria-expanded="true"] ~ .arrow-wrapper .icon {
  transform: rotate(-135deg);
}

.panel-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.panel-collapse.in {
  max-height: 500px;
}

.panel-body {
  padding: 0 20px 20px 64px;
  border-top: 1px solid #f0f0f0;
}

.panel-body p {
  margin: 12px 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Bootstrap 兼容 */
.panel-collapse.collapse {
  display: none;
}

.panel-collapse.collapse.in {
  display: block;
}

.d-flex {
  display: flex;
}

/* 响应式 */
.col-re-sm-6 {
  flex: 1 1 50%;
}

.col-xs-12 {
  width: 100%;
}

@media (max-width: 768px) {
  .col-re-sm-6 {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 22px;
  }

  .main_bg_right {
    position: static;
    text-align: center;
    padding: 20px;
  }

  .main_bg_btn {
    justify-content: center;
  }

  .panel-body {
    padding-left: 20px;
  }
}

/* ========== 创 up 过程 (startup-step) ========== */
.startup-step-wrap {
  padding: 56px 0 64px;
  background: #ebebeb;
}

.startup-step-title {
  font-size: 26px;
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
  margin: 0 0 36px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.startup-step-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0;
}

.startup-step-menu .step-tab {
  display: inline-block;
  padding: 16px 6px 14px;
  font-size: 15px;
  color: #888;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  text-decoration: none;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.startup-step-menu .step-tab:hover {
  color: #555;
}

.startup-step-menu .step-tab.active {
  color: #2c2c2c;
  font-weight: 600;
  border-bottom-color: #2c2c2c;
}

/* 内容区 + 左右按钮整体包裹 */
.startup-step-carousel-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 20px;
  max-width: 100%;
  min-height: 380px;
}

.startup-step-swiper {
  position: relative;
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* 强制单页显示：只显示当前 slide，避免 5 个同时出现 */
.startup-step-swiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
}

.startup-step-swiper .swiper-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  box-sizing: border-box;
}

.step-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px 48px 48px;
  min-height: 360px;
  box-sizing: border-box;
}

.step-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #5b9bd5;
  border-radius: 6px;
  margin-bottom: 20px;
}

.step-heading {
  font-size: 19px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.step-main {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-main div {
  margin-bottom: 10px;
}

.step-sub {
  font-size: 13px;
  color: #777;
  line-height: 1.75;
}

.step-sub div {
  margin-bottom: 10px;
}

/* 左右圆形灰色箭头按钮（带轻微立体感） */
.startup-step-prev,
.startup-step-next {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  background: #e8e8e8;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  align-self: center;
}

.startup-step-prev:hover:not(.swiper-button-disabled),
.startup-step-next:hover:not(.swiper-button-disabled) {
  background: #d8d8d8;
  color: #222;
  border-color: #bbb;
}

.startup-step-prev.swiper-button-disabled,
.startup-step-next.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  background: #eee;
  border-color: #ddd;
  color: #999;
}

/* 隐藏 Swiper 默认箭头图形，用自定义符号 */
.startup-step-prev::after,
.startup-step-next::after {
  content: '';
  display: none !important;
}

.startup-step-prev::before {
  content: '‹';
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  margin-top: -3px;
}

.startup-step-next::before {
  content: '›';
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  margin-top: -3px;
}

.startup-step-pagination {
  bottom: 20px !important;
}

.startup-step-pagination .swiper-pagination-bullet {
  background: #bbb;
  opacity: 0.7;
}

.startup-step-pagination .swiper-pagination-bullet-active {
  background: #5b9bd5;
  opacity: 1;
}

@media (max-width: 768px) {
  .startup-step-wrap {
    padding: 36px 0 48px;
  }

  .startup-step-title {
    font-size: 20px;
  }

  .startup-step-menu {
    gap: 16px;
    margin-bottom: 24px;
  }

  .startup-step-menu .step-tab {
    padding: 10px 2px 8px;
    font-size: 13px;
  }

  .startup-step-carousel-wrap {
    gap: 12px;
    min-height: 320px;
  }

  .startup-step-swiper {
    border-left: none;
    border-right: none;
  }

  .startup-step-prev,
  .startup-step-next {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .startup-step-prev::before,
  .startup-step-next::before {
    font-size: 26px;
  }

  .step-content {
    padding: 28px 20px 32px;
    min-height: 260px;
  }

  .step-heading {
    font-size: 16px;
  }

  .step-main {
    font-size: 14px;
  }
}

/* ========== 页脚 ========== */
.page-footer {
  position: relative;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background: #2f3135;
  color: #fff;
}

.page-footer .main_bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  overflow: hidden;
}

.page-footer .main_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 50px;
  color: #fff;
}

.footer-left,
.footer-right {
  max-width: 50%;
  flex: 0 0 50%;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.footer-phone {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
}

.footer-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #e5e5e5;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-brand {
  font-size: 16px;
  font-weight: 600;
}

.footer-info {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #e5e5e5;
}

.footer-copy {
  margin: 0;
  font-size: 11px;
  color: #cccccc;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0 35px;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
  }
}

.bg-section {
  min-height: 1px;
}

.col-re-xx-hide {
  display: block;
}
