
    /* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.work-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  width: 100%;
}

/* 工作板块公共样式 */
.work-item {
  width: 350px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 标题栏样式 */
.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.blue {
  background-color: #007BFF;
  color: #fff;
}

.yellow {
  background-color: #FFC107;
  color: #000;
}

.green {
  background-color: #28A745;
  color: #fff;
}

.more-link {
  color: inherit;
  text-decoration: none;
}

/* 内容列表样式 */
.content-list {
  list-style-type: none;
  padding: 10px;
}

.content-list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
  font-size: 14px;
}

.content-list li:last-child {
  border-bottom: none;
}