button {
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

body {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.wrap {
  padding: 0.625rem;
}

.title {
  display: flex;
  justify-content: space-between;
}
.title h2 {
  font-size: 1.25rem;
  margin: 0;
}
.title div {
  font-size: 0.875rem;
  color: #838383;
}

.bread_crum ul {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.hot_news h2 {
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.hot_news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.hot_news_main {
  width: 100%;
  height: 18.75rem;
  border-radius: 0.3125rem;
  position: relative;
  background-size: cover;
  background-image: url(../images/main_news.jpg);
}
.hot_news_main .badge {
  width: 55%;
  background: linear-gradient(to right, rgba(0, 205, 60, 0.8) 0%, rgba(240, 240, 202, 0.8) 100%);
  color: white;
  text-align: center;
  padding: 0.375rem;
  font-size: 1.625rem;
}
.hot_news_main .main_text {
  color: #fff;
  position: absolute;
  bottom: 0;
  padding: 0.25rem;
}
.hot_news_main .title {
  font-size: 1.4375rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
}
.hot_news_main .news_contents {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
}

.hot_news_sub {
  width: calc((100% - 0.625rem) / 2);
  border-radius: 0.3125rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.hot_news_sub .sub_img_box {
  position: relative;
}
.hot_news_sub .badge {
  width: 100%;
  position: absolute;
  bottom: 0rem;
  padding: 0.25rem;
  text-align: center;
  background: linear-gradient(to right, rgba(0, 205, 60, 0.8) 0%, rgba(240, 240, 202, 0.8) 100%);
  color: white;
}
.hot_news_sub .title {
  padding: 0.375rem;
}

.news_img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.filter {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #DADADA;
  margin-top: 1.875rem;
}
.filter .on {
  font-weight: bold;
  color: #00CD3C;
}

.filter ul {
  display: flex;
  gap: 0.625rem;
  justify-content: right;
  padding: 0.625rem;
}

.news_list li {
  display: flex;
  padding: 0.625rem;
  gap: 0.625rem;
  align-items: center;
  border-bottom: 1px dotted #DADADA;
}
.news_list li .date {
  width: 3.125rem;
  flex-shrink: 0;
  text-align: center;
}
.news_list li .date p:nth-child(1) {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
}
.news_list li .date p:nth-child(2) {
  font-size: 0.625rem;
  margin-top: 0.25rem;
}
.news_list li .thumb_img {
  width: 20%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 0.3125rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eee;
}
.news_list li .text_box {
  flex: 1;
  min-width: 0;
  padding: 0 0.625rem;
  display: flex;
  flex-direction: column;
}
.news_list li .title {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.news_list li .news_content {
  display: none;
}
.news_list li .icon {
  width: 3rem;
  flex-shrink: 0;
  font-size: 0.9375rem;
}
.news_list li .icon .heart_icon,
.news_list li .icon .bookmark_icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}
.news_list li .icon .material-symbols-rounded {
  font-size: 1.125rem;
  font-variation-settings: "opsz" 16;
}

.more_btn {
  background-color: #f8f8f8;
  border-bottom: 1px solid #DADADA;
  text-align: center;
  padding: 1rem;
}

/* ---------------------- Tablet ----------------------*/
@media (min-width: 768px) {
  .bread_crum ul {
    gap: 0.75rem;
    margin-bottom: 0.625rem;
  }
  .bread_crum ul li {
    font-size: 1.375rem;
  }
  .hot_news h2 {
    font-size: 2.625rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
  }
  .hot_news_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  .hot_news_main {
    height: 31.25rem;
  }
  .hot_news_main .badge {
    width: 50%;
    padding: 0.75rem;
    font-size: 2.125rem;
    font-weight: 600;
  }
  .hot_news_main .main_text {
    color: #fff;
    position: absolute;
    bottom: 0;
    font-size: 1.5rem;
    padding: 0.25rem;
  }
  .hot_news_main .title {
    font-size: 2rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
  }
  .hot_news_sub {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  }
  .hot_news_sub .sub_img_box {
    height: auto;
    position: relative;
  }
  .hot_news_sub .news_img {
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .hot_news_sub .badge {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.375rem;
  }
  .hot_news_sub .title {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
  .filter ul {
    gap: 1.25rem;
    padding: 0.75rem;
  }
  .filter ul li {
    font-size: 1.25rem;
  }
  .news_list li {
    overflow: hidden;
    padding: 1rem;
    gap: 1.25rem;
  }
  .news_list li .date {
    width: 6.25rem;
    flex-shrink: 0;
    text-align: center;
  }
  .news_list li .date p:nth-child(1) {
    font-size: 1.75rem;
    font-weight: 600;
  }
  .news_list li .date p:nth-child(2) {
    font-size: 1rem;
  }
  .news_list li .thumb_img {
    width: 24%;
    aspect-ratio: 1.4/1;
  }
  .news_list li .text_box {
    flex: 1;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .news_list li .title {
    font-size: 1.25rem;
    font-weight: 500;
  }
  .news_list li .news_content {
    margin-top: 0.5rem;
    white-space: pre-wrap;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news_list li .icon {
    width: 5rem;
    flex-shrink: 0;
    font-size: 1.375rem;
  }
  .news_list li .icon .heart_icon {
    padding-bottom: 0.375rem;
  }
  .news_list li .icon .heart_icon,
  .news_list li .icon .bookmark_icon {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
    justify-content: flex-start;
    gap: 0.375rem;
  }
  .news_list li .icon .material-symbols-rounded {
    font-size: 1.625rem;
    font-variation-settings: "opsz" 16;
  }
  .more_btn {
    font-size: 1.625rem;
    padding: 1.25rem;
  }
}
/* ---------------------- PC ----------------------*/
@media (min-width: 1070px) {
  .wrap {
    padding: 0;
    width: 1070px;
    margin: 0 auto;
  }
  .bread_crum {
    margin-top: 1rem;
  }
  .hot_news_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 30rem;
    gap: 0.625rem;
  }
  .hot_news_main {
    width: calc(66% - 0.625rem);
    height: 100% !important;
    margin: 0;
  }
  .hot_news_main .badge {
    width: 40%;
  }
  .hot_news_main .title {
    font-size: 1.875rem;
  }
  .hot_news_main .news_contents {
    font-size: 1.125rem;
  }
  .hot_news_sub {
    width: calc(34% - 0.625rem);
    height: calc(50% - 0.3125rem);
    margin: 0;
    padding: 0.625rem;
  }
  .hot_news_sub .badge {
    width: 50%;
    font-size: 1.25rem;
  }
  .hot_news_sub .news_img {
    height: 10rem;
    overflow: hidden;
    border-radius: 0.3125rem;
  }
  .hot_news_sub .news_img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hot_news_sub .title {
    display: -webkit-box;
    padding: 0.625rem 0rem;
    font-size: 1.125rem;
  }
  .thumb_img {
    width: 20% !important;
    aspect-ratio: 1.6/1 !important;
  }
  .more_btn {
    display: none;
  }
  .pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }
  .pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
  }
  .pagination ul li {
    width: 2.125rem;
    height: 2.125rem;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
  }
  .pagination ul li.active {
    border-color: #00CD3C;
    color: #00CD3C;
    font-weight: bold;
  }
  .pagination ul li:hover:not(.active) {
    background-color: #f5f5f5;
  }
}/*# sourceMappingURL=Sub.css.map */