.action-buttons {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.btn-action.version-btn {
    background: linear-gradient(135deg, rgba(88, 216, 255, 0.9), rgba(42, 114, 222, 0.95));
    box-shadow: 0 4px 15px rgba(42, 114, 222, 0.3);
}

.version-links .btn-danger {
    background-color: #ff4d4f;
    border-color: #ff7875;
}

.no-versions {
    text-align: center;
    color: #666;
    padding: 20px;
}

.btn i {
    margin-right: 5px;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}



.table td.version-col {
    min-width: 280px;
}


.sidebar .widget {
    position: relative;
    border-radius: .25rem;
    background-color: #f8efff00;
    overflow: hidden;
    padding: 1.25rem;
    margin-bottom: 1.5rem
}

/* 推荐软件卡片样式优化 */
.glass-card1 {
    background: rgba(28, 32, 38, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    padding: 0;
    overflow: hidden;
}

.glass-card1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: 7px;
    z-index: 0;
}


/* 软件标题区域 */
.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}



/* 软件图标 */
.item-header1 {
    position: relative;
    width: 110px;
    height: 110px;
    margin-right: 24px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.item-media.has-bg {
    background: var(--media-bg);
}


/* 元数据显示 */
.software-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding-bottom: 16px;*/
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.08);*/
    /*margin-bottom: 20px;*/
    position: relative;
    z-index: 1;
}


.meta-item i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}



/* Meta badges 样式优化 */
.meta-badges .badge {
    --text-color: #6F98FF;
    --bg-color: rgba(111, 152, 255, 0.1);
    --hover-bg-color: rgba(111, 152, 255, 0.2);
    box-sizing: border-box;
    border: 0;
    border-radius: 34px;
    padding: 0.4em 0.8em;
    background: var(--bg-color);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}





/* 不同类型的badge颜色 */
.meta-badges .badge.status {
    --text-color: #6F98FF;
    --bg-color: rgba(111, 152, 255, 0.1);
    --hover-bg-color: rgba(111, 152, 255, 0.2);
    color: var(--text-color);
}

.meta-badges .badge.noads {
    --text-color: #50E3C2;
    --bg-color: rgba(80, 227, 194, 0.1);
    --hover-bg-color: rgba(80, 227, 194, 0.2);
    color: var(--text-color);
}

.meta-badges .badge.free {
    --text-color: #FF9F64;
    --bg-color: rgba(255, 159, 100, 0.1);
    --hover-bg-color: rgba(255, 159, 100, 0.2);
    color: var(--text-color);
}


/* 下载按钮容器 */
.download-section {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.version-btn .btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #ffffff;
    /*font-size: 20px;*/
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    text-decoration: none;
    overflow: hidden;
}

.version-btn .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}


.version-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.version-btn .btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}


/* 版本表格 */
#versions {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

#versions h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}



/* 软件内容区域优化 */
.software-content {
    background: rgba(28, 32, 38, 0.75);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    color: #ffffff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px auto;
    padding: 0;
    min-width: 0;
    /* 防止内容撑开grid */
    width: 100%;

    overflow: hidden;
    /* 防止内容溢出 */
}

.software-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: 7px;
    z-index: 0;
}

/* 内容区域标题 */
.section-title {
    padding: 10px 10px;
    display: flex;
    align-items: center;
}

.section-title:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #ff79c6, #bd93f9);
    margin-right: 12px;
    border-radius: 2px;
}

/* 内容主体 */
.content-body {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 32px;
    font-size: 16px;
    line-height: 1.8;
}

.content-body h3,
.content-body h4 {
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-body ul,
.content-body ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.content-body li {
    margin-bottom: 8px;
}


/* 版本表格优化 */
.version-list {
    padding: 32px 32px;
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.table thead th {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.table tbody tr {
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 版本信息样式 */
.version-info {
    display: flex;
    align-items: center;
    gap: 12px;
}


.software-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    /*margin-bottom: 4px;*/
}

.version-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.version-text .badge {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff) !important;
    box-shadow: 0 2px 6px rgba(0, 210, 255, 0.4);
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ff5f6d, #ffc371) !important;
    box-shadow: 0 2px 6px rgba(255, 95, 109, 0.4);
}


.button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
}

/* 侧边栏优化 */
.software-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
    /*max-height: calc(100vh - 60px);*/
    overflow-y: auto;
    scrollbar-width: thin;
}

.software-sidebar::-webkit-scrollbar {
    width: 4px;
}

