/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/

@media (min-width: 992px) {
  .banner {
    width: 100%;
    height: 600px;
    background-color: #00154b;
    position: relative;
  }
  /* banner 左侧文字 */
  .banner .container .text {
    flex: 1;
    color: #fff;
  }
  .banner .container .img {
    flex: 1;
    text-align: center;
  }
  .banner .container .img img {
    display: inline-block;
    width: 80%;
  }
  .banner .container .text .title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 32px;
  }
  .banner .container .text .desc {
    font-size: 16px;
    line-height: 32px;
  }
}
/* 适用于包含在屏幕宽度小于  991 像素的设备中 */
@media (max-width: 991px) {
  .banner {
    width: 100%;
    background-color: #000b3e;
  }

  /* banner 左侧文字 */
  .banner .container .text {
    position: relative;
    width: 100%;
    color: #fff;
    background: url("../img/platform00.png") no-repeat;
    background-position: center;
    background-size: contain;
  }
  .banner .container .img {
    width: 100%;
    text-align: center;
  }
  .banner .container .img img {
    margin-top: 16px;
    width: 80%;
  }
  .banner .container .text .title {
    z-index: 1;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .banner .container .text .desc {
    font-size: 16px;
    line-height: 2em;
  }
}

/*--------------------------------------------------------------
# block Section
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .blockArea {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blockArea .container .btns {
    margin: 56px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .blockArea .container .btns .btn {
    width: 240px;
    height: 60px;
    font-size: 24px;
    background-color: #f0f0f0;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blockArea .container .btns .btn:hover,
  .blockArea .container .btns .btn.platformActive {
    background-color: #3b86f6;
    color: #fff;
  }

  .blockArea .container .imgBox {
    width: 100%;
  }
  .blockArea .container .imgBox img {
    width: 100%;
    margin-bottom: 56px;
  }
}
/* 适用于包含在屏幕宽度小于  991 像素的设备中 */
@media (max-width: 991px) {
  .blockArea {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blockArea .container .btns {
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .blockArea .container .btns .btn {
    font-size: 14px;
    background-color: #f0f0f0;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  .blockArea .container .btns .btn:hover,
  .blockArea .container .btns .btn.platformActive {
    background-color: #3b86f6;
    color: #fff;
  }

  .blockArea .container .imgBox {
    width: 100%;
  }
  .blockArea .container .imgBox img {
    width: 100%;
    margin-bottom: 56px;
  }
}
