:root {
  --RWDWidth: 1024px;
}

.description {
  color: #999999;
  font-size: var(--clamp18);
}

.industriesList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 140px 90px;
}
@media screen and (max-width: 1024px) {
  .industriesList .listBox {
    gap: 80px 20px;
  }
}
.industriesList .item {
  position: relative;
  width: calc((100% - 90px * (2 - 1)) / 2);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .industriesList .item {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
@media screen and (max-width: 767px) {
  .industriesList .item {
    width: calc((100% - 20px * (1 - 1)) / 1);
  }
}
.industriesList .item:hover .picBox::after {
  opacity: 1;
}
.industriesList .item:hover .picBox .iconBox .icon {
  background: #fff;
}
.industriesList .item:hover .picBox .pic img {
  transform: scale(1.05);
}
.industriesList .item:hover .info .title {
  color: #E66E0D;
}
.industriesList .item .picBox {
  margin-bottom: 15px;
  position: relative;
  isolation: isolate;
}
.industriesList .item .picBox::before {
  content: "";
  width: 21%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 0;
}
.industriesList .item .picBox::after {
  content: "";
  width: 21%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(to top, #81172b 0%, #e66e0d 100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.industriesList .item .picBox .iconBox {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  width: 21%;
  z-index: 9;
  filter: drop-shadow(0px 5px 5px rgb(0, 0, 0));
  z-index: 2;
}
.industriesList .item .picBox .iconBox .icon {
  display: block;
  width: 60%;
  aspect-ratio: 1;
  background: #E66E0D;
  transition: all 0.3s ease;
}
.industriesList .item .picBox .pic {
  position: relative;
  aspect-ratio: 71/40;
  z-index: -1;
}
.industriesList .item .picBox .pic img {
  transition: all 0.3s ease;
}
.industriesList .item .info {
  margin-left: 21%;
  isolation: isolate;
}
.industriesList .item .title {
  color: #fff;
  font-size: var(--clamp32);
  line-height: 1.2;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-weight: 400;
}
.industriesList .item .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.industriesList .pageTitle {
  color: #81172B;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
  font-size: var(--clamp36);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .industriesList .pageTitle {
    margin-bottom: 20px;
  }
}
.industriesList .pageTitle span {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: var(--clamp48);
}
.industriesList .topInfo {
  max-width: 1170px;
  margin: 0 auto 50px;
  color: #333333;
  font-size: var(--clamp21);
}
.industriesList .results {
  width: 100%;
  margin: 0 auto 50px;
  max-width: 520px;
  padding: 10px 50px;
  text-align: center;
  background: #F3F5FA;
  font-size: var(--clamp24);
  font-weight: 500;
  -webkit-clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
          clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
}

.industriesDetail .pageTitleBox {
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  .industriesDetail .pageTitleBox {
    margin-bottom: 40px;
  }
}
.industriesDetail .pageTitleBox .title {
  font-size: var(--clamp72);
}
@media screen and (min-width: 768px) {
  .industriesDetail .siteMain .breadcrumbBox .container,
  .industriesDetail .siteMain .pageTitleBox .container,
  .industriesDetail .siteMain .topBox .container {
    padding-right: 0;
    max-width: none;
    width: 100%;
    padding-right: 0;
  }
}
.industriesDetail .siteMain .breadcrumbBox .contentBox,
.industriesDetail .siteMain .pageTitleBox .contentBox,
.industriesDetail .siteMain .topBox .contentBox {
  max-width: 1675px;
  margin: 0 0 0 auto;
}
.industriesDetail .siteMain .topBox {
  position: relative;
  z-index: 2;
}
.industriesDetail .siteMain .topBox .contentBox {
  max-width: 1675px;
  display: flex;
  align-items: flex-start;
  gap: 90px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .industriesDetail .siteMain .topBox .contentBox {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .industriesDetail .siteMain .topBox .contentBox {
    flex-direction: column;
  }
}
.industriesDetail .siteMain .topBox .contentBox .picBox {
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1024px) {
  .industriesDetail .siteMain .topBox .contentBox .picBox {
    width: 50%;
    margin-bottom: auto;
  }
}
@media screen and (max-width: 767px) {
  .industriesDetail .siteMain .topBox .contentBox .picBox {
    width: 100%;
  }
}
.industriesDetail .siteMain .topBox .contentBox .picBox img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.industriesDetail .siteMain .topBox .contentBox .infoBox {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .industriesDetail .siteMain .topBox .contentBox .infoBox {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .industriesDetail .siteMain .topBox .contentBox .infoBox {
    order: 5;
  }
}
.industriesDetail .siteMain .topBox .subTitle {
  color: #fff;
  font-size: var(--clamp21);
  font-weight: 600;
}
.industriesDetail .siteMain .topBox .info {
  display: flex;
  flex-direction: column;
  color: #999999;
}
.industriesDetail .siteMain .topBox .info li {
  padding-left: 20px;
  position: relative;
}
.industriesDetail .siteMain .topBox .info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #E66E0D;
  border-radius: 50%;
  display: block;
}
.industriesDetail .siteMain .topBox .info span {
  color: #E66E0D;
}/*# sourceMappingURL=industries.css.map */