        body {
            /* 背景图垂直、水平均居中 */
            background-position: center center;
            /* 背景图不平铺 */
            background-repeat: no-repeat;
            /* 当内容高度大于图片高度时，背景图像的位置相对于viewport固定 */
            background-attachment: fixed;
            /* 让背景图基于容器大小伸缩 */
            background-size: cover;
            /* 隐藏溢出页面的部分 */
            overflow: auto;
            /*隐藏滚动条*/
            
            padding-bottom: 22px;
        }

        .centerVbox {
            /* Center Vertically */
            /*position: absolute;*/
            width: 700px;
            /*宽度自动匹配*/
            height: auto;
            /*高度固定*/
            top: 0;
            /*绝对居中，支持响应式*/
            bottom: 5em;
            left: 0;
            right: 0;
            margin: auto;
            /*隐藏滚动条*/
            /* https://blog.csdn.net/weixin_48596030/article/details/123904667 */
        }

        .title {
            font-family: mainTitle;
            /*自制字体*/
            font-size: 2.2em;
            /*字体大小*/
            text-shadow: 3px 3px 5px #708090;
            /*只有前两个参数是纯阴影，有第三个是发光阴影*/
            font-weight: bold;
            /*加粗字体*/
            line-height: 5px;
            color: white;
        }

        .underTitles {
            font-size: 14px;
            font-family: underTitle;
            line-height: 15px;
            /*文本自动换行*/
            word-wrap: break-word;
            font-weight: bold;
            /* 酷炫彩虹渐变效果 
            摘自：https: //cloud.tencent.com/developer/article/1897885?from=15425 */
            background-image: -webkit-linear-gradient(left, #147B96, #E6D205 25%, #e71111 50%, #16e60f 75%, #147B96);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            /*解决内核不同导致的css适配问题*/
            -webkit-background-size: 200% 100%;
            background-size: 200% 100%;
            -webkit-animation: maskedAnimation 5s infinite linear;
            animation: maskedAnimation 5s infinite linear;
        }

        @keyframes maskedAnimation {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: -100% 0;
            }
        }

        footer {
            width: 100%;
            bottom: 8px;
            position: fixed;
            color: white;
            text-align: center;
            font-size: .10em;
            letter-spacing: .2px;
            text-shadow: 3px 3px 5px #708090;
        }

        footer a {
            /*只会对在<footer>之中的<a>有效！*/
            color: white;
            text-decoration: none;
        }

        @font-face {
            /*自制字体*/
            font-family: mainTitle;
            src: url('https://cdn.jsdelivr.net/gh/yzl3014/simplelife/font.TTF');
            /*华文细黑体*/
        }

        @font-face {
            /*自制字体*/
            font-family: underTitle;
            src: url('https://cdn.jsdelivr.net/gh/yzl3014/simplelife/Droid-Sans-Mono.ttf');
<<<<<<< .merge_file_a19620
        }
=======
        }
>>>>>>> .merge_file_a16484
