<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * å‰å°æ&nbsp;·å¼
 */

/* æœç´¢å®¹å™¨ */
.cloud-search-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ç™»å½•æç¤º */
.cloud-search-login-required {
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-left: 3px solid #0073aa;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cloud-search-login-message {
    color: #666;
    font-size: 13px;
}

.cloud-search-login-button {
    background-color: #0073aa;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.cloud-search-login-button:hover {
    background-color: #005f8b;
    color: #fff;
    text-decoration: none;
}

/* æœç´¢è¡¨å• */
.cloud-search-form {
    margin-bottom: 20px;
}

.cloud-search-input-wrapper {
    display: flex;
    max-width: 100%;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.cloud-search-input-wrapper:focus-within {
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    border-color: #d0d0d0;
}

/* APIé€‰æ‹©ä¸‹æ‹‰æ¡† */
.cloud-search-api-select {
    padding: 10px 12px;
    border: none;
    border-right: 1px solid #eaeaea;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    min-width: 100px;
    height: 100%;
    outline: none;
    cursor: pointer;
}

.cloud-search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    font-size: 15px;
    min-width: 0;
    outline: none;
}

.cloud-search-button {
    padding: 10px 20px;
    background: #2b5aed;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
    white-space: nowrap;
}

.cloud-search-button:hover {
    background: #1e48c8;
}

/* åŠ&nbsp;è½½çŠ¶æ€ */
.cloud-search-loading {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cloud-search-loading .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid rgba(0, 115, 170, 0.3);
    border-radius: 50%;
    border-top-color: #0073aa;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cloud-search-loading span {
    font-size: 14px;
    color: #555;
}

/* ç»“æžœå®¹å™¨ */
.cloud-search-results-wrapper {
    margin-top: 20px;
    border-radius: 4px;
    overflow: hidden;
}

/* ç»“æžœæ&nbsp;‡é¢˜åŒº */
.cloud-search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cloud-search-results-header h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.cloud-search-results-count {
    background: #f1f1f1;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 14px;
    color: #666;
}

/* å¡ç‰‡å¸ƒå±€ */
.cloud-search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* å•ä¸ªå¡ç‰‡æ&nbsp;·å¼ */
.cloud-search-result-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cloud-search-result-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* å¡ç‰‡é¡¶éƒ¨ä¿¡æ¯æ&nbsp; */
.cloud-search-result-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* APIæ¥æºæ&nbsp;‡ç­¾ */
.cloud-search-result-api {
    font-size: 15px;
}

/* å³ä¾§ä¿¡æ¯åŒºåŸŸ */
.cloud-search-result-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ç½‘ç›˜ç±»åž‹æ&nbsp;‡ç­¾ */
.cloud-search-disk-type {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.cloud-search-disk-type.baidu {
    background-color: #2b5aed;
}

.cloud-search-disk-type.quark {
    background-color: #19ad19;
}

.cloud-search-disk-type.aliyun {
    background-color: #ff6a00;
}

.cloud-search-disk-type.lanzou {
    background-color: #6f42c1;
}

.cloud-search-disk-type.onedrive {
    background-color: #0078d4;
}

.cloud-search-disk-type.weiyun {
    background-color: #2d8cf0;
}

.cloud-search-disk-type.xunlei {
    background-color: #0088cc;
}

.cloud-search-disk-type.tianyi {
    background-color: #e74c3c;
}
.cloud-search-disk-type.pan115 {
    background-color: #0099CC;
}
.cloud-search-disk-type.ctfile {
    background-color: #FF6600;
}
.cloud-search-disk-type.uc {
    background-color: #FF9900;
}
.cloud-search-disk-type.magnet {
    background-color: #993399;
}

/* æ&nbsp;‡é¢˜æ&nbsp;·å¼ */
.cloud-search-result-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.cloud-search-result-title a {
    color: #333;
    text-decoration: none;
}

.cloud-search-result-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}

/* ç¡®ä¿èµ„æºæ&nbsp;‡é¢˜ä¸­çš„é”å›¾æ&nbsp;‡æ­£ç¡®æ˜¾ç¤º */
.cloud-search-result-title .resource-link-password-required {
    line-height: 1.5;
    display: inline;
    padding-left: 20px;
}

