.netdisk-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 2px 0;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.netdisk-container:hover {
    background: #f1f3f5;
    border-color: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.netdisk-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.netdisk-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.netdisk-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.netdisk-download {
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netdisk-download:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
}

.netdisk-download svg {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.netdisk-download:hover svg {
    transform: scale(1.1);
}

/* Modal styles */
.fxz-netdisk-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.fxz-netdisk-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.netdisk-modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 480px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.netdisk-modal-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.netdisk-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.netdisk-modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    font-size: 24px;
    color: #666;
    line-height: 1;
    transition: color 0.2s;
    z-index: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.netdisk-modal-item {
    margin: 16px 0;
}

.netdisk-modal-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.netdisk-modal-value {
    display: flex;
    align-items: center;
}

.netdisk-modal-value input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.netdisk-modal-value input:focus {
    outline: none;
    border-color: #4c6ef5;
}

.netdisk-modal-footer {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.netdisk-modal-footer button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 80px;
}

.netdisk-modal-footer .btn-primary {
    background: #4c6ef5;
    color: white;
    border: none;
}

.netdisk-modal-footer .btn-primary:hover {
    background: #364fc7;
}

.netdisk-modal-footer .btn-secondary {
    background: #e9ecef;
    color: #666;
    border: none;
}

.netdisk-modal-footer .btn-secondary:hover {
    background: #dee2e6;
    color: #333;
}

.edui-icon.icon-cloud-upload {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSIjNjY2IiBkPSJNMTMuODEgNi4wMmMtMC4xMy0yLjU5LTIuMjgtNC42NC00LjktNC42NC0yLjE2IDAtMy45OCAxLjM5LTQuNjMgMy4zMi0yLjEzIDAuMjQtMy43OCAyLjA0LTMuNzggNC4yMyAwIDIuMzUgMS45MSA0LjI3IDQuMjcgNC4yN2g4LjczYzEuOTQgMCAzLjUtMS41NyAzLjUtMy41IDAtMS44NC0xLjQxLTMuMzQtMy4xOS0zLjV2LTAuMTh6TTkuNSA5LjVWMTJoLTN2LTIuNUg0TDggNCBsMCA1LjV6Ii8+PC9zdmc+) no-repeat center center;
    width: 20px;
    height: 20px;
}

#netdisk-insert-btn {
    cursor: pointer;
}

#netdisk-insert-btn:hover {
    opacity: 0.8;
}

/* 修复移动端显示 */
@media (max-width: 768px) {
    .netdisk-modal-content {
        width: calc(100% - 32px);
        margin: 16px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }
}

/* 下载区域样式 */
.netdisk-section {
    margin: 20px 0;
}

.netdisk-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    position: relative;
}

.netdisk-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #4c6ef5;
}

.netdisk-section-title svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.netdisk-section-content {
    padding: 0;
} 