/* 捐赠头部区域外层容器 */
#donation-header-section {
    background-color: #f3f3f3;
}

/* 捐赠页面主体内容容器 - 继承原template-page相关样式 */
.donation-page-content {
    width: 100%;
    border: none;
    margin-left: auto;
    padding-left: 0;
    margin-right: auto;
}

/* 捐赠内容内层容器 - 继承原entry-content-wrapper样式 */
.donation-content-wrapper {
    padding-right: 0;
    clear: both;
}

/* 捐赠文本容器 - 继承原avia_textblock样式 */
.donation-text-container {
    clear: both;
    line-height: 25px;
}
/* 捐赠数据行（记录+查询）布局 */
.donation-data-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

/* 捐赠记录列布局 */
.donation-record-col {
    flex: 0 0 33.333%; /* 对应原col-sm-4宽度 */
}

/* 捐赠记录列表样式 */
.donation-record-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: -1.20684px;
}
.donation-record-col ul  li {
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height:40px;
}
/* 捐赠记录内单个数据项布局 */
.donation-record-item {
    /*display: inline-block;*/
    /*margin-right: 8px;*/
    width: 30%;
    float:left;
}
.donation-record-label{
    width: 50px;
}
.donation-record-time{
    width: 86px;
}

/* 捐赠查询列布局 */
.donation-search-col {
    flex: 0 0 25%; /* 对应原col-sm-3宽度 */
}

/* 查询输入框样式 */
.donation-name-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    box-sizing: border-box;
}

/* 捐赠查询按钮 - 继承原btn样式 */
.donation-search-btn {
    font-weight: normal;
    width: 100px;
    line-height: 26px;
    padding: 10px 20px;
    font-size: 16px;
    letter-spacing: 2px;
    background-color: #ed1c24;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Myriad Pro', 'FZLTXH_GB18030', "Microsoft YaHei";

}

.donation-search-btn:hover {
    opacity: 0.9;
}
/* 统计行布局 */
.donation-statistics-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 10px;
    text-align: center;
}

/* 统计列通用样式 */
.total-amount-col,
.yearly-amount-col,
.monthly-amount-col {
    flex: 0 0 32%; /* 对应原col-sm-4宽度，留间隙 */
}

/* 统计项名称样式 */
.statistic-title {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

/* 金额单位样式 */
.amount-unit {
    font-size: 14px;
    color: #666;
    /*margin-bottom: 8px;*/
}

/* 金额数值样式 */
.total-amount-value,
.yearly-amount-value,
.monthly-amount-value {
    /*display: block;*/
    /*font-size: 18px;*/
    /*font-weight: bold;*/
    /*color: #333;*/
    /*margin-top: 5px;*/
    color: #ed1c24;
    font-size: 30px;
    letter-spacing: 1px;
    font-family: 'Myriad Pro', 'FZLTH_GB18030', "Microsoft YaHei", "STHeiti-Light", "SimSun";
}

/* 历史金额截止时间提示样式 */
.total-amount-col span[style*="font-size: 12px; color: red;"] {
    font-size: 12px !important;
    color: red !important;
    margin-left: 10px !important;
}
.total-amount-col{
    border-right:1px solid #ddddde;
}
.yearly-amount-col{
    border-right:1px solid #ddddde;
}
.donation-record-time{
    margin:0;
}
@media only screen and (max-width: 767px) {
    /* 移动端捐赠数据行改为垂直布局 */
    .donation-data-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    /* 移动端统计行改为垂直布局 */
    .donation-statistics-row {
        flex-direction: column;
        gap: 15px;
    }

    /* 移动端列宽度100% */
    .donation-record-col,
    .donation-search-col,
    .total-amount-col,
    .yearly-amount-col,
    .monthly-amount-col {
        flex: 0 0 100%;
    }
}
.donation-record-col{
    background: #fff;
    padding: 3px 6px;
    overflow: hidden;
    height: 37px;

    margin-right: 19px;
    color: #545454;
    font-size: 16px;

}
