@charset "utf-8";

#jump {
    position: fixed;
    right: 24px;
    bottom: 80px;
    z-index: 99999;
    list-style: none;
    margin: 0;
    padding: 0;
}

#jump li a,
#jump li a#top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #e01818 0%, #b70002 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    border: 4px solid #ffcc00;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#jump li a:hover {
    color: #ffeb3b;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

#jump li a .top-arrow {
    display: block;
    font-size: 42px;
    line-height: 1;
    font-weight: bold;
}

#jump li a .top-text {
    display: block;
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    white-space: nowrap;
}
