  /*最宽 600px 适合普通手机*/
  @media screen and (max-width: 600px){
    .header {
        text-align: center;
        font-size: large;
        font-weight: 600;
        padding-top: 10px;
        padding-bottom: 10px;
        color: #695620;
        background-color: #F7F0D9;
        border-bottom: 1px solid #A1936A; /* 设置左边框为竖线 */
      }
    .content {
        width: 100%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        justify-content: center; 
        align-items: center;
        -webkit-align-items: center;
        background-color: white;
    }
  }
  /*最低 600px 主要针对 pc浏览器或者 ipad*/
  @media screen and (min-width: 600px){
    .header {
        text-align: center;
        font-size: large;
        font-weight: 600;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #695620;
        background-color: #F7F0D9;
        border-bottom: 1px solid #A1936A; /* 设置左边框为竖线 */
      }
    .content {
        width: 600px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        justify-content: center; 
        align-items: center;
        -webkit-align-items: center;
        background-color: white;
    }
  }
  /*从 pc 种剔除苹果大屏手机*/
  @media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 3){
    .header {
        text-align: center;
        font-size: large;
        font-weight: 600;
        padding-top: 10px;
        padding-bottom: 10px;
        color: #695620;
        background-color: #F7F0D9;
        border-bottom: 1px solid #A1936A; /* 设置左边框为竖线 */
      }
    .content {
        width: 100%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        justify-content: center; 
        align-items: center;
        -webkit-align-items: center;
        background-color: white;
    }
  }


  .top-banner {
    overflow:hidden;
    margin-bottom: 0;
  }

  .line {
    display: inline-block;
    width: 30%;
    height: 2px;
    background-color: #000;
  }

  .line-text {
    display: inline-block;
    width: 40%;
    font-size: large;
    text-align: center;
  }

  .login img {
    width: 45px;
    height: 45px;
  }

  .login-other-method {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .login {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    width: 80px;
    align-items: center;
  }

  .login img {
    padding: 0;
    margin: 0;
  }

  .login p {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
  }

  .line-content {
    margin-top: 20px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .line-xy {
    display: flex;
    align-items: center;
  }

  .line-xy p {
    font-size: 12px;
    color: #868686;
  }

  .vertical-line {
    border-left: 1px solid black; /* 设置左边框为竖线 */
    height: 15px; /* 设置线条的高度 */
    margin: 10px; /* 设置线条与周围元素的距离 */
  }

  .company {
    font-size: 12px;
    color: #868686;
  }

  form {
    width: 100%;
  }

  .input-label {
    font-size: 15px;
    vertical-align: middle;
    height: 60px;
    width: 20%;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
  }

  .input-underline {
    height: 60px;
    border: none;
    width: 80%;
    color: #868686;
    margin: 0;
    padding: 0;
    margin-left: 10px;
    vertical-align: middle;
  }

  .input-line {
    height: .5px;
    background-color: #c5c5c5;
    margin: 0;
    padding: 0;
  }

  .rounded-background {
    margin-top: 30px;
    margin-bottom: 60px;
    width: 90%;
    margin-left: 5%;
    height: 40px;
    border: none;
    color: white;
    background-color: #b09849;
    border-radius: 20px; /* 设置圆角的半径 */
  }

  .bottom-image {
    padding: 8px;
    border: 3px solid #A1936A;
  }