/* Hero Banner */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 12rem;
  padding: 2.4rem 0.4rem 0;
  margin: 0 auto;
}

.hero-sunto {
  font-family: "Arial Bold MT", "Arial Black", Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: transparent;
  -webkit-text-stroke: 0.02rem #cadce8;
  text-stroke: 0.02rem #cadce8;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
}

/* Background Wrapper Section */
.bg-wrapper-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bg-wrapper-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Sections inside background wrapper */
.bg-wrapper-section section {
  position: relative;
  z-index: 1;
}

/* Career Jobs Section */
.career-jobs-section {
  padding: 0.4rem 0.8rem;
}

.jobs-container {
  display: flex;
  gap: 0.3rem;
  max-width: 16rem;
  margin: 0 auto;
}

/* Left Filter Panel */
.filter-panel {
  width: 2.8rem;
  flex-shrink: 0;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.2rem;
  box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.05);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.1rem;
}

.filter-title-row {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}

.filter-icon {
  color: #2c60e2;
  font-weight: bold;
  font-size: 0.2rem;
}

.filter-title {
  font-size: 0.18rem;
  font-weight: bold;
  color: #333;
}

.filter-clear {
  color: #999;
  font-size: 0.13rem;
  cursor: pointer;
}

.filter-results {
  font-size: 0.12rem;
  color: #999;
  margin-bottom: 0.2rem;
  padding-bottom: 0.15rem;
  border-bottom: 0.01rem solid #eee;
}

.filter-group {
  margin-bottom: 0.15rem;
}

.filter-group-title {
  font-size: 0.14rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.1rem;
}

.search-box {
  display: flex;
  border: 0.01rem solid #ddd;
  border-radius: 0.05rem;
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 0.08rem 0.1rem;
  border: none;
  font-size: 0.13rem;
  outline: none;
}

.search-btn {
  padding: 0.08rem 0.1rem;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background: #eee;
}

.search-btn img {
  width: 0.14rem;
  height: 0.14rem;
}

.filter-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.08rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.14rem;
  color: #333;
}

.filter-arrow {
  font-size: 0.1rem;
  color: #999;
}

.filter-options {
  display: none;
  padding: 0.1rem 0;
  flex-direction: column;
  gap: 0.08rem;
}

.filter-options label {
  font-size: 0.13rem;
  color: #666;
  cursor: pointer;
}

.filter-options input[type="checkbox"] {
  margin-right: 0.08rem;
}

.function-select {
  width: 100%;
  padding: 0.08rem 0.1rem;
  border: 0.01rem solid #ddd;
  border-radius: 0.05rem;
  font-size: 0.13rem;
  color: #666;
  outline: none;
}

/* Middle Job List */
.job-list {
  flex: 1;
  min-width: 0;
}

.job-list-header {
  margin-bottom: 0.2rem;
  background: #fff;
  border-radius: 0.15rem;
  padding: 0.15rem 0.25rem;
  display: inline-block;
}

