/* 整体容器 */
.appstore-account-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    margin: 20px 0;
    position: relative; /* 为提示框绝对定位做准备 */
}

/* 标题 */
.appstore-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* 账号密码容器 */
.appstore-account-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #e6f2ff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* 单个账号/密码项 */
.account-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.account-item:hover {
    background-color: #f5f5f5;
}

/* 图标通用样式 */
.account-icon, .copy-icon, .notice-icon, .icloud-icon, .cloud-icon {
    display: block;
    vertical-align: middle;
}

.account-icon { width: 24px; height: 24px; }
.copy-icon    { width: 16px; height: 16px; margin-left: auto; cursor: pointer; }
.notice-icon  { width: 16px; height: 16px; }
.icloud-icon  { width: 16px; height: 16px; }
.cloud-icon   { width: 16px; height: 16px; }

/* 文字标签 */
.copy-label {
    font-size: 14px;
    color: #666;
}

.account-text {
    font-size: 15px;
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 提示信息行 */
.appstore-notice {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 复制提示框（居中、半透明背景、自动消失） */
.copy-toast {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.copy-toast.show {
    opacity: 1;
}

/* 手机端响应式 */
@media (max-width: 768px) {
    .appstore-account-content {
        flex-direction: column;
    }
    .account-item {
        min-width: 100%;
    }
    .appstore-title { font-size: 16px; }
    .copy-label, .appstore-notice { font-size: 13px; }
    .account-text { font-size: 14px; }
}