body,
html {
    /* background: #eee; */
    /* max-width: 640px; */
    /* margin: 0 auto; */
	background: linear-gradient(135deg, #6e8efb, #a777e3);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#reserve_success {
    display: none;
    width: 80%;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    border: 1px solid #0B8E00;
    border-radius: 8px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    text-align: center;
    font-weight: bold;
    background: #F60;
    font-size: 20px;
    color: #fff;
}

#reserve * {
    font-size: 16px;
    text-decoration: none;
}

#reserve .header_img img {
    width: 100%;
    height: auto;
}

#reserve form {
    margin: 0 auto;
    padding: 3px 8px;
}

#reserve .reserve_table {
    border: 1px solid #eee;
    border-radius: 5px;
    background: #fff;
}

#reserve .reserve_table td {
    color: #a1a1a1;
    height: 44px;
    padding: 0 8px;
}

#reserve .reserve_table thead td {
    background-image: linear-gradient(bottom, #e6e6e6 0, #f9f9f9 100%);
    background-image: -moz-linear-gradient(bottom, #e6e6e6 0, #f9f9f9 100%);
    background-image: -webkit-linear-gradient(bottom, #e6e6e6 0, #f9f9f9 100%);
    color: #818181;
    font-size: 14px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 32px;
}

#reserve .reserve_table .label {
    width: 65px;
    color: #333;
    text-align: right;
}

#reserve .reserve_table .label span {
    color: red;
    padding-right: 2px;
}

#reserve .reserve_table select {
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0 5px;
    box-sizing: border-box;
    border: 1px solid #EDEDED;
    color: #a1a1a1;
    margin-top: 5px;
}

#reserve .reserve_table .form_input {
    border: 1px solid #EDEDED;
    color: #a1a1a1;
    border-radius: 5px;
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0 5px;
    box-sizing: border-box;
}

#reserve .reserve_table .form_input::placeholder {
    color: #ccc;
    font-size: 15px;
}

#reserve .reserve_table .form_textarea {
    border: 1px solid #EDEDED;
    color: #a1a1a1;
    border-radius: 5px;
    width: 100%;
    line-height: 17px;
    padding: 10px 5px;
    box-sizing: border-box;
}

#reserve .reserve_table .form_textarea::placeholder {
    color: #ccc;
    font-size: 15px;
	border:0;
}
#reserve .reserve_table .form_textarea:focus {
  border-color: red;
}

/* 复选框选中时的边框颜色 */
#reserve .reserve_table .form_textarea[type="checkbox"]:checked {
        border-color: #007bff; /* 蓝色 */
    }
    /* 文本输入框聚焦时的边框颜色 */
#reserve .form_textarea:focus {
        border-color: #28a745; /* 绿色 */
    }

#reserve .reserve_table .briefdesc {
    border: 1px solid #EDEDED;
    color: #a1a1a1;
    border-radius: 5px;
    width: 100%;
    height: 100px;
    line-height: 24px;
    padding: 0 5px;
    box-sizing: border-box;
}

#reserve .submit {
    width: 100%;
    margin: 5px auto;
    margin-bottom: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #a200ff;
    padding: 8px;
    font-size: 18px;
    border-radius: 5px;
    color: #fff;
}

#reserve .submit:hover {
    background-image: linear-gradient(27deg, #a200ff 20%, #4279ef);
}