.container {
  max-width: 1280px;
  margin: 12px auto;
  padding: 0 24px;
  position: relative;
}
body::-webkit-scrollbar {
    display: none;
}
@media (min-width: 1200px) {
  .container {
    padding: 0 12px;
   
  }
}
.co{
    min-height: calc(100vh - 250px);
}
.news-itemmm {
  display: flex;
  margin-bottom: 32px;
  gap: 28px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.news-itemmm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ad2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.news-itemmm:hover::before {
  transform: scaleX(1);
}

.news-image {
  width: 380px;
  height: 250px;
  background-color: #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* 为带有animate-on-scroll和visible类的news-itemmm添加特定样式 - 已合并到基础样式 */

.news-itemmm:hover .news-image {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

.news-category {
  font-family: Roboto, Roboto;
  font-weight: 600;
  font-size: 14px;
  color: #ad2626;
  line-height: 22px;
  padding: 6px 16px;
  background: linear-gradient(135deg,
      rgba(173, 38, 38, 0.1) 0%,
      rgba(173, 38, 38, 0.05) 100%);
  /* width: 80%; */
  border-radius: 20px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section .shang {
  margin-bottom: 24px;
}

.news-itemmm {
  margin-top: 24px;
}

.news-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.news-itemmm:hover .news-category,
.news-item:hover .news-category {
  background: #ad2626;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(173, 38, 38, 0.3);
  padding-left: 20px;
}

.news-itemmm:hover .news-category::before,
.news-item:hover .news-category::before {
  left: 100%;
}

.news-title {
  font-family: Roboto, Roboto;
  font-weight: 700;
  font-size: 28px;
  color: #333333;
  line-height: 36px;
  letter-spacing: 0.5px;
  margin: 18px 0 14px 0;
  position: relative;
  transition: all 0.3s ease;
}

.news-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ad2626;
  transition: width 0.3s ease;
}

.news-itemmm:hover .news-title {
  color: #ad2626;
  transform: translateX(8px);
}

.news-itemmm:hover .news-title::after {
  width: 100%;
}

.news-date {
  font-family: Roboto, Roboto;
  font-weight: 500;
  font-size: 13px;
  color: #888888;
  line-height: 20px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}

.news-itemmm:hover .news-date,
.news-item:hover .news-date {
  color: #ad2626;
  background: rgba(173, 38, 38, 0.08);
  transform: scale(1.05);
}

.news-texttt {
  font-family: Roboto, Roboto;
  font-weight: 400;
  font-size: 15px;
  color: #666666;
  line-height: 24px;
  letter-spacing: 0.3px;
  margin: 12px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.news-itemmm:hover .news-texttt {
  color: #555555;
  transform: translateX(4px);
}

.news-image img,
.news-imageee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 为带有animate-on-scroll和visible类的news-itemmm中的图片添加特定样式 - 已合并到基础样式 */

/* 2 */

.section-title {
  position: relative;
  padding: 12px 20px;

  font-size: 18px;
  font-weight: 700;
  color: #333;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: inline-block;
  transition: all 0.3s ease;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: #ad2626;
  border-radius: 2px;
  transition: height 0.3s ease;
}

.section-title:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title:hover::before {
  height: 90%;
}

.animate-on-scrollssss {
  margin-bottom: 24px;
}

.news-titleee {
  font-family: Roboto, Roboto;
  font-weight: 600;
  font-size: 17px;
  color: #333333;
  line-height: 25px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
  position: relative;
}

.news-item:hover .news-titleee {
  color: #ad2626;
  transform: translateX(4px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 12px;
}

.recommended-grid .news-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommended-grid .news-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.news-grid .news-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-grid .news-item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advertisement {
  grid-column: 1;
  grid-row: 1 / span 2;
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  padding: 12px;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;

  margin-bottom: 0;
}

.dl {
  grid-column: 1;
  grid-row: 3 / span 3;
}

.dl .news-itemmm {
  flex-direction: column;
  padding: 20px;
  align-items: stretch;
}

.dl .news-image {
  margin-right: 0px;
  width: 30%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.dl .news-date-row {
  margin-top: 16px;
  margin-bottom: 12px;
}

.news-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.news-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ad2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.news-item:hover::before {
  transform: scaleX(1);
}

.news-item-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.news-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.news-section-tag {
  font-size: 12px;
  font-weight: 600;
  color: #ad2626;
  padding: 4px 12px;
  background: rgba(173, 38, 38, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.news-item:hover .news-section-tag {
  background: rgba(173, 38, 38, 0.2);
  transform: scale(1.05);
}

.news-imageee {
  width: 200px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item:hover .news-imageee {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ss .news-category {
  border-left: 0px solid #ad2626;
  color: #ad2626;
}

.news-contenttt {
  font-family: Roboto, Roboto;
  font-weight: 500;
  font-size: 14px;
  color: #999999;
  line-height: 21px;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 2;
}

.ad-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.ad-content {
  font-size: 18px;
  font-weight: bold;
  color: #666;
}

.divider {
  border-top: 1px solid #e0e0e0;
  margin: 15px 0;
}

.desc {
  -webkit-line-clamp: 5;
  line-clamp: 5;
  margin-top: 8px;
}

@media (max-width: 769px) {
  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .publishTime {
    display: none;
  }

  .news-item {
    padding: 18px;
    margin-bottom: 18px;
  }

  .desc {
    -webkit-line-clamp: 5;
  }

  .news-grid {
    gap: 20px;
  }

  .news-itemmm {
    padding: 22px;
    gap: 18px;
  }

  .news-image {
    width: 100%;
    height: 220px;
  }

  .news-imageee {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 760px) {
  .container {
    margin: 0;
    padding: 16px;
  }

  .news-itemmm {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
    gap: 16px;
    border-radius: 16px;
  }

  .news-itemmm::before {
    height: 3px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0px;
  }

  .news-grid .news-item {
    padding: 16px;
    margin-bottom: 0;
  }

  .news-grid .news-item-content {
    flex-direction: column;
  }

  .news-grid .news-imageee {
    width: 100%;
    height: 180px;

  }

  .recommended-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 8px;
  }

  .top-bar {
    background: linear-gradient(135deg, #ad2626 0%, #c70039 100%);
    padding: 12px 16px;
  }

  .news-image {
    width: 100%;
    height: 220px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .news-imageee {
    width: 100%;
    height: 160px;
    border-radius: 12px;
  }

  .news-title {
    font-size: 18px;
    line-height: 28px;
    margin: 14px 0 10px 0;
  }

  .news-texttt {
    margin: 10px 0;
    font-size: 14px;
    line-height: 24px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .news-titleee {
    font-size: 17px;
    line-height: 26px;
    margin-top: 8px;
  }

  .dl .news-itemmm {
    margin-bottom: 20px;
  }

  .news-titleee {
    -webkit-line-clamp: 3;
  }

  .dl .news-date-row {
    margin-top: 0;
  }

  .news-item {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .news-item::before {
    height: 2px;
  }

  .news-item-content {
    gap: 14px;

  }

  .news-content-wrapper {
    gap: 8px;
  }

  .news-date-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .publishTime {
    display: block;
  }

  .timeu {
    display: none;
  }

  .news-titleee {
    margin-top: 0;
  }
  .news-category {
    font-size: 12px;
    padding: 5px 12px;
  }
  .news-date {
    font-size: 12px;
    padding: 3px 10px;
  }
  .section-title {
    font-size: 16px;
    padding: 10px 16px;
  }
  .dl .news-image {
    width: 100%;
  }
  .news-item-content {
    flex-direction: column;
  }
  .section-title::before {
    height: 60%;
  }
  .news-contenttt {
    font-size: 13px;
    line-height: 20px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .desc {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }



















  
}