/* 主体 */
.main {
  background-color: #f5f5f5;
}
/* Banner */
.main .banner {
  height: 35rem;
  /* background-color: #00000010; */
  background-image: url("../../assets/image/product/11/01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main .banner .container-xl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 35rem;
}
.main .banner .container-xl .title {
  position: relative;
  padding-bottom: 0.75rem;
  text-shadow: 5px 5px 5px #000;
  font-weight: bold;
  color: #fff;
}
.main .banner .container-xl .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 5rem;
  height: 0.25rem;
  background-color: #fff;
}
.main .banner .container-xl .content {
  margin-top: 1.5rem;
  width: 50%;
  color: #fff;
}
.main .banner .container-xl .content p {
  margin-bottom: 0;
}
.main .banner .container-xl .link-group {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.main .banner .container-xl .link-group .link {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  transition: all 0.25s ease-in-out 0s;
}
.main .banner .container-xl .link-group .link:hover {
  transform: scale(1.05);
}
.main .banner .container-xl .link-group .link:before {
  content: "";
  margin-right: 0.5rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  /* line-height: 1.25rem;
  border-radius: 50%;
  background-color: #005bac75;
  text-align: center;
  font-size: 0.25rem;
  color: #005bac; */
  background-image: url("../../assets/image/product_detail_one_1.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main .screenshot .container-xl {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.main .screenshot .container-xl .top {
  text-align: center;
}
.main .screenshot .container-xl .top a {
  float: left;
  text-decoration: none;
  color: #00000075;
}
.main .screenshot .container-xl .top .title {
  font-weight: bold;
  font-size: 35px;
}
.main .screenshot .container-xl .description {
  margin: 25px 0;
  text-align: center;
}
.main .screenshot .container-xl .image {
  text-align: center;
}
.main .screenshot .container-xl .image img {
  margin: 15px 0;
  width: 75%;
}

/* 媒体查询 */
/* 移动端 */
@media (max-width: 576px) {
  /* Banner */
  .main .banner .container-xl .content {
    width: 100%;
  }
}
