/* 通用样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: #f4f4f4;*/
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    min-height: 100vh;
    background-color: rgb(226, 238, 224);
}

.container {
    width: 100%;
    max-width: 640px;
    /*background-color: #fff;*/
    padding: 20px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    /*border-radius: 8px;*/
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* 移动端样式 */
@media (max-width: 640px) {
    h1 {
        font-size: 24px;
    }

    label {
        font-size: 14px;
    }

    input, textarea, select {
        font-size: 12px;
    }

    button {
        font-size: 14px;
    }
}

/* PC端样式 */
@media (min-width: 641px) {
    h1 {
        font-size: 28px;
    }

    label {
        font-size: 16px;
    }

    input, textarea, select {
        font-size: 14px;
    }

    button {
        font-size: 16px;
    }
}

.inline_input {
    /*margin:  0 0 2px 0;*/
    padding: 20px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    color: rgb(32, 33, 36);
    height: 90px;
}

.inline_input label {
    font-size: 16px;
    color: rgb(32, 33, 36);
}
.inline_input input {
    margin: 15px 0 5px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    outline: none;
    background: transparent;
    border-radius: 0;
}

.success_tips {
    display: none;
    padding: 20px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    color: green;
    min-height: 100px;
    font-size: 20px;
}

.success_tips .layui-icon{
    font-size: 20px;
}
