/* 通用重置样式 */
body, h1, h2, h3, h4, h5, h6, p, div, span, ul, ol, li, dl, dt, dd, a, img, form, input, textarea, button, table, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* 页面基本样式 */
body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* 链接样式 */
a {
    text-decoration: none;
    color: #007BFF;
}

a:hover {
    text-decoration: underline;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

/* 段落样式 */
p {
    margin-bottom: 20px;
}

/* 列表样式 */
ul, ol {
    margin-bottom: 20px;
}

li {
    margin-bottom: 5px;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* 表单样式 */
form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #000;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    /* 在小屏幕上的样式调整 */
    body {
        font-size: 14px;
    }

    /* 可根据需要添加其他样式调整 */
}
/*登录页面*/
.xc_login_center{
    width: 600px;
    height: 300px;
    border: 1px solid #ccc;
    position: relative;
    margin: auto;
    top: 30%;
    display: table;
    box-shadow:3px 3px 5px 6px #ccc;
}
.xc_login_center_left{
    width: 200px;
    height: auto;
    float: left;
}
.xc_login_center_left_img{
    width: 100%;
}
.xc_login_center_left_img img{
    width: 100%;
}
.xc_login_center_left_title{
    text-align: center;
    font-size: 30px;
}
.xc_login_center_left_banben{
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #999;
}
.xc_login_center_right{
    width: 395px;
    float: right;
}
.xc_login_center_right_title{
    width: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
}
.login_input{
    border: none;
    outline: none;
    height: 50px;
    color: #333;
    border-bottom: 1px solid #333;
    background: none;
    font-size: 18px;
}
.login_button{
    height: 50px;
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
}