/* 整体容器限制宽度1200px居中 */
.login-container{
    max-width: 1200px;
    margin: 0 auto;
}
/* 顶部标题区域 */
.login-top-title{
    text-align: center;
    margin-bottom: 40px;
}
.login-top-title h1{
    font-size: 32px;
    color: #2e9934;
    display: inline-block;
    position: relative;
}
.login-top-title span{
    font-size: 30px;
    color: #2e9934;
    font-style: italic;
    margin-left: 12px;
}
.login-top-title .line{
    display: block;
    width: 960px;
    height: 2px;
    background: linear-gradient(90deg,#f7e377,#2e9934);
    margin: 8px auto 0;
    border-radius: 2px;
}
/* 登录白色卡片框 */
.login-box{
    width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 60px 80px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
/* 右侧电脑钥匙插图 */
.login-img{
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 220px;
}
.login-img img{
    width: 100%;
}
/* 底部水印文字 */
.watermark{
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: #cccccc;
    font-size: 36px;
    line-height: 1.6;
    user-select: none;
    pointer-events: none;
}
/* 表单行 */
.form-item{
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.form-label{
    width: 100px;
    font-size: 20px;
    color: #333;
    text-align: right;
    margin-right: 16px;
}
.form-input-wrap{
    display: flex;
    align-items: center;
}
.form-input{
    width: 260px;
    height: 42px;
    border: 1px solid #bbb;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.24s;
}
.form-input:focus{
    outline: none;
    border-color: #2e9934;
    box-shadow: 0 0 0 3px rgba(46,153,52,0.15);
}
.red-star{
    color: #f00;
    margin-left: 8px;
}
/* 右侧链接文字 */
.form-link{
    margin-left: 30px;
    font-size: 18px;
}
.link-register{
    color: #0055dd;
    text-decoration: none;
}
.link-findpwd{
    color: #00aaaa;
    text-decoration: none;
}
.link-register:hover, .link-findpwd:hover{
    text-decoration: underline;
}
/* 登录按钮 */
.btn-login{
    display: block;
    width: 120px;
    height: 50px;
    background: #0075C2;
    color: #fff;
    border: none;
    font-size: 20px;
    border-radius: 4px;
    margin: 0 0 0 116px;
    cursor: pointer;
    transition: background 0.24s;
}
.btn-login:hover{
    background: #0062A8;
}
/* 验证提示文字 */
.tip-text{
    position: absolute;
    font-size: 14px;
    color: #e03030;
    margin-top: 4px;
    display: none;
}
#userTip{
    left: 230px;
}
#pwdTip{
    left: 230px;
}







.findpwd-container{
    max-width: 1200px;
    margin: 0 auto;
}
/* 卡片外层盒子 */
.findpwd-box{
    width: 900px;
    margin: 30px auto;
    border: 1px solid #ddd;
    padding: 50px 60px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
/* 顶部标题栏 */
.box-header{
    display: flex;
    align-items: center;
    gap:10px;
    font-size: 28px;
    color:#333;
    margin-bottom:20px;
}
.box-header .arrow{
    color:#2e9934;
}
.box-header a{
    font-size:24px;
    text-decoration:none;
}
.link-register{
    color:#00aaaa!important;
}
.link-login{
    color:#0055dd;
}
.box-header a:hover{
    text-decoration: underline;
}
/* 分割线 */
.split-line{
    width:100%;
    height:1px;
    background:#ccc;
    margin-bottom:40px;
}
/* 表单行 */
.form-row{
    display:flex;
    align-items:center;
    gap:20px;
    justify-content:center;
}
.form-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
}
.form-item label{
    color:#333;
}
.form-input{
    width:240px;
    height:42px;
    border:1px solid #bbb;
    padding:0 12px;
    font-size:16px;
    border-radius:4px;
    transition:0.24s;
}
.form-input:focus{
    outline:none;
    border-color:#2e9934;
    box-shadow:0 0 0 3px rgba(46,153,52,0.15);
}
/* 提示文字 */
.tip-desc{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    font-size:20px;
    color:#666;
    margin-bottom:30px;
}
.tip-desc img{
    width:60px;
}
/* 提交按钮 */
.btn-submit{
    display:block;
    width:220px;
    height:55px;
    margin:0 auto;
    background:#0075C2;
    color:#fff;
    border:none;
    font-size:20px;
    border-radius:4px;
    cursor:pointer;
    transition:background 0.24s;
}
.btn-submit:hover{
    background:#0062A8;
}
/* 校验错误提示 */
.error-tip{
    color:#e03030;
    font-size:14px;
    text-align:center;
    margin:6px 0 0;
    display:none;
}


/* 整体容器限制最大宽度1200px，居中 */
.register-wrap{
    max-width: 1200px;
    margin: 0 auto;
}
/* 顶部标题栏 */
.reg-top-title{
    text-align: center;
    margin-bottom: 30px;
}
.reg-top-title h1{
    font-size: 30px;
    color: #2e9934;
    display: inline-block;
}
.reg-top-title span{
    font-size: 28px;
    color: #2e9934;
    font-style: italic;
    margin-left: 10px;
}
.reg-top-title .line{
    width: 1020px;
    height: 4px;
    background: linear-gradient(90deg,#f7e377,#2e9934);
    margin: 8px  auto;
    border-radius: 2px;
}
/* 注册卡片盒子 */
.reg-box{
    width: 920px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 40px 50px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
/* 分组标题 绿色 */
.group-title{
    font-size: 20px;
    color: #2e9934;
    font-weight: bold;
    margin: 30px 0 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.group-title:first-of-type{
    margin-top: 0;
}
/* 表单行布局 */
.form-row{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.form-label{
    width: 130px;
    font-size: 16px;
    text-align: right;
    padding-right: 12px;
    color: #333;
}
.form-input-box{
    display: flex;
    flex-direction: column;
}
.form-input{
    width: 280px;
    height: 38px;
    border: 1px solid #bbb;
    padding: 0 10px;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.24s;
}
.form-input:focus{
    outline: none;
    border-color: #2e9934;
    box-shadow: 0 0 0 3px rgba(46,153,52,0.15);
}
/* 下拉选择框统一样式 */
.form-select{
    width: 280px;
    height: 38px;
    border: 1px solid #bbb;
    padding: 0 10px;
    font-size: 15px;
    border-radius: 4px;
}
/* 小字提示说明 */
.desc-tip{
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}
/* 必填红星 */
.star{
    color: #f00;
    margin-left: 4px;
}
/* 单选框组 */
.radio-group{
    display: flex;
    gap: 24px;
}
.radio-item{
    display: flex;
    align-items: center;
    gap: 6px;
}
/* 检测按钮 */
.btn-check{
    margin-left: 10px;
    padding: 6px 14px;
    border: 1px solid #bbb;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 3px;
}
.btn-check:hover{
    background: #e9e9e9;
}
/* 验证码行 */
.code-row{
    display: flex;
    align-items: center;
    gap: 10px;
}
.code-img img{
   width: 100px; height: 40px; cursor: pointer;
}
/* 错误提示文字 */
.error-text{
    font-size: 13px;
    color: #e03030;
    margin-top: 3px;
    display: none;
}
/* 注册提交按钮 */
.btn-submit-reg{
    display: block;
    width: 200px;
    height: 50px;
    margin: 20px auto 12px;
    background: #0075C2;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.24s;
}
.btn-submit-reg:hover{
    background: #0062a8;
}
/* 协议勾选行 */
.agree-row{
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
}
/* 协议文本框 */
.agreement-box{
    width: 100%;
    height: 220px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    resize: none;
}



/* 表单行强制一行，垂直居中，统一对齐基准 */
.form-row{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    /* 关键：禁止自动换行，防止错位 */
    flex-wrap: nowrap;
}
/* 左侧标签固定宽度，右对齐，所有标签竖线对齐 */
.form-label{
    width: 130px;
    font-size: 16px;
    text-align: right;
    padding-right: 12px;
    color: #333;
    /* 垂直居中，和输入框中线对齐 */
    align-self: center;
    flex-shrink: 0;
}
/* 右侧输入容器统一占满剩余空间 */
.form-input-box{
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* 输入框、下拉统一固定宽度，保证竖边对齐 */
.form-input, .form-select{
    width: 420px;
    height: 38px;
    border: 1px solid #bbb;
    padding: 0 10px;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.24s;
}
/* 验证码行特殊布局：输入框+图片横向排列 */
.code-wrap{
    display: flex;
    align-items: center;
    gap:10px;
}
.code-img{
/*    height: 38px;
    padding: 0 12px;
    background: #eee;
    line-height: 38px;
    letter-spacing: 4px;
    user-select: none;
    flex-shrink:0;*/
}

/* 替代原来的 .agreement-box */
.agreement-scroll-box {
    width: 100%;
    height: 220px;
    border: 1px solid #ccc;
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    /* 纵向滚动条，超出内容自动下拉 */
    overflow-y: auto;
    overflow-x: hidden;
    /* 模拟只读输入框质感 */
    background: #fff;
}

.regtxt{
    font-size: 16px; color: #0062A8; text-align: center;
    border-bottom: 1px solid #ddd; height: 40px; line-height: 40px; margin-bottom: 20px;
}
/* 美化滚动条：适配webkit浏览器（Chrome/Edge/360等主流） */
.agreement-scroll-box::-webkit-scrollbar {
    width: 8px; /* 滚动条宽度 */
}
/* 滚动条轨道背景 */
.agreement-scroll-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
/* 滚动滑块 */
.agreement-scroll-box::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 4px;
}
/* 鼠标悬浮滑块加深 */
.agreement-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