/* æè¿°æ&nbsp;·å¼ */
.cloud-search-result-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    flex-grow: 1;
}

/* å…ƒæ•°æ®åŒºåŸŸ */
.cloud-search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.cloud-search-result-size,
.cloud-search-result-date {
    background-color: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
}

/* æå–ç&nbsp;æ&nbsp;·å¼ */
.cloud-search-result-pwd {
    display: flex;
    align-items: center;
}

.cloud-search-result-pwd .pwd-text {
    background-color: #f1f1f1;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.cloud-search-result-pwd .pwd-text:before {
    content: "\f112";
    font-family: dashicons;
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    color: #666;
}

.cloud-search-result-pwd .pwd-text:hover {
    background-color: #e3e3e3;
}

.cloud-search-result-pwd .pwd-text.copied {
    background-color: #d4edda;
    color: #155724;
}

.cloud-search-copy-btn {
    display: none; /* éšè—åŽŸæ¥çš„å¤åˆ¶æŒ‰é’® */
}

/* ç­›é€‰å™¨æ&nbsp;·å¼ */
.cloud-search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cloud-search-filter-label {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    color: #333;
}

.cloud-search-filter-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.cloud-search-filter-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}

.cloud-search-filter-btn.active {
    background-color: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

/* åˆ†é¡µ */
.cloud-search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.cloud-search-pagination button {
    padding: 8px 16px;
    background: #2b5aed;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
    min-width: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cloud-search-pagination button:hover:not(:disabled) {
    background: #1e48c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cloud-search-pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.cloud-search-pagination-info {
    font-size: 14px;
    color: #666;
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 15px;
}

/* æ—&nbsp;ç»“æžœå’Œé”™è¯¯æ¶ˆæ¯ */
.cloud-search-no-results,
.cloud-search-error {
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.cloud-search-error {
    border-color: #ffdddd;
    background: #fff8f8;
    color: #d8000c;
}

/* å“åº”å¼è°ƒæ•´ */
@media (max-width: 768px) {
    .cloud-search-results {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .cloud-search-results {
        grid-template-columns: 1fr;
    }
}

/* æœç´¢å»ºè®®åŒºåŸŸ */
.cloud-search-suggestions {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.cloud-search-suggestion-section {
    margin-bottom: 10px;
}

.cloud-search-suggestion-section:last-child {
    margin-bottom: 0;
}

.cloud-search-suggestion-title {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.cloud-search-icon {
    margin-right: 5px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cloud-search-suggestion-title i {
    margin-right: 5px;
    font-size: 14px;
    color: #888;
}

.cloud-search-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cloud-search-suggestion-tag {
    background-color: #f7f7f7;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cloud-search-suggestion-tag:hover {
    background-color: #efefef;
    color: #333;
}

.cloud-search-suggestion-tag.hot {
    background-color: #fff5f0;
    color: #e05e00;
}

.cloud-search-suggestion-tag.hot:hover {
    background-color: #ffe8db;
}

.cloud-search-suggestion-tag.new {
    background-color: #f0f7ff;
    color: #0066cc;
}

.cloud-search-suggestion-tag.new:hover {
    background-color: #e0eeff;
}

.cloud-search-suggestion-tag.history {
    background-color: #f5fff0;
    color: #3d8c00;
}

.cloud-search-suggestion-tag.history:hover {
    background-color: #e8ffdb;
}

.cloud-search-suggestion-clear {
    font-size: 12px;
    color: #999;
    cursor: pointer;
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 4px;
}

.cloud-search-suggestion-clear:hover {
    color: #666;
    background-color: #f0f0f0;
}

/* ç™»å½•éœ€è¦çš„é“¾æŽ¥æ&nbsp;·å¼ */
.login-required-link {
    color: #333;
    cursor: pointer;
    border-bottom: 1px dashed #999;
}

.login-required-link:hover {
    color: #0073aa;
    border-bottom-color: #0073aa;
}

/* ç™»å½•å¼¹çª—æ&nbsp;·å¼ */
.cloud-search-login-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-search-login-dialog-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    padding: 20px;
    position: relative;
}

.cloud-search-login-dialog-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.cloud-search-login-dialog-message {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.cloud-search-login-dialog-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cloud-search-login-dialog-close {
    background-color: #f0f0f0;
    color: #666;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.cloud-search-login-dialog-close:hover {
    background-color: #e0e0e0;
}

/* æ–‡ç«&nbsp;åº•éƒ¨èµ„æºæœç´¢ç»“æžœæ&nbsp;·å¼ */
.cloud-search-resource-results {
    margin-top: 40px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #eee;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cloud-search-resource-results h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.cloud-search-resource-results .cloud-search-keyword {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

/* æŠ˜å&nbsp;é¢æ¿å®¹å™¨ */
.cloud-search-accordion {
    border-radius: 3px;
    overflow: hidden;
}

/* é¢æ¿æ&nbsp;·å¼ */
.cloud-search-panel {
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* é¢æ¿å¤´éƒ¨ */
.cloud-search-panel-header {
    position: relative;
}

/* é¢æ¿æŒ‰é’® */
.cloud-search-panel-button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    text-align: left;
    background-color: #f7f7f7;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.cloud-search-panel-button:hover {
    background-color: #f0f0f0;
}

.cloud-search-panel-button.expanded {
    background-color: #f0f7ff;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 3px 3px 0 0;
}

/* è®¡æ•°æ&nbsp;‡ç­¾ */
.cloud-search-panel-count {
    opacity: 0.7;
    font-weight: normal;
}

/* å±•å¼€/æŠ˜å&nbsp;ç®­å¤´å›¾æ&nbsp;‡ */
.cloud-search-panel-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.cloud-search-panel-icon:before,
.cloud-search-panel-icon:after {
    content: "";
    position: absolute;
    background-color: #666;
    transition: transform 0.3s ease;
}

.cloud-search-panel-icon:before {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0;
}

.cloud-search-panel-icon:after {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px;
}

.cloud-search-panel-button.expanded .cloud-search-panel-icon:after {
    transform: rotate(90deg);
    opacity: 0;
}

/* æŠ˜å&nbsp;é¢æ¿å†…å®¹ */
.cloud-search-panel-collapse {
    display: none;
}

.cloud-search-panel-collapse.show {
    display: block;
}

.cloud-search-panel-body {
    padding: 10px;
}

/* ç´§å‡‘èµ„æºåˆ—è¡¨ */
.resource-compact-list {
    width: 100%;
}

/* ç´§å‡‘èµ„æºé¡¹ */
.resource-compact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    border-bottom: 1px dashed #eee;
}

.resource-compact-item:last-child {
    border-bottom: none;
}

.resource-compact-item:nth-child(odd) {
    background-color: rgba(0,0,0,0.02);
}

.resource-compact-item:hover {
    background-color: rgba(0,123,255,0.03);
}

/* èµ„æºé“¾æŽ¥ */
.resource-compact-link {
    flex: 1;
    overflow: hidden;
    padding-right: 10px;
}

/* é»˜è®¤æƒ…å†µä¸‹ä¿æŒå•è¡Œçœç•¥ */
.resource-compact-link a {
    color: #0073aa;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.resource-compact-link a:hover {
    color: #00a0d2;
    text-decoration: underline;
}

/* ç¡®ä¿èµ„æºé“¾æŽ¥ä¸­çš„é”å›¾æ&nbsp;‡æ­£ç¡®æ˜¾ç¤º */
.resource-compact-link .resource-link-password-required {
    display: inline-block;
    white-space: normal;
    line-height: 1.5;
    word-break: break-word;
}

/* å³ä¾§ä¿¡æ¯åŒº */
.resource-compact-info {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
}

/* æå–ç&nbsp;æ&nbsp;·å¼ */
.resource-compact-pwd {
    background-color: #f1f1f1;
    color: #e83e8c;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.resource-compact-pwd:hover {
    background-color: #e5e5e5;
}

.resource-compact-pwd.copied {
    background-color: #d4edda;
    color: #155724;
}

/* æ¥æºæ&nbsp;‡ç­¾ */
.resource-compact-source {
    color: #999;
    font-size: 12px;
    background-color: #f8f8f8;
    padding: 2px 5px;
    border-radius: 3px;
}

/* å“åº”å¼è°ƒæ•´ */
@media (max-width: 576px) {
    .resource-compact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .resource-compact-link {
        margin-bottom: 5px;
    }
    
    .resource-compact-info {
        width: 100%;
        justify-content: flex-start;
    }
}

/* å¡å¯†éªŒè¯å¯¹è¯æ¡†æ&nbsp;·å¼ */
.cloud-search-password-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cloud-search-password-dialog-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 480px;
    overflow: hidden;
    animation: dialogFadeIn 0.3s ease;
}

@keyframes dialogFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cloud-search-password-dialog-header {
    background-color: #f7f7f7;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
}

.cloud-search-password-dialog-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.cloud-search-password-dialog-close {
    background: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    line-height: 0;
}

.cloud-search-password-dialog-close:hover {
    color: #e53935;
}

.cloud-search-password-dialog-body {
    padding: 20px;
}

.cloud-search-password-resource-info {
    margin-bottom: 15px;
    padding: 12px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    border-left: 3px solid #2196f3;
}

.cloud-search-password-input-group {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
}

.cloud-search-password-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.cloud-search-password-input:focus {
    border-color: #2196f3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.25);
}

.cloud-search-password-submit {
    padding: 10px 20px;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.cloud-search-password-submit:hover {
    background-color: #1976d2;
}

.cloud-search-password-submit:disabled {
    background-color: #bdbdbd;
    cursor: not-allowed;
}

.cloud-search-password-result {
    min-height: 24px;
    margin-bottom: 15px;
}

.cloud-search-password-result .error {
    color: #e53935;
    padding: 8px 12px;
    background-color: #ffebee;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.cloud-search-password-result .success {
    color: #2e7d32;
    padding: 8px 12px;
    background-color: #e8f5e9;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.cloud-search-password-result .loading {
    color: #555;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

.cloud-search-password-tips {
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 13px;
    color: #757575;
    margin-top: 10px;
}

.cloud-search-password-tips p {
    margin: 0 0 8px 0;
    font-weight: 500;
}

.cloud-search-password-tips ul {
    margin: 0;
    padding-left: 20px;
}

.cloud-search-password-tips li {
    margin-bottom: 5px;
}

.cloud-search-password-tips li:last-child {
    margin-bottom: 0;
}

/* éœ€è¦å¡å¯†éªŒè¯çš„èµ„æºé“¾æŽ¥æ&nbsp;·å¼ */
.resource-link-password-required {
    position: relative;
    color: #2196f3;
    text-decoration: none;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 0;
    display: inline-block;
}

.resource-link-password-required::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%232196f3' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.resource-link-password-required:hover {
    color: #1976d2;
}

.resource-link-password-required:hover::after {
    opacity: 1;
}

/* å¡å¯†æç¤ºåŒºåŸŸæ&nbsp;·å¼ */
.cloud-search-password-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cloud-search-password-notice-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 8px;
}

.cloud-search-password-notice-content {
    flex: 1;
}

.cloud-search-password-notice-content h4 {
    margin: 0 0 8px 0;
    color: #2e7d32;
    font-size: 16px;
}

.cloud-search-password-notice-content p {
    margin: 0 0 12px 0;
    color: #424242;
    font-size: 14px;
    line-height: 1.5;
}

.cloud-search-password-page-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cloud-search-password-page-link:hover {
    background-color: #388e3c;
    color: white;
    text-decoration: none;
}

/* å¡å¯†éªŒè¯æç¤ºå¯¹è¯æ¡† */
.cloud-search-password-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    animation: fadeIn 0.2s ease;
}

.cloud-search-password-prompt-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.2s ease;
}

.cloud-search-password-prompt-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

.cloud-search-password-prompt-close:hover {
    color: #333;
}

.cloud-search-password-prompt h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 20px;
    font-weight: 500;
}

.cloud-search-password-prompt p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.cloud-search-password-prompt-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.cloud-search-password-prompt-cancel {
    padding: 8px 15px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cloud-search-password-prompt-cancel:hover {
    background-color: #e0e0e0;
}

.cloud-search-password-prompt-verify {
    padding: 8px 15px;
    background-color: #2196f3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cloud-search-password-prompt-verify:hover {
    background-color: #1976d2;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
} </pre></body></html>