/* Hero Section */
.hero {
  padding: 20px 0;
}

.hero .container {
  display: flex;
  gap: 20px;
}

.hero-slider {
  width: 1010px;
  height: 467px;
  position: relative;
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.1);
}


.main-bullet {
	display: inline-block;
	margin: 0 4px;
	width: 16px;
	height: 16px;
	background: #ffffff;
	cursor: pointer;
  border-radius: 8px;
}

.main-bullet-active {
	background: #FF6600;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 56px !important;
}


.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 15px 0;
  padding-left: 20px;
  width: calc(100% - 20px);
}

.journal-cover {
  width: 351px;
  height: 467px;
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.1);
}

.journal-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section */
.content {
  padding: 20px 0;
  background-image: url("../img/zhinengkeji.png");
  background-repeat: no-repeat;

  background-size: 100%;
  background-position: center bottom;
}

.content .container {
  display: flex;
  gap: 20px;
}

.sidebar {
  flex: 1;
  padding: 20px;
  padding-top: 0;
  border-radius: 5px;
  align-self: flex-start;
}

.widget {
  margin-bottom: 30px;
}

.widget h3 {
  font-size: 18px;
  border-bottom: 2px solid #0a4a8e;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.widget ul {
  padding: 15px 0;
  background-color: white;
  padding-top: 25px;
  padding-left: 8px;
}

.widget ul li {
  margin-bottom: 10px;
}

.widget ul li a {
  display: flex;
  align-items: center;
}

.widget ul li a::before {
  content: "●";
  color: #0a4a8e;
  margin-right: 10px;
  font-size: 12px;
}

.articles-section {
  flex: 3;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #0a4a8e;
  margin-bottom: 20px;
  align-items: center;
  margin-top: 13px;
  padding-bottom: 12px;
}

.tab-link {
  background: none;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  color: #555;
  /* margin-bottom: 12px; */
  font-weight: 700;
}

.tab-link.active {
  color: #0a4a8e;
  background-color: #fff;
  border-radius: 5px;
  font-weight: 700;
}

.previous-issue {
  font-size: 14px;
  color: #555;
  float: right;
}

.date-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
  font-weight: 700;
}

.article-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.article-item img {
  width: 224px;
  height: 124px;
  height: auto;
  object-fit: cover;
}

.article-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 0;
}
.article-content .title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
}

.article-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
.article-content p:nth-of-type(2) {
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}

.article-meta span {
  display: flex;
  align-items: center;
}

.article-meta img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.article-links a {
  font-size: 14px;
  color: #0a4a8e;
}

.section-title {
  font-size: 18px;
  border-bottom: 2px solid #0a4a8e;
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* Footer */
footer {
  height: 91px;
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

footer .container {
  border-top: 1px solid #555;
  padding-top: 20px;
}
footer .container p {
  padding: 0 180px;
}

/* Past Issues Section from Design */
.past-issue-year {
  margin-bottom: 25px;
}

.past-issue-year h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.issue-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.issue-button {
  width: 122px;
  height: 37px;
  display: inline-block;
  padding: 10px 20px;
  padding-top: 16px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  color: #333;
  font-size: 18px;
  text-align: center;
}

.issue-button .free-label {
  display: block;
  color: #666;
  font-size: 14px;
  line-height: 1em;
}

.article-list-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.article-list-item:last-child {
  border-bottom: none;
}

.article-list-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.article-list-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.article-list-item .article-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.article-list-item .article-meta span {
  display: flex;
  align-items: center;
}

.article-list-item .article-meta img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.article-list-item .article-links a {
  font-size: 12px;
  color: #0a4a8e;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination a {
  color: #0a4a8e;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 4px;
  border-radius: 5px;
}

.pagination a.active {
  background-color: #0a4a8e;
  color: white;
  border: 1px solid #0a4a8e;
}

.pagination a:hover:not(.active) {
  background-color: #f2f2f2;
}

#content {
  margin-top: 20px;
  padding: 20px;
  min-height: 300px;
}