<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 鎵撹祻妯″潡鏍峰紡 */
.donation-banner {
    margin: 15px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    border-left: 3px solid #ff5c5c;
}

.donation-banner .card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.donation-banner .card-head i.fa-heart {
    color: #ff5c5c;
}

.donation-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.card-head-desc {
    background: #f8f9fa;
    padding: 0 15px 10px;
    border-bottom: 1px solid #eee;
}

.donate-btn {
    background-color: #ff5c5c;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.donate-btn:hover {
    background-color: #ff3c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 92, 92, 0.3);
}

.donate-btn i {
    font-size: 14px;
}

.donation-desc {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
    text-align: left;
}

.donation-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    max-width: 1060px;
    margin: 0 auto;
}

/* 纭繚姣忚鏄剧ず5涓ā鍧� */
.donation-list::after {
    content: "";
    flex: 0 0 200px;
    margin-bottom: 10px;
    visibility: hidden;
}

/* 褰撴渶鍚庝竴琛屼笉瓒�5涓椂锛屼繚鎸佸潎鍖€鍒嗗竷 */
.donation-list::before {
    content: "";
    flex: 0 0 200px;
    margin-bottom: 10px;
    order: 1;
    visibility: hidden;
}

.donation-item {
    position: relative;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.donation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-img-container {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0; /* 娣诲姞椤堕儴鍦嗚 */
}

.donation-img-container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.donation-item:hover .donation-img-container img {
    transform: scale(1.05);
}

.donation-info {
    background-color: #ff9933; /* 閫備腑鐨勬榛勮壊锛屼笌鐧借壊鏂囧瓧褰㈡垚瀵规瘮 */
    padding: 4px 12px;
    height: 27px; /* 鍐嶇缉灏�1/3楂樺害 */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 8px 8px; /* 娣诲姞搴曢儴鍦嗚 */
}

.donation-tag {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.donation-desc-small {
    color: #333;
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40%;
}

.donation-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin: 0;
    padding: 0;
    width: 200px;
    height: 150px;
    flex: 0 0 auto;
}

.donation-item-link:hover {
    text-decoration: none;
}

/* 鎵撹祻寮圭獥鏍峰紡 */
.donation-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.donation-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.4s;
}

.donation-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.donation-close:hover {
    color: #555;
}

.donation-modal h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.donation-qrcodes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 150px;
    height: 150px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 5px;
    background: white;
}

.qrcode-item p {
    margin-top: 10px;
    color: #666;
}

.donation-thanks {
    text-align: center;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

/* 鍔ㄧ敾鏁堟灉 */
@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 767px) {
    .donation-qrcodes {
        flex-direction: column;
        align-items: center;
    }

    .donation-modal-content {
        width: 90%;
        margin: 20% auto;
    }
}
</pre></body></html>