/* 整个推荐框的容器样式 */
.tipp-box {
    background-color: #f9f9f9;
    border-left: 5px solid #7aba3d; /* Sidify 绿色左边框 */
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 标题样式 */
.tipp-header {
    font-weight: 700;
    font-size: 1.25em;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tipp-icon {
    margin-right: 10px;
	color: #ffcd4b;
}

/* 按钮容器布局 */
.tipp-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 基础按钮样式 */
.tipp-btn {
    padding: 16px 30px;
    border-radius: 5px;
    text-decoration: none;
    color: #ffffff !important; /* 强制字体为白色 */
    font-weight: bold;
	font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease; /* 平滑过渡效果 */
    border: none;
    cursor: pointer;
}

/* 按钮悬停效果 */
.tipp-btn:hover {
    color: #ffffff !important; /* 确保悬停时字体为白色 */
    transform: translateY(-2px); /* 轻微上浮动效 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	text-decoration: none !important;
}

.tipp-btn i {
    margin-right: 8px; 
    font-size: 1.1em;  
}

/* Windows 按钮配色 */
.tipp-btn-windows {
    background-color: #7aba3d;
}

.tipp-btn-windows:hover {
    background-color: #6a9e33; /* 悬停变深 */
}

/* Mac/Apple 按钮配色 */
.tipp-btn-mac {
    background-color: #3eb5f1;
}

.tipp-btn-mac:hover {
    background-color: #2a9ad4; /* 悬停变深 */
}

/* 针对手机端适配 */
@media (max-width: 600px) {
    .tipp-download-buttons {
        flex-direction: column;
        gap: 10px;
    }
}