/* 新闻和事务模块样式 */
.news-section {
  width: 100%;
  padding: 56px 0;
  background-color: #f2f3f5;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 头部样式 */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-family: "OPPOSans";
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #7c1419;
  margin: 0;
  margin-bottom: 10px;
}

.title-decoration {
  width: 66px;
  height: 6px;
  background-color: #7c1419;
}

.view-more {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.view-more span:hover {
    color: #7c1419;
}

.view-more span {
  font-size: 22px;
  line-height: 1.4;
  color: #808695;
}

.icon-arrow {
  width: 24px;
  height: 24px;
  position: relative;
}

.icon-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
}

/* 新闻列表样式 */
.news-list {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

/* 新闻卡片样式 */
.news-card {
  flex: 0 0 276px;
  width: 276px;
  height: 496px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-image {
  width: 100%;
  height: 277px;
  overflow: hidden;
  position: relative;
}

.news-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.date-block {
  position: absolute;
  top: 246px;
  left: 20px;
  width: 62px;
  height: 62px;
  background-color: #7c1419;
  border-radius: 3.43px;
  display: flex;
  flex-direction: column;
    justify-content: center;
  align-items: center;
gap: 4px;
  box-shadow: 0px 1.71px 8.57px 1.71px rgba(65, 0, 3, 0.1);
}

.month {
  font-family: "OPPOSans";
  font-size: 12px;
  line-height: 1.4;
  color: #ffffff;
}

.day {
  font-family: "OPPOSans";
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0px 0px 1px #ffffff;
}

.news-content {
  padding: 20px;
  padding-top: 48px;
}

.news-title {
  font-family: "OPPOSans";
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #7c1419;
  margin: 0;
  margin-bottom: 16px;
 display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-family: "OPPOSans";
  font-size: 16px;
  line-height: 1.625;
  color: #666666;
  margin: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-arrow {
  width: 32px;
  height: 6px;
  background-image: url("../images/arrow-right-long.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  /* opacity: 0.5; */
}

/* 鼠标悬停效果 */
.news-card:hover {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.news-card:hover .news-image img {
  transform: scale(1.05) translateY(-5px);
}

.news-card:hover .news-image::after {
  background: rgba(0, 0, 0, 0.05);
}

.news-card:hover .news-title {
  color: #7c1419;
}

.news-card:hover .news-arrow {
  /* opacity: 1;
  stroke: #7c1419;
  transform: translateX(5px); */
  background-image: url("../images/arrow-right-long-active.svg");
}
.news-card:hover .news-desc {
  color: #7c1419;
}
.news-card:hover .date-block {
  transform: translateY(-3px);
  box-shadow: 0px 3px 12px rgba(65, 0, 3, 0.15);
}
