/* Solutions 页面 Banner 和内容部分样式 CSS 代码 */

/* ========== Banner 样式 ========== */
.sidebanner-rightint2 {
    position: relative;
  }
  
  .sidebanner-rightint2 img {
    width: 100%;
  }
  
  .sidebanner-rightint2 .txt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  
  .sidebanner-rightint2 .txt::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .sidebanner-rightint2 .container {
    position: relative;
    z-index: 1;
  }
  
  .sidebanner-rightint2 h1,
  .sidebanner-rightint2 h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-family-1);
    text-shadow: 2px 2px 4px #666;
  }
  
  .sidebanner-rightint2 p {
    color: #fff;
    font-size: 15px;
    margin: 15px 0 0 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-shadow: 2px 2px 4px #666;
  }
  
  .sidebanner-rightint2 p i {
    font-size: 15px;
    color: #fff;
  }
  
  .sidebanner-rightint2 p a {
    color: #fff;
    text-shadow: 2px 2px 4px #666;
  }
  
  /* ========== 案例列表容器样式 ========== */
  .main {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  
  .arshine-solu-list ul li+li {
    margin-top: 80px;
  }
  
  /* ========== 案例项样式 ========== */
  .arshine-solu-list ul li .box {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
  }
  
  .arshine-solu-list ul li .box::after {
    content: "";
    background: #f0f0f0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    transition: all 500ms;
  }
  
  .arshine-solu-list ul li .pic {
    width: 54.7%;
    position: relative;
    z-index: 10;
    overflow: hidden;
  }
  
  .arshine-solu-list ul li .pic img {
    width: 100%;
    transition: all 0.5s ease 0s;
    aspect-ratio: 1.4/ 1;
    object-fit: cover;
  }
  
  .arshine-solu-list ul li .txt {
    -webkit-flex: 1;
    flex: 1;
    padding: 0 40px 0 70px;
    color: #000;
    position: relative;
    z-index: 10;
  }
  
  .arshine-solu-list ul li .txt .ico img:last-child {
    display: none;
  }
  
  .arshine-solu-list ul li .txt em {
    font-size: 230px;
    line-height: 1;
    color: rgba(0, 98, 178, 0.15);
    font-family: Impact;
  }
  
  .arshine-solu-list ul li .txt h5 {
    font-size: 36px;
    line-height: 1;
    color: var(--color-primary);
    font-family: var(--font-family1);
    margin: 20px 0 0;
  }
  
  .arshine-solu-list ul li .txt p {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 0 0;
  }
  
  .arshine-solu-list ul li .txt a,
  .arshine-solu-list ul li .txt a:hover,
  .arshine-solu-list ul li .txt a:active,
  .arshine-solu-list ul li .txt a:focus,
  .arshine-solu-list ul li .txt a:visited {
    text-decoration: none;
  }

  .arshine-solu-list ul li .txt a {
    margin: 25px 0 0;
    font-size: 18px;
    display: inline-block;
    font-family: var(--font-family1);
  }
  
  .arshine-solu-list ul li .txt a:hover {
    color: #fff;
  }
  
  /* ========== 偶数项样式（左右互换） ========== */
  .arshine-solu-list ul li:nth-child(2n) .box {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  
  .arshine-solu-list ul li:nth-child(2n) .box::after {
    right: auto;
    left: 0;
  }
  
  .arshine-solu-list ul li:nth-child(2n) .txt {
    padding: 0 40px 0 70px;
  }
  
  /* ========== 悬停效果 ========== */
  .arshine-solu-list ul li .box:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  
  .arshine-solu-list ul li .box:hover::after {
    background: var(--color-primary);
  }
  
  .arshine-solu-list ul li .box:hover .txt {
    color: #fff;
  }
  
  .arshine-solu-list ul li .box:hover .txt h5 {
    color: #fff;
  }
  
  .arshine-solu-list ul li .box:hover .txt .ico img:first-child {
    display: none;
  }
  
  .arshine-solu-list ul li .box:hover .txt .ico img:last-child {
    display: inline-block;
  }
  
  /* ========== 响应式样式 ========== */
  @media screen and (max-width: 1441px) {
    .arshine-solu-list ul li .txt h5 {
      font-size: 34px;
    }
  }
  
  @media screen and (max-width: 1367px) {
    .arshine-solu-list ul li .txt h5 {
      font-size: 32px;
    }
  
    .arshine-solu-list ul li .txt p {
      font-size: 17px;
      line-height: 28px;
    }
  }
  
  @media screen and (max-width: 1281px) {
    .arshine-solu-list ul li .txt h5 {
      font-size: 30px;
    }
  }
  
  @media screen and (max-width: 1171px) {
    .arshine-solu-list ul li .txt h5 {
      font-size: 28px;
    }
  }
  
  @media screen and (max-width: 992px) {
    .arshine-solu-list ul li .box {
      display: block;
      padding: 0;
    }
  
    .arshine-solu-list ul li .pic {
      width: 100%;
    }
  
    .arshine-solu-list ul li .txt {
      padding: 25px 15px;
      background: #f0f0f0;
    }
  
    .arshine-solu-list ul li:nth-child(2n) .txt {
      padding: 25px 15px;
    }
  
    .arshine-solu-list ul li+li {
      margin-top: 20px;
    }
  
    .arshine-solu-list ul li .box:hover .txt .ico img:first-child {
      display: inline-block;
    }
  
    .arshine-solu-list ul li .box:hover .txt .ico img:last-child {
      display: none;
    }
  
    .arshine-solu-list ul li .box:hover .txt {
      color: #000
    }
  
    .arshine-solu-list ul li .box:hover .txt h5 {
      color: var(--color-primary);
    }
  }
  
  @media screen and (max-width: 768px) {
    .main {
      padding-top: 25px;
      padding-bottom: 30px;
    }
  
    .sidebanner-rightint2 .txt {
      text-align: center;
    }
  
    .sidebanner-rightint2 h1,
    .sidebanner-rightint2 h2 {
      font-size: 30px;
      line-height: 1;
    }
  
    .sidebanner-rightint2 p {
      margin: 10px 0 0;
    }
  }
  
  @media screen and (max-width: 600px) {
    .arshine-solu-list ul li .txt h5 {
      font-size: 24px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .sidebanner-rightint2 h1,
    .sidebanner-rightint2 h2 {
      font-size: 26px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .sidebanner-rightint2 h1,
    .sidebanner-rightint2 h2 {
      font-size: 22px;
    }
  
    .arshine-solu-list ul li .txt a {
      margin: 15px 0 0;
      font-size: 16px;
    }
  }
  