.title {
  width: 100%;
  float: left;
  margin: 0 0 20px 0;
  font-size: 18px;
  color: #52443c;
  font-weight: 600;
}
.title img {
  vertical-align: middle;
  margin-right: 10px;
}
.pro_mainBg {
  width: 100%;
  float: left;
  min-width: 1200px;
  padding: 0 0 20px 0;
  border-bottom: 1px dashed #ccc;
}
.pro_main {
  width: 1200px;
  margin: 0 auto;
}
.pro_main .pro_content {
  width: 100%;
  float: left;
}
.pro_main .text {
  width: 80%;
  float: left;
  padding: 0 0 0 50px;
}
.pro_main .img {
  width: 100%;
  float: left;
  text-align: center;
  margin: 10px 0;
}
.pro_text {
  width: 100%;
  float: left;
  padding: 1rem;
}
ul.product {
  width: 100%;
  float: left;
}
ul.product li {
  width: 25%;
  text-align: center;
  float: left;
  position: relative;
}
ul.product li .img {
  background: url(../images/cs_pro_btnBg_1.png) left bottom no-repeat;
}
ul.product li.bg .img {
  background: url(../images/cs_pro_btnBg_2.png) left bottom no-repeat;
}
ul.product li .tit {
  position: absolute;
  left: 70px;
  top: 83%;
  text-align: left;
  font-weight: 600;
}
ul.product li:hover .tit {
  font-size: 18px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
ul.product li:hover img {
  cursor: pointer;
  -webkit-animation: scaleout 1.2s infinite ease-in-out;
  animation: scaleout 1.2s infinite ease-in-out;
}
.imgBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.imgBox .item {
  position: relative;
  display: flex;
  justify-content: center;
  width: calc(100% / 3 - 1rem);
  border-radius: 0.5em;
  overflow: hidden;
}
.imgBox.box2 .item {
  width: calc(100% / 2 - 14rem);
}
.imgBox .item img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease;
}
.imgBox .item:hover img {
  transform: scale(1.1);
}
.imgBox .item p {
  position: absolute;
  bottom: 0;
  width: 90%;
  text-align: center;
  font-size: 1.125rem;
  color: #fff;
  z-index: 2;
}
.imgBox .item:has(p)::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}
@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
    opacity: 1;
  }
}
@keyframes scaleout {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 360deg);
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pro_mainBg {
    min-width: 1000px;
  }
  .pro_main {
    width: 970px;
    padding: 0 15px;
  }
  .pro_main .img img {
    width: 100%;
    height: auto;
  }
  ul.product li .img img {
    width: 80%;
    height: auto;
  }
  ul.product li .tit {
    left: 30px;
  }
  .pro_main .text {
    width: 80%;
    padding: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  .pro_mainBg {
    min-width: 320px;
  }
  .pro_main {
    width: 90%;
    padding: 0 5%;
  }
  .pro_main .text {
    width: 100%;
    padding: 0;
  }
  .pro_main .img img {
    width: 100%;
    height: auto;
  }
  ul.product li {
    width: 80%;
    padding: 0 10%;
  }
  .imgBox .item {
    width: 100%;
  }
}
