/*------- 下载按钮美化 -------*/
.btn-download {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    
    padding: 10px 16px;
    margin-bottom: 5px;
    border: 2px solid #fff;
    border-radius: 5px;
    
    color: #fff;
    font-size: 14px;
    line-height: 1.33;
    font-weight: 400;
    text-indent: 0;
    
    background: #169FE6;
    opacity: 0.8;
    
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-download:hover {
    color: #169FE6;
    background-color: #fff;
    border-color: #169FE6;
}

.sg-dl {
    margin: 10px 0;
}

.sg-dl .sg-dl-span {
    margin: 0 auto;
}
/*------- ## 按钮结束 -------*/

/*------- ## 滚动栏开始 -------*/
body::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}
body::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0);
}
body::-webkit-scrollbar-thumb{
    background:linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    border-radius:6px;
}
body::-webkit-scrollbar-thumb:hover{
    background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
}
/*------- ## 滚动栏结束 -------*/

/* 密码可见开始 */
.e-secret {
 margin: 20px 0;
 padding: 20px;
}
.e-secret input.euc-y-i[type="password"] {
 float: left;
 background: #fff;
 width: 100%;
 line-height: 36px;
 margin-top: -25px;
 border-radius: 3px;
}
.e-secret input.euc-y-s[type="submit"] {
 float: right;
 margin-top: -47px;
 width: 30%;
 margin-right: 1px;
 border-radius: 0 3px 3px 0;
}
input.euc-y-s[type="submit"]{background-color:#3498db;color:#fff;font-size:21px;box-shadow:none;-webkit-transition: .4s;-moz-transition: .4s;-o-transition: .4s;transition:.4s;-webkit-backface-visibility:hidden;position:relative;cursor:pointer;padding: 13px 20px;text-align: center;border-radius: 50px;-webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;border: 0;height: auto;outline: medium;line-height: 20px;margin: 0;}
input.euc-y-s[type="submit"]:hover{background-color:#5dade2;}
input.euc-y-i[type="text"],input.euc-y-i[type="password"]{border:1px solid #F2EFEF;color:#777;display:block;background: #FCFCFC;font-size:18px;transition:all .5s ease 0;outline:0;box-sizing:border-box;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;padding:5px 16px; margin: 0;height: auto;line-height: 30px;}
input.euc-y-i[type="text"]:hover,input.euc-y-i[type="password"]:hover{border:1px solid #56b4ef;box-shadow:0 0 4px #56b4ef;}
/* 密码可见结束 */

/* 代码块优化 */
.entry-content pre>code {
white-space: pre-wrap;
word-wrap: break-word;
}
div.code-toolbar>.toolbar>.toolbar-item {
    display: flex; justify-content: center; align-items: center;
}
.entry .entry-content pre {
padding: 8px 8px;
overflow: visible
}
.entry .entry-content code, .entry .entry-content kbd {
padding:0px 0px
}
/* 代码块优化 */

/* 图片及文字广告 */
.content-highlight, .content-recommendation {
    margin: 0 0 30px;
    transition: opacity 0.3s;
}

.content-highlight:hover, .content-recommendation:hover {
    opacity: 0.95;
}

.content-highlight img, 
.content-recommendation img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.action-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 1rem;
}

.action-item {
    flex: 1;
}

.action-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 15px;
    font-weight: 500;
}

.action-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .action-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-item a {
        height: 50px;
        font-size: 1rem;
    }
}
/* 图片及文字广告 */
