html, body{
    background: #2f363c;
    background-size: 100% auto;
    margin: 0;
    padding: 0;
}

.content {
    width: 80%;
    margin: 20px auto 50px;
    border: 1px solid #999999;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
}

label{
    font-size: 16px;
    font-weight: bolder;
}

button {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    background-color: #409eff;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

button:hover {
    opacity: .8;
    filter: alpha(opacity=80);
    color: #fff
}

input, textarea {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #999999;
    line-height: 1.5;
    resize: none;
    font-size: 15px;
}

textarea {
    background-image: linear-gradient(to bottom, #999999 1px, #ffffff 1px);
    background-size: 10px 25px;
    background-position: 0px -1px;
    line-height: 25px;
    padding-top: 0px;
}

input:focus,
textarea:focus{
    outline: none;
}

.model {
    width: 100%;
    padding-bottom: 10px;
}

.text {
    margin-top: 10px;
    width: 99%;
}

.model-button {
    text-align: center;
}

.viewDetail{
    text-align: right;
    padding: 15px 0;
}

/* 适用于WebKit浏览器的滚动条样式 */
::-webkit-scrollbar {
    width: 6px; /* 滚动条的宽度 */
    height: 12px; /* 滚动条的高度 */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道的背景 */
    border-radius: 6px; /* 轨道的圆角 */
}

::-webkit-scrollbar-thumb {
    background: #888; /* 滚动条的颜色 */
    border-radius: 6px; /* 滚动条的圆角 */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* 鼠标悬停时的滚动条颜色 */
}

@media (max-width: 1000px) {
    .content{
        margin: 0;
        padding: 10px 2%;
        width: 96%;
    }
}
