body {
    font-family: Arial, sans-serif;
    background-color: #FCFDFE;
    margin: 0;
    padding: 0;
}

.des_header {
    padding: 10px;
    position: relative;
    text-align: center;
    line-height: 30px;
    height: 30px;
}

.des_header .title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 96%;
}

.des_header .back-button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.des_header .back-button::before {
    content: '';
    display: block;
    background-image: url('../icon/back.png');
    background-size: cover;
    width: 100%;
    height: 100%;
}

.des_header .title {
    margin: 0;
    font-size: 1rem;
    padding: 0 10px;
    white-space: nowrap;
    font-weight: bold;
}

.pro_list_container {
    margin: 0 auto;
    padding: 10px;
}

.category_filter {
    display: flex;
    justify-content: left;
    margin-bottom: 10px;
}

.category_button {
    padding: 8px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 8px;
    background-color: #eaeaea;
    color: #999999;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.category_button.active {
    background-color: #C8E0C8;
    color: #2A4D2A;
    font-size: 0.95em;
    font-weight: bold;
}

.category_button:hover {
    background-color: #C8E0C8;
}

.pro_list_header {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.pro_list_back-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 24px;
}

.pro_list_item {
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pro_icon_pro {
    width: 24px;
    height: 24px;
    background: url('../icon/proclamation.png') no-repeat;
    background-size: cover;
}

.pro_icon_list {
    width: 24px;
    height: 24px;
    background: url('../icon/list.png') no-repeat;
    background-size: cover;
}
.pro_icon_btr {
    width: 24px;
    height: 24px;
    background: url('../icon/btr.png') no-repeat;
    background-size: cover;
}


.pro_list_item-details {
    flex-grow: 1;
    margin-left: 10px;
}

.pro_list_item-title {
    font-size: 16px;
    color: #333;
}

.pro_list_item-time {
    font-size: 12px;
    color: #999;
}

.pro_list_item-amount {
    font-size: 14px;
    color: #333;
    text-align: right;
}

.pro_list_item-amount .pro_list_source {
    font-size: 0.7rem;
    color: #999;
}