.print-btn {
    position: fixed;
    z-index: 999;
    background-color: #ceb5b5;
    width: 50px;
    height: auto;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    bottom: 20px;
    right: 30px;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
}

.print-btn::before {
    content: url(https://lightx.noonspace.com/w168/w168/MsgInfo/179971835_20240604_14423695.png);
}

.print-btn::after {
    content: "列印"
}

.en .print-btn::after {
    content: "Print"
}

@media screen and (orientation: landscape) {
    .print-btn {
        position: absolute;
        bottom: 25%;
        transform: translateY(100%);
        right: 14px;
    }
}