div.icon.svelte-1ax81bq.svelte-1ax81bq {
    background: #ffffff1a;
    border-radius: 12px;
    display: block;
    position: relative
}

div.icon.svelte-1ax81bq img.svelte-1ax81bq {
    max-width: var(--imageW) px;
    max-height: var(--imageH) px;
    border-radius: 10px;
    display: block
}

div.icon.svelte-1ax81bq span.focus-highlight.svelte-1ax81bq {
    background-color: #fff;
    border-radius: inherit;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .25s cubic-bezier(.4, 0, .2, 1) 0ms
}

div.icon.svelte-1ax81bq:hover span.focus-highlight.svelte-1ax81bq {
    opacity: .05
}

li.item.svelte-xkszy1.svelte-xkszy1 {
    margin-bottom: 16px;
    width: 100%
}

li.item.svelte-xkszy1 div.header.svelte-xkszy1 {
    align-items: center;
    background-color: #0d2c7c;
    border-radius: 10px;
    box-shadow: 0 6px 12px #061d62, inset 0 4px 10px #001f473b;
    border: solid 3px #183484;
    color: #fff;
    display: flex;
    gap: 8px;
    height: 60px;
    margin: 0 8px;
    padding: 0 4px;
    position: relative
}

li.item.svelte-xkszy1 div.header .tag-title.svelte-xkszy1 {
    color: var(--color-tertiary);
    font-size: 14px;
    font-weight: 700;
    max-height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

li.item.svelte-xkszy1 div.header.svelte-xkszy1:hover {
    background-color: #183484
}

li.item.svelte-xkszy1 div.header:hover .tag-title.svelte-xkszy1 {
    color: var(--color-info)
}

li.item.small.svelte-xkszy1 div.header .tag-title.svelte-xkszy1 {
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: normal
}

@media (min-width: 0px) and (max-width: 599.95px) {
    li.item.svelte-xkszy1.svelte-xkszy1 {
        width: 50%
    }

    li.item.small.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 50%;
        width: 50%
    }
}

@media (min-width: 600px) {
    li.item.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 50%;
        width: 50%
    }

    li.item.small.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 25%;
        width: 25%
    }
}

@media (min-width: 1024px) {
    li.item.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 25%;
        width: 25%
    }

    li.item.small.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 16.6%;
        width: 16.6%
    }
}

@media (min-width: 1920px) {
    li.item.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 20%;
        width: 20%
    }

    li.item.small.svelte-xkszy1.svelte-xkszy1 {
        flex-basis: 12.5%;
        width: 12.5%
    }
}
/*语言切换样式*/
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 0 0 4px 4px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #1a1a1a;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #39393d;
}

.dropbtn {
    background-color: #0B0B0E;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}