* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei", sans-serif;
}
body {
  background: url('../img/bg.png') no-repeat;
  background-size: 100% auto;
  padding: 14px 40px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.header .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
.header .login-btn {
  padding: 4px 16px 6px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  color: #242424;
  text-decoration: none;
  transition: background-color 0.3s;
}
.header .login-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.container {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
.containerHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.main-title h1 {
  font-size: 40px;
  color: #101828;
  font-weight: bold;
  position: relative;
}
.main-title h1::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #161a23;
  position: absolute;
  right: -4px;
  top: 10px;
}
.main-title p {
  font-size: 18px;
  color: #101828;
  font-weight: bold;
  margin-top: 8px;
}
.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 200px);
  max-width: 648px;
  background: #FFFFFF;
  border-radius: 32px;
  border: 1px solid #98A2B3;
  padding: 0 10px 0 28px;
}
.search-bar .search-input {
  flex: 1;
  border: 0 !important;
  font-size: 14px;
  height: 62px;
  outline: none !important;
}
.search-bar .search-btn {
  border-radius: 50%;
  overflow: hidden;
  background-color: #333333;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-results {
  position: absolute;
  top: 103%;
  left: 26px;
  right: 22px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.search-result-item:hover,
.search-result-item.active {
  background-color: #f5f5f5;
}
.search-result-item .result-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.search-result-item .result-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-result-item .result-info {
  flex: 1;
}
.search-result-item .result-info .result-title {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}
.search-result-item .result-info .result-subtitle {
  font-size: 12px;
  color: #666;
}
.no-results {
  padding: 20px;
  text-align: center;
  color: #999999;
  font-size: 14px;
}
#searchResults::-webkit-scrollbar {
  width: 5px;
  background: #eee;
}
#searchResults::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
#searchResults::-webkit-scrollbar-thumb {
  border-radius: 4px;
  height: 100px;
  background-color: #ccc;
}
.section-title {
  font-size: 18px;
  color: #333333;
  margin-bottom: 24px;
  margin-left: 10px;
}
.columns-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.column-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.column-card a:hover {
  box-shadow: 0px 0px 10px 0px rgba(88, 99, 117, 0.2);
  position: relative;
  top: -2px;
}
.column-card .column-icon {
  margin-bottom: 16px;
}
.column-card .column-title {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 16px;
}
.column-card .column-subtitle {
  font-size: 12px;
  color: #98A2B3;
}
.selected-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.selected-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.selected-header .refresh-btn {
  border: 0;
  cursor: pointer;
  font-size: 12px;
  color: #999999;
  display: flex;
  align-items: center;
  background-color: transparent;
}
.selected-header .refresh-btn img {
  margin-right: 2px;
}
.selected-card {
  padding: 24px;
  display: flex;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #ECEFF3;
}
.selected-card .selected-icon {
  margin-right: 16px;
}
.selected-card .selected-content {
  flex: 1;
}
.selected-card .selected-content .selected-title {
  font-size: 16px;
  color: #333333;
  margin-bottom: 14px;
}
.selected-card .selected-content .selected-desc {
  font-size: 14px;
  color: #98A2B3;
  margin-bottom: 14px;
  line-height: 18px;
  height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.selected-card .selected-content .selected-tags {
  font-size: 12px;
  color: #B89879;
}
.update-section {
  margin-bottom: 40px;
}
.update-section h2 {
  font-size: 18px;
  color: #333333;
  margin-left: 10px;
  position: relative;
  display: inline-block;
}
.update-section h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
}
.contentBox {
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #333333;
  padding: 10px;
  margin-top: 24px;
}
.card {
  flex: 0 0 auto;
  width: 262px;
  background-color: #F4F6F8;
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
  height: 356px;
  margin-right: 10px;
  margin-bottom: 4px;
}
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}
.card h3 {
  margin: 0;
  font-size: 16px;
  color: #333333;
  margin: 12px 0;
}
.card p {
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
  color: #98A2B3;
}
.content {
  padding-right: 12px;
  overflow: hidden;
}
.transverse {
  width: 100%;
  overflow-x: scroll;
}
.transverse ul {
  display: flex;
}
.transverse li {
  flex-shrink: 0;
  padding-bottom: 4px;
  list-style: none;
}
.listTop {
  border-bottom: 2px solid #dee2e6;
}
.section-title2 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 42px;
  padding-right: 2px;
}
.section-title2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: #6d7581;
  width: 100%;
}
.section-title2 svg {
  margin-right: 6px;
  margin-top: 2px;
}
.latestList {
  list-style: none;
  margin-top: 10px;
}
.latestList li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0.75rem 0.625rem;
  cursor: pointer;
  border-bottom: 1px solid #dee2e6;
}
.latestList li:hover {
  background-color: #f1f3f5;
}
.latestList li svg {
  color: #868e96;
  width: 18px;
  margin-right: 4px;
}
.latestList .name {
  color: #000;
  font-size: 16px;
  width: calc(100% - 270px);
  max-width: 500px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.latestList .type {
  font-size: 0.68rem;
  color: #0b60d8;
  background-color: #e6effb;
  padding: 4px 8px 4px 8px;
  border-radius: 8px;
  width: 100px;
  text-align: center;
}
.latestList .time {
  font-size: 12px;
  color: #868e86;
  padding-right: 10px;
  width: 110px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  body {
    padding: 14px 10px;
  }
  .containerHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .search-bar {
    width: 100%;
  }
  .search-bar .search-input {
    height: 3rem;
  }
  .search-bar .search-btn {
    height: 2rem;
    width: 2rem;
  }
  .columns-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .column-card {
    width: 100%;
  }
  .header {
    margin-bottom: 1rem;
  }
  .containerHeader {
    margin-bottom: 1.5rem;
  }
  .main-title h1 {
    font-size: 2rem;
  }
  .main-title p {
    font-size: 0.87rem;
  }
  .latestList .name {
    width: calc(100% - 120px);
  }
  .latestList .type {
    display: none;
  }
  .column-card a {
    padding: 1rem 0;
  }
  .column-card .column-icon {
    margin-bottom: 0.2rem;
  }
  .column-card .column-title {
    margin-bottom: 0.2rem;
    font-size: 1rem;
  }
  .column-card .column-subtitle {
    font-size: 10px;
  }
  .column-icon {
    text-align: center;
  }
  .column-icon img {
    width: 80%;
  }
}
