html {
  color: #333333;
  scroll-behavior: smooth;
}

.header-nohome {
  background-image: url('/static/images/banner2.jpg');
  background-size: cover;
  background-position: start;
  padding-top: 1.5rem;
}

.company-item {
  border-bottom: 1px dashed #d2d2d2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.company-item span.icon {
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-color: #eee;
  display: inline-block;
  border-radius: 4px;
  margin-right: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.newsType-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsType {
  flex: 0 calc(50% - 10px);
  margin-bottom: 20px;
  padding: 15px 10px;
}

.newsType * {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .newsType-box {
    flex-direction: column;
  }

  .newsType {
    flex: 0 0 100%;
  }
}

.newsType h2 {
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #f0f0f0;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.newsType:hover h2 a,
.newsType:hover h2 {
  background-color: #1678ff;
  color: #fff;
}

.newsType li {
  margin: 15px 5px;
}

.newsType li a {
  color: #666666;
  text-decoration: none;
}

.newsType li a:hover {
  color: #1678ff;
}

.newsType li:hover span.icon {
  background-color: #1678ff;
  color: #fff;
}

:root {
  --color-gray-500: #999999;
  --color-primary: #1678ff;
}

.text-gray-500 {
  color: var(--color-gray-500);
}

a.text-gray-500 {
  color: var(--color-gray-500);
}

a.text-gray-500:hover {
  color: var(--color-primary);
}
