.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
/* Breadcrumb Styles */
/* 当前位置1 */
/* .cur-position-1 {
    padding: 20px 0;
    font-size: 16px;
    color: #000;
    line-height: 40px;
    box-sizing: border-box;
    word-break: break-all;
}
.cur-position-1 a{color:#000; text-decoration: none;}
.cur-position-1 *:last-child{color:#568faf;} */
/* Main Title */
.main-title {
  padding: 0px 0 40px 0;
  font-size: 40px;
  font-weight: bold;
  color: #568faf;
}

/* Featured Articles */
.featured-articles {
  margin-bottom: 60px;
}
.featured-articles .item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  background-color: #f7f7f7;
  margin-bottom: 45px;
  height: 427px;
}
.featured-articles .item:last-child {
  margin-bottom: 0px;
}
.featured-articles .image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.featured-articles .image-wrapper .article-title {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  box-sizing: border-box;
  padding: 30px 28px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.featured-articles .abstract {
  flex: 1;
  padding: 53px 38px 0 0;
  position: relative;
  height: 100%;
}
.featured-articles .abstract p {
  font-size: 18px;
  line-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.featured-articles .abstract a {
  position: absolute;
  bottom: 0;
  right: 36px;
  width: calc(100% - 36px);
  border-top: 1px solid #ffffff;
  line-height: 67px;
  text-align: right;
  display: block;
  box-sizing: border-box;
  background: url(../assets/jiantou-2.png) no-repeat right center;
  background-size: auto 10px;
  padding-right: 30px;
}

.article-card {
  margin-bottom: 40px;
  position: relative;
  background-color: #f7f7f7;
}

.article-image {
  display: block;
  width: 640px;
  max-width: 100%;
  height: 427px;
  object-fit: cover;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.article-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.article-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.read-more {
  color: #8b4513;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

.read-more::after {
  content: " →";
  margin-left: 5px;
}

/* Placeholder Image Styles */
.placeholder-image {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
/* Latest Stories */
.latest-stories {
  margin-bottom: 90px;
}
.latest-stories .latest-stories-title {
  display: flex;
  height: 90px;
  justify-content: space-between;
  align-items: center;
}
.latest-stories .latest-stories-title h3 {
  font-size: 34px;
  color: #568faf;
}
.latest-stories .latest-stories-btn {
  display: flex;
}
.latest-stories .latest-stories-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #568faf;
  border-radius: 50%;
  color: #568faf;
  margin-left: 10px;
  font-size: 16px;
  cursor: pointer;
}
.latest-stories .latest-stories-list-box {
  overflow: hidden;
}
.latest-stories .latest-stories-list {
  display: flex;
  transition: 0.3s;
}
.latest-stories .latest-stories-item {
  width: 422px;
  height: 375px;
  margin-right: 20px;
  flex: 0 0 auto;
}
.latest-stories .latest-stories-item img {
  display: block;
  width: 100%;
  height: 280px;
  margin-bottom: 20px;
  object-fit: cover;
}
.latest-stories .latest-stories-item span {
  display: -moz-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: 20px;
  line-height: 26px;
}
