/* -------------------------------- 

 * 版权所有 (c) 2025 hubweb.cn
 * 保留所有权利
 * www.hubweb.cn

-------------------------------- */
body {
    font-family: SF Pro SC,SF Pro Text,SF Pro Icons,PingFang SC,Helvetica Neue,Helvetica,Arial,sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.devices-div{
    width: 50%;
    margin: 20px auto 0 auto;
}
.tip {
    font-size: 14px;
    color: #9c9c9c;
    max-width: 1030px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0 0;
}
a {
    color: #9c9c9c;
}
a:hover {
    color: #333;
}
p{
    margin:0px 30px 10px 30px;
    line-height: 30px;
}
.nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.navIn{
    transition: transform 0.2s ease;
    width: 220px;
    height: 52px;
    /*float: left;*/
    border-radius: 30px;
    margin: 0;
    color: #4b4b4b;
    background-color: #f6f6f6;
    font-weight: bolder;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    align-self: center;
    display: block;
    cursor:pointer;
    box-shadow: rgba(210, 210, 210, 0.5) 1.5px 1.5px 1px -1px inset, rgba(210, 210, 210, 0.5) -1px -1px 1px 0px inset;
    position: relative;
    overflow: hidden;
    padding-top: 8px;
}
.navIn:hover{
    background-color: #f0f0f0;
    transform: scale(0.98);
}
.navIn:active {
    transform: scale(0.95);
}
.pointer-effect {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    border-radius: 30px;
    background: transparent;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.border-line {
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-hover-line, #ADADAD);
    border-radius: 30px;
    background: transparent;
    clip-path: inset(0px round 9999px);
    mask-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), black, transparent 100%);
}
@media (prefers-color-scheme: dark) {
    body{
        background-color: rgb(29, 29, 29);
    }
    .tip {
        color: rgb(172, 172, 172);
    }
    a:hover {
        color: rgb(245, 245, 245);
    }
    .navIn {
        background-color: rgb(35, 35, 35);
        color: rgb(172, 172, 172);
        box-shadow: rgba(100, 100, 100, 0.5) 1.5px 1.5px 1px -1px inset, rgba(100, 100, 100, 0.5) -1px -1px 1px 0px inset;
    }
    .navIn:hover{
        background-color: rgb(45, 45, 45);
    }
}