﻿body {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    min-height: 100vh;
    margin: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

.main-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
}

.login-container {
    width: 350px;
    margin: 80px 40px 80px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.18);
    padding: 40px 32px 32px 32px;
    text-align: center;
}

.login-title {
    font-size: 26px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

    .form-group label {
        display: block;
        font-size: 14px;
        color: #333;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #d0d7de;
        border-radius: 6px;
        font-size: 15px;
        outline: none;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #2196f3;
        }

.form-row {
    display: flex;
    gap: 10px;
}

    .form-row input {
        flex: 1;
    }

.send-code-btn {
    padding: 0 16px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    height: 38px;
    margin-left: 6px;
}

    .send-code-btn:disabled {
        background: #b3e0fc;
        cursor: not-allowed;
    }

.login-btn {
    width: 100%;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

    .login-btn:hover {
        background: #1565c0;
    }

.tips {
    margin-top: 18px;
    color: #888;
    font-size: 13px;
}

.type-detail-panel {
    min-width: 340px;
    max-width: 420px;
    min-height: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.10);
    padding: 36px 32px 32px 32px;
    margin: 80px 0 80px 0;
    font-size: 16px;
    color: #222;
    line-height: 1.8;
    box-sizing: border-box;
    border: 1.5px solid #b3e5fc;
}

@media (max-width: 900px) {
    .main-flex {
        flex-direction: column;
        align-items: center;
    }

    .login-container,
    .type-detail-panel {
        margin: 24px 0;
    }

    .type-detail-panel {
        min-width: 0;
        width: 90vw;
    }
}

.type-detail-panel .audit-title {
    font-weight: bold;
    font-size: 22px;
    color: #1976d2;
    margin-bottom: 12px;
    border-left: 4px solid #1976d2;
    padding-left: 10px;
    letter-spacing: 1px;
}

.type-detail-panel .audit-desc {
    color: #888;
    font-size: 15px;
    margin-bottom: 18px;
}

.type-detail-panel .audit-time-group {
    background: #f5faff;
    border-radius: 8px;
    padding: 16px 18px 10px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.06);
}

.type-detail-panel .audit-time-label {
    color: #333;
    font-weight: 500;
    margin-right: 8px;
}

.type-detail-panel .audit-time-value {
    color: #d32f2f;
    font-weight: bold;
}

.type-detail-panel .audit-extra {
    color: #444;
    font-size: 15px;
    margin-top: 18px;
    line-height: 1.8;
}

    .type-detail-panel .audit-extra a {
        color: #1976d2;
        text-decoration: none;
    }

        .type-detail-panel .audit-extra a:hover {
            text-decoration: underline;
        }
