body {
  margin: 0 auto;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #353535;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis-l2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ellipsis-l3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.row {
  width: 1200px;
  margin: 0 auto;
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.main-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 40px;
  color: #4188d7;
  font-size: 28px;
  margin: 60px 0 30px;
}

.main-title a {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  color: #000;
  text-decoration: underline;
}

.banner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.banner .mobile {
  display: none;
}

.banner .web {
  width: 100%;
  height: 383px;
  position: relative;
  display: block;
}

.banner .web > img {
  height: 100%;
  object-fit: cover;
}

.banner .logo1 {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -600px;
  width: 88px;
}

.banner .logo2 {
  position: absolute;
  top: 20px;
  right: 50%;
  margin-right: -600px;
  width: 112px;
}

.banner .intro {
  width: 838px;
  position: relative;
  left: 50%;
  bottom: 106px;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 24px;
  color: #1a1a1a;
  text-indent: 2em;
}

.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.list-item {
  width: 590px;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
}

.list-item a {
  display: flex;
}

.list-item:nth-child(n + 11) {
  display: none;
}

.list-picture {
  width: 200px;
  height: 110px;
}

.list-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-content {
  flex: 1;
  padding: 10px;
}

.list-title {
  font-size: 18px;
  color: #060001;
}

.list-intro {
  font-size: 14px;
  color: #1a1a1a;
  margin-top: 10px;
}

.list-more {
  text-align: center;
  margin: 60px 0 20px;
  user-select: none;
  cursor: pointer;
  display: none;
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #060001;
  margin-top: 100px;
  padding: 30px 0 !important;
}

.footer p {
  line-height: 32px !important;
}

@media (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}
@media (max-width: 768px) {
  body {
    background-color: #fff;
  }

  .banner .mobile {
    display: block;
  }

  .banner .web {
    display: none;
  }

  .banner .logo1 {
    width: 44px;
    left: 10px;
    top: 10px;
    margin-left: 0;
  }

  .banner .logo2 {
    width: 56px;
    right: 10px;
    top: 10px;
    margin-right: 0;
  }

  .banner .intro {
    padding: 0 16px;
    width: auto;
    position: initial;
    margin: 0 auto;
    transform: none;
    text-align: justify;
  }

  .list {
    padding: 0 16px;
    margin-top: 30px;
    gap: 16px;
    flex-direction: column;
  }

  .list-item {
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #dbd8d8;
    padding-bottom: 16px;
  }

  .list-picture {
    width: 92px;
    height: 56px;
  }

  .list-content {
    padding: 6px 6px 6px 10px;
  }

  .list-title {
    font-size: 16px;
  }

  .list-intro {
    margin-top: 6px;
  }

  .list-more {
    margin: 30px 0;
  }

  .row {
    width: 100%;
  }

  .footer {
    margin-top: 30px;
  }

  .mobile-hidden {
    display: none;
  }
}
