/* 登录注册页面样式 */
body.blue {
    background-color: #f5f5f5;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

.mheader {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

.mhead {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mhead .logo img {
    height: 40px;
}

.mhead .tit {
    color: #666;
    font-size: 14px;
}

.inner {
    width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.registerpart {
    max-width: 600px;
    margin: 0 auto;
}

.step1, .step2 {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.step1 span, .step2 span {
    margin: 0 20px;
    color: #999;
    font-size: 14px;
}

.step1 span.cur, .step2 span.cur {
    color: #007bff;
    font-weight: bold;
}

.selecter {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s;
}

.selecter:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.selecter div {
    display: flex;
    align-items: center;
}

.selecter .ico {
    margin-right: 20px;
}

.selecter .ico span {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #007bff;
    position: relative;
}

.selecter .ico span.ico1:after {
    content: "企";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.selecter .ico span.ico2:after {
    content: "个";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.selecter .tit {
    font-size: 18px;
    font-weight: bold;
}

.regdetail {
    margin-top: 30px;
}

.partname {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.partname .li1 a {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px 4px 0 0;
}

.formlogin {
    width: 100%;
    border-collapse: collapse;
}

.formlogin td {
    padding: 10px 0;
    vertical-align: top;
}

.tdright {
    width: 120px;
    text-align: right;
    padding-right: 15px;
    color: #333;
    font-weight: bold;
}

.input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 250px;
}

.input-large {
    width: 300px;
}

.input-small {
    width: 120px;
}

.authcode {
    margin-left: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.go_reg, .typebtn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.go_reg:hover, .typebtn:hover {
    background: #0056b3;
}

.forreg {
    margin-top: 15px;
    text-align: center;
}

.forreg a {
    color: #007bff;
    text-decoration: none;
}

.forreg a:hover {
    text-decoration: underline;
}

.godl {
    color: #007bff;
    text-decoration: none;
}

.godl:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    border-left: 4px solid #c62828;
}

.success-message {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    border-left: 4px solid #2e7d32;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mhead, .inner {
        width: 95%;
        padding: 10px;
    }
    
    .selecter div {
        flex-direction: column;
        text-align: center;
    }
    
    .selecter .ico {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .input-large {
        width: 100%;
        max-width: 300px;
    }
    
    .formlogin {
        width: 100%;
    }
    
    .tdright {
        width: auto;
        text-align: left;
        padding-right: 0;
        padding-bottom: 5px;
    }
}
