/* 核心样式 - 模板A */
.fl-show-container {
    padding: 15px;
    max-width: 450px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* 模板A的样式保持不变... */

/* 模板B样式 - 基础框架 */
.lottery-container-search { 
    display: flex; 
    gap: 2rem; 
    margin: 2rem 0; 
    flex-wrap: wrap; 
    font-size: 13px; 
    background: transparent !important; 
    border: none !important; 
    box-shadow: none !important;
}

.lottery-left-search { 
    flex: 1 1 25%; 
    min-width: 180px; 
    transition: opacity 0.3s ease; 
}

.lottery-right-search { 
    flex: 1 1 65%; 
    min-width: 300px; 
}

.lottery-block-search { 
    border: 1px solid #ccc; 
    padding: 1rem; 
    background: #fff; 
    border-radius: 8px; 
    height: 300px; /* 固定高度便于查看布局 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .lottery-container-search { 
        flex-direction: column; 
    }
    .lottery-right-search { 
        order: -1; 
        margin-bottom: 1rem; 
    }
}