/* 设置根字体大小(rem基准) */
html {
  font-size: 18px;
}
@media screen and (max-width: 1714.28571429px) {
  html {
    font-size: calc(100vw * 10 / 1200px * 0.7);
  }
}
.center {
  width: 65%;
  max-width: 1200px;
  min-width: 780px;
  margin: 0 auto;
  box-sizing: border-box;
  /* 响应式处理 */
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .center {
    width: 80%;
    min-width: unset;
  }
}
@media (max-width: 630px) {
  html,
  body {
    min-width: 630px;
    overflow-x: auto;
  }
}
/* 可选：添加CSS层面的限制（与JavaScript中的min/max对应） */
html {
  font-size: clamp(12px, 1.6vw, 20px);
  /* 作为备用方案 */
}
.body {
  width: 100%;
  background-color: #f8f8f8;
}
.crumbs-box {
  width: 100%;
  background-color: #d9d9d9;
}
.crumbs {
  height: 2.22222222rem;
  color: #333333;
  font-size: 0.77777778rem;
  line-height: 2.22222222rem;
}
.crumbs i {
  color: #a1a1a1;
  margin-left: 0.55555556rem;
  margin-right: 0.55555556rem;
}
.crumbs a:hover {
  color: #c3272b;
}
.cate-title {
  height: 4.66666667rem;
  line-height: 4.66666667rem;
  margin-top: 1.44444444rem;
  padding-left: 2.22222222rem;
  font-size: 1.11111111rem;
  box-sizing: border-box;
  background: url(../img/catetitle.jpg) no-repeat;
  background-size: auto auto;
  color: #fff;
}
.article {
  display: flex;
  justify-content: space-between;
  margin-top: 1.11111111rem;
  margin-bottom: 2.77777778rem;
}
.konw-item {
  width: 72%;
  background-color: #fff;
  color: #333;
  padding-top: 1.11111111rem;
  padding-right: 0rem;
  padding-bottom: 1.11111111rem;
  padding-left: 0rem;
  border-radius: 0.44444444rem;
  padding-left: 2.5%;
  padding-right: 2.5%;
  box-sizing: border-box;
}
.konw-item .title {
  line-height: 1.94444444rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
.konw-item .num {
  display: flex;
  justify-content: center;
  line-height: 1.55555556rem;
  color: #999999;
  font-size: 0.72222222rem;
  margin-bottom: 0.88888889rem;
}
.konw-item .num .read-num {
  margin-left: 2.44444444rem;
}
.konw-item .content {
  width: 100%;
  overflow: hidden;
}
.konw-item .content p {
  width: 100%;
}
.konw-item .content p img {
  width: 100% !important;
}
.other {
  width: 26%;
  background-color: #fff;
  border-radius: 0.44444444rem;
  padding-top: 1.11111111rem;
  padding-right: 1.11111111rem;
  padding-bottom: 1.11111111rem;
  padding-left: 1.11111111rem;
  box-sizing: border-box;
}
.other .concern {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.88888889rem;
  font-weight: bold;
  color: #262626;
  margin-bottom: 1.66666667rem;
}
.other .concern .line {
  width: 3.44444444rem;
  height: 0.05555556rem;
  background-color: #9d9d9d;
}
.other .concern span {
  margin-left: 0.55555556rem;
  margin-right: 0.55555556rem;
}
.other .other-item {
  display: block;
  width: 100%;
  height: 18.05555556rem;
}
.other .other-item .photo {
  position: relative;
  width: 100%;
  height: 8.88888889rem;
  overflow: hidden;
}
.other .other-item .photo img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}
.other .other-item .photo p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10.33333333rem;
  height: 2.77777778rem;
  line-height: 1.38888889rem;
  color: #fff;
  font-size: 1.11111111rem;
  font-weight: bold;
  margin-left: 1.22222222rem;
  margin-bottom: 1.11111111rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制显示的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.other .other-item .photo:hover img {
  transform: scale(1.1);
}
.other .other-item .type {
  float: left;
  width: 5.11111111rem;
  height: 1.94444444rem;
  border: 1px solid #c9c9c9;
  background-color: #f0f0f0;
  color: #333333;
  margin-top: 0.83333333rem;
  margin-bottom: 0.44444444rem;
  border-radius: 0.94444444rem;
  text-align: center;
  line-height: 1.94444444rem;
  font-size: 0.83333333rem;
  cursor: pointer;
}
.other .other-item .name {
  width: 95%;
  margin-left: 0.22222222rem;
  height: 1.66666667rem;
  font-size: 0.83333333rem;
  line-height: 1.66666667rem;
  color: #333333;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.other .other-item .addtime {
  color: #9fa19f;
  font-size: 0.66666667rem;
  line-height: 1.38888889rem;
}
.no-data {
  font-size: 1.11111111rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.77777778rem;
}
