/* TSX页面横幅样式，参考TSC页面 */
.tsx-banner {
  margin-top: 86px; /* 防止与导航重叠，参考tsc-banner */
  width: 100%;
  height: 470px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tsx-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 轮播版本样式 */
.tsx-banner-swiper {
  width: 100%;
  height: 100%;
}

.tsx-banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.tsx-banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsx-banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* 白色 */
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.1;
  z-index: 2;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* 增强可读性 */
  text-align: center;
}
@media (max-width: 1366px) {
  .tsx-banner-title {
    font-size: 42px;
  }
}
@media (max-width: 900px) {
  .tsx-banner {
    margin-top: 60px;
    height: 320px;
  }
  .tsx-banner-title {
    font-size: 28px;
    left: 14%;
  }
}
@media (max-width: 600px) {
  .tsx-banner {
    margin-top: 40px;
    height: 200px;
  }
  .tsx-banner-title {
    font-size: 24px;
    left: 10%;
  }
} 
.tsx-content {
  width: 100%;
  padding: 0px 0 60px 0;
  /* padding: 150px 0 60px 0; */
}

.tsx-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.tsx-content-title {
  font-size: 30px;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.tsx-content-text {
  font-size: 22px;
  font-weight: 250;
  color: #333;
  line-height: 1.8;
  text-align: left;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .tsx-content-title {
    font-size: 24px;
  }
  .tsx-content-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .tsx-content {
    padding: 80px 0 53px 0;
  }
  .tsx-content-container {
    padding: 0 30px;
  }
  .tsx-content-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .tsx-content-text {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 520px) {
  .tsx-content {
    padding: 60px 0 40px 0;
  }
  .tsx-content-container {
    padding: 0 20px;
  }
  .tsx-content-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .tsx-content-text {
    font-size: 16px;
    line-height: 1.5;
  }
} 
.tsx-section {
  width: 100%;
  padding: 50px 0 0 0;
}
.tsx-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.tsx-section-title {
  font-size: 30px;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
}
@media screen and (max-width: 1366px) {
  .tsx-section-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .tsx-section {
    padding: 30px 0 0 0;
  }
  .tsx-section-container {
    padding: 0 30px;
  }
  .tsx-section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 520px) {
  .tsx-section-container {
    padding: 0 20px;
  }
  .tsx-section-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
} 
.tsx-card-block {
  border-radius: 30px !important;
  /* overflow: hidden; */
  width: 700px;
  height: 300px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 32px 24px 32px;
}
.tsx-card-title {
  font-size: 28px;
  font-weight: 450;
  color: #4d8fff;
  text-align: left;
  padding-left: 0;
  margin-bottom: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tsx-card-divider {
  width: 100%;
  height: 2px;
  background: #4d8fff;
  margin-bottom: 18px;
  border-radius: 2px;
}
.tsx-card-desc {
  font-size: 22px;
  font-weight: 250;
  color: #222;
  text-align: left;
  line-height: 1.8;
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  word-break: break-all;
}
@media screen and (max-width: 600px) {
  .tsx-card-block {
    border-radius: 30px !important;
    width: 98%;
    height: auto;
    padding: 20px 8px 16px 8px;
  }
  .tsx-card-title {
    font-size: 18px;
  }
  .tsx-card-desc {
    font-size: 16px;
  }
  .tsx-card-divider {
    height: 2px;
    margin-bottom: 10px;
  }
} 
.tsx-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 700px);
  /* grid-template-rows: repeat(2, 250px); */
  gap: 40px;
  margin: 40px auto 0 auto;
  max-width: 1440px;
  justify-content: center;
}
/* .tsx-card-grid .tsx-card-block {
  width: 700px;
  height: 220px;
  margin: 0;
  box-sizing: border-box;
} */
@media screen and (max-width: 1500px) {
  .tsx-card-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 30px;
  }
  
  .tsx-card-block {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .tsx-card-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 98vw;
    gap: 24px;
  }
  
  .tsx-card-grid .tsx-card-block {
    width: 100%;
    height: auto;
    padding: 20px 16px 16px 16px;
  }
  
  .tsx-card-title {
    font-size: 24px;
  }
  
  .tsx-card-desc {
    font-size: 18px;
  }
}
 
.tsx-scene-block {
  width: 100%;
  margin: 0 auto 0 auto;
  max-width: 1440px;
}

.tsx-scene-title {
  font-size: 30px;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.tsx-scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 700px);
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 0;
}

.tsx-scene-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tsx-scene-img {
  width: 700px;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.tsx-scene-name-bg {
  width: 700px;
  height: 50px;
  background: #0455da;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  top: 0;
}

.tsx-scene-name {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1500px) {
  .tsx-scene-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 30px;
  }
  .tsx-scene-item,
  .tsx-scene-img,
  .tsx-scene-name-bg {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .tsx-scene-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tsx-scene-img {
    height: 200px;
  }
  .tsx-scene-name-bg {
    height: 40px;
  }
  .tsx-scene-name {
    font-size: 18px;
  }
} 