.college-introduction {
  padding: 20px;
}

.college-introduction h2 {
  color: #333;
}

.college-introduction .location-indicator {
  color: #777;
  font-size: 14px;
}

.college-introduction ul {
  list-style: none;
  padding: 0;
}

.college-introduction li {
  border-bottom: 1px solid #eee;
}

.college-introduction li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
}

.college-introduction li a:hover {
  color: #007bff;
}

.college-introduction li a span:first-child {
  flex-grow: 1;
}

.college-introduction li a span:last-child {
  color: #777;
  font-size: 14px;
}

.college-introduction .see-more {
  display: block;
  margin-top: 20px;
}

.college-introduction .see-more:hover {
  background-color: #ddd;
}
.news-item {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  display: flex; /* 使用 Flexbox 布局 */
  margin-bottom: 1rem;
}

.news-item .image-container {
  position: relative;
  overflow: hidden;
  margin-right: 10px; /* 圖片和文字之間的間距 */
  flex-shrink: 0; /* 防止圖片被壓縮 */
}

.news-item .image-container img {
     width: 26.625rem;
    height: 14.75rem;
    overflow: hidden;
}

.news-item .image-text {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2px 5px;
  font-size: 12px;
}

.top-menu-ul li a {
  padding: 0 1rem;
}

.news-item h3 {
  margin: 0 0 5px 0;
}
.news-item h3 a{
   /* color: #004276; */
   font-size: 1.5rem;
}
.news-item .content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-item p {
  margin: 5px 0;
}

.news-item a {
    display: block;
    margin-top: 10px;
}