.list-file .notice-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  max-width: 924px;
}
.list-file .notice-card .notice-image {
  width: 30%;
}
@media (max-width: 767px) {
  .list-file .notice-card .notice-image {
    width: calc(100%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}
.list-file .notice-card .notice-image img {
  object-fit: cover;
  border-radius: 1rem;
  margin: 1rem;
}
.list-file .notice-card .notice-content {
  width: calc(70% - 50px);
  margin-left: 50px;
}
.list-file .notice-card .notice-content:lang(zh-cn),
.list-file .notice-card .notice-content:lang(zh-hk) {
  width: calc(70% - 40px);
  margin-left: 40px;
}
@media (max-width: 767px) {
  .list-file .notice-card .notice-content {
    width: calc(100%);
    margin-left: 0;
    text-align: center;
    padding: 1.5rem 0;
  }
}
.list-file .notice-card .notice-content:hover a {
  text-decoration: none;
}
.list-file .notice-card .notice-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  margin-right: 40px;
  line-height: 1.5;
}
.list-file .notice-card .notice-content h3:lang(zh-cn),
.list-file .notice-card .notice-content h3:lang(zh-hk) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .list-file .notice-card .notice-content h3 {
    font-size: 20px;
    margin-right: 0;
  }
}
.list-file .notice-card .notice-content .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #2A8FA4;
  color: #2A8FA4;
  background: transparent;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.list-file .notice-card .notice-content .download-btn:hover {
  background: #2A8FA4;
  color: #fff;
}
.list-file .notice-card .notice-content .download-btn:hover svg path {
  stroke: #fff;
}
.list-file .notice-card .notice-content .download-btn .icon {
  font-size: 1rem;
  line-height: 1;
}
