
.carousel-section {
  width: 100%;
  height: 500px; 
  position: relative;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.carousel-content h2 {
  font-size: 42px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: white;
  border-radius: 50%;
}

.about-section {
  padding: 80px 0;
  background-image: url('./assets/2x/aboutBg@2x.png');
  background-repeat: no-repeat;
  background-position: top center; 
  background-size: 100% auto;       
}

.about-wrapper {
  display: flex;
  align-items: center; 
  gap: 50px;
  width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
}

.about-content {
  flex: 6; 
  min-width: 300px; 
  margin: 0;
  padding:0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.section-icon {
  width: 28px;
  height: 16px;
  object-fit: contain;
}

.section-header h2 {
  font-size: 28px;
  color: #30b284;
  font-weight: 600;
  margin: 0;
}

.section-en {
  font-size: 14px;
  color: #000;
  margin-left: 8px;
  text-transform: uppercase;
}

.about-text {
  font-size: 15px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-btn {
  background: linear-gradient(90deg, #32cc9a, #03c2df);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.about-btn:hover {
  background: linear-gradient(90deg, #32cc9a, #03c2df);
}

.about-image {
  flex: 6; 
  min-width: 300px;
}

.about-img {
  width: 100%; 
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-section {
  padding: 80px 0;
  background-image: url('./assets/2x/foot@2x.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto; 
}




.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.news-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-icon {
  width: 28px;
  height: 16px;
  object-fit: contain;
}

.news-title h2 {
  font-size: 24px;
  color: #30b284;
  font-weight: 600;
  margin: 0;
}

.news-en {
  font-size: 14px;
  color: #000;
  margin-left: 5px;
  letter-spacing: 0.5px;
}

.news-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-clock {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.7;
}

.page-number {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.page-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00a896; 
}

.news-list {
  padding-bottom: 40px;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-item.active {
  background: linear-gradient(90deg, #00a896, #00c2a8); /* 青绿色渐变 */
  color: #fff;
}

.news-text {
  font-size: 15px;
  color: #333;
}

.news-item.active .news-text {
  color: #fff;
  font-weight: 500;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #000;
}

.news-date img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.news-item.active .news-date {
  color: #fff;
}

.news-section {
  padding: 60px 0;
  background-color: #ffffff; 
  position: relative;
  margin: 0 auto;
}

.news-back{
  width: 1220px;
  margin: 0 auto;
  padding: 0;
}

.news-box {
  background-color: #f5f5f5; 
  border-radius: 12px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-wrapper{
  width: 1100px;
}


.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.news-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-icon {
  width: 28px;
  height: 16px;
  object-fit: contain;
}

.news-title h2 {
  font-size: 28px;
  color: #30b284;
  font-weight: 600;
}

.news-en {
  font-size: 14px;
  color: #000;
  margin-left: 5px;
  letter-spacing: 0.5px;
}

.news-pagination {
  display: flex;
  align-items: center;
  gap: 15px; 
}

.pagination-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  border: 0 solid #999; 
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pagination-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.pagination-btn:hover {
  background-color: rgba(0, 168, 150, 0.1);
  border-color: #00a896;
}

.page-number {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  min-width: 30px;
  text-align: center;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
  cursor: pointer;
}

.news-item.active {
  background: linear-gradient(90deg, #00a896, #00c2a8); /* 青绿色渐变 */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.2);
}

.news-text {
  font-size: 15px;
  color: #333;
}

.news-item.active .news-text {
  color: #fff;
  font-weight: 500;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #000;
}

.news-date img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.news-item.active .news-date {
  color: #fff;
}

.homeTitle{
    color: #34cc9b;
    font-size: 28px;
}
