/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 02 2025 | 01:39:10 */
.box {
    width: 100%;
    height: auto;
/*     border: 2px solid #000; */
    padding: 15px; /* 调整内边距 */
    margin-bottom: 20px; /* 增加底部间距 */
    border-radius: 8px; /* 添加圆角 */
}

.boxRow {
    width: 100%;
    min-height: 50px; /* 替换固定高度 */
    flex-wrap: wrap; 
    line-height: 1.5;
    border: 1px solid #ddd; /* 调整边框颜色 */
    display: flex;
    align-items: center;
    padding: 8px 0; /* 增加垂直内边距 */
    margin: 5px 0; /* 增加间距 */
}
    .boxRow:nth-child(odd) {
        background-color: #f2f2f2; /* 浅灰色 */
    }


    .boxRowTitle {
        width: 110px;
        height: 100%;
        padding-left: 10px;
        color: #999;
    }

    .boxRowContent {
        flex: 1;
        height: 100%;
        font-weight: bold;
    }


/* 移动端适配 */
@media (max-width: 768px) {
    .box {
        padding: 10px;
/*         border-width: 1px; */
    }
    
    .boxRow {
        line-height: 1.3;
        margin: 3px 0;
    }
    
    .boxRowTitle {
        width: 90px !important;
        font-size: 13px !important;
        padding-left: 5px !important;
    }
    
    .boxRowContent {
        font-size: 13px !important;
    }
    
    [class^="hyText"] {
        font-size: 13px !important;
    }
}