/* 基础按钮样式 */
.cloud-download-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #e1e4e8;
    transition: transform 0.2s;
}

.cloud-download-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 不同类型网盘的颜色标识 */
.cloud-download-box.baidu {
    border-left: 4px solid #2319F5;
}
.cloud-download-box.aliyun {
    border-left: 4px solid #0066FF;
}
.cloud-download-box.quark {
    border-left: 4px solid #369FFF;
}
.cloud-download-box.xunlei {
    border-left: 4px solid #F5B111;
}

.cloud-logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cloud-info {
    flex-grow: 1;
}

.cloud-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.cloud-pwd {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.cloud-button {
    background: #4CAF50;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

.cloud-button:hover {
    background: #3d8b40;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#cloud-qr-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-qr-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    position: relative;
}

.cloud-qr-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.cloud-qr-code {
    margin: 15px auto;
    width: 200px;
    height: 200px;
    background: white;
    padding: 10px;
}

.cloud-qr-service {
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.cloud-qr-pwd {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cloud-button {
        pointer-events: auto !important;
    }
}