
/* 点赞和分享按钮容器 */
.action-buttons {
display: flex;
justify-content: center;
margin: 25px 0;
padding: 15px 0;
gap: 20px;
}

/* 点赞按钮样式 - */
.entry-like {
text-align: center;
}

.entry-like .sl-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
background-color: transparent;
color: #5a6e48;
border: 1px solid #d5d5d5;
border-radius: 4px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
}

.entry-like .sl-button:hover {
background-color: #f5f7f2;
border-color: #8a9d75;
}

.entry-like .sl-button:active {
transform: scale(0.98);
}

.entry-like .sl-button.liked {
background-color: #f5f7f2;
color: #278D05;
border-color: #8a9d75;
}

.entry-like .si {
margin-right: 6px;
font-size: 14px;
}

/* 分享按钮样式 - */
.entry-share {
text-align: center;
}

.entry-share .share-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
background-color: transparent;
color: #5a6e48;
border: 1px solid #d5d5d5;
border-radius: 4px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
}

.entry-share .share-button:hover {
background-color: #f5f7f2;
border-color: #8a9d75;
}

.entry-share .share-button:active {
transform: scale(0.98);
}

.entry-share .share-button.active {
background-color: #f5f7f2;
color: #278D05;
border-color: #8a9d75;
}

.entry-share .si {
margin-right: 6px;
font-size: 14px;
}

/* 分享弹窗样式 - */
.share-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
justify-content: center;
align-items: center;
}

.share-modal-content {
background-color: white;
padding: 20px;
border-radius: 8px;
width: 90%;
max-width: 300px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
position: relative;
}

.share-modal-close {
position: absolute;
top: 10px;
right: 12px;
font-size: 20px;
cursor: pointer;
color: #999;
line-height: 1;
}

.share-modal-close:hover {
color: #333;
}

.share-modal h3 {
margin: 0 0 15px 0;
color: #333;
text-align: center;
font-size: 16px;
font-weight: normal;
}

.share-platforms {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
}

.share-platform {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
padding: 5px 5px;
border-radius: 6px;
transition: background-color 0.2s;
}

.share-platform:hover {
background-color: #f9f9f7;
}

.share-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 6px;
font-size: 18px;
color: white;
}

.share-icon-wechat {
background-color: #2AAC19;
}

.share-icon-weibo {
background-color: #E6162D;
}

.share-icon-qq {
background-color: #12B7F5;
}

.share-icon-qzone {
background-color: #FEBE0E;
}

.share-icon-link {
background-color: #8a9d75;
}

.share-platform span {
font-size: 12px;
color: #555;
}

/* 微信二维码弹窗 - */
.wechat-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 10000;
justify-content: center;
align-items: center;
}

.wechat-modal-content {
background-color: white;
padding: 20px;
border-radius: 8px;
width: 90%;
max-width: 260px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
position: relative;
}

.wechat-modal-close {
position: absolute;
top: 10px;
right: 12px;
font-size: 20px;
cursor: pointer;
color: #999;
line-height: 1;
}

.wechat-modal-close:hover {
color: #333;
}

.wechat-modal h3 {
margin: 0 0 15px 0;
color: #333;
font-size: 16px;
font-weight: normal;
}

.wechat-qrcode {
margin: 10px auto;
padding: 8px;
background: white;
border-radius: 4px;
display: inline-block;
}

.wechat-qrcode img {
width: 160px;
height: 160px;
border: 1px solid #eee;
}

.wechat-tip {
color: #666;
font-size: 13px;
margin-top: 10px;
}