.content_main .content_logo{
  position: fixed;
  left: 70px;
  top: 30px;
  width: 165px;
  height: 140px;
  z-index: 90;
}
@media screen and (max-width: 1100px) {
  .content_main .content_logo{
    top: calc((10 * var(--content_width)) / 375);
    left: calc((10 * var(--content_width)) / 375);

    width: calc((120 * var(--content_width)) / 375);
    height: calc((102 * var(--content_width)) / 375);
    z-index: 110;
  }
}

.content_main{
  position: relative;
  height: 800px;
}
@media screen and (max-width: 1100px) {
  .content_main{
    height: calc((700 * var(--content_bg_width)) / 1920);
  }
}
.content_main .section_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.content_main .section_inner .info_title{
  margin-bottom: 25px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
  color: #0368B7;
}
.content_main .section_inner .info_text{
  font-size: 18px;
  font-weight: bold;
  line-height: 2.7em;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .content_main .section_inner{
    padding: 0 calc((40 * var(--content_width)) / 375);
  }
  .content_main .section_inner .info_title{
    margin-bottom: calc((40 * var(--content_width)) / 375);
    font-size: calc((36 * var(--content_width)) / 375);
    line-height: 1.5em;
  }
  .content_main .section_inner .info_text{
    font-size: calc((18 * var(--content_width)) / 375);
    line-height: 2em;
  }
}