/* 
Version:2.2.2
上次更新:2025年6月15日
 */
#body {
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0;
    /* background-image: url("https://z1.ax1x.com/2023/11/26/pi00rGR.jpg");   */
    /* background-image: linear-gradient(45deg, #fbc2eb 0%, #a6c1ee 100%); */
    /* background-image: url("https://api.paugram.com/bing/");
    /* background-repeat: no-repeat; */
    background-attachment: fixed;
    background-size: cover;
    overflow-y: hidden;
    overflow-x: hidden;
    background-image: url(../img/back.png);
    /* backdrop-filter: blur(5px); */
    /* 添加这一行来模糊背景图片 */
    transition: background-image 0.5s ease;
    user-select: none;
    font-family: 仿宋;
    overflow: hidden;

}

#glass {
    background: rgba(255, 255, 255, .35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


#search {
    display: flex;
    align-items: center;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    list-style: none;
    text-decoration: none;
    /* 去除默认的下划线 */
    outline: none;
    /* 去除旧版浏览器的点击后的外虚线框 */
    color: #000;
    /* 去除默认的颜色和点击后变化的颜色 */
}

.UnVisit {
    filter: grayscale(100%);
    cursor: not-allowed;

}

#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    /* 使用fixed定位，确保始终在视口顶部 */
    top: 0;
    left: 0;
    z-index: 9999;
    /* 确保置顶 */
    width: 100%;
    height: 100%;
    opacity: 1;
    /* 初始可见 */
    visibility: visible;
    /* 初始可见 */
    transition: opacity 0.5s ease-out;
    /* 平滑过渡 */
}

#loadingimg {
    object-fit: cover;
}

/* @keyframes load {
    0% {
        display: flex;
        opacity: 1;
    }

    80% {
        display: flex;
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
} */


#CopyRight {
    text-align: center;
    color: rgb(0, 0, 0);
    /* color: gray; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    /* text-align: center; */
    animation: jj 3s ease;
}

#logo {
    width: 30%;
    height: 30%;
    display: flex;
    justify-content: center;
    animation: logodh 4s ease;
}

@keyframes logodh {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    50% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 30%;
        height: 30%;
    }
}

#logoimg {
    padding: 0;
    -webkit-user-drag: none;
    /* border: .5vw solid rgba(200, 200, 200, 0.5); */
    /* border-radius: 50px; */
    animation: edge 2s ease;
}

@keyframes edge {
    from {
        opacity: 0;
        width: 100%;
        transform: rotate(0deg);
    }

    to {
        opacity: 1;
        width: 100%;
        transform: rotate(360deg);
    }
}

.logoimg:hover {
    animation: bounce 0.5s ease;
}

#recWeb {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 0px solid rgb(0, 0, 0);
    width: 60vw;
    padding: 30px;
    font-size: larger;
    flex-wrap: wrap;

    border-radius: 25px;
    background: rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: jj 4s ease;
}

@keyframes jj {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

#times {
    height: 100%;
}

#searchitems {
    animation: jj 5s ease;
}


#SearchBox {
    font-size: 1.5rem;
    min-width: 300px;
    width: 50vw;
    border: 0;
    border-right: 0;
    border-radius: 100px 0 0 100px;
    padding: 11px;
    padding-left: 20px;
    outline: none;
    background: rgba(255, 255, 255, .2);
}

#SearchButton {
    border: 0;
    border-radius: 0 100% 100% 0;
    padding: 10px;
    background: rgba(255, 255, 255, .2);
    display: flex;
    justify-content: center;
    align-items: center;
}


.icon {
    margin: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}

#recWebC {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#searchform {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.searchform_a {
    background-color: #ffffff80;
    border-radius: 20px;
    padding: 5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin: 5px;
}

.searchform_c {
    background-color: rgba(255, 255, 255, .25);
    border-radius: 20px;
    padding: 5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin: 5px;
}

.searchform_c:hover {
    background-color: rgba(255, 255, 255, .15);
    cursor: pointer;
}

#deepsearch {
    color: rgb(74, 45, 243);
    font-size: small;
    align-items: center;
    margin: 0 5px;
    padding: 2.5px 5px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;

    background-color: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

ds {
    display: flex;
    flex-direction: column;
}

.ds {
    margin: 0;
    padding: 0;
}

.smaller {
    font-size: smaller;
}




.icon:hover {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* 缩放比例 */
    }
}

