@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.main {
  padding: 5rem 0 6.25rem;
}

.main .list {
  grid-template-columns: 15.625rem 1fr;
  gap: 3.125rem;
  align-items: flex-start;
}

.main .list .nav {
  background: #FFFFFF;
  border: 0.0625rem solid #DDDDDD;
}

.main .list .nav > h3 {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: bold;
  padding: 1.25rem;
  background: #2252A3;
}

.main .list .nav .box {
  padding-left: 1.875rem;
}

.main .list .nav .box > div:nth-last-child(1) .item,
.main .list .nav .box > div:nth-last-child(1) .child > a:nth-last-child(1) {
  border-bottom: none;
}

.main .list .nav .box > div.active .item {
  border-bottom: 0.0625rem solid #DDDDDD;
}

.main .list .nav .box .item {
  padding: 1.25rem 1.875rem 1.25rem 0;
  font-size: 0.875rem;
  color: #111827;
  border-bottom: 0.0625rem solid #DDDDDD;
  transition: all 0.3s ease-in-out;
}

.main .list .nav .box .item:hover {
  color: #2252A3;
}

.main .list .nav .box .child {
  display: none;
  transition: all 0.3s ease-in-out;
}

.main .list .nav .box .child > a {
  padding: 0.75rem 1.875rem 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #666666;
  border-bottom: 0.0625rem solid #DDDDDD;
}

.main .list .nav .box .child > a:hover {
  color: #2252A3;
}

.main .list .nav .box .child .current {
  color: #2252A3;
}

.main .list .nav .box .active .child {
  display: block;
}

.main .list .nav .box .active .item {
  color: #2252A3;
  font-weight: bold;
}

.main .list .nav .box .active .item span:nth-child(2) {
  transform: rotate(90deg);
}

.main .list .product {
  padding-top: 0.3125rem;
  gap: 1.375rem;
}

.main .list .product > h2 {
  font-size: 1.5rem;
  color: #2252A3;
  font-weight: bold;
}

.main .list .product .table {
  border: 0.0625rem solid #DDDDDD;
}

.main .list .product .table .tr {
  text-align: center;
}

.main .list .product .table .tr > div {
  padding: 0 0.625rem;
  width: 15%;
  height: 100%;
  border-right: 0.0625rem solid #DDDDDD;
}

.main .list .product .table .tr > div:nth-last-child(1) {
  border-right: none;
}

.main .list .product .table .tr > div:nth-child(3),
.main .list .product .table .tr > div:nth-child(4) {
  width: 20%;
}

.main .list .product .table .head {
  height: 2.5rem;
  background: #2252A3;
  font-size: 0.75rem;
  color: #FFFFFF;
}

.main .list .product .table .item {
  height: 2.5rem;
  font-size: 0.75rem;
  color: #000000;
  background: #FFFFFF;
}

.main .list .product .table .item > div:nth-child(1) {
  color: #2252A3;
}

.main .list .product .table .item > div {
  border-bottom: 0.0625rem solid #DDDDDD;
}

.main .list .product .table .item img {
  width: 1rem;
}

.main .list .product .table .item:nth-last-child(1) > div {
  border-bottom: none;
}

.main .list .product .table .item:nth-child(odd) {
  background: #F5F5F5;
}

@media (max-width: 800px) {
  .main {
    padding: 1.875rem 0;
  }

  .main .list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .main .list .nav > h3 {
    padding: 0.875rem;
  }

  .main .list .nav .box {
    padding-left: 1.25rem;
  }

  .main .list .nav .box .item {
    padding: 0.875rem 1.25rem 0.875rem 0;
  }

  .main .list .nav .box .child > a {
    padding: 0.625rem 1.25rem 0.625rem 1.25rem;
  }

  .main .list .product {
    gap: 1.25rem;
  }

  .main .list .product > h2 {
    font-size: 1.125rem;
  }

  .main .list .product .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main .list .product .table {
    width: 100%;
    min-width: 37.5rem;
  }
}