.content {
    position: relative;
    padding: 30px;
    text-align: center;
    h1 {
        color: #114514;
        margin-bottom: 20px;
    }
    hr {
        width: 100%;
        border: 0;
        border-top: 1px solid #114514;
        margin: 20px 0;
    }
    .button {
        position: absolute;
        top: 30px;
        right: 30px;
        padding: 10px 20px;
        background-color: #114514;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s, box-shadow 0.3s;
        &:hover {
            background-color: #0d0d0d;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
    }
    .item {
        display: block;
        width: calc(100% - 40px);
        background-color: #f0f0f0;
        text-align: left;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        transition: background-color 0.3s, box-shadow 0.3s;
        &:hover {
            background-color: #e0e0e0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        h2 {
            margin: 0 0 10px;
            color: #114514;
        }
        p {
            margin: 0;
            line-height: 1.6;
            color: #333;
            word-wrap: break-word;
            display: -webkit-box;
            white-space: pre-wrap;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }
}
