@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.detail {
  padding-bottom: 6.25rem;
}

.detail .title {
  font-weight: bold;
  font-size: 2.125rem;
  color: #000000;
}

.detail .time {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 3.125rem;
}

.detail .time span {
  font-size: 1rem;
  color: #999999;
  padding: 0 0.625rem;
  line-height: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
  border: 0.0625rem solid #DDDDDD;
}

.detail .time::after {
  content: "";
  width: 0;
  flex-grow: 1;
  height: 0.0625rem;
  background-color: #ddd;
}

.detail main {
  padding: 2.5rem 0;
}

.detail main img {
  max-width: 100% !important;
}

.detail .detail-main p {
  font-size: 1.125rem;
  color: #000000;
}

.detail .detail-main h6 {
  font-weight: bold;
  font-size: 1.25rem;
  color: #000000;
}

.detail .detail-main img {
  margin: auto;
  display: block;
}

.detail .detail-bottom {
  font-size: 1.125rem;
  color: #000000;
  border-top: #000000 0.125rem solid;
  padding-top: 1.25rem;
}

.detail .detail-bottom .item {
  display: flex;
  gap: 0.625rem;
}

.detail .detail-bottom .item span {
  max-width: 18.75rem;
}

@media (max-width: 800px) {
  .detail {
    padding-bottom: 3.125rem;
  }

  .detail .title {
    font-size: 1.375rem;
  }

  .detail .time {
    padding-top: 1.875rem;
  }

  .detail .time span {
    font-size: 0.8125rem;
    padding: 0 0.5rem;
    line-height: 1.625rem;
    height: 1.625rem;
  }

  .detail main {
    padding: 1.25rem 0;
  }

  .detail .detail-main p {
    font-size: 0.9375rem;
  }

  .detail .detail-bottom {
    font-size: 0.9375rem;
    padding-top: 0.9375rem;
  }

  .detail .detail-bottom .item span:nth-child(2),
  .detail .detail-bottom .item span:nth-child(3) {
    display: none;
  }
}