html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'PingFang HK', '微軟正黑體', Arial, sans-serif;
    font-size: 14px;
}

.desktop-screenshot {
    background: url('/assets/imgs/screenshot.jpg') no-repeat top center / cover
        white;
    width: 100%;
    height: 100%;
}
.desktop-screenshot .screenshot-layer {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    background: inherit;
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
}
.desktop-screenshot .screenshot-layer > tr {
    height: 100%;
}
.desktop-screenshot .screenshot-layer > tr > td {
    z-index: 2;
    position: relative;
}
.desktop-screenshot .screenshot-layer::before {
    content: '';
    position: absolute;
    background: inherit;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    margin: -5px;
}
.desktop-screenshot .warnning-layer {
    color: #fff;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    font-size: 2rem;
    display: block;
    max-width: 768px;
    margin: auto;
}
.desktop-screenshot .warnning-layer a {
    text-decoration: underline;
    color: inherit;
}
@media (min-width: 1200px) {
    .desktop-screenshot .warnning-layer {
        font-size: 2.8rem;
        line-height: 1.5;
    }
}
