@charset "UTF-8";
/* ȫ����ʽ���� & �������� */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft Yahei", "����", SimSun, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.8;
}

a {
    color: #2d7ff9;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

ul, ol, li {
    list-style: none;
}

/* ��������ؼ�ͳһ��ʽ */
input, select, textarea {
    font-family: inherit;
    font-size: 14px;
    padding: 6px 8px;
    border: 1px #dcdfe6 solid;
    border-radius: 3px;
    background: #fff;
}
input:focus, select:focus, textarea:focus {
    border-color: #2d7ff9;
    outline: none;
}

/* ��ťͨ����ʽ */
.btn {
    display: inline-block;
    padding: 6px 18px;
    background-color: #2d7ff9;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}
.btn:hover {
    background-color: #1b69e0;
    text-decoration: none;
}

/* ������ - ҳ�������� */
.container {
    width: 92%;
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ������ʽ */
.title {
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

/* �ָ��� */
hr {
    border: none;
    height: 1px;
    background-color: #e5e7eb;
    margin: 20px 0;
}

/* �������ʽ */
.form-item {
    margin: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-label {
    display: inline-block;
    width: 130px;
    text-align: right;
    margin-right: 12px;
    color: #444;
}
.form-input {
    width: 280px;
}
.form-textarea {
    width: 380px;
    height: 110px;
    resize: vertical;
}

/* ��ʾ���� */
.tip-red {
    color: #f53f3f;
}
.tip-gray {
    color: #888;
    font-size: 13px;
}

/* ���ݱ����ʽ���б�/����ͨ�ã� */
.table-list {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.table-list th,
.table-list td {
    border: 1px #e5e7eb solid;
    padding: 10px;
    text-align: center;
}
.table-list th {
    background-color: #f2f3f5;
    font-weight: normal;
    color: #333;
}
.table-list tr:hover {
    background-color: #f9fafc;
}

/* ��ҳ��ʽ */
.page {
    text-align: center;
    margin: 25px 0;
}
.page a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px #dcdfe6 solid;
    margin: 0 4px;
    border-radius: 3px;
    color: #333;
}
.page a:hover {
    background-color: #f2f3f5;
    text-decoration: none;
}

/* ��Ӧʽ���� - �ֻ����Ż� */
@media (max-width: 768px) {
    .container {
        width: 96%;
        padding: 15px;
    }
    .form-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-label {
        width: 100%;
        text-align: left;
        margin-bottom: 6px;
        margin-right: 0;
    }
    .form-input, .form-textarea {
        width: 100%;
    }
    .table-list th, .table-list td {
        padding: 6px 4px;
        font-size: 13px;
    }
}