.software-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* 内容区域优化 */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.item-media {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20%;
    overflow: hidden;
    transform: translateY(0);
    /* 使用 transition 管理所有变换 */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.item-media:hover {
    /* 移除动画，改用 transform */
    transform: translateY(-6px);
}

/* 标题区域 */
.software-title-area {
    grid-area: title;
}

/* 描述区域 */
.software-description {
    grid-area: description;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.meta-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.meta-badge i {
    font-size: 14px;
    color: rgba(162, 156, 211, 0.9);
}

/* 软件信息列表区域 */
.software-info-list {
    grid-area: info-list;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;

}

.software-info {
    display: grid;
    grid-template-areas:
        "thumbnail content"
        "info-list info-list";
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 25px;
    background: rgba(28, 32, 38, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.3sease;
}

/* 软件信息区域布局优化 */
.software-info {}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* 版本列表优化 */
.versions-wrapper {
    margin-top: 30px;
}

.version-list {
    overflow-x: auto;
    scrollbar-width: thin;
}

.version-list::-webkit-scrollbar {
    height: 6px;
}

.version-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.version-list table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.version-list th {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: sticky;
    top: 0;
    z-index: 10;
}

.version-list th:first-child {
    border-top-left-radius: 10px;
}

.version-list th:last-child {
    border-top-right-radius: 10px;
}

.version-list td {
    padding: 12px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.version-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

.version-logo.png-image {
    /*background: rgba(255, 255, 255, 0.1);*/
    /*padding: 5px;*/
}

/* 内容区域优化 */
.content-body {
    color: rgba(255, 255, 255, 0.8);

}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0px 10px 12px hsla(0, 0%, 0%, .125);
}

.content-body h1,
.content-body h2,
.content-body h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #fff;
}

/* 右侧边栏优化 */
.content-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
    /*max-height: calc(100vh - 60px);*/
    overflow-y: auto;
    scrollbar-width: thin;
}

.content-sidebar::-webkit-scrollbar {
    width: 4px;
}

.content-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.recommended-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommended-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommended-item:hover::before {
    opacity: 1;
}

.recommended-item:hover .recommended-title {
    color: #fff;
}

/* 添加加载优化 */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* 添加页面过渡效果 */
.software-layout {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 更新浮动动画关键帧 */
@keyframes float {
    0% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    50% {
        transform: translateY(-6px);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* 内容区域样式 */
.software-content-area {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.thumbnail-area {
    grid-area: thumbnail;
}

/* 缩略图样式 */
.thumbnail-area .item-media {
    width: 120px;
    height: 120px;
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.thumbnail-area .item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.app-logo.png-image {
    object-fit: contain;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.software-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Meta badges 区域 */
.meta-badges {
    grid-area: meta-badges;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

/* 标题区域和按钮布局 */
.header-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}


.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(88, 216, 255, 0.8), rgba(42, 114, 222, 0.85));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.btn-action:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-action i {
    font-size: 14px;
}

.glass-card1 .section-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}



.recommended-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recommended-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.recommended-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    padding: 5px;
    overflow: hidden;
}

.recommended-thumb img {
    width: 100%;
    height: 100%;
    padding: 7px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommended-item:hover .recommended-thumb img {
    transform: scale(1.08);
}

.recommended-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
}

.recommended-title {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.recommended-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.recommended-meta i {
    font-size: 14px;
    color: #A29CD3;
}

.recommended-link {
    position: absolute;
    inset: 0;
    gap: 10px;
    border-radius: 12px;
    /* position: relative; */
    display: flex;

}

.info-item i {
    margin-right: 4px;
    color: #fff;
}

/* 下载按钮图标样式 */
.buttonr {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.buttonr:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.buttonr svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.buttonr:hover svg {
    transform: scale(1.1);
}

.buttonr[data-tooltip]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
}

/* 侧边栏固定效果支持 */
.software-sidebar.fixed {
    position: fixed;
    z-index: 100;
}

/* 占位元素样式 */
.software-layout .sidebar-placeholder {
    grid-area: sidebar;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container11 {
        grid-template-columns: 1fr !important;
        grid-template-areas: "main-content" !important;
    }

    .software-sidebar {
        display: none;
    }

    .software-sidebar.fixed {
        position: static;
    }
}

.content-body strong {
    font-size: 15px;
}

.content-body P {
    font-size: 15px;
    font-weight: BOLD;
}

.wac-highlight-container {
    --text-color: #fb9724;
    --bg-color: rgb(255 140 111 / 20%);
    --hover-bg-color: rgba(111, 152, 255, 0.2);
    box-sizing: border-box;
    border: 0;
    border-radius: 9px;
    padding: 0.1em 0.5em;
    background: var(--bg-color);
    display: inline-flex;
    align-items: center;
    color: #fb5024;
    text-decoration: none;
    transition: all 0.3sease;
    margin: 0 2px;
}

.wac-highlight-content {
    font-size: 13px;
    /* font-weight: 500; */
    color: #fb5024;
    display: inline;
}
.software-header {
    display: flex ;
    justify-content: space-between;
    align-items: flex-start ;
}
.title-area {
    flex: 1;
    padding-right: 20px;
}
/* 可选的不同颜色变体 */
.wac-highlight-container.green {
    --text-color: #50E3C2;
    --bg-color: rgba(80, 227, 194, 0.1);
    --hover-bg-color: rgba(80, 227, 194, 0.2);
}

.wac-highlight-container.orange {
    --text-color: #FF9F64;
    --bg-color: rgba(255, 159, 100, 0.1);
    --hover-bg-color: rgba(255, 159, 100, 0.2);
}

.content-body .wac-hash-icon {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}

.wac-svg-icon {
    display: inline-block;
    width: 24px;
    /* 与 SVG 的 width 一致 */
    height: 24px;
    /* 与 SVG 的 height 一致 */
    vertical-align: middle;
    /* 避免图标错位 */
}
.wac-highlight {
      display: grid
;
    padding: 23px;
    background: rgb(38 41 46);
    backdrop-filter: blur(15px);
    font-size: 16px;
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    /*border: 1px solid rgba(255, 255, 255, 0.12);*/
    /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);*/
    transition: all 0.3sease;
    margin-top: ;
    margin-bottom: 20px;
    /* 避免图标错位 */
}