.download-fab {
    width: 132px;
    height: 44px;
    position: fixed;
    right: max(16px, calc((100vw - 1168px) / 2));
    bottom: 60px;
    z-index: 10;
    background: linear-gradient(90deg, #F12B9E 0%, #9C26F4 100%);
    overflow: hidden;
    border-radius: 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: flex;
    border: none;
    padding: 0;
    cursor: pointer;
}

.download-fab-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.download-fab-text {
    color: white;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .download-fab {
        right: 4px;
        bottom: 40px;
        width: 100px;
        height: 33px;
    }
}

