
/*gototop*/
html {
            scroll-behavior: smooth;/*點擊錨點用*/
        }

        /*Go to top回頂端 button*/ 
        a.my-btn-goTop{
            position: fixed;
            /*bottom: 25px;/*箭頭顯示時的定義*/
            top: 465px;
            right: -60px;
            z-index: 999999999;
            /*絕對定位排版↑*/
            display: inline-block;
            width: 50px;
            height: 50px;/*區域寬高*/
            line-height: 60px; /*內文垂直置中*/
            /*內文水平置中*/
            text-align: center;
            background-color: #c6d4a2; /*區域顏色，深藍主色*/
            font-size: 1.6rem; /*箭頭大小，單位rem才能通過無障礙*/
            color: #fff;
            border-radius: 50%;
            transition: 0.3s;
            opacity: 0; /*預設透明*/
            text-decoration: none;
            font-family: 'Poppins';
            font-weight: 800;
        }
            
            /*箭頭顯示時要做的事*/
            a.my-btn-goTop.show{
                opacity: 1; /*淡入顯示*/
                right: 5px;/*移到畫面裡*/
            }
