
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  /* 垂直居中 */
}

header img {
  width: 50px;
  height: auto;
  /* 让图片高度自适应 */
  margin-right: 10px;
  /* 添加一些右侧间距 */
}

header div {
  font-size: 18px;
  font-style: italic;
  /* 设置为斜体样式 */
   background: linear-gradient(42deg, #3EB3B7, #22275A); /* 设置渐变色背景 */
      -webkit-background-clip: text; /* 使用文字作为背景的剪裁区域 */
      -webkit-text-fill-color: transparent; /* 将文字颜色设置为透明 */
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #0055ff;
  background-color: #333;
}

.container {
  max-width: 1200px;
  margin: 20px auto;
}

.news-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}

.news-item-content {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: flex-start;
  align-items: center
}

.news-item img {
  max-width: 100px;
  max-height: 100px;
  margin-right: 15px;
}

.news-item .content {
  width: 80%;
}

.news-item h3 {
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 0px;
}

.news-item p {
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.news-item .info {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}
.footer {
  width: 100%;
  margin: 20px auto 0px auto;
  text-align: center;
  height: 50px;
  line-height: 50px;
  background-color:  #22275A;
  color: #ffffff;
  font-size: 12px;
}
.footer span{
  padding-left : 20px;
}
.footer a{
 text-decoration: none;
        color: #ffffff;
       
}
.footer a :hover {
            color: #ffffff;
}