﻿        #backtop {
            position: fixed;
            left: 20px;
            right: auto;
            top: auto;
            bottom: 20px;
            outline: none;
            overflow: hidden;
            color: rgba(49, 79, 96, 1);
            text-align: center;
            background-color: rgba(49, 79, 96, 0.50);
            height: 40px;
            width: 40px;
            line-height: 40px;
            font-size: 18px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s linear;
            z-index: 999999;
            opacity: 1;
            display: none;
        }
        
        #backtop:hover {
            background-color: rgba(49, 79, 96, 0.85);
            color: Cornsilk;
        }
        
        #backtop.mcOut {
            opacity: 0;
        }

