.case_detail_container {
  margin: 32px auto 0;
  display: flex;
  width: 1312px;
}
.case_detail_container .detail_left {
  width: 904px;
  margin-right: 72px;
}
.case_detail_container .detail_left .detail_tag {
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.88);
  cursor: pointer;
  margin-bottom: 32px;
}
.case_detail_container .detail_left .detail_tag span {
  letter-spacing: 1.5px;
  color: #337abb;
}
.case_detail_container .detail_left .detail_title {
  font-family: PingFang SC;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: rgba(0, 0, 0, 0.88);
  margin-bottom: 24px;
}
.case_detail_container .detail_left .light_intro {
  width: 100%;
  padding: 20px 24px;
  background: #f7f7f7;
}
.case_detail_container .detail_left .light_intro .light_intro_icon {
  width: 26px;
  height: 20px;
}
.case_detail_container .detail_left .light_intro .intro_title {
  font-family: PingFang SC;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0em;
  color: rgba(0, 0, 0, 0.88);
  margin: 11px 0 8px 0;
}
.case_detail_container .detail_left .light_intro .intro_text {
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.88);
}
.case_detail_container .detail_left .activity_intro {
  margin-top: 24px;
}
.case_detail_container .detail_left .activity_intro .item {
  display: flex;
  align-items: center;
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.88);
  margin-bottom: 16px;
}
.case_detail_container .detail_left .activity_intro .item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.case_detail_container .detail_left .activity_intro .item:last-child {
  margin-bottom: 24px;
}
.case_detail_container .detail_left .detail_img {
  width: 100%;
}
.case_detail_container .detail_left .detail_img img {
  width: 100%;
  margin-bottom: 10px;
}
.case_detail_container .detail_left .detail_img img:last-child {
  margin-bottom: 150px;
}
.case_detail_container .detail_right {
  width: 336px;
}
.case_detail_container .detail_right .more_ask {
  width: 100%;
}
.case_detail_container .detail_right .more_ask .ask_title {
  font-family: PingFang SC;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: rgba(0, 0, 0, 0.88);
  margin-bottom: 16px;
}
.case_detail_container .detail_right .more_ask .ask_btn {
  width: 336px;
  height: 40px;
  border-radius: 8px;
  background: #ff0000;
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.case_detail_container .detail_right .more_ask .ask_btn img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.case_detail_container .detail_right .recommend .recommend_title {
  font-family: PingFang SC;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: rgba(0, 0, 0, 0.88);
  margin: 32px 0 16px;
}
.case_detail_container .detail_right .recommend .recommend_list .recommend_item {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
}
.case_detail_container .detail_right .recommend .recommend_list .recommend_item .recommend_img {
  width: 180px;
  height: 135px;
  border-radius: 8px;
  margin-right: 12px;
  cursor: pointer;
}
.case_detail_container .detail_right .recommend .recommend_list .recommend_item .recommend_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 6px 0;
}
.case_detail_container .detail_right .recommend .recommend_list .recommend_item .recommend_text .title {
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0px;
  color: rgba(0, 0, 0, 0.88);
  cursor: pointer;
  display: -webkit-box;
  /* 使用Webkit的盒子模型 */
  -webkit-line-clamp: 3;
  /* 限制最多显示2行 */
  -webkit-box-orient: vertical;
  /* 设置盒子内容的排列方向为垂直 */
  overflow: hidden;
  /* 隐藏超出容器的内容 */
  text-overflow: ellipsis;
  /* 使用省略号表示被截断的文本 */
}
.case_detail_container .detail_right .recommend .recommend_list .recommend_item .recommend_text .tag {
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0px;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: -webkit-box;
  /* 使用Webkit的盒子模型 */
  -webkit-line-clamp: 1;
  /* 限制最多显示2行 */
  -webkit-box-orient: vertical;
  /* 设置盒子内容的排列方向为垂直 */
  overflow: hidden;
  /* 隐藏超出容器的内容 */
  text-overflow: ellipsis;
  /* 使用省略号表示被截断的文本 */
}
.case_detail_container .el-dialog {
  border-radius: 16px;
}
.case_detail_container .el-dialog .el-dialog__headerbtn:focus .el-dialog__close,
.case_detail_container .el-dialog .el-dialog__headerbtn:hover .el-dialog__close {
  color: #ff0000 !important;
}
.case_detail_container .el-dialog--center .el-dialog__body {
  padding: 6px 25px 30px;
}
.case_detail_container .customer_code .customer_code_title {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
.case_detail_container .customer_code .we_code {
  text-align: center;
}
.case_detail_container .customer_code .we_code img {
  width: 128px;
  height: 128px;
}
.case_detail_container .customer_code .customer_code_bottom {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.88);
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
.new_video {
  position: relative;
}
.new_video video {
  width: 100%;
  margin-bottom: 10px;
}
.new_video .video_play_svg {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  color: #fff;
  z-index: 2;
  cursor: pointer;
}
.new_video .video_play_svg img {
  width: 24px;
  height: 24px;
  position: absolute;
  left: calc(50% - 11px);
  top: calc(50% - 12px);
  cursor: pointer;
}
.new_video .video_poster_img {
  z-index: 1;
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
}
.new_video .video_poster_img img {
  width: 100%;
  height: 100%;
}
.fix_bottom {
  position: fixed;
  right: 12px;
  bottom: 72px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
@media (max-width: 1600px) {
  .case_detail_container {
    width: 1192px;
  }
  .case_detail_container .detail_left {
    width: 808px !important;
    margin-right: 48px !important;
  }
  .case_detail_container .detail_right {
    width: 336px !important;
  }
}
@media (max-width: 1440px) {
  .case_detail_container {
    width: 1093px;
  }
  .case_detail_container .detail_left {
    width: 712px !important;
    margin-right: 40px !important;
  }
  .case_detail_container .detail_right {
    width: 336px !important;
  }
}
