/* 个人资料完整度小工具 */
.YXYH-pc-widget-profile-complete .progress-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

.YXYH-pc-widget-profile-complete .progress-ring {
    position: relative;
    width: 150px;
    height: 150px;
}

.YXYH-pc-widget-profile-complete .progress-ring svg {
    transform: rotate(-90deg);
    width: 150px;
    height: 150px;
}

.YXYH-pc-widget-profile-complete .progress-ring .bg {
    fill: none;
    stroke-width: 10;
    stroke: #f0f0f0;
}

.YXYH-pc-widget-profile-complete .progress-ring .progress {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 408;
    stroke: #ff6b6b;
    transition: stroke-dashoffset 0.8s ease;
}

.YXYH-pc-widget-profile-complete .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 600;
    color: var(--ls-text-color);
    white-space: nowrap;
}

.YXYH-pc-widget-profile-complete .subtitle {
    text-align: center;
    color: var(--ls-text-color-secondary);
    font-size: 14px;
    padding: 0 20px;
}

.YXYH-pc-widget-profile-complete .profile-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.YXYH-pc-widget-profile-complete .profile-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.YXYH-pc-widget-profile-complete .item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.YXYH-pc-widget-profile-complete .item-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.YXYH-pc-widget-profile-complete .item-info {
    flex: 1;
    min-width: 0;
}

.YXYH-pc-widget-profile-complete .item-name {
    font-size: 14px;
    color: var(--ls-text-color);
}

.YXYH-pc-widget-profile-complete .item-name .percent {
    color: var(--ls-text-color-secondary);
    margin-left: 5px;
}

.YXYH-pc-widget-profile-complete .item-action {
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    color: #ff6b6b;
}

.YXYH-pc-widget-profile-complete .item-action:hover {
    opacity: 0.8;
}

.YXYH-pc-widget-profile-complete .item-action.completed {
    color: var(--ls-text-color-secondary);
}

.YXYH-pc-widget-profile-complete .completed-section {
    margin-top: 15px;
    border-top: 1px solid var(--ls-border-color, #eee);
    padding-top: 10px;
}

.YXYH-pc-widget-profile-complete .completed-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px 0;
    color: var(--ls-text-color-secondary);
    font-size: 13px;
}

.YXYH-pc-widget-profile-complete .completed-toggle i {
    transition: transform 0.3s;
}

.YXYH-pc-widget-profile-complete .completed-toggle.active i {
    transform: rotate(180deg);
}

.YXYH-pc-widget-profile-complete .completed-list {
    display: none;
    padding-top: 10px;
}

.YXYH-pc-widget-profile-complete .completed-list.show {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
