 
:root {
    --primaryColor:#{$primaryColor};
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-size: $fontSize;
    line-height: $lineHeight;
    color: $textColor;
    // font-family:"simsun", "Microsoft Yahei";
}

li {
    list-style: none;
}

.fry-a {
    color: $primaryColor;
    background: transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: color $transition-time ease;

    &:hover {
        color: #2d9ff0;
    }



    &:active,
    &:hover {
        outline: 0;
        text-decoration: none;
    }

    &[disabled] {
        color: #ccc;
        pointer-events: none;
    }
}


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar:horizontal {
    height: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.2s ease-in-out;

    &:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.3);
    }
}