body {
    margin: 0;
    padding: 0;
    font-family: '微软雅黑', Arial, sans-serif;
    background: #f7f7f7;
}

.note-container {
    display: flex;
    width: 65%;
    max-width: 1200px;
    height: 75vh;
    max-height: 750px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
}

.left-img {
    width: 48%;
    background: #dfdfdf;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.left-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-content {
    flex: 1;
    padding: 32px 36px 24px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.author {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 14px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    font-size: 18px;
}

.author-desc {
    color: #888;
    font-size: 13px;
}

.note-content-container {
    padding-right: 3px;
    overflow: auto;
}

.note-content-container::-webkit-scrollbar {
    width: 6px;
}

.note-content-container::-webkit-scrollbar-track {
    background: transparent;
}

.note-content-container::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 3px;
    transition: background 0.3s;
}

.note-content-container:hover::-webkit-scrollbar-thumb,
.note-content-container:active::-webkit-scrollbar-thumb,
.note-content-container:focus::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
}

.note-content-container .note-none-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.note-content-container .note-none-content img {
    width: 300px;
}

.note-content-container .note-none-content p {
    font-size: 15px;
    color: #999;
}

.note-content {
    font-size: 16px;
    color: #222;
    line-height: 1.8;
    margin-bottom: 24px;
}

.comment-section {
    margin-top: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px;
}

.comment-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-item {
    margin-bottom: 10px;
    font-size: 15px;
}

.interaction-bar {
    display: flex;
    align-items: center;
    margin-top: 18px;
    gap: 24px;
}

.interaction-btn {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 15px;
    cursor: pointer;
    gap: 6px;
}

.interaction-btn:hover {
    color: #ff6000;
}

.interaction-btn i {
    font-size: 25px;
}

.interaction-btn .share {
    font-size: 22px;
}