@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-top: 120px;
}
.page-main .news-detail {
  display: flex;
  width: 1200px;
  max-width: 1200px;
  margin: 35px 0;
}
.page-main .news-detail .detail-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1;
  overflow: hidden;
}
.page-main .news-detail .detail-left .title {
  line-height: 1.4;
  font-size: 30px;
  font-weight: bold;
  color: rgb(22, 22, 28);
}
.page-main .news-detail .detail-left .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 25px;
}
.page-main .news-detail .detail-left .info .info-date {
  font-size: 15px;
  color: rgb(142, 142, 148);
}
.page-main .news-detail .detail-left .info .info-date::before {
  content: "\e605";
  font-family: iconfont;
  font-size: 16px;
  color: rgb(162, 162, 168);
  margin-right: 5px;
}
.page-main .news-detail .detail-left .info .info-view {
  font-size: 15px;
  color: rgb(142, 142, 148);
}
.page-main .news-detail .detail-left .info .info-view::before {
  content: "𐆩";
  font-family: iconfont;
  font-size: 16px;
  color: rgb(162, 162, 168);
  margin-right: 4px;
}
.page-main .news-detail .detail-left .summary {
  display: flex;
  position: relative;
  line-height: 1.8;
  font-size: 15px;
  color: rgb(36, 41, 46);
  text-indent: 45px;
  padding: 15px 20px;
  border: 1px dashed rgb(240, 238, 240);
  background-color: rgb(247, 248, 250);
}
.page-main .news-detail .detail-left .summary::before {
  content: "摘要：";
  position: absolute;
  left: -25px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(5, 65, 180);
}
.page-main .news-detail .detail-left .content {
  width: 100%;
  margin: 30px 0 0;
}
.page-main .news-detail .detail-left .content div:not(:last-of-type) {
  margin: 0 0 30px;
}
.page-main .news-detail .detail-left .content .first-part,
.page-main .news-detail .detail-left .content .second-part {
  line-height: 2;
  font-size: 16px;
  color: rgb(36, 41, 46);
}
.page-main .news-detail .detail-left .content .image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: rgb(250, 248, 250);
}
.page-main .news-detail .detail-left .content .image-box .item-image {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-main .news-detail .detail-left .keywords {
  width: 100%;
  margin: 40px 0 0;
}
.page-main .news-detail .detail-left .keywords .keys-ul {
  display: flex;
  flex-wrap: wrap;
}
.page-main .news-detail .detail-left .keywords .keys-ul .keys-li:not(:first-of-type) {
  margin-left: 25px;
}
.page-main .news-detail .detail-left .keywords .keys-ul .keys-li .item-keys {
  display: inline-block;
  box-sizing: border-box;
  max-width: 137px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  vertical-align: middle;
  font-size: 14px;
  color: rgb(82, 82, 88);
  padding: 6px 10px;
  border: 1px dashed rgb(212, 212, 218);
  transition: all 0.1s;
  text-decoration: none;
}
.page-main .news-detail .detail-left .keywords .keys-ul .keys-li .item-keys:hover {
  color: rgb(42, 42, 48);
  border: 1px solid rgb(232, 232, 238);
  background-color: rgb(232, 232, 238);
}
.page-main .news-detail .detail-left .declare {
  width: 100%;
  line-height: 1.5;
  font-size: 14px;
  color: rgb(162, 162, 168);
  margin: 40px 0 0;
}
.page-main .news-detail .detail-left .share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 0;
}
.page-main .news-detail .detail-left .share .share-left {
  flex: 1;
  display: flex;
  align-items: center;
}
.page-main .news-detail .detail-left .share .share-left .item-label {
  font-size: 15px;
  color: rgb(88, 89, 90);
  margin-right: 10px;
}
.page-main .news-detail .detail-left .share .share-left .item-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  transition: all 0.1s;
  cursor: pointer;
}
.page-main .news-detail .detail-left .share .share-left .item-share.weixin {
  border: 1px solid rgba(40, 195, 70, 0.6);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weixin::before {
  content: "\e660";
  font-family: iconfont;
  font-size: 30px;
  color: rgb(40, 195, 70);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weixin:hover {
  border: 1px solid rgb(40, 195, 70);
  background-color: rgb(40, 195, 70);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weixin:hover::before {
  color: rgb(255, 255, 255);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weibo {
  border: 1px solid rgba(230, 25, 45, 0.6);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weibo::before {
  content: "\e65f";
  font-family: iconfont;
  font-size: 30px;
  color: rgb(230, 25, 45);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weibo:hover {
  border: 1px solid rgb(230, 25, 45);
  background-color: rgb(230, 25, 45);
}
.page-main .news-detail .detail-left .share .share-left .item-share.weibo:hover::before {
  color: rgb(255, 255, 255);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qq {
  border: 1px solid rgba(65, 165, 215, 0.6);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qq::before {
  content: "\e66e";
  font-family: iconfont;
  font-size: 30px;
  color: rgb(65, 165, 215);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qq:hover {
  border: 1px solid rgb(65, 165, 215);
  background-color: rgb(65, 165, 215);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qq:hover::before {
  color: rgb(255, 255, 255);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qzone {
  border: 1px solid rgba(250, 180, 50, 0.6);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qzone::before {
  content: "\e66f";
  font-family: iconfont;
  font-size: 30px;
  color: rgb(250, 180, 50);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qzone:hover {
  border: 1px solid rgb(250, 180, 50);
  background-color: rgb(250, 180, 50);
}
.page-main .news-detail .detail-left .share .share-left .item-share.qzone:hover::before {
  color: rgb(255, 255, 255);
}
.page-main .news-detail .detail-left .share .share-left .item-share:not(:first-of-type) {
  margin-left: 10px;
}
.page-main .news-detail .detail-left .share .share-right {
  flex: 0 0 auto;
}
.page-main .news-detail .detail-left .share .share-right .item-label {
  font-size: 15px;
  color: rgb(92, 92, 98);
}
.page-main .news-detail .detail-left .share .share-right .item-url {
  font-size: 15px;
  color: rgb(42, 42, 48);
}
.page-main .news-detail .detail-left .relateds {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 40px 0 0;
}
.page-main .news-detail .detail-left .relateds .title-box {
  display: flex;
  width: 100%;
  margin: 0 0 25px;
}
.page-main .news-detail .detail-left .relateds .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .news-detail .detail-left .relateds .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 .news-detail .detail-left .relateds .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 .news-detail .detail-left .relateds .relateds-ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li {
  display: flex;
  width: 100%;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li:not(:first-of-type) {
  margin-top: 25px;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .image-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 118px;
  border-radius: 10px;
  overflow: hidden;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
  padding: 4px 0;
  overflow: hidden;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-top {
  display: flex;
  flex-direction: column;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-top .item-title {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-top .item-title:hover {
  text-decoration: underline;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-top .item-desc {
  display: -webkit-box;
  line-height: 22px;
  font-size: 14px;
  color: rgb(102, 112, 128);
  margin: 10px 0 0;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-left {
  display: flex;
  align-items: center;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-left .item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgb(42, 42, 48);
  padding: 5px 8px;
  border-radius: 3px;
  background-color: rgb(232, 232, 238);
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-left .item-date {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgb(142, 152, 168);
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-left .item-date::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: rgb(142, 152, 168);
  border-radius: 4px;
  margin: 0 8px;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-right {
  display: flex;
  align-items: center;
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-right .item-view {
  font-size: 15px;
  color: rgb(142, 152, 168);
}
.page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom .box-bottom-right .item-view::before {
  content: "𐆩";
  font-family: iconfont;
  font-size: 16px;
  color: rgb(142, 152, 168);
  margin-right: 4px;
}
.page-main .news-detail .detail-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 360px;
  max-width: 360px;
  line-height: 1;
  margin-left: 30px;
}
.page-main .news-detail .detail-right .hotnews {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
}
.page-main .news-detail .detail-right .hotnews:not(:first-of-type) {
  margin: 25px 0 0;
}
.page-main .news-detail .detail-right .hotnews .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
.page-main .news-detail .detail-right .hotnews .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .news-detail .detail-right .hotnews .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 .news-detail .detail-right .hotnews .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 .news-detail .detail-right .hotnews .title-box .item-more {
  font-size: 15px;
  color: rgb(0, 68, 150);
}
.page-main .news-detail .detail-right .hotnews .title-box .item-more::after {
  content: "\e72d";
  font-family: iconfont;
  font-size: 16px;
}
.page-main .news-detail .detail-right .hotnews .title-box .item-more:hover {
  color: rgb(0, 115, 255);
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul {
  display: flex;
  flex-direction: column;
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li {
  display: flex;
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li:not(:last-of-type) {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px dashed rgb(228, 238, 248);
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .info-box .item-link {
  display: -webkit-box;
  line-height: 20px;
  font-size: 14px;
  color: rgb(22, 22, 28);
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .info-box .item-link:hover {
  text-decoration: underline;
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .info-box .item-date {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: rgb(142, 152, 168);
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .image-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 64px;
  margin-left: 15px;
  border-radius: 3px;
  overflow: hidden;
}
.page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main .news-detail .detail-right .flashnews {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
}
.page-main .news-detail .detail-right .flashnews:not(:first-of-type) {
  margin: 25px 0 0;
}
.page-main .news-detail .detail-right .flashnews .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
.page-main .news-detail .detail-right .flashnews .title-box .item-title {
  position: relative;
  font-size: 22px;
  padding-bottom: 10px;
}
.page-main .news-detail .detail-right .flashnews .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 .news-detail .detail-right .flashnews .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 .news-detail .detail-right .flashnews .title-box .item-more {
  font-size: 15px;
  color: rgb(0, 68, 150);
}
.page-main .news-detail .detail-right .flashnews .title-box .item-more::after {
  content: "\e72d";
  font-family: iconfont;
  font-size: 16px;
}
.page-main .news-detail .detail-right .flashnews .title-box .item-more:hover {
  color: rgb(0, 115, 255);
}
.page-main .news-detail .detail-right .flashnews .flashnews-ul {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 25px;
}
.page-main .news-detail .detail-right .flashnews .flashnews-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 .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li:not(:last-of-type) {
  margin: 0 0 30px;
}
.page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-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 .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li:first-of-type::before {
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(2, 122, 255);
}
.page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li .item-date {
  flex: 0 0 auto;
  font-size: 14px;
  color: rgb(142, 152, 168);
  line-height: 20px;
}
.page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li .item-link {
  flex: 1;
  font-size: 14px;
  color: rgb(22, 22, 28);
  line-height: 20px;
}
.page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li .item-link:hover {
  text-decoration: underline;
}

.divJump-a {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgb(255, 242, 220);
  background-color: rgb(255, 252, 245);
}
.divJump-a .info-main {
  flex: 1;
  display: flex;
}
.divJump-a .info-main .image-box {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
}
.divJump-a .info-main .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.divJump-a .info-main .info-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 15px;
}
.divJump-a .info-main .info-box .item-title {
  font-size: 18px;
  font-weight: 600;
}
.divJump-a .info-main .info-box .item-desc {
  line-height: 1.4;
  font-size: 14px;
  color: rgb(132, 132, 138);
  margin: 10px 0 0;
}
.divJump-a .button-box {
  flex: 0 0 auto;
  display: flex;
}
.divJump-a .button-box .item-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  padding: 0 30px;
  border-radius: 42px;
}
.divJump-a .button-box .item-button:not(:first-of-type) {
  margin: 0 0 0 15px;
}
.divJump-a .button-box .item-button.reg {
  background-color: rgb(65, 170, 5);
}
.divJump-a .button-box .item-button.reg:hover {
  background-color: rgb(60, 150, 10);
}
.divJump-a .button-box .item-button.down {
  background-color: rgb(128, 128, 255);
}
.divJump-a .button-box .item-button.down:hover {
  background-color: rgb(108, 108, 245);
}

.divJump-b {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgb(235, 235, 235);
  background-color: rgb(245, 245, 245);
}
.divJump-b .info-main {
  flex: 1;
  display: flex;
}
.divJump-b .info-main .image-box {
  flex: 0 0 auto;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
}
.divJump-b .info-main .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.divJump-b .info-main .info-box {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 15px;
}
.divJump-b .info-main .info-box .item-title {
  font-size: 18px;
  font-weight: 600;
}
.divJump-b .info-main .info-box .item-desc {
  line-height: 1.4;
  font-size: 14px;
  color: rgb(132, 132, 138);
  margin: 10px 0 0;
}
.divJump-b .button-box {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 15px 0 0;
}
.divJump-b .button-box .item-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48%;
  height: 42px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  border-radius: 10px;
}
.divJump-b .button-box .item-button:not(:first-of-type) {
  margin: 0 0 0 15px;
}
.divJump-b .button-box .item-button.reg {
  background-color: rgb(65, 170, 5);
}
.divJump-b .button-box .item-button.reg:hover {
  background-color: rgb(60, 150, 10);
}
.divJump-b .button-box .item-button.down {
  background-color: rgb(128, 128, 255);
}
.divJump-b .button-box .item-button.down:hover {
  background-color: rgb(108, 108, 245);
}

.divJump-c {
  display: flex;
  align-items: center;
  margin: 30px 0 0;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgb(255, 242, 220);
  background-color: rgb(255, 252, 245);
}
.divJump-c .info-main {
  flex: 1;
  display: flex;
}
.divJump-c .info-main .image-box {
  display: flex;
  width: 70px;
  height: 70px;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.divJump-c .info-main .image-box .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.divJump-c .info-main .info-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 15px;
}
.divJump-c .info-main .info-box .item-title {
  font-size: 18px;
  font-weight: 600;
}
.divJump-c .info-main .info-box .item-desc {
  line-height: 1.4;
  font-size: 14px;
  color: rgb(132, 132, 138);
  margin: 10px 0 0;
}
.divJump-c .button-box {
  flex: 0 0 auto;
  display: flex;
}
.divJump-c .button-box .item-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  padding: 0 30px;
  border-radius: 42px;
}
.divJump-c .button-box .item-button:not(:first-of-type) {
  margin: 0 0 0 15px;
}
.divJump-c .button-box .item-button.reg {
  background-color: rgb(65, 170, 5);
}
.divJump-c .button-box .item-button.reg:hover {
  background-color: rgb(60, 150, 10);
}
.divJump-c .button-box .item-button.down {
  background-color: rgb(128, 128, 255);
}
.divJump-c .button-box .item-button.down:hover {
  background-color: rgb(108, 108, 245);
}

/* 移动端详情页样式 */
@media (max-width: 768px) {
  .page-main {
    margin-top: 6rem;
  }
  .page-main .news-detail {
    width: 100%;
    margin: 1.25rem 0;
    flex-direction: column;
    padding: 0 0.9375rem;
  }
  .page-main .news-detail .detail-left {
    width: 100%;
  }
  .page-main .news-detail .detail-left .title {
    font-size: 1.375rem;
  }
  .page-main .news-detail .detail-left .info {
    margin: 0.9375rem 0 1.25rem;
  }
  .page-main .news-detail .detail-left .info .info-date,
  .page-main .news-detail .detail-left .info .info-view {
    font-size: 0.875rem;
  }
  .page-main .news-detail .detail-left .info .info-date::before,
  .page-main .news-detail .detail-left .info .info-view::before {
    font-size: 1rem;
    margin-right: 0.3125rem;
  }
  .page-main .news-detail .detail-left .summary {
    padding: 0.75rem 0.9375rem;
    font-size: 0.775rem;
  }
  .page-main .news-detail .detail-left .summary::before {
    left: -1.5rem;
    font-size: 0.775rem;
  }
  .page-main .news-detail .detail-left .content {
    margin: 1.5625rem 0 0;
  }
  .page-main .news-detail .detail-left .content div:not(:last-of-type) {
    margin: 0 0 1.25rem;
  }
  .page-main .news-detail .detail-left .content .first-part,
  .page-main .news-detail .detail-left .content .second-part {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .page-main .news-detail .detail-left .content .image-box {
    padding: 0;
  }
  .page-main .news-detail .detail-left .keywords {
    margin: 1.875rem 0 0;
  }
  .page-main .news-detail .detail-left .keywords .keys-ul {
    flex-wrap: wrap;
  }
  .page-main .news-detail .detail-left .keywords .keys-ul .keys-li {
    margin: 0 0.9375rem 0.625rem 0 !important;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 0;
    align-self: flex-start;
  }
  .page-main .news-detail .detail-left .keywords .keys-ul .keys-li .item-keys {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /* 🔥 核心省略号属性 */
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    box-sizing: border-box;
    max-width: 8.6rem;
    line-height: 1.4;
    height: 1.975rem;
    font-size: 0.875rem;
    padding: 0.375rem 0.625rem;
    color: rgb(82, 82, 88);
    border: 1px dashed rgb(212, 212, 218);
    transition: all 0.1s;
    text-decoration: none;
  }
  .page-main .news-detail .detail-left .keywords .keys-ul .keys-li .item-keys:hover {
    color: rgb(42, 42, 48);
    border: 1px solid rgb(232, 232, 238);
    background-color: rgb(232, 232, 238);
  }
  .page-main .news-detail .detail-left .declare {
    margin: 1.875rem 0 0;
    font-size: 0.8125rem;
  }
  .page-main .news-detail .detail-left .share {
    justify-content: center;
    flex-direction: column;
    margin: 1.875rem 0 0;
  }
  .page-main .news-detail .detail-left .share .share-left .item-label {
    display: none;
  }
  .page-main .news-detail .detail-left .share .share-left .item-share {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 2.25rem;
  }
  .page-main .news-detail .detail-left .share .share-left .item-share::before {
    font-size: 1.875rem;
  }
  .page-main .news-detail .detail-left .share .share-left .item-share:not(:first-of-type) {
    margin-left: 0.625rem;
  }
  .page-main .news-detail .detail-left .share .share-right {
    display: none;
  }
  .page-main .news-detail .detail-left .relateds {
    margin: 2.1875rem 0 0;
  }
  .page-main .news-detail .detail-left .relateds .title-box {
    justify-content: center;
    margin: 0 0 1.25rem;
    border-bottom: 1px solid rgb(232, 232, 238);
  }
  .page-main .news-detail .detail-left .relateds .title-box .item-title {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
  .page-main .news-detail .detail-left .relateds .title-box .item-title::before {
    bottom: -1px;
  }
  .page-main .news-detail .detail-left .relateds .title-box .item-title::after {
    content: "";
    bottom: -1px;
  }
  .page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li:not(:first-of-type) {
    margin-top: 1.25rem;
  }
  .page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .image-box {
    width: 5.625rem;
    height: 3.75rem;
    margin-right: 0.625rem;
    border-radius: 0.1875rem;
  }
  .page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box {
    margin-left: 0;
    padding: 0;
  }
  .page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-top .item-title {
    font-size: 1rem;
    line-height: 1.4;
  }
  .page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-top .item-desc {
    line-height: 20px;
    margin: 0.2rem 0 0;
    font-size: 0.725rem;
  }
  .page-main .news-detail .detail-left .relateds .relateds-ul .relateds-li .info-box .box-bottom {
    display: none;
  }
  .page-main .news-detail .detail-right {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 2.1875rem;
  }
  .page-main .news-detail .detail-right .hotnews,
  .page-main .news-detail .detail-right .flashnews {
    width: 100%;
    padding: 0.9375rem;
    border-radius: 0.625rem;
  }
  .page-main .news-detail .detail-right .hotnews .title-box,
  .page-main .news-detail .detail-right .flashnews .title-box {
    margin: 0 0 0.9375rem;
  }
  .page-main .news-detail .detail-right .hotnews .title-box .item-title,
  .page-main .news-detail .detail-right .flashnews .title-box .item-title {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
  .page-main .news-detail .detail-right .hotnews .title-box .item-more,
  .page-main .news-detail .detail-right .flashnews .title-box .item-more {
    font-size: 0.9375rem;
  }
  .page-main .news-detail .detail-right .hotnews .title-box .item-more::after,
  .page-main .news-detail .detail-right .flashnews .title-box .item-more::after {
    font-size: 1rem;
  }
  .page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li:not(:last-of-type) {
    margin: 0 0 0.9375rem;
    padding: 0 0 0.9375rem;
  }
  .page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .info-box .item-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .info-box .item-date {
    font-size: 0.8125rem;
  }
  .page-main .news-detail .detail-right .hotnews .hotnews-ul .hotnews-li .image-box {
    width: 5.625rem;
    height: 3.75rem;
    margin-left: 0.625rem;
    border-radius: 0.1875rem;
  }
  .page-main .news-detail .detail-right .flashnews .flashnews-ul {
    padding-left: 1.5625rem;
  }
  .page-main .news-detail .detail-right .flashnews .flashnews-ul::before {
    left: 0.25rem;
    top: 0.1875rem;
    bottom: 2.725rem;
    width: 0.125rem;
  }
  .page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li:not(:last-of-type) {
    margin: 0 0 2rem;
  }
  .page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li::before {
    left: -1.6875rem;
    top: 0.1875rem;
    width: 0.5rem;
    height: 0.5rem;
    border: 0.1875rem solid rgb(229, 229, 229);
  }
  .page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li:first-of-type::before {
    border: 0.1875rem solid rgb(2, 122, 255);
  }
  .page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li .item-date,
  .page-main .news-detail .detail-right .flashnews .flashnews-ul .flashnews-li .item-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .divJump-a {
    align-items: flex-start;
    flex-direction: column;
  }
  .divJump-a .info-main .image-box {
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 0.425rem;
    flex-shrink: 0;
    transform: translateZ(0);
  }
  .divJump-a .info-main .info-box {
    margin-left: 0.725rem;
  }
  .divJump-a .info-main .info-box .item-title {
    font-size: 1.125rem;
  }
  .divJump-a .info-main .info-box .item-desc {
    font-size: 0.725rem;
    margin: 0.525rem 0 0;
  }
  .divJump-a .button-box {
    width: 100%;
    justify-content: space-between;
    margin: 0.825rem 0 0;
  }
  .divJump-a .button-box .item-button {
    width: 48%;
    height: 2.525rem;
    font-size: 0.925rem;
    border-radius: 0.525rem;
  }
  .divJump-a .button-box .item-button:not(:first-of-type) {
    margin: 0;
  }
  .divJump-b .info-main .image-box {
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 0.425rem;
    flex-shrink: 0;
    transform: translateZ(0);
  }
  .divJump-b .info-main .info-box {
    margin-left: 0.725rem;
  }
  .divJump-b .info-main .info-box .item-title {
    font-size: 1.125rem;
  }
  .divJump-b .info-main .info-box .item-desc {
    font-size: 0.725rem;
    margin: 0.525rem 0 0;
  }
  .divJump-b .button-box {
    width: 100%;
    justify-content: space-between;
    margin: 0.825rem 0 0;
  }
  .divJump-b .button-box .item-button {
    width: 48%;
    height: 2.525rem;
    font-size: 0.925rem;
    border-radius: 0.525rem;
  }
  .divJump-b .button-box .item-button:not(:first-of-type) {
    margin: 0;
  }
  .divJump-c {
    align-items: flex-start;
    flex-direction: column;
  }
  .divJump-c .info-main .image-box {
    width: 4.125rem;
    height: 4.125rem;
    padding: 0.425rem;
    border-radius: 0.425rem;
    box-shadow: 0 0.125rem 0.425rem rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transform: translateZ(0);
  }
  .divJump-c .info-main .image-box .item-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .divJump-c .info-main .info-box {
    margin-left: 0.725rem;
  }
  .divJump-c .info-main .info-box .item-title {
    font-size: 1.125rem;
  }
  .divJump-c .info-main .info-box .item-desc {
    font-size: 0.725rem;
    margin: 0.525rem 0 0;
  }
  .divJump-c .button-box {
    width: 100%;
    justify-content: space-between;
    margin: 0.825rem 0 0;
  }
  .divJump-c .button-box .item-button {
    width: 48%;
    height: 2.525rem;
    font-size: 0.925rem;
    border-radius: 0.525rem;
  }
  .divJump-c .button-box .item-button:not(:first-of-type) {
    margin: 0;
  }
}/*# sourceMappingURL=show.css.map */