/* 设置根字体大小(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;
}
.moudle {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
  padding-right: 0rem;
  padding-bottom: 5rem;
  padding-left: 0rem;
  box-sizing: border-box;
}
.moudle .on .flag {
  border: 1px solid #c3272b;
  background-color: #c3272b;
  color: #fff;
}
.moudle .on .flag i {
  font-size: 3.66666667rem;
}
.moudle .on .join {
  border-color: #c3272b;
}
.moudle .on .join div {
  border-color: #c3272b;
}
.moudle .on .join div i {
  color: #c3272b;
}
.moudle-item {
  width: 22%;
  height: 13.66666667rem;
  margin: 0 4%;
}
.moudle-item .flag {
  width: 100%;
  height: 10rem;
  border: 1px solid #dbdbdb;
  border-radius: 0.44444444rem;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  color: #666666;
}
.moudle-item .flag i {
  transition: all 0.5s;
  font-size: 3.22222222rem;
  line-height: 10rem;
}
.moudle-item .join {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 2.22222222rem;
  border-bottom: solid #dbdbdb;
  border-width: 0.11111111rem;
  margin-top: 1.38888889rem;
  color: #666666;
  line-height: 2.22222222rem;
  font-size: 1.11111111rem;
}
.moudle-item .join div {
  width: 1rem;
  height: 1rem;
  font-size: 0.77777778rem;
  border-radius: 50%;
  border: solid #dbdbdb;
  border-width: 0.11111111rem;
  text-align: center;
  line-height: 1rem;
  font-weight: 300;
}
.moudle-item .join div i {
  color: #dfdfdf;
}
