a {
    text-decoration: none; /* 去掉下划线 */
    color: inherit; /* 继承父元素的颜色，或者你可以设置为其他颜色，比如 black, red 等 */
}
button {
    /* 移除背景色 */
    background-color: transparent;

    /* 移除边框 */
    border: none;

    /* 移除内边距 */
    padding: 0;

    /* 移除外边距 */
    margin: 0;

    /* 移除默认的字体样式 */
    font-family: inherit;
    font-size: inherit;
    color: inherit;

    /* 移除鼠标悬停效果 */
    cursor: default;

    /* 移除轮廓（focus时的边框） */
    outline: none;

    /* 移除阴影 */
    box-shadow: none;

    /* 如果需要，也可以移除点击时的阴影效果 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* 防止文本被选中 */
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
img {
    /* 移除内边距 */
    padding: 0;

    /* 移除外边距 */
    margin: 0;

    /* 移除边框 */
    border: none;

    /* 如果需要，可以移除最大宽度和高度限制 */
    max-width: none;
    max-height: none;

    /* 防止图片拉伸 */
    object-fit: cover; /* 或者使用其他合适的值，如 'contain' */

    /* 如果需要，移除图片底部的空白（通常是由行高造成的） */
    vertical-align: middle; /* 或者使用其他合适的值，如 'top' 或 'bottom' */

    /* 其他可能想要重置的样式 */
    box-shadow: none; /* 移除阴影 */
    outline: none; /* 移除轮廓 */
}
.background-div{
    background-image: url("../../images/login.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    height: 740px;
    width: 100%;
    padding-top: 60px;
    position: relative;

}
.content{
    /* 设置内层div的样式 */
    width: 360px; /* 根据需要设置 */
    height: 187px; /* 根据需要设置 */
    /*background-color: rgba(255, 255, 255, 0.8); !* 透明背景，以便看到背景图片 *!*/
    /*padding: 10px; !* 添加内边距 *!*/

    /* 定位内层div在背景图片上的位置 */
    position: absolute; /* 绝对定位相对于最近的已定位祖先元素（在这里是.background-div） */
    top: 217px; /* 距离外层div顶部的距离 */
    left: 100px; /* 距离外层div左侧的距离 */
}
.p1{
    width: 327px;
    height: 61px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 32px;
    color: #000000;
    line-height: 45px;
    text-align: left;
    font-style: normal;
}
.p2{
    width: 360px;
    height: 64px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: rgba(0,0,0,0.5);
    line-height: 32px;
    text-align: left;
    font-style: normal;
}
.p3{
    width: 64px;
    height: 22px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FF5500;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    margin-top: 20px;
}
.loginform{
    width: 404px;
    height: 480px;
    background: #FFFFFF;
    box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.12);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);

    /* 定位内层div在背景图片上的位置 */
    position: absolute; /* 绝对定位相对于最近的已定位祖先元素（在这里是.background-div） */
    top: 144px; /* 距离外层div顶部的距离 */
    right: 100px; /* 距离外层div左侧的距离 */
}
.logininnerform{
    width: 340px;
    height: 246px;
    position: absolute; /* 绝对定位相对于最近的已定位祖先元素（在这里是.background-div） */
    top: 123px; /* 距离外层div顶部的距离 */
    left: 32px; /* 距离外层div左侧的距离 */
}

.loginspan{
    display: inline-block;
    width: 48px;
    height: 24px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 24px;
    color: #FF5500;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    margin-top: 34px;
    margin-left: 34px;
}
.toregisterspan{
    display: inline-block;
    width: 70px;
    height: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FF5500;
    line-height: 14px;
    text-align: left;
    font-style: normal;
    margin-left:200px;
}
.pageencryption{
    display: inline-block;
    width: 84px;
    height: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #BABABA;
    line-height: 14px;
    text-align: left;
    font-style: normal;
    margin-top: 12px;
    margin-left: 34px;

}
.email_p{
    /* width: 56px; */
    height: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 14px;
    color: #2A2A2A;
    line-height: 14px;
    text-align: left;
    font-style: normal;

}
.email_input, .password_input, .name_input{
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    margin-top: 14px;
    padding-left: 10px;
}
.password_p, .name_p{
    height: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 14px;
    color: #2A2A2A;
    line-height: 14px;
    text-align: left;
    font-style: normal;
    margin-top:12px;
}
.password_input{
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    margin-top: 14px;
    padding-left: 10px;
}
.login_button{
    width: 340px;
    height: 40px;
    background: linear-gradient( 90deg, #FF8000 0%, #FF5500 100%);
    border-radius: 4px;
    margin-top : 14px;
}
.login_span{
    width: 28px;
    height: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 14px;
    font-style: normal;
}
.forgetpassword{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #2A2A2A;
    font-style: normal;
}
.loginform-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.loginform-bottom img {
    height: 25px;
}
.loginform-bottom img:hover {
    cursor: pointer;
}
.chatwithusspan{
    display: inline-block;
    width: 70px;
    height: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 14px;
    text-align: left;
    font-style: normal;
    margin-top: 330px;
    margin-left: 32px;
}
.qqicon{
    line-height: 18px;
    margin-left: 246px;

}
.switchimg{
    width: 14px;
    height: 12px;
    margin-left: 5px;

}
.forgetpassword, .login_button:hover {
    cursor: pointer;
}

@media (max-width: 768px) {
    .loginform{
        position: absolute;
        width: calc(100% - 40px);
        max-width: 404px;
        background: #FFFFFF;
        box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.12);
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.08);
        margin: 20px;
        box-sizing: border-box;
        top: 10%;
        left:calc(50% - 20px);
        transform: translate(-50%, 0);
    }
    .logininnerform{
        position: initial;
        width: 100%;
        height: 246px;
        max-width: 340px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }
    .login_button{
        width: 100%;
        height: 40px;
        margin-top : 14px;
        background: linear-gradient( 90deg, #FF8000 0%, #FF5500 100%);
        border-radius: 4px;
    }
}
