@charset "UTF-8";
@import "../public/css/init.css";
@import "../public/css/header.css";
@import "../public/css/footer.css";
.page-main {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 80px 0 40px;
}
.page-main .module-home {
  display: flex;
  flex-direction: column;
  width: 1200px;
  max-width: 1200px;
  margin: 30px 0 0;
}
.page-main .module-home .title-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
.page-main .module-home .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .module-home .title-box .item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43.5%;
  background-color: rgb(0, 115, 255);
  border-top: 5px solid transparent;
  border-right: 5px solid rgb(255, 255, 255);
}
.page-main .module-home .title-box .item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 43.5%;
  background-color: rgb(0, 68, 150);
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgb(255, 255, 255);
}
.page-main .module-home .title-box .column-box {
  display: flex;
}
.page-main .module-home .title-box .column-box .column-ul {
  display: flex;
}
.page-main .module-home .title-box .column-box .column-ul .column-li {
  display: flex;
  align-items: center;
}
.page-main .module-home .title-box .column-box .column-ul .column-li:not(:first-of-type) {
  margin-left: 15px;
}
.page-main .module-home .title-box .column-box .column-ul .column-li .item-column {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 5px;
  border: 1px solid rgb(222, 222, 228);
}
.page-main .module-home .title-box .column-box .column-ul .column-li .item-column:hover {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 115, 255);
  background-color: rgb(0, 115, 255);
}
.page-main .module-home .title-box .column-box .column-ul .column-li .item-column.active {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 115, 255);
  background-color: rgb(0, 115, 255);
}
.page-main .module-home .news-main {
  display: flex;
  width: 100%;
}
.page-main .module-home .news-main .news-tab-content {
  display: none;
  width: 100%;
}
.page-main .module-home .news-main .news-tab-content.active {
  display: flex;
}
.page-main .module-home .news-main .news-tab-content .headline {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 620px;
}
.page-main .module-home .news-main .news-tab-content .headline .image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .headline .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main .module-home .news-main .news-tab-content .headline .info-box {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
}
.page-main .module-home .news-main .news-tab-content .headline .info-box .item-link {
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .headline .info-box .item-link:hover {
  text-decoration: underline;
}
.page-main .module-home .news-main .news-tab-content .headline .info-box .item-desc {
  display: -webkit-box;
  line-height: 24px;
  font-size: 15px;
  color: rgb(102, 112, 128);
  margin: 8px 0 0;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .news-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news {
  display: flex;
  width: 100%;
  padding: 22px 20px;
  border-radius: 10px;
  background-color: rgb(242, 242, 248);
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3px 0 0;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 75px;
  height: 40px;
  padding: 0 5px;
  border-radius: 8px;
  background-color: rgb(78, 118, 240);
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-icon::before {
  content: "\e62f";
  position: absolute;
  font-family: iconfont;
  font-size: 60px;
  color: rgb(255, 255, 255);
  z-index: 10;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-icon::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid rgb(78, 118, 240);
  border-right: 0;
  z-index: 9;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-date {
  font-size: 15px;
  color: rgb(168, 178, 188);
  margin: 15px 0 0;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right .item-link {
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right .item-link:hover {
  text-decoration: underline;
}
.page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right .item-desc {
  display: -webkit-box;
  line-height: 22px;
  font-size: 14px;
  color: rgb(102, 112, 128);
  margin: 8px 0 0;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list {
  display: flex;
  width: 100%;
  margin-top: 25px;
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding-left: 12px;
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li:not(:last-of-type) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgb(208, 218, 228);
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: rgb(158, 168, 178);
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li .item-link {
  flex: 1;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li .item-link:hover {
  text-decoration: underline;
}
.page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li .item-date {
  flex: 0 0 auto;
  font-size: 15px;
  color: rgb(128, 138, 148);
  margin-left: 20px;
}
.page-main .module-news {
  display: flex;
  width: 1200px;
  max-width: 1200px;
  margin: 30px 0 0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
}
.page-main .module-news .news-zt {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-main .module-news .news-zt .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
.page-main .module-news .news-zt .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .module-news .news-zt .title-box .item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43.5%;
  background-color: rgb(0, 115, 255);
  border-top: 5px solid transparent;
  border-right: 5px solid rgb(255, 255, 255);
}
.page-main .module-news .news-zt .title-box .item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 43.5%;
  background-color: rgb(0, 68, 150);
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgb(255, 255, 255);
}
.page-main .module-news .news-zt .title-box .item-more {
  font-size: 15px;
  color: rgb(0, 68, 150);
}
.page-main .module-news .news-zt .title-box .item-more::after {
  content: "\e72d";
  font-family: iconfont;
  font-size: 16px;
}
.page-main .module-news .news-zt .title-box .item-more:hover {
  color: rgb(0, 115, 255);
}
.page-main .module-news .news-zt .news-zt-list {
  display: flex;
  width: 100%;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li {
  width: calc((100% - 50px) / 3);
  overflow: hidden;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box {
  display: flex;
  flex-direction: column;
  margin: 10px 0 0;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box .item-link {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box .item-link:hover {
  text-decoration: underline;
}
.page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box .item-desc {
  display: -webkit-box;
  line-height: 22px;
  font-size: 14px;
  color: rgb(102, 112, 128);
  margin: 5px 0 0;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main .module-news .news-lives {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 360px;
  max-width: 360px;
  margin-left: 30px;
}
.page-main .module-news .news-lives .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
.page-main .module-news .news-lives .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .module-news .news-lives .title-box .item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43.5%;
  background-color: rgb(0, 115, 255);
  border-top: 5px solid transparent;
  border-right: 5px solid rgb(255, 255, 255);
}
.page-main .module-news .news-lives .title-box .item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 43.5%;
  background-color: rgb(0, 68, 150);
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgb(255, 255, 255);
}
.page-main .module-news .news-lives .title-box .item-more {
  font-size: 15px;
  color: rgb(0, 68, 150);
}
.page-main .module-news .news-lives .title-box .item-more::after {
  content: "\e72d";
  font-family: iconfont;
  font-size: 16px;
}
.page-main .module-news .news-lives .title-box .item-more:hover {
  color: rgb(0, 115, 255);
}
.page-main .module-news .news-lives .lives-ul {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 25px;
}
.page-main .module-news .news-lives .lives-ul::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  bottom: 45px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgb(222, 222, 228) 0px, rgb(222, 222, 228) 4px, transparent 2px, transparent 6px);
}
.page-main .module-news .news-lives .lives-ul .lives-li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-main .module-news .news-lives .lives-ul .lives-li:not(:last-of-type) {
  margin: 0 0 25px;
}
.page-main .module-news .news-lives .lives-ul .lives-li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(229, 229, 229);
  z-index: 1;
}
.page-main .module-news .news-lives .lives-ul .lives-li:first-of-type::before {
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(2, 122, 255);
}
.page-main .module-news .news-lives .lives-ul .lives-li .item-date {
  flex: 0 0 auto;
  font-size: 14px;
  color: rgb(142, 152, 168);
  line-height: 20px;
}
.page-main .module-news .news-lives .lives-ul .lives-li .item-link {
  flex: 1;
  font-size: 14px;
  color: rgb(22, 22, 28);
  line-height: 20px;
}
.page-main .module-news .news-lives .lives-ul .lives-li .item-link:hover {
  text-decoration: underline;
}
.page-main .module-cards {
  display: flex;
  gap: 30px;
  width: 1200px;
  max-width: 1200px;
  margin: 30px 0 0;
}
.page-main .module-cards .cards-main {
  width: calc((100% - 30px) / 2);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
}
.page-main .module-cards .cards-main .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
.page-main .module-cards .cards-main .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .module-cards .cards-main .title-box .item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43.5%;
  background-color: rgb(0, 115, 255);
  border-top: 5px solid transparent;
  border-right: 5px solid rgb(255, 255, 255);
}
.page-main .module-cards .cards-main .title-box .item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 43.5%;
  background-color: rgb(0, 68, 150);
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgb(255, 255, 255);
}
.page-main .module-cards .cards-main .title-box .item-more {
  font-size: 15px;
  color: rgb(0, 68, 150);
}
.page-main .module-cards .cards-main .title-box .item-more::after {
  content: "\e72d";
  font-family: iconfont;
  font-size: 16px;
}
.page-main .module-cards .cards-main .title-box .item-more:hover {
  color: rgb(0, 115, 255);
}
.page-main .module-cards .cards-main .cards-ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-main .module-cards .cards-main .cards-ul .cards-li {
  display: flex;
  width: 100%;
}
.page-main .module-cards .cards-main .cards-ul .cards-li:not(:first-of-type) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgb(232, 232, 238);
}
.page-main .module-cards .cards-main .cards-ul .cards-li .image-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
  overflow: hidden;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-top {
  display: flex;
  flex-direction: column;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-top .item-title {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-top .item-title:hover {
  text-decoration: underline;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-top .item-desc {
  font-size: 14px;
  color: rgb(102, 112, 128);
  margin: 8px 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom .item-date {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgb(142, 152, 168);
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom .item-view {
  font-size: 14px;
  color: rgb(142, 152, 168);
}
.page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom .item-view::before {
  content: "𐆩";
  font-family: iconfont;
  font-size: 16px;
  color: rgb(142, 152, 168);
  margin-right: 4px;
}

/* 移动端首页样式 */
@media screen and (max-width: 768px) {
  .page-main {
    margin: 3.75rem 0 1.875rem;
    padding: 0 0.9375rem;
  }
  .page-main .module-home,
  .page-main .module-news,
  .page-main .module-cards {
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0 0;
  }
  .page-main .module-home .title-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
  }
  .page-main .module-home .title-box .item-title {
    font-size: 1.125rem;
  }
  .page-main .module-home .title-box .column-box {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.3125rem;
    -webkit-overflow-scrolling: touch;
  }
  .page-main .module-home .title-box .column-box .column-ul {
    flex-wrap: nowrap;
  }
  .page-main .module-home .title-box .column-box .column-ul .column-li:not(:first-of-type) {
    margin-left: 0.625rem;
  }
  .page-main .module-home .title-box .column-box .column-ul .column-li .item-column {
    height: 1.875rem;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .page-main .module-home .news-main .news-tab-content {
    flex-direction: column;
  }
  .page-main .module-home .news-main .news-tab-content .headline {
    width: 100%;
  }
  .page-main .module-home .news-main .news-tab-content .headline .image-box {
    height: 13.75rem;
  }
  .page-main .module-home .news-main .news-tab-content .headline .info-box {
    margin: 0.9375rem 0 0;
  }
  .page-main .module-home .news-main .news-tab-content .headline .info-box .item-link {
    font-size: 1.125rem;
  }
  .page-main .module-home .news-main .news-tab-content .headline .info-box .item-desc {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box {
    margin-left: 0;
    margin-top: 1.2625rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news {
    padding: 0.9375rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-icon {
    width: 3.75rem;
    height: 2rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-icon::before {
    font-size: 3rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-icon::after {
    top: 1.25rem;
    border-top-width: 0.625rem;
    border-bottom-width: 0.625rem;
    border-left-width: 0.625rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-left .item-date {
    font-size: 0.8125rem;
    margin: 0.625rem 0 0;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right {
    margin-left: 0.9375rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right .item-link {
    font-size: 1rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .second-news .second-right .item-desc {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .news-list {
    margin-top: 1.25rem;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li .item-link {
    font-size: 0.9375rem;
    width: 100%;
  }
  .page-main .module-home .news-main .news-tab-content .news-box .news-list .news-ul .news-li .item-date {
    margin-left: 0.725rem;
    font-size: 0.8125rem;
  }
  .page-main .module-news {
    flex-direction: column;
    padding: 0.9375rem;
  }
  .page-main .module-news .news-zt .title-box .item-title {
    font-size: 1.125rem;
  }
  .page-main .module-news .news-zt .title-box .item-more {
    font-size: 0.875rem;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul {
    gap: 0.925rem;
    flex-direction: column;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li {
    display: flex;
    width: 100%;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box {
    flex: 1;
    margin: 0;
    overflow: hidden;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box .item-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box .item-desc {
    line-height: 1.4;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .info-box .item-date {
    font-size: 0.8125rem;
  }
  .page-main .module-news .news-zt .news-zt-list .zt-ul .zt-li .image-box {
    flex: 0 0 auto;
    width: 5.625rem;
    height: 3.75rem;
    margin-right: 0.625rem;
    border-radius: 0.1875rem;
  }
  .page-main .module-news .news-lives {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 1.875rem;
  }
  .page-main .module-news .news-lives .title-box .item-title {
    font-size: 1.125rem;
  }
  .page-main .module-news .news-lives .title-box .item-more {
    font-size: 0.875rem;
  }
  .page-main .module-cards {
    flex-direction: column;
    gap: 1.25rem;
  }
  .page-main .module-cards .cards-main {
    width: 100%;
    padding: 0.9375rem;
  }
  .page-main .module-cards .cards-main .title-box .item-title {
    font-size: 1.125rem;
  }
  .page-main .module-cards .cards-main .title-box .item-more {
    font-size: 0.875rem;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li:not(:first-of-type) {
    margin-top: 0.9375rem;
    padding-top: 0.9375rem;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li .image-box {
    width: 6.25rem;
    height: 4.375rem;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li .info-box {
    margin-left: 0.75rem;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-top .item-title {
    font-size: 0.9375rem;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-top .item-desc {
    font-size: 0.8125rem;
    margin: 0.3125rem 0 0;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom {
    margin-top: 0.5rem;
  }
  .page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom .item-date,
  .page-main .module-cards .cards-main .cards-ul .cards-li .info-box .box-bottom .item-view {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=index.css.map */