* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.topTitle {
  box-sizing: border-box;
  padding: 1.4rem 1.7rem;
}
.topTitle p {
  font-weight: bold;
  font-size: 2rem;
  color: #131313;
  line-height: 2.4rem;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}
.timeWrap {
  font-weight: 400;
  font-size: 1.44rem;
  color: #666666;
  line-height: 2.1rem;
  padding: 0 1.7rem;
}
.contentWrap {
  border-bottom: 1.4rem solid #f8f8f8;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
  /* 二维码开始 */
}
.contentWrap img {
  max-width: 100%;
}
.contentWrap section {
  font-weight: 400;
  font-size: 1.6rem;
  color: #131313;
  line-height: 2.5rem;
  text-indent: 2em;
  padding: 0 1.5rem;
}
.contentWrap .contentMainImg {
  display: block;
  width: 29.7rem;
  height: 38.2rem;
  margin: 1.5rem auto 0 auto;
}
.contentWrap .mainConTitle {
  width: 15.4rem;
  height: 3.6rem;
  background: linear-gradient(266deg, #f53c3c 0%, #f77575 100%);
  border-radius: 0rem 1.8rem 1.8rem 0rem;
  font-weight: bold;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 3.6rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 1.6rem;
  margin-top: 3rem;
}
.contentWrap .mainConTitle img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
}
.contentWrap .synopsisWrap .synopsisCont {
  padding: 0 1.7rem;
  margin-top: 1rem;
}
.contentWrap .synopsisWrap .synopsisCont p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #4a4a4a;
    line-height: 2.5rem;
}
.contentWrap .swotWrap .swotCont {
  padding: 0 1.7rem;
  margin-top: 1.3rem;
}
.contentWrap .swotWrap .swotCont p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #4a4a4a;
    line-height: 2.5rem;
    margin-top: 0.2rem;
}
.contentWrap .codeWrap {
  width: 34.5rem;
  margin: 3rem auto 1rem auto;
}
.contentWrap .codeWrap .changeBtn {
  width: 30rem;
  height: 2.7rem;
  display: flex;
  justify-content: space-between;
  margin: 1.7rem auto 0 auto;
}
.contentWrap .codeWrap .changeBtn a {
  display: block;
  width: 14.6rem;
  height: 2.7rem;
  background: #f14545;
  font-weight: 400;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 2.7rem;
  text-align: center;
}
.caseWrap {
  padding: 0 1.7rem 1.2rem 1.7rem;
  position: relative;
}
.caseWrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  top: 4.8rem;
  left: 0;
  background: #eaeaea;
}
.caseWrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 0.4rem;
  height: 2rem;
  background: #f14545;
  border-radius: 0.2rem;
  top: 1.5rem;
  left: 1.5rem;
}
.caseWrap .caseTit {
  display: flex;
  margin-bottom: 0.7rem;
}
.caseWrap .caseTit img {
  height: 2rem;
  width: 2rem;
  margin-right: 0.2rem;
}
.caseWrap .caseTit span {
  font-weight: 400;
  font-size: 2rem;
  color: #333333;
  line-height: 4.8rem;
  margin-left: 1rem;
}
.caseWrap .caseCon a {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #333333;
  line-height: 3.1rem;
  transition: 0.3s;
}
.caseWrap .caseCon a p {
  width: 34rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.caseWrap .caseCon a div {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0.4rem 0.4rem 0.4rem;
  border-color: transparent transparent transparent #333333;
}
.caseWrap .caseCon a:hover {
  color: #f14545;
}
.caseWrap .caseCon a:hover div {
  border-color: transparent transparent transparent #f14545;
}
