.contenner {
  width: auto;
}

.top_nav {
  position: static;
}

.nav_list {
  width: auto;
}

.slg_index {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-left: 0;
}

.sm_nav {
  z-index: 200;
}

.top-banner {
  position: relative;
}

.slideIndex_bx {
  top: auto;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
}

.slick-prev {
  z-index: 99;
  margin-left: 0;
  top: 0;
  left: 30px;
  bottom: 0;
  margin: auto;
}

.slick-next {
  z-index: 99;
  margin-right: 0;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}

.job-title {
  font-size: 42px;
  color: #000;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 99;
}

.job-process {
  padding: 60px 7.4%;
  margin: 3% auto 0;
}

.job-process img {
  margin: -3% 0;
}

.job-welfare {
  width: 1200px;
  margin: 0 auto;
  margin-top: -2%;
}

.job-welfare .job-title {
  text-align: left;
}

.job-welfare ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  list-style: none;
}

.job-welfare ul li {
  width: 40%;
  text-align: left;
  margin-top: 6%;
  line-height: 1.6;
}

.job-welfare ul li dt {
  font-size: 24px;
  font-weight: bold;
  color: rgb(51, 51, 51);
}

.job-welfare ul li dd {
  font-size: 16px;
  color: rgb(100, 106, 115);
  margin-top: 20px;
}

.job-questions {
  margin-top: 3%;
  background-color: #fafafa;
  padding: 4% 0;
}

.job-questions ul {
  width: 1200px;
  margin: 60px auto 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
}

.job-questions ul li dt {
  font-size: 16px;
  font-weight: bold;
  color: rgb(8, 8, 8);
  margin-top: 24px;
}

.job-questions ul li dd {
  font-size: 14px;
  color: rgb(100, 106, 115);
  margin-top: 14px;
}

.job-introduction {
  margin-bottom: 120px;
  margin-top: -60px;
}

.job-forward {
  max-width: 1200px;
  margin: -3% auto 0;
  padding: 0 20px;
}

/* 标题区域 */
.header {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.header h1 {
  font-size: 42px;
  color: #1d1d1d;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  color: rgb(100, 106, 115);
}

.decorative-line {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.decorative-line span {
  height: 3px;
  background-color: #1d1d1d;
  border-radius: 3px;
}

.decorative-line span:first-child {
  width: 60px;
}

.decorative-line span:nth-child(2) {
  width: 20px;
  opacity: 0.6;
}

.decorative-line span:last-child {
  width: 20px;
  opacity: 0.3;
}

/* 游戏元素装饰 */
.game-decoration {
  position: absolute;
  color: rgba(29, 29, 29, 0.2);
  font-size: 40px;
  animation: float 3s ease-in-out infinite;
}

.gamepad {
  top: 20px;
  left: 50px;
}

.star {
  top: 30px;
  right: 50px;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* 主内容区域 */
.main-content {
  padding: 20px 0 60px;
}

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

/* 卡片样式 */
.card {
  background: #f9fafa;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* 滑动上去显示阴影 */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

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

.card-title {
  font-size: 24px;
  color: #1d1d1d;
}

.card-tag {
  background-color: rgba(29, 29, 29, 0.1);
  color: #1d1d1d;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.card-inner {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.card-content {
  font-size: 14px;
  color: rgb(100, 106, 115);
  line-height: 1.6;
}

.image-container {
  flex: 1;
  display: flex;
  gap: 10px;
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.image-wrapper {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .image-overlay {
  opacity: 1;
}

.job-cta {
  width: 1200px;
  margin: 5% auto 0;
}

/* CTA区域 */
.cta-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, rgba(29, 29, 29, 0.03), rgba(29, 29, 29, 0.05));
  border-radius: 12px;
  margin-bottom: 60px;
}

.cta-section h2 {
  font-size: 32px;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #1d1d1d;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(29, 29, 29, 0.3);
}

.cta-button:hover {
  background-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(29, 29, 29, 0.4);
}

.cta-section p {
  margin-top: 30px;
  color: rgb(100, 106, 115);
  font-size: 14px;
}

/* 底部装饰 */
.footer-decoration {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0.2;
}

.footer-decoration i {
  font-size: 32px;
  color: #1d1d1d;
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.cards-container .card:nth-child(1) {
  animation-delay: 0.1s;
}

.cards-container .card:nth-child(2) {
  animation-delay: 0.2s;
}

.cards-container .card:nth-child(3) {
  animation-delay: 0.3s;
}

.cards-container .card:nth-child(4) {
  animation-delay: 0.4s;
}

