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

@media (min-width: 992px) {
  .banner {
    width: 100%;
    height: 600px;
    background: url("../img/smallProgram.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  /* banner 左侧文字 */
  .banner .container .text {
    width: 627px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }
  .banner .container .text .title {
    width: 75%;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 32px;
  }
  .banner .container .text .desc {
    width: 75%;
    font-size: 16px;
    line-height: 32px;
  }

  .banner .img {
    display: none;
  }
}
/* 适用于包含在屏幕宽度小于  991 像素的设备中 */
@media (max-width: 991px) {
  .banner {
    width: 100%;
    background-color: #c7e7ff;
    background: url("../img/smallProgram1.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  /* banner 左侧文字 */
  .banner .container .text {
    position: relative;
    width: 100%;
    color: #fff;
  }
  .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;
  }

  .banner .img {
    width: 100%;
    text-align: center;
  }
  .banner .img img {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# 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: 16px;
    color: #333333;
    font-weight: 600;
    line-height: 24px;
  }
  .showContainer .container .subTitle {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    margin-top: 8px;
  }
}
