.section {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}
/* ---------------------------顶部图片----------------------------- */
.tank-automation-hero {
  height: 100vh;
  min-height: 56.25vw;
}
.tank-automation-hero-container {
  width: 100%;
  height: 100%;
  /* background: url("/assets/images/solution/tank_automation_solutions-hero.png")
    no-repeat center center; */
  background: url("/assets/images/solution/tank_automation_solutions-hero.webp");
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.hero-title-box {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #fff;
}
.hero-title-box-title {
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
  /* 添加文字阴影 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-title-box-subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
  /* 添加文字阴影 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}






/** ---------------------解决方案------------------------*/
.tank-automation-solutions1{
    padding: 160px 100px 80px;
}
.solutions-main-title{
    font-size: 64px;
    text-align: center;
    white-space: unset;
}
.solutions-main-title span{
    color: transparent;
    background-image: linear-gradient(90deg, #5A2CA8, #A63EA1);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}
.solution1-title-box{
    padding: 80px 20%;
    color: #191919;
    /* color: #fff; */
}
.solution1-title-box-title{
    font-size: 46px;
}
.solution1-title-box-subtitle{
    max-width: 840px;
    font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 20px 0;
}

.tank-automation-solutions2-container{
    margin-top: 80px;
}






.solution1-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 80px 2%;
  background-color: #0f0f12;
  border-radius: 12px;
}
.solution1-content-two{
  grid-template-columns: 0.8fr 1.2fr;
}
.solution1-content-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(180deg, #ffffff, #f2f3f5); */
  padding: 32px;
  border-radius: 16px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.solution1-content-img-box img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.solution1-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}

.solution1-content-bottom-left,
.solution1-content-bottom-right {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  padding: 48px 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.solution1-content-bottom-title {
  font-size: 28px;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.solution1-content-bottom-item {
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.tank-automation-solutions2-container .solution1-content-img-box {
  order: 2;
}





.solution1-content-bottom-left,
.solution1-content-bottom-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 14px;
}
.solution1-content-bottom-title {
  grid-column: 1 / -1;
}
.solution1-content-bottom-item {
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  line-height: 1.6;
}
.solution1-content-bottom-item {
  display: flex;
  align-items: flex-start; /* 对齐到第一行 */
  gap: 10px;

  padding: 14px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;

  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.solution1-content-bottom-item::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.55em;

  background: linear-gradient(135deg, #5a2ca8, #a63ea1);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .solution1-content-bottom-left,
  .solution1-content-bottom-right {
    grid-template-columns: 1fr;
  }
}