.center-item-box {
    box-sizing: border-box;
    padding: 20px;
    color: rgb(170, 170, 170);
    transition: box-shadow 0.5s ease;
    transition: transform 0.5s ease;
}

.center-item-box:hover,
.center-portrait-item-box:hover {
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1); */
    transform: translateY(-10px);
    cursor: pointer;
}

.center-item-box-header {
    display: flex;
    justify-content: space-between;

}

.center-item-box-content {
    white-space: pre-line;
    word-wrap: break-word;
    text-align: right !important;
    line-height: 2;
    margin-top: -30px;
    padding: auto;
    height: 65%;
}



.more-content {
    color: rgb(236, 52, 52);
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease;
}

.more-content::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    /* background: linear-gradient(90deg, #ff416c, #ff4b2b); */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.more-content:hover {
    color: #ff4b2b;
    text-shadow: 0 0 5px #ff4b2b, 0 0 10px #ff416c;
}

.more-content:hover::after {
    transform: scaleX(1);
}


.center-box .center-portrait-item-box {
    width: 100%;
    height: 400px;
    background-color: #202020;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    color: rgb(170, 170, 170);
    transition: box-shadow 0.5s ease;
    transition: transform 0.5s ease;
}

.center-portrait-item-box-content {
    white-space: pre-line;
    word-wrap: break-word;
    text-align: right !important;
    line-height: 2;
    padding: auto;
    height: 65%;
}