/**
 * MochenV1 Beta - 主题样式
 * @package MochenV1 Beta
 * @author William
 */

/* 互动抽奖样式 */
.mochen-lottery-box {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mochen-lottery-box h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.lottery-description {
    margin-bottom: 15px;
    color: #666;
}

.lottery-info {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.lottery-info p {
    margin: 5px 0;
}

.lottery-action {
    margin-top: 15px;
}

.mochen-lottery-like-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.mochen-lottery-like-btn:hover {
    background: #005d8c;
}

.lottery-winners {
    margin-top: 20px;
    border-top: 1px dashed #ddd;
    padding-top: 15px;
}

.lottery-winners h4 {
    margin-top: 0;
    color: #333;
}

.lottery-winners ul {
    list-style: none;
    padding-left: 0;
}

.lottery-winners li {
    padding: 5px 0;
    border-bottom: 1px dotted #eee;
}

.success-message {
    color: green;
    margin-top: 10px;
}

.error-message {
    color: red;
    margin-top: 10px;
}

/* 阅读统计样式 */
.reading-stats-container {
    margin: 20px 0;
}

.reading-stats-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.reading-stats-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.reading-stats-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dotted #eee;
}

.reading-stats-label {
    color: #666;
}

.reading-stats-value {
    font-weight: bold;
}

/* 邮件系统样式 */
.mail-form-container {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px;
}

.mail-form-title {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mail-form-field {
    margin-bottom: 15px;
}

.mail-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.mail-form-field input[type="text"],
.mail-form-field input[type="email"],
.mail-form-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.mail-form-field textarea {
    min-height: 150px;
}

.mail-form-submit {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.mail-form-submit:hover {
    background: #005d8c;
}