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

@media (min-width: 992px) {
  .banner {
    width: 100%;
    height: 600px;
    background: url("../img/internetofThings01.png") no-repeat;
    background-position: center;
    background-size: 100% 100%;
    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/internetofThings02.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;
  }
}

/*--------------------------------------------------------------
# show Section
--------------------------------------------------------------*/
.grey {
  background-color: #f5f5f5;
}
.deepBlue {
  background-color: #00154b;
}
.showContainer .container .img {
  width: 100%;
  margin-top: 19px;
}
.showContainer .container .img img {
  width: 100%;
}
@media (min-width: 992px) {
  .showContainer .container .title {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    line-height: 38px;
  }
  .showContainer .container .subTitle {
    font-size: 16px;
    color: #666666;
    line-height: 19px;
    margin-top: 8px;
  }
}

/* 适用于包含在屏幕宽度小于  991 像素的设备中 */
@media (max-width: 991px) {
  .showContainer .container .title {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    line-height: 24px;
  }
  .showContainer .container .subTitle {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    margin-top: 8px;
  }
}
