.index {
  width: 100%;
  height: 100%;

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-inline: 16px;
    background: #ffffff;

    .header-opt {
      display: flex;
      align-items: center;
    }

    .header-logo {
      > img {
        width: 65px;
        height: 24px;
      }
    }

    .more-icon {
      font-size: 16px;
      margin-left: 16px;
    }
  }

  .banner {
    width: 100%;
    height: 180px;
    background-image: url("../images/index/banner-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

    .banner-content {
      padding-top: 35px;
      padding-left: 21px;
      .banner-title {
        font-weight: 600;
        font-size: 16px;
        color: #373737;
        line-height: 23px;
      }
      .banner-desc {
        margin-top: 14px;
        font-weight: 400;
        font-size: 11px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 20px;
      }
    }
  }

  .advantage {
    margin-top: 7px;
    padding-inline: 15px;

    .title {
      text-align: center;
      padding-block: 16px;
      font-weight: 500;
      font-size: 16px;
      color: rgba(0, 0, 0, 0.85);
      line-height: 23px;
    }

    .advantage-list {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;

      .advantage-item {
        padding-block: 16px 25px;
        padding-inline: 10px;
        text-align: center;
        box-shadow: 0px 3px 6px 0px rgba(65, 96, 158, 0.06);
        border-radius: 8px;
        background-image: url("../images/index/advantage-item-bg.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;

        .advantage-img {
          > img {
            width: 30px;
            height: 26px;
          }
        }
        .advantage-title {
          margin-top: 7px;
          font-weight: 500;
          font-size: 13px;
          color: rgba(0, 0, 0, 0.85);
          line-height: 14px;
          text-shadow: 0px 3px 6px rgba(65, 96, 158, 0.06);
        }
        .advantage-desc {
          margin-top: 8px;
          font-weight: 400;
          font-size: 11px;
          color: rgba(0, 0, 0, 0.65);
          line-height: 15px;
          text-shadow: 0px 3px 6px rgba(65, 96, 158, 0.06);
        }
      }
    }

    .advantage-banner {
      margin-top: 7px;
      position: relative;
      > img {
        width: 100%;
        /* height: 73px; */
      }
      >a {
        position: absolute;
        inset: 0;
      }
    }
  }

  /* 核心功能 */
  .function {
    margin-top: 7px;
    padding-inline: 15px;
    padding-bottom: 32px;
    background-image: url("../images/index/function-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

    .title {
      text-align: center;
      padding-block: 16px;
      font-weight: 500;
      font-size: 16px;
      color: rgba(0, 0, 0, 0.85);
      line-height: 23px;
    }

    .function-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;

      .function-item {
        padding: 16px 10px;
        border-radius: 8px;
        border: 1px solid #ffffff;

        .function-item-title {
          font-weight: 600;
          font-size: 12px;
          color: #2168f8;
          line-height: 14px;
        }
        .function-item-content {
          margin-top: 10px;
          font-weight: 400;
          font-size: 10px;
          color: #626c7e;
          line-height: 15px;
        }
      }
    }
  }

  /* 配套服务 */
  .support {
    margin-top: 12px;
    padding-inline: 16px;

    .title {
      text-align: center;
      padding-block: 16px;
      font-weight: 500;
      font-size: 16px;
      color: rgba(0, 0, 0, 0.85);
      line-height: 23px;
    }

    .support-list {
      .support-item {
        position: relative;
        padding-inline: 24px;
        padding-block: 12px 16px;
        background: linear-gradient(180deg, #f4f7fe 0%, #ffffff 100%);
        box-shadow: 1px 4px 13px -3px rgba(133, 146, 183, 0.2);
        border-radius: 6px;
        border: 1px solid #fff;

        &:not(:first-child) {
          margin-top: 9px;
        }

        .support-item-title {
          font-weight: 600;
          font-size: 13px;
          color: rgba(0, 0, 0, 0.85);
          line-height: 18px;
        }

        ul.support-item-contents {
          margin-top: 9px;
          > li {
            font-weight: 400;
            font-size: 11px;
            color: #616268;
            line-height: 11px;

            &::before {
              content: "";
              display: inline-block;
              width: 6px;
              height: 6px;
              background: #c4cce1;
              border-radius: 50%;
              margin-right: 6px;
            }
          }
          > li:not(:first-child) {
            margin-top: 8px;
          }
        }

        .support-item-num-bg {
          position: absolute;
          right: 30px;
          bottom: 0px;
          width: 61px;
          height: 66px;
          text-align: center;
          > img {
            height: 100%;
          }
        }
      }
    }
  }

  /* 数据banner */
  .data-banner {
    margin-top: 24px;
    padding-block: 15px 20px;
    padding-inline: 15px;
    background: #3274f9;

    .data-banner-titles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      > li {
        text-align: center;
        .title {
          font-weight: 600;
          font-size: 13px;
          color: #ffffff;
          line-height: 19px;
        }
        .desc {
          margin-top: 7px;
          font-size: 11px;
          color: #ffffff;
          line-height: 11px;
        }
      }
    }

    .data-banner-datas {
      margin-top: 11px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 6px;
      > li {
        .value {
          display: flex;
          align-items: baseline;
          .num {
            font-weight: 600;
            font-size: 21px;
            color: #ffffff;
            line-height: 30px;
          }
          .unit {
            font-size: 11px;
            color: #ffffff;
            line-height: 11px;
          }
        }

        .desc {
          text-align: center;
          margin-top: 8px;
          font-weight: 400;
          font-size: 9px;
          color: rgba(255, 255, 255, 0.65);
          line-height: 14px;
        }
      }
    }
  }

  /* 客户应用案例 */
  .case {
    padding: 24px 15px;
    background-image: url("../images/index/case-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;

    .title {
      font-weight: 500;
      font-size: 15px;
      color: rgba(0, 0, 0, 0.85);
      line-height: 21px;
      text-align: center;
    }

    .case-carousel {
      margin-top: 16px;
      .case-item {
        text-align: center;
        >img {
          height: 520px;
        }
      }
    }

    .layui-carousel {
      background-color: transparent;
    }
    .layui-carousel>[carousel-item]>* {
      background-color: transparent;
    }

    /* .case-content {
      margin-top: 15px;
      background: linear-gradient(317deg, #f4f7ff 0%, #f6faff 100%);
      border-radius: 6px;
      border: 1px solid #fff;

      .case-item {
        padding-block: 15px;
        .case-item-title {
          font-weight: 600;
          font-size: 12px;
          color: #000000;
          line-height: 17px;
          text-align: center;
        }

        .case-item-background {
          margin-top: 15px;
          .section-title {
            display: flex;
            align-items: center;
            > img {
              width: 11px;
              height: 11px;
              margin-right: 3px;
            }
            .title-text {
              font-weight: 600;
              font-size: 11px;
              color: rgba(0, 0, 0, 0.85);
              line-height: 15px;
            }
          }
          .section-content {
            margin-top: 7px;
            padding-left: 14px;
            font-weight: 400;
            font-size: 10px;
            color: #616268;
            line-height: 14px;
          }
        }

        .case-item-requirements {
          margin-top: 15px;
          .section-title {
            display: flex;
            align-items: center;
            > img {
              width: 11px;
              height: 11px;
              margin-right: 3px;
            }
            .title-text {
              font-weight: 600;
              font-size: 11px;
              color: rgba(0, 0, 0, 0.85);
              line-height: 15px;
            }
          }
          .section-content {
            margin-top: 7px;
            line-height: 14px;
            > li {
              &::before {
                content: "";
                display: inline-block;
                width: 6px;
                height: 6px;
                background: #c4cce1;
                border-radius: 50%;
                margin-right: 6px;
                margin-left: 1px;
              }

              font-weight: 400;
              font-size: 10px;
              color: #616268;

              &:not(:first-child) {
                margin-top: 7px;
              }
            }
          }
        }

        .case-item-solution {
          margin-top: 27px;
          padding-block: 15px;
          padding-inline: 11px 15px;
          background: linear-gradient(
            69deg,
            #3770f7 0%,
            #417ffb 63%,
            #3274f9 100%
          );
          border-radius: 6px;

          .section-title {
            font-weight: 600;
            font-size: 12px;
            color: #ffffff;
            line-height: 10px;
          }

          .section-content {
            margin-top: 7px;
            > li {
              display: flex;
              align-items: baseline;
              &::before {
                content: "";
                display: inline-block;
                width: 6px;
                height: 6px;
                flex-shrink: 0;
                background: rgba(107, 241, 157, 1);
                border-radius: 50%;
                margin-right: 6px;
              }

              font-weight: 400;
              font-size: 9px;
              color: rgba(255, 255, 255, 0.85);
              line-height: 13px;

              &:not(:first-child) {
                margin-top: 7px;
              }
            }
          }
        }

        .case-item-opt {
          margin-top: 24px;
          display: grid;
          grid-template-columns: 1fr 1px 1fr;
          gap: 9px;
          .case-item-opt-item {
            text-align: center;
            .case-item-opt-item-title {
              font-weight: 600;
              font-size: 11px;
              color: #1864ff;
              line-height: 10px;
            }
            .case-item-opt-item-desc {
              margin-top: 16px;
              font-weight: 400;
              font-size: 9px;
              color: #616268;
              line-height: 13px;
            }
          }
          .divider {
            width: 1px;
            height: 100%;
            background: #e3e4ee;
          }
        }

        .case-item-divider {
          margin-top: 24px;
          width: 100%;
          height: 1px;
          background: #e3e4ee;
        }

        .case-item-foot {
          margin-top: 15px;
          text-align: center;
          font-weight: 500;
          font-size: 10px;
          color: rgba(0, 0, 0, 0.85);
          line-height: 14px;
        }
      }
    } */
  }

  .cubeflow-use {
    position: relative;
    .cubeflow-use-bg {
      display: block;
      width: 100%;
    }

    .cubeflow-use-text {
      height: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    >a {
      position: absolute;
      inset: 0;
    }
  }
}