.job-list-title {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.job-item {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0;
  margin-bottom: 0.15rem;
  box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.job-header:hover {
  background-color: #f8f9fa;
}

.job-header-right {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.job-title {
  font-size: 0.2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.job-toggle {
  width: 0.15rem;
  height: 0.15rem;
  border: none;
  border-radius: 0;
  background: transparent url("../image/down.png") center/contain no-repeat;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.job-toggle:hover {
  opacity: 1;
}

.job-item.expanded .job-toggle {
  transform: rotate(180deg);
}

.job-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
  padding: 0 0.25rem;
}

.job-item.expanded .job-body {
  max-height: 10rem;
  opacity: 1;
  padding: 0 0.25rem 0.25rem;
}

.job-item.expanded .job-toggle {
  transform: rotate(180deg);
}

.job-date {
  font-size: 0.13rem;
  color: #999;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-bottom: 0.15rem;
  padding: 0 0.2rem;
}

.job-tag {
  padding: 0.04rem 0.1rem;
  font-size: 0.12rem;
  display: flex;
  align-items: center;
  gap: 0.08rem;
}

.tag-icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}

.job-preview-content {
  padding: 0 0.2rem;
}

.job-item.expanded .job-preview-content {
  display: none;
}

.job-preview-text {
  font-size: 0.13rem;
  color: #666;
  margin: 0.1rem 0;
  line-height: 1.6;
}

.job-content {
  margin-bottom: 0.2rem;
}

.job-section {
  margin-bottom: 0.2rem;
}

.job-section:last-child {
  margin-bottom: 0;
}

.job-section-title {
  font-size: 0.15rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.1rem;
}

.job-list-items {
  padding-left: 0.2rem;
  margin: 0;
}

.job-list-items li {
  font-size: 0.14rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.08rem;
}

.job-list-items li:last-child {
  margin-bottom: 0;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.15rem;
}

.job-note {
  font-size: 0.13rem;
  color: #999;
  margin: 0;
}

.job-preview {
  font-size: 0.13rem;
  color: #999;
  margin: 0;
  line-height: 1.6;
}

.apply-btn {
  padding: 0.1rem 0.25rem;
  background: #2c60e2;
  color: #fff;
  border: none;
  border-radius: 0.2rem;
  font-size: 0.14rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: #1a4dc0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.3rem;
}

.page-btn {
  width: 0.6rem;
  height: 0.6rem;
  border: 0.01rem solid #eee;
  border-radius: 50%;
  background: #eee;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.page-btn:hover {
  /* border-color: #2C60E2; */
}

.page-btn.next-btn {
  background: #2c60e2;
  border-color: #2c60e2;
}

.page-btn.next-btn:hover {
  background: #1a4dc0;
}

.page-btn img {
  width: 0.14rem;
  height: 0.14rem;
}

.page-btn.next-btn img {
}

.page-numbers {
  display: flex;
  gap: 0.05rem;
}

.page-number {
  width: 0.36rem;
  height: 0.36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.14rem;
  font-weight: bold;
  color: #666;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.page-number:hover {
  color: #2c60e2;
}

.page-number.active {
  color: #2c60e2;
}

/* Right Latest Positions */
.latest-positions {
  width: 2.2rem;
  flex-shrink: 0;
}

.latest-header {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-bottom: 0.2rem;
}

.latest-icon {
  color: #2c60e2;
  font-weight: bold;
  font-size: 0.18rem;
}

.latest-title {
  font-size: 0.18rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

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

.latest-item {
  padding: 0.1rem 0;
  font-size: 0.14rem;
  color: #666;
  border-bottom: 0.01rem dashed #eee;
  cursor: pointer;
  transition: color 0.3s;
}

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

.latest-item:hover {
  color: #2c60e2;
}

/* Solution Section */
.solution-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.solution-footer-content {
  padding-top: 0.8rem;
  align-self: flex-start;
  width: 100%;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(100deg, #2c60e2 0%, #4a8df8 100%);
  border-radius: 0.15rem;
  margin-top: 0.8rem;
  padding: 0.4rem 0.6rem;
  position: relative;
  z-index: 1;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.contact-title-col {
  flex: 1;
}

.contact-title {
  font-size: 0.56rem;
  color: #fff;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  width: 3.5rem;
}

.contact-arrow-col {
  flex: 0 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-arrow {
  width: 1rem;
}

.contact-form-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding-left: 0.7rem;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.form-row label {
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 1rem;
  flex-shrink: 0;
  text-align: right;
}

.form-row label .required {
  color: #ff0000;
}

.form-row .form-input {
  margin-left: 0.15rem;
  width: 59%;
  height: 0.35rem;
  padding: 0.06rem 0.1rem;
  border: none;
  border-radius: 0.05rem;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.14rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-row .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-row .form-input:focus {
  background: rgba(255, 255, 255, 0.3);
}

.contact-btn {
  padding: 0.1rem 0.25rem;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  border-radius: 0.3rem;
  font-size: 0.14rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.contact-btn img {
  width: 0.15rem;
  height: 0.15rem;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}


.bottom-links {
  display: flex;
  gap: 0.2rem;
  margin-right: 0.2rem;
}

.bottom-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.14rem;
}

.bottom-links a.follow-link {
  color: #2c60e2;
}

.social-icons {
  display: flex;
  gap: 0.1rem;
}

.social-icon {
  width: 0.24rem;
  height: 0.24rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-links {
    gap: 0.2rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    padding: 0.3rem;
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff;
  }

  .solution-footer-content {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  /* Hero Section */
  .hero {
    height: 5.2rem;
    padding: 0 0.2rem;
  }

  .hero-sunto {
    font-size: 0.7rem;
    letter-spacing: 0.12rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 0.3rem 0.15rem;
    margin: 0.4rem 0.15rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-title {
    font-size: 0.28rem;
    width: 100%;
  }

  .contact-arrow {
    width: 0.5rem;
  }

  .form-row .form-input {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .solution-footer-content {
    padding-right: 0.15rem;
    padding-left: 0.15rem;
  }

  /* Contact Section */
  .contact-title {
    font-size: 0.24rem;
  }

  .form-input {
    font-size: 0.14rem;
  }

  .contact-btn {
    justify-content: center;
  }
}

/* News Detail Section */
.news-detail-section {
  padding: 2rem 0.8rem 0.6rem;
  min-height: 100vh;
}

.news-detail-container {
  max-width: 10rem;
  margin: 0 auto;
}

.news-date {
  display: block;
  margin-bottom: 0.4rem;
}

.date-label {
  font-size: 0.16rem;
  font-weight: 600;
  color: #333;
  display: block;
}

.date-value {
  font-size: 0.16rem;
  color: #666;
  display: block;
  margin-top: 0.05rem;
}

.news-title {
  font-size: 0.48rem;
  font-weight: bold;
  color: #2c60e2;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.news-subtitle {
  font-size: 0.3rem;
  font-weight: 500;
  color: #2c60e2;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}



.news-content {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.news-image-container {
  margin: 0.5rem 0;
}

.news-image {
  width: 100%;
  max-width: 6rem;
  height: auto;
  display: block;
  margin-bottom: 0.15rem;
}

.news-image-caption {
  font-size: 0.13rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Previous/Next Navigation Section */
.news-nav-section {
  padding: 0.4rem 0.8rem;
}

.news-nav-container {
  max-width: 9rem;
  margin: 0 auto;
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  padding-top: 0.3rem;
  border-top: 0.02rem solid #ddd;
}

.news-nav-item {
  flex: 1;
  max-width: 5rem;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.25rem;
  

  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.05);
}

.news-nav-item a{
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.news-nav-item:hover {
  box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.1);
}

.nav-arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-arrow.prev,.nav-arrow.next{
  /*background: #2c60e2;*/
  background: #f8f9fa;
}

.nav-arrow.prev img,.nav-arrow.next img {
  width: 0.16rem;
  height: 0.22rem;
  filter: brightness(0);
}


.news-nav-item:hover .nav-arrow.prev,.news-nav-item:hover .nav-arrow.next{
  background: #2c60e2;
}

.news-nav-item:hover .nav-arrow.prev img, .news-nav-item:hover .nav-arrow.next img {
  width: 0.16rem;
  height: 0.22rem;
  filter: brightness(1);
}

.nav-content {
  flex: 1;
}

.nav-title {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.08rem 0;
}

.nav-desc {
  font-size: 0.16rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .news-detail-section {
    padding: 2rem 0.4rem 0.6rem;
  }

  .news-nav-section {
    padding: 0.4rem 0;
  }
  .news-nav-container{
    max-width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .news-nav-item{
      flex: auto;
      max-width: 80%;
      padding: 0.4rem;
      background: #f7f7f7;
  }
  .news-image-container p img{
      width: 100% !important;
      height: auto !important;
  }
}