.blog-page {
  max-width: 1200px;
  margin: 68px auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .blog-page {
    flex-direction: column;
    margin: 96px auto;
    padding: 0 15px;
  }
}
.blog-page .left {
  width: 100%;
  margin-top: 60px;
  flex: auto;
}
@media screen and (max-width: 1024px) {
  .blog-page .left {
    margin-top: 20px;
  }
}
.blog-page .left h1 {
  font-size: 32px;
  padding: 40px 20px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .blog-page .left h1 {
    font-size: 24px;
    padding: 20px 10px;
  }
}
.blog-page .left .labelbox {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 0 20px 6px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #999;
  font-weight: 700;
  font-style: italic;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .labelbox {
    margin-bottom: 30px;
    padding: 0 10px 6px;
  }
}
.blog-page .left .labelbox .views {
  display: flex;
  align-items: center;
}
.blog-page .left .labelbox .views svg {
  width: 14px;
  height: 14px;
}
.blog-page .left .labelbox .views svg path {
  fill: #999;
}
.blog-page .left .labelbox .views .num {
  margin-left: 6px;
}
.blog-page .left .img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .img-wrap {
    border-radius: 14px;
  }
}
.blog-page .left .img-wrap .contact-wrap {
  position: absolute;
  bottom: 8px;
  left: 15px;
}
@media screen and (max-width: 768px) {
  .blog-page .left .img-wrap .contact-wrap {
    left: 10px;
    bottom: 6px;
  }
}
.blog-page .left .img-wrap .contact-wrap .qrcode-box {
  width: 130px;
  height: 130px;
  padding: 4px;
  border-radius: 6px;
  background-color: #fff;
}
.blog-page .left .img-wrap .contact-wrap .qrcode-box img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .blog-page .left .img-wrap .contact-wrap .qrcode-box {
    width: 60px;
    height: 60px;
    padding: 2px;
    border-radius: 4px;
  }
}
.blog-page .left .img-wrap .contact-wrap .line {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
@media screen and (max-width: 768px) {
  .blog-page .left .img-wrap .contact-wrap .line {
    font-size: 18px;
  }
}
.blog-page .left .content {
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .content {
    padding: 0 10px;
  }
}
.blog-page .left .content h2 {
  font-size: 24px;
  margin: 60px 0 30px;
  border-left: 6px solid #000000;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .content h2 {
    margin: 40px 0 20px;
  }
}
.blog-page .left .content h3,
.blog-page .left .content h4,
.blog-page .left .content h5 {
  font-size: 18px;
  margin: 60px 0 30px;
  border-left: 6px solid #000000;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .content h3,
  .blog-page .left .content h4,
  .blog-page .left .content h5 {
    margin: 40px 20px 20px;
  }
}
.blog-page .left .content p {
  margin-bottom: 30px;
  text-align: justify;
  letter-spacing: 0.6px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .content p {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
.blog-page .left .content .line-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .content .line-image-box {
    border-radius: 14px;
  }
}
.blog-page .left .content .line-image-box .line_qrcode {
  position: absolute;
  width: 140px;
  bottom: 10px;
  right: 10px;
  border-radius: 10px;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .blog-page .left .content .line-image-box .line_qrcode {
    width: 60px;
    right: 4px;
    bottom: 4px;
    border-radius: 4px;
  }
}
.blog-page .left .content .line-image-box .line_id {
  position: absolute;
  color: #fff;
  bottom: 30px;
  right: 168px;
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .blog-page .left .content .line-image-box .line_id {
    font-size: 17px;
    bottom: 7px;
    right: 68px;
  }
}
.blog-page .left .content table {
  width: auto !important;
  margin: 0 30px;
  border: 1px solid #4d4d4d;
}
@media screen and (max-width: 1024px) {
  .blog-page .left .content table {
    margin: 0 20px;
  }
}
.blog-page .left .content table tbody tr th {
  text-align: center !important;
  padding: 20px;
}
.blog-page .left .content table tbody tr td {
  text-align: center !important;
  padding: 20px;
  border-top: 1px solid #4d4d4d;
}
.blog-page .sticky {
  position: relative;
  flex: auto;
}
.blog-page .sticky .hot-news {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .blog-page .sticky .hot-news {
    width: 300px;
    position: sticky;
    top: 100px;
  }
}
.blog-page .sticky .hot-news .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-page .sticky .hot-news .hot-item {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.blog-page .sticky .hot-news .hot-item .img-wrap {
  position: relative;
}
.blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap {
  position: absolute;
  bottom: 2px;
  left: 6px;
}
@media screen and (max-width: 1024px) {
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap {
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap {
    bottom: 4px;
    left: 6px;
  }
}
.blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .qrcode-box {
  width: 40px;
}
.blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .qrcode-box img {
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .qrcode-box {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .qrcode-box {
    width: 60px;
  }
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .qrcode-box img {
    border-radius: 6px;
  }
}
.blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .line {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
@media screen and (max-width: 1024px) {
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .line {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .sticky .hot-news .hot-item .img-wrap .contact-wrap .line {
    font-size: 16px;
  }
}
.blog-page .sticky .hot-news .hot-item .hot-title {
  font-size: 15px;
  color: #333;
  font-weight: 700;
  padding: 12px 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-page .sticky .hot-news .hot-item .hot-desc {
  font-size: 12px;
  color: #999;
  padding: 6px 12px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-main .case {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .case-main .case {
    flex-direction: column;
  }
}
.case-main .case .so {
  flex-grow: 1;
}
.case-main .case .empty {
  text-align: center;
  color: #999;
}
.case-main .case .present {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .case-main .case .present {
    flex-direction: column;
    padding: 8%;
  }
}
.case-main .case .present .title {
  text-align: center;
  font-size: 36px;
}
@media (max-width: 1024px) {
  .case-main .case .present .title {
    font-size: 22px;
  }
}
.case-main .case .present .news {
  overflow: hidden;
  width: 33.333333%;
}
.case-main .case .present .news:hover .sim {
  transform: translateY(-20px);
}
.case-main .case .present .news:hover .sim .img-wrap img {
  transform: scale(1.1);
}
.case-main .case .present .news:hover .sim .info-wrap::after {
  top: 5%;
}
@media (max-width: 1024px) {
  .case-main .case .present .news {
    width: 100%;
  }
}
.case-main .case .present .news .sim {
  margin: 30px 15px;
  transition: all 0.3s 0.1s ease-in-out;
}
.case-main .case .present .news .sim .img-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
}
.case-main .case .present .news .sim .img-wrap img {
  width: 100%;
  transition: all 0.3s 0.25s ease-in-out;
}
.case-main .case .present .news .sim .info-wrap {
  position: relative;
  background-color: #FFF;
  padding: 30px;
  border-radius: 0 0 30px 30px;
}
.case-main .case .present .news .sim .info-wrap::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.8);
  -webkit-filter: blur(20px);
  background-color: #000;
  border-radius: 0 0 30px 30px;
  transition: all 0.3s 0.1s ease-in-out;
}
.case-main .case .present .news .sim .info-wrap .sub-title {
  text-align: center;
}
.case-main .case .present .news .sim .info-wrap .news-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}
.case-main .case .present .news .sim .info-wrap .resolution .describe {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin-bottom: 20px;
  height: 63px;
}
.case-main .case .present .news .sim .info-wrap .resolution .views {
  display: flex;
  align-items: center;
}
.case-main .case .present .news .sim .info-wrap .resolution .views svg {
  width: 14px;
  height: 14px;
}
.case-main .case .present .news .sim .info-wrap .resolution .views svg path {
  fill: #999;
}
.case-main .case .present .news .sim .info-wrap .resolution .views .num {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  margin-left: 4px;
  font-style: italic;
}
.case-main .case .present .contact {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 64px;
}
.case-main .case .present .contact .tip {
  margin-bottom: 12px;
}
.case-main .case .present .contact .btn {
  width: 200px;
  height: 48px;
  background: #ffd103;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  margin: 0 auto;
}
