html,
body {
    margin: 0;
    padding: 0;
    font: 500 .875em PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans;
    min-height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

header,
section,
footer {
    z-index: 9998;
}

section {
    flex: 1;
    width: 100%;
}

.layui-container {
    padding: 0 5px !important;
    position: relative;
    z-index: 9997;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.tags span:not(:first-child) {
    margin-left: 5px;
}

.block-head {
    padding: 10px;
    color: #00fdff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-head .layui-icon {
    margin-right: 10px;
}

.block-head .more a {
    border: 1px solid #00fdff;
    color: #00fdff;
    padding: 2px 5px;
    border-radius: 5px;
    animation: glow 1s ease-in-out infinite alternate;
}

.fix-nav {
    height: 60px;
}

header {
    background-color: rgba(100, 100, 100, 0.5);
    position: relative;
}

header .logobox {
    padding: 10px;
}

header .logo {
    width: 50px;
    height: 50px;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(217, 166, 199, 0.72);
    border: 3px solid #00a0ff;
    transition: all 1.0s;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

header .logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00de, #00a0ff, #00ff00, #ff00de);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(5px);
    animation: glowing 10s ease infinite;
}

header .logo:hover {
    box-shadow: 0 0 10px #fff;
    -webkit-box-shadow: 0 0 19px #fff;
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

header .sitename {
    background: -webkit-linear-gradient(#e91055, #c9ac20);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3bb1dc;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 20px;
    font-size: 20px;
    margin-left: 10px;
    vertical-align: text-top;
}

header .layui-nav-item a {
    font-size: 17px;
}

header .top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(100, 100, 100, 0.5);
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: 600;
}

header .top-navbar img {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}

.gradient-text {
    background: linear-gradient(45deg, #e91055, #c9ac20);
    background: -webkit-linear-gradient(45deg, #e91055, #c9ac20);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

footer {
    background-color: rgba(100, 100, 100, 0.5);
    padding: 10px;
    text-align: center;
    color: #666;
}

footer .copyright a {
    color: #939393;
}

footer .copyright>a:first-of-type {
    color: #4a97af;
}

footer .copyright div {
    margin-top: 10px;
}

footer .copyright img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: bottom;
}

footer .bottom-navbar {
    background-color: rgba(100, 100, 100, 0.8);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 5px;
    z-index: 2;
}

footer .bottom-navbar a {
    color: white;
}

footer .bottom-navbar a.active {
    color: #16b777;
}

footer .bottom-navbar a div {
    margin-top: 5px;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(217, 166, 199, 0.72);
    }

    100% {
        box-shadow: 0 0 20px rgba(217, 166, 199, 0.72), 0 0 30px #00a0ff;
    }
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.slide-container {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.slide-in-text {
    display: inline-block;
    animation: slideInTopLeft 0.7s ease-out forwards, fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes slideInTopLeft {
    0% {
        transform: translate(-50%, -50%) skew(-10deg);
    }

    100% {
        transform: translate(0, 0) skew(0deg);
    }
}

.slide-in-left {
    animation: slideInLeft 0.9s ease-out forwards;
    opacity: 0;
    transform-origin: left center;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
    transform-origin: right center;
}

@keyframes slideInRight {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.home-main {
    text-align: center;
    margin-top: 5px;
    padding: 10px;
}

.home-main h1 {
    background: linear-gradient(#3cd6e7, #eb721c);
    background: -webkit-linear-gradient(#3cd6e7, #eb721c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3bb1dc;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 20px;
    font-size: 28px;
}

.home-main p {
    font-size: 16px;
    margin-top: 25px;
    line-height: 1.5;
    text-align: left;
    text-indent: 2em;
    color: #3cd6e7;
}

.home-main .action {
    margin-top: 30px;
}

.home-main .action div {
    padding: 5px;
}

.home-main .action .layui-btn {
    width: 100%;
}

@keyframes steam {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.project-item {
    padding: 5px;
}

.project-item .box {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    z-index: 1;
    overflow: hidden;
}

.project-item .box::before,
.project-item .box::after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    background: linear-gradient(45deg, #956095, #4e734e, #209191, #7b5640);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
}

.project-item .box::after {
    filter: blur(10px);
}

.project-item .left {
    width: 90px;
    float: left;
}

.project-item .left img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.project-item .right {
    margin-left: 100px;
}

.project-item .right h3 {
    color: white;
    white-space: nowrap;
    overflow: hidden;
    word-break: break-all;
}

.project-item .right .tags {
    margin-top: 5px;
}

.project-item .right p {
    margin-top: 10px;
    height: 40px;
    word-break: break-all;
    overflow: hidden;
    text-indent: 1em;
    color: white;
}

.project-item .right .history {
    margin-top: 20px;
    color: #ccc;
}

.project-item .box:hover {
    box-shadow: 0 0 30px rgba(200, 81, 236, 0.8);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.skills {
    padding: 10px;
    margin-top: 20px;
}

.skills div {
    animation: float 2s ease-in-out infinite;
    transition: transform 0.2s ease;
    padding: 10px;
}

.skills a img {
    width: 100%;
    border-radius: 10px;
}

.skills a img:hover {
    box-shadow: 0 0 30px rgba(22, 186, 170, 0.8);
}

.skills a .name {
    text-align: center;
    margin-top: 10px;
    color: white;
}

.skills div:nth-child(1) {
    animation-delay: 0s;
}

.skills div:nth-child(2) {
    animation-delay: 0.2s;
}

.skills div:nth-child(3) {
    animation-delay: 0.4s;
}

.skills div:nth-child(4) {
    animation-delay: 0.6s;
}

.skills div:nth-child(5) {
    animation-delay: 0.8s;
}

.skills div:nth-child(6) {
    animation-delay: 1s;
}

.skills div:nth-child(7) {
    animation-delay: 1.2s;
}

.skills div:nth-child(8) {
    animation-delay: 1.4s;
}

.skills div:nth-child(9) {
    animation-delay: 1.6s;
}

.skills div:nth-child(10) {
    animation-delay: 1.8s;
}

.skills div:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

.app-hot {
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
}

.breadcrumb {
    margin-top: 10px;
    padding: 10px;
    font-weight: 600;
    background-color: rgba(50, 50, 50, 0.5);
}

.breadcrumb a {
    color: #ddd !important;
}

.breadcrumb a cite {
    color: #57c0cb !important;
}

.categories {
    margin-top: 10px;
    background-color: rgba(50, 50, 50, 0.5);
}

.categories .category {
    padding: 10px;
}

.categories .category:not(:first-child) {
    border-top: 1px solid #ddd;
}

.categories .category a {
    float: left;
    font-size: 16px;
    margin: 5px;
    padding: 5px;
    /* min-width: 80px; */
    text-align: center;
    color: #999;
    border-bottom: 2px solid transparent;
}

.categories .category .active,
.categories .category a:hover {
    border-bottom: 2px solid #57c0cb;
    color: #57c0cb;
    transition: color .3s;
    -webkit-transition: color .3s;
}

.empty {
    text-align: center;
    height: 200px;
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.empty .layui-icon {
    font-size: 25px;
}

.empty span {
    font-size: 15px;
    margin-left: 10px;
}

.product-list {
    margin-top: 10px;
}

.gradient-bg {
    background: linear-gradient(to right, rgba(180, 238, 238, 0.8), rgba(223, 211, 164, 0.8)), linear-gradient(to bottom, rgba(177, 211, 200, 0.8), rgba(198, 181, 218, 0.8));
    background-blend-mode: overlay;
    border-radius: 10px;
    opacity: 0.9;
}

.download-baseinfo {
    margin: 0;
    margin-top: 10px;
    background-color: rgba(50, 50, 50, 0.5);
    padding: 10px;
}

.download-baseinfo .tags {
    margin-top: 10px;
}

.download-baseinfo .tags .view_count {
    color: #888;
    margin-left: 20px;
}

.download-baseinfo .logo {
    width: 100%;
    border-radius: 10px;
}

.download-baseinfo h1 {
    color: #1eff99;
    font-size: 20px;
}

.download-baseinfo .desc {
    color: #ddd;
    margin-top: 10px;
    font-size: 14px;
    text-indent: 2em;
}

.download-baseinfo .btns {
    margin-top: 20px;
}

.download-baseinfo .btns .btn {
    display: inline-block;
    width: 100%;
    background-color: #1e9fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}

.download-baseinfo .btns .qrcode {
    width: 100%;
    max-width: 42px;
    cursor: pointer;
}

.download-baseinfo .btns .disabled {
    background-color: #f5f5f5;
    color: #777;
    cursor: not-allowed;
}

.download-version {
    margin-top: 10px;
    background-color: rgba(50, 50, 50, 0.5);
    padding: 10px;
    border-radius: 10px;
    color: #ccc;
}

.download-version .name {
    font-size: 18px;
    font-weight: 600;
    color: #1eff99;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.download-version .version-info {
    background-color: rgba(50, 50, 50, 0.5);
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.download-version .row {
    display: flex;
    justify-content: space-between;
}

.download-version .row .version-number {
    font-size: 16px;
    font-weight: 600;
    color: #1eff99;
}

.download-version .row .normal {
    color: #ddd;
    font-weight: normal;
}

.download-version .row .version-time {
    color: #888;
}

.download-version .version-info .title {
    margin-top: 10px;
    font-weight: 600;
}

.download-version .version-info .content {
    padding: 10px;
}

.download-version .version-info .content p:not(:first-child) {
    margin-top: 10px;
}

.download-version .version-info .link {
    color: #1eff99;
    text-decoration: underline;
}

.download-version .paragraphs {
    box-sizing: border-box;
    min-height: 200px;
}

.download-version .paragraphs h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #d98f1b;
}

.download-version .paragraphs p {
    margin-top: 10px;
    text-indent: 2em;
}

.download-version .paragraphs img,
.download-version .paragraphs video {
    margin: 10px;
    max-width: 100%;
}