.newest-title {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #dce4fd, #f2f6ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newest-title-container {
  text-align: center;
}

.doc-center-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

.doc-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
}

.search-box-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.search-input {
  width: 420px;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 30px 0 0 30px;
  outline: none;
  font-size: 15px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #409eff;
  box-shadow: 0 0 6px rgba(64,158,255,0.3);
}

.search-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #409eff, #0066cc);
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: linear-gradient(135deg, #66b1ff, #005bb5);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hot-search {
  font-size: 14px;
  color: #555;
}

.hot-search span {
  margin-right: 8px;
  font-weight: 500;
}

.hot-search a {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 6px;
  border-radius: 12px;
  background: #eef3ff;
  color: #0066cc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hot-search a:hover {
  background: #409eff;
  color: #fff;
}



.doc-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.doc-card:hover {
  transform: translateY(-3px);
  /* 底部阴影 + 上方蓝色阴影 */
  box-shadow: 
    0 6px 15px rgba(0,0,0,0.12),
    0 -4px 8px rgba(64,158,255,0.3); /* 上边淡蓝色阴影 */
}


.doc-left-title {
  display: flex;
  align-items: center;
}

.doc-left-title img {
  width: 40px;
  height: 40px;
}

.doc-left-title p {
  margin: 0 0 0 10px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.doc-divider {
  width: 1px;
  height: 40%;
  background: #e0e0e0;
}



    /* 自定义样式 */
    .doc-title {
      text-align: center;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .doc-desc {
      text-align: center;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .doc-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
    }

    .doc-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
    }

    .doc-item p {
      font-size: 16px;
    }

    .more-btn {
      display: block;
      margin: 20px auto;
      padding: 8px 20px;
      border: 1px solid #ccc;
      background-color: #fff;
      cursor: pointer;
    }