/* 设置根字体大小(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: #fff;
}
.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;
}
.compute {
  background-color: #e6e6e6;
  margin-top: 1.94444444rem;
  margin-bottom: 2.5rem;
  padding-top: 0.66666667rem;
  padding-right: 2.11111111rem;
  padding-bottom: 2.38888889rem;
  padding-left: 2.11111111rem;
}
.compute .font {
  font-size: 0.77777778rem;
  color: #666666;
  font-weight: bold;
  line-height: 2.5rem;
}
.compute .comp {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.compute .comp .comp-item {
  width: 32.2%;
  height: 15.83333333rem;
  background-color: #fff;
  margin-right: 1.6%;
  margin-bottom: 1rem;
  padding-top: 1.38888889rem;
  padding-right: 1rem;
  padding-bottom: 0rem;
  padding-left: 1rem;
  box-sizing: border-box;
  transition: all 0.8s;
}
.compute .comp .comp-item .comp-title {
  display: flex;
  justify-content: space-between;
  font-size: 0.88888889rem;
  line-height: 1.66666667rem;
  color: #333333;
}
.compute .comp .comp-item .comp-title .excute {
  width: 5.55555556rem;
  height: 1.66666667rem;
  border-radius: 0.83333333rem;
  background-color: #c3272b;
  text-align: center;
}
.compute .comp .comp-item .comp-title .excute a {
  color: #fff;
}
.compute .comp .comp-item .comp-content {
  font-size: 0.72222222rem;
  color: #666666;
  margin-top: 2.05555556rem;
}
.compute .comp .comp-item .comp-content .start {
  line-height: 1.77777778rem;
}
.compute .comp .comp-item .comp-content .content {
  line-height: 1.66666667rem;
}
.compute .comp .comp-item:nth-of-type(3n) {
  margin-right: 0;
}
.compute .comp .comp-item:hover {
  box-shadow: 0 0 10px 5px #909090b4;
}
