/* CSS Document */

    html,body {

      background: #F3F4F5;

      font-family: PingFang SC, Hiragino Sans GB, Arial, Microsoft YaHei, Verdana, Roboto, Noto, Helvetica Neue, sans-serif;

      padding: 0;

      margin: auto;

    }

    a {

      text-decoration: none;

    }

    body {

      padding-bottom: 100px;

    }

    .content {

      padding-top: 20px;

      width: 100%;
      max-width: 735px;

      margin: auto;

      word-break: break-all;

    }

    .content .logo-img img {

      display: block;

      width: 175px;

      height: 48px;

      margin: auto;

      margin-bottom: 16px;

    }

    .content .loading-item {

      position: relative;

      z-index: 9997;

      background: #fff;

      padding: 24px;

      border-radius: 12px;

      border: 1px solid #E1E1E1;

    }

    .content .flex {

      display: flex;

      align-items: center;

    }

    .content .tip1 {

      background: #F0F9EA;

    }

    .content .tip2 {

      background: #ededed;

    }

    .content .loading-color2 {

      color: red;

    }



    .content .loading-tip {

      padding: 12px;

      margin-bottom: 16px;

      border-radius: 4px;

    }



    .content .loading-topic {

      font-size: 14px;

      color: #222226;

      line-height: 24px;

      margin-bottom: 24px;

    }

    .search_form {

      width: 100%;

      height: 42px;

      display: flex;

      justify-content: space-between;

    }

    /*左边输入框设置样式*/

    .input_text {

      height: 40px;

      border: 1px solid #cfcfcf;  

      /*清除掉默认的padding*/

      padding: 0px;

      /*提示字首行缩进*/

      text-indent: 10px;

      /*去掉蓝色高亮框*/

      outline: none;

      flex-grow: 1;

    }

    .input_sub {

      width: 100px;

      height: 42px;

      background: #979797;

      /*去掉submit按钮默认边框*/

      border: 0px;

      /*改成右浮动也是可以的*/

      float: left;

      color: white;

      /*搜索的字体颜色为白色*/

      cursor: pointer;

      /*鼠标变为小手*/

    }

    @media (max-width: 450px) {

      .content {

        padding-top: 20px;

        width: 100%;

      }

    }


