/* dsdiss-verification/style.css */
.content-protect {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-protect img {
    max-width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.content-protect p {
    margin: 0 0 5px;
    color: #666;
}

.content-protect input[type="password"] {
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.content-protect input[type="submit"] {
    padding: 5px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content-protect input[type="submit"]:hover {
    background-color: #0056b3;
}


/* 确保提示内容和图片在前端页面中的宽度不超过300px，并居中显示 */
.content-protect img {
    max-width: 150px;
    max-height: 150px;
    box-sizing: content-box; /* 图片的宽度不包含边框和内边距 */
    display: block; /* 将图片设置为块级元素 */
    margin-left: auto; /* 自动设置左边距为auto */
    margin-right: auto; /* 自动设置右边距为auto */
}

