@charset "UTF-8";
:root {
    --bg-color: #f0f0f0;
    /* --a-wd: 157.9px; */
    --a-wd: 1fr;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    /* color: rgb(40, 40, 40); */
    color: rgb(20, 20, 20);
    /* font-family: 'HarmonyOS_Regular'; */
    font-family:'HarmonyOS Sans';
    font-weight: 400;
    transition: all 0.5s;
}
@font-face {
    font-family: 'HarmonyOS Sans';
    src:  url('./icon/HarmonyOS_Sans.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

::-webkit-scrollbar {
    width: 0;
}
a {
    text-decoration: none;
    color: #fff;
}
html,body {
    height: 100vh;
    width: 100%;
}
::-webkit-scrollbar {    
    width: 0;
}
body {
    /* background-image: url(https://imgapi.xl0408.top/index.php); */
    background-size: cover;
    background-position: center center;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: +99999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.layout {
    width: 1000px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}
.logoavatar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0 10px;
}
.links {
    display: flex;
}
.links a {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(45px);
    opacity: 0;
    display: none;
}
.links a:nth-child(1) {
    animation: links cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards;
}
.links a:nth-child(2) {
    animation: links cubic-bezier(0.34, 1.56, 0.64, 1) .4s 0.1s forwards;
}
.links a:nth-child(3) {
    animation: links cubic-bezier(0.34, 1.56, 0.64, 1) .4s 0.2s forwards;
}
.links a:nth-child(4) {
    animation: links cubic-bezier(0.34, 1.56, 0.64, 1) .4s 0.3s forwards;
}
@keyframes links {
    0% {
        transform: translateY(45px);
        opacity: 0;
    }
    70% {
        transform: translateY(-8px);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.links .icon {
    width: 20px;
    height: 20px;
}
.linkcar:hover {
    cursor: pointer;
}
.linkcar img {
    display: none;
}


/* 弹窗区域 */


.popup {
    display: none;
}
.boxpopup {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    position: fixed;
    z-index: +1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s;
}

.popup img {
    height: 50%;
    border-radius: 10px;
    transform-origin: center bottom;
    transform: scaleY(0);
    opacity: 0;
    box-shadow: 3px 3px 10px rgba(4, 171, 255, 0.677),
    -3px -3px 10px rgba(4, 171, 255, 0.677);
    animation: popupimg 0.3s ease-in-out forwards;
}
@keyframes popupimg {
    80% {
        opacity: 0.4;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}




.timebox {
    text-align: right;
}
.time {
    font-size: 30px;
    transition: all 0.5s;
}
.sentense {
    backdrop-filter: blur(100px);
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sentense p {
    line-height: 40px;
    font-size: 15px;
}
.navbar {
    padding-left: 5px;
    margin: 10px 0 20px;
    list-style: none;
    display: flex;
    width: 100%;
    height: 30px;
    flex-wrap: wrap;
}
.navbar li {
    backdrop-filter: blur(100px);
    width: 70px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: var(--bg-color);
    cursor: pointer;
    font-size: 13px;
    border-radius: 50px;
}

.color {
    color: rgb(0, 81, 255);
    box-shadow: -2px -3px 2px rgb(59, 121, 255);
}
.main {
    width: 100%;
    /* height: 100%; */
    /* background-color: #ffa1a1; */
}
.items {
    width: 100%;
    height: 100%;
    /* opacity: 0; */
}
.itemlayout {
    display: grid;
    grid-template-columns: repeat(6, var(--a-wd));
    gap: 10px;
}

.itemlayout a {
    backdrop-filter: blur(100px);
    height: 60px;
    border-radius: 5px;
    background-color: var(--bg-color);
    transition: all 0.4s;
    display: flex;
    align-items: center;
    text-decoration: none;
    /* animation: trun 0.5s  2s forwards; */
    opacity: 0;
    position: relative;
    overflow: hidden;
}
.itemlayout a:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 10px rgba(198, 198, 198, 0.842);
}
.items:nth-child(1) a {
    opacity: 1;
} 
@keyframes trun {
    0% {
        transform: translate(-50px) scale(0.8);
        opacity: 0.5;
        filter: blur(20px);
    }
    100% {
        transform: translate(0) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}
.itemlayout a:hover {
    position: relative;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    
    &::before {
        content: '';
        position: absolute;
        top: -150%;
        left: 0;
        width: 30px;
        height: 100%;
        background-color: #ffffff;
    }
    
    &:hover {
        &::before {
        animation: shiny-btn .8s ease-in-out;
        }
    }
}

@keyframes shiny-btn {
    0% {
      transform: scale(0) rotate(45deg);
      opacity: 0;
    }
    10% {
      transform: scale(0) rotate(45deg);
      opacity: 0.5;
    }
    21% {
      transform: scale(4) rotate(45deg);
      opacity: 1;
    }
    100% {
      transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }

.box-sign {
    box-shadow: inset 3px 0px rgb(63, 98, 255);
}
.logoimg {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 3px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.itemlayout a p {
    margin-left: 10px;
    font-size: 14px;
}

.down {
    /* position: fixed;
    left: 0;
    bottom: 0; */
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    /* background-color: #ffb6b6; */
    /* text-align: center; */
}
.down p {
    line-height: 50px;
    margin-left: 2px;
    font-size: 12px;
    color: rgb(63, 63, 63);
}
.down p a {
    color: rgb(83, 83, 83);
}
.downlogo {
    height: 50px;
    text-align: center;
    /* background-color: aqua; */
}
.one-logo img {
    width: 50px;
}
.one-logo p {
    font-weight: 500;
    font-size: 11px;
    font-weight: bold; /* 字体加粗 */
    color: transparent; /* 字体颜色设置为透明，以便显示背景色 */
    background-image: linear-gradient(to right, #00aaff, #a7e591); /* 渐变色 */
    -webkit-background-clip: text; /* 背景剪切为文本，仅限webkit内核浏览器 */
    background-clip: text;
    display: inline-block;
}
.two-logo img {
    width: 30px;
}
.two-logo p {
    text-align: center;
    font-weight: bold; /* 字体加粗 */
    color: transparent; /* 字体颜色设置为透明，以便显示背景色 */
    background-image: linear-gradient(to right, #e66465, #9198e5); /* 渐变色 */
    -webkit-background-clip: text; /* 背景剪切为文本，仅限webkit内核浏览器 */
    background-clip: text;
    display: inline-block;
}
.downlogo a {
    padding: 0 10px 0 10px;
    height: 25px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    overflow: hidden;
}

.main {
    flex: 1;
    /* overflow: auto; */
    /* padding: 10px; */
}
.main::-webkit-scrollbar {
    width: 2.5px;
    height: 5px;
    background-color: transparent; 
}
.main::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgb(0, 81, 255);
}
.downlogo a:hover {
    background-color: #bbdaff;
}
@media screen and (max-width: 1050px) {
    .layout {
        height: 100%;
        width: 100%;
        padding: 20px;
    }
    .itemlayout {
        grid-template-columns: repeat(5, var(--a-wd));
        gap: 10px;
    }
    .main {
        flex: 1;
        overflow: auto;
        padding: 10px;
    }
}

@media screen and (max-width: 870px) {
    .layout {
        height: 100%;
        width: 100%;
        padding: 20px;
    }
    .boxp {
        display: none;
    }
    .sentense {
        margin: 20px auto;
    }
    .itemlayout {
        grid-template-columns: repeat(4, var(--a-wd));
        gap: 10px;
    }
}
@media screen and (max-width: 700px) {
    .itemlayout {
        grid-template-columns: repeat(3, var(--a-wd));
        gap: 5px;
    }
}
@media screen and (max-width: 600px) {
    .timebox a {
        display: none;
    }
}
@media screen and (max-width: 520px) {
    .navbar {
        height: 70px;
    }
}
@media screen and (max-width: 450px) {
    .itemlayout {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .logoavatar {
        height: 60px;
    }
    .logoavatar .links {
        display: none;
    }
    .items {
        padding-bottom: 100px;
    }
    .navbar {
        height: 70px;
    }
}