html,body {
    margin: 0;
    height: 100%;
}

body {
    font-family: '幼圆', sans-serif !important;
    /*background: linear-gradient(to bottom, #ffffff 45%, #fdc7d2 90%) scroll;*/
    background-position: center top;
    background-size: 30px 30px;
    background-color: #fcfcfc;
    background-image: linear-gradient(to right, rgba(37, 82, 110, .1) 1px, transparent 1px), linear-gradient(to bottom, rgba(37, 82, 110, .1) 1px, transparent 1px)
}


.title-container {
    position: relative;
}

.title-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.title_body{
    color: #fff;
    /* 字间距 */
    letter-spacing: 2px;
    text-align: center;
    outline: none;
    background-image: linear-gradient(to right, blue,
    #66ffff 10%, #89f1d2 20%,
    #b8f3e0 30%, #CCCCFF 40%,
    #00FFFF 50%, #CCCCFF 60%,
    #b8f3e0 70%, #89f1d2 80%,
    #66FFFF 90%, blue 100%);
    /* 改变background-size是为了让动画动起来 */
    background-size: 200% 100%;
    /* 按照文字拆分背景 */
    -webkit-background-clip: text;
    /* 将字体设置成透明色 */
    -webkit-text-fill-color: transparent;
    /* 自定义属性--c，可通过var函数对其调用 */
    --c: #19a1d4;
    /* 调用自定义属性--c，设置文字阴影（发光效果） */
    text-shadow: 0 0 10px var(--c),
    0 0 20px var(--c),
    0 0 40px var(--c),
    0 0 80px var(--c),
    0 0 160px var(--c);
    /* 执行动画：动画名 时长 线性的 无限次播放 */
    animation: masked-animation 4s linear infinite;
}

/* 定义动画 */
@keyframes title_animate {
    to{
        /* 色相旋转滤镜（设置度数可改变颜色） */
        filter: hue-rotate(360deg);
    }
}

@keyframes masked-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.page-navigator {
    display: flex;
}

.page-navigator li {
    margin: 0 10px;
}

ol, p {
    margin: 0;
}

ol {
    list-style: none;
    padding: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-corner {
    background: unset;
}

::-webkit-scrollbar-thumb {
    background: hsla(0, 0%, 52.9%, .4);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: hsla(0, 0%, 52.9%, .1);
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

.avatar-img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border: rgba(255, 255, 255, .4) 4px solid;
}

.heart {
    background-color: #ff5162;
    display: inline-block;
    height: 30px;
    position: relative;
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.lover:hover .heart {
    animation: heartbeat 1s infinite;
}

.heart:before, .heart:after {
    content: "";
    background-color: #ff5162;
    border-radius: 50%;
    height: 30px;
    position: absolute;
    width: 30px;
}

.heart:before {
    top: -15px;
    left: 0;
}

.heart:after {
    left: 15px;
    top: 0;
}

@keyframes heartbeat {
    0% {
        transform: scale(1) rotate(-45deg);
    }
    20% {
        transform: scale(1.25) rotate(-45deg);
    }
    40% {
        transform: scale(1.5) rotate(-45deg);
    }
}

.lover-container {
    max-width: 500px !important;
    width: 500px;
    height: 50vh;
}

.lover-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    object-fit: cover;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
}

.lover-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAKUlEQVQImU3IMREAIAgAwJfNkQCEsH8cijjpMf6vnXlQaIiJFx+omEBfmqIEZLe2jzcAAAAASUVORK5CYII=);
}

.main-hero-header, .main-hero-waves-area {
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 0;
}

.main-hero-waves-area {
    bottom: -5px;
}

.waves-area .waves-svg {
    width: 100%;
    height: 5rem
}

.waves-area .parallax > use {
    -webkit-animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite
}

.waves-area .parallax > use:first-child {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    fill: hsla(0, 0%, 100%, .7)
}

.waves-area .parallax > use:nth-child(2) {
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    fill: hsla(0, 0%, 100%, .5)
}

.waves-area .parallax > use:nth-child(3) {
    -webkit-animation-delay: -4s;
    animation-delay: -4s;
    -webkit-animation-duration: 13s;
    animation-duration: 13s;
    fill: hsla(0, 0%, 100%, .3)
}

.waves-area .parallax > use:nth-child(4) {
    -webkit-animation-delay: -5s;
    animation-delay: -5s;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    fill: #fff
}

@-webkit-keyframes move-forever {
    0% {
        -webkit-transform: translate3d(-90px, 0, 0);
        transform: translate3d(-90px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(85px, 0, 0);
        transform: translate3d(85px, 0, 0)
    }
}

@keyframes move-forever {
    0% {
        -webkit-transform: translate3d(-90px, 0, 0);
        transform: translate3d(-90px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(85px, 0, 0);
        transform: translate3d(85px, 0, 0)
    }
}

.lover-card-title {
    background: -webkit-linear-gradient(left, red, #00f);
    background: -o-linear-gradient(right, red, #00f);
    background: -moz-linear-gradient(right, red, #00f);
    background: linear-gradient(to right, red, #00f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avatar-md img {
    width: 65px;
    height: 65px;
}

#loveList, .list-content {
    max-width: 650px;
    width: 100%;
}

#loveList section {
    display: block;
    padding-top: 50%;
    background-position: 50% 50%;
    background-color: #eee;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.statusIcon {
    width: 18px;
    height: 18px;
    margin-right: .8rem;
}

.indexPlate a:hover {
    color: initial;
    text-decoration: none;
}

.indexPlate a {
    color: inherit;
}

.commentlist {
    clear: both;
}

.commentlist .comment {
    clear: both;
    margin: 15px 0;
    margin-left: 65px;
    position: relative;
    margin-bottom: 20px;
}

.commentlist .comment .comment-avatar {
    position: absolute;
    left: -65px;
    border-radius: 30%;
    overflow: hidden;
    box-shadow: rgba(79, 152, 214, 0.09) 2px 3px 12px;
}

.commentlist .comment .comment-avatar .avatar {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    width: 50px;
    height: 50px;
}

.commentlist .comment .comment-body {
    padding: 4px 10px;
    border: #e1c6ce solid 0.5px;
    border-radius: 5px;
}

.commentlist .comment .comment_author {
    position: relative;
    color: #bb355d;
    font-family: "幼圆", sans-serif;
}

.commentlist .comment .comment-text {
    padding: 10px 0;
    color: #282828;
    font-family: "宋体", sans-serif;
}

.commentlist .comment .comment-text img {
    width: 32px;
}

.commentlist .comment .comment_reply {
    display: block;
    text-align: right;
    margin: 0;
    font-size: 12px;
    color: #757e91;
}

.commentlist em {
    padding-left: 6px;
    color: #A8A8A8;
    font-size: 12px;
    font-style: normal;
}

.commentlist p {
    color: #3d464d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.comments-statics {
    background: -webkit-linear-gradient(90deg, rgba(255, 90, 57, 1) 0%, rgba(244, 123, 158, 1) 46%, rgba(255, 0, 44, 1) 100%);
    background: -o-linear-gradient(90deg, rgba(255, 90, 57, 1) 0%, rgba(244, 123, 158, 1) 46%, rgba(255, 0, 44, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(255, 90, 57, 1) 0%, rgba(244, 123, 158, 1) 46%, rgba(255, 0, 44, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 90, 57, 1) 0%, rgba(244, 123, 158, 1) 46%, rgba(255, 0, 44, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.go-back {
    margin-top: 4px;
    border: #fba3d4 solid 1px;
    padding: 6px 10px;
    border-radius: 3px;
}

.go-back:hover {
    border: #fa5fb8 solid 1px;
    box-shadow: #fdc8e4 0px 2px 3px;
}

.list-text {
    line-height: 2.2;
    text-align: center;
}

.bigfontNum {
    font-size: 2rem;
}

.indexPlate .card {
    margin-bottom: 2rem;
}

@media screen and (max-width: 600px) {
    .avatar-img {
        height: 64px;
        width: 64px;
        object-fit: cover;
        border: rgba(255, 255, 255, .4) 2px solid;
    }

    .lover-container {
        max-width: 500px !important;
        width: 500px;
        height: 35vh;
    }

    .waves-area .waves-svg {
        width: 100%;
        height: 3rem;
    }

    .bigfontNum {
        font-size: 1rem;
    }

    .list-content {
        max-width: 650px;
        width: 90%;
    }
}

.blog-all {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 5px;
}

.blog-img {
    /*适应父类大小*/
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 8px auto 0;
    color: #000000;
}

.blog-others {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
}

.blog-author {
    font-size: 0.9rem;
    font-family: "幼圆", sans-serif;
    font-weight: 600;
}

.blog-category {
    font-size: 0.7rem;
    font-family: "幼圆", sans-serif;
    padding: 4px 8px;
    border-radius: 0.3rem;
    box-shadow: #b1d2e1 0px 0.5px 1px 0px;
    background-color: #dae9f8;
    align-self: center;
}

.blog {
    background-color: #ffffff;
    flex: 1; /* 每个列占据相等的空间 */
    min-width: 300px;
    max-width: 320px;
    max-height: 250px;
    border-radius: 0.5rem;
    border: #b1d2e1 solid 0.1rem;
    transition: all 0.4s ease-in;
    margin-bottom: 2rem;
    overflow: hidden;
}

.blog:hover {
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border-radius: 1.3rem;
    border: #77b5e8 solid 0.1rem;
    transition: all 0.2s ease-in;
}

.blog a {
    color: #000;
    text-decoration: none;
}

.blog a:hover {
    color: #77b5e8;
    text-decoration: none;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .blog {
        flex-basis: 100%; /* 当屏幕宽度小于或等于 768px 时，每列占据 100% 的宽度 */
    }
}

.blog-main {
    color: rgb(186 6 58);
    font-family: "幼圆", sans-serif;
    border: #e1c6ce solid 0.5px;
    border-radius: 1rem;
    padding: 1rem;
    line-height: 1.6;
}


#article img {
    max-width: 100%;
}

/* Make clicks pass-through */
#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    background: #29d;

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #29d, 0 0 5px #29d;
    opacity: 1.0;

    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.anniversary-main {
    padding: 15px;
    border-radius: 10px;
    border: #e1c6ce solid 0.5px;
    width: 70%;
    min-width: 350px;
    margin: auto;
}

.anniversary-title {
    font-size: 18px;
    margin: 5px 5px 15px;
}

.anniversary-list {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;;
}

@media (max-width: 768px) {
    .anniversary-list {
        width: 90%;
    }
}

.anniversary-body {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .anniversary-body {
        gap: 12px;
    }
}

.anniversary-img {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: rgb(0, 0, 0) 2.4px 2.4px 2.8px;
}

@media (max-width: 768px) {
    .anniversary-img {
        width: 56px;
        height: 56px;
    }
}

.anniversary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.a-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    justify-self: flex-start;
}

@media (max-width: 768px) {
    .a-title {
        font-size: 16px;
    }
}

.a-time {
    font-size: 13px;
    color: rgb(59, 57, 57);
    justify-self: flex-start;

}

.a-time span {
    font-size: 15px;
    font-weight: bold;
    margin: 0 6px;
    color: #ff486d;
}

/* 侧边栏容器 */
.sidebar-nav {
    position: fixed;
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 侧边栏项 */
.nav-item {
    width: 45px;
    height: 55px;
    padding: 10px 10px;
    margin: 4px 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    border-radius: 8px;
}

.nav-item:hover {
    background-color: #98c1e84d;
}

.nav-item{
    color: #000000;
    font-weight: bold;
    font-size: 12px;
    }

.photo-form {
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    width: 40%;
    min-width: 260px;
    padding: 20px 40px;
    border: #fba3d4 solid 0.5px;
    border-radius: 10px;
    box-shadow: #d46d9e 0px 0px 5px;
    background-color: rgba(255, 228, 235, 0);
    margin-top: 2rem;
}

.photo-password {
    width: 70%;
    min-width: 180px;
    padding: 10px 15px;
    border: 1px solid #f8a0a0;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin: 18px auto -18px;
}

.photo-password:focus {
    border: 1px solid #fa7474;
    background-color: #dfedf3;
    box-shadow: 0 3px 4px rgba(255, 251, 251, 0.86);
    outline: none;
}

.photo-password::placeholder {
    color: #21a4bd;
    opacity: 0.5;
}

.photo-button {
    align-items: center;
    background-image: linear-gradient(144deg, #ef7d7d, #f34280 50%, #b7faff);
    border: 0;
    border-radius: 17px;
    box-shadow: rgba(250, 36, 155, 0.65) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 16px;
    justify-content: center;
    line-height: 1em;
    max-width: 70%;
    min-width: 60px;
    padding: 2px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
}

.photo-button:active,
.photo-button:hover {
    outline: 0;
}

.photo-button-text {
    background-color: rgb(255, 152, 171);
    padding: 16px 24px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.photo-button-text:hover {
    background: none;
}

.photo-button:active {
    transform: scale(0.9);
}

.photo-modal {
    display: none; /* 默认不显示 */
    position: fixed;
    align-items: center;
    justify-content: center;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    min-height: 300px;
    min-width: 320px;
    padding: 10px 30px;
    border: #fbc2fd solid 0.5px;
    border-radius: 10px;
    box-shadow: #757e91 0px 0px 5px;
    background-color: #fafafa;
}

@media (max-width: 480px) {
    .photo-modal {
        width: 60%; /* 在非常小的屏幕上占满整个宽度 */
        padding: 5px 20px; /* 进一步减少内边距 */
        min-height: 320px; /* 减少最小高度 */
    }
}

.close-btn {
    position: absolute; /* 绝对定位 */
    top: 0.2rem;
    right: 0.5rem;
    color: #7e7777;
    font-size: 1.4rem;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.photos-manager {
    display: flex;
    justify-self: center;
    width: 100%;
    gap: 25px;
    padding: 20px 25px;
    border: #fbc2fd solid 0.5px;
    border-radius: 10px;
    box-shadow: #757e91 0px 0px 5px;
    background-color: #ffffff;
    margin-top: 2rem;
}

@media (max-width: 1000px) {
    .photos-manager {
        display: flex;
        flex-direction: column;
        min-width: 400px;
    }
}

.album-manager, .photo-manager {
    width: 48%;
    height: 650px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: #fbc2fd solid 0.5px;
    border-radius: 10px;
    min-width: 400px;
}

.album-list {
    height: 85%;
    overflow-y: scroll;
}
.photo-list-container{
    height: 525.5px;
    overflow-y: scroll;

}

.photo-list {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
}

.album-list::-webkit-scrollbar {
    display: none;
}

.photo-list-container::-webkit-scrollbar {
    display: none;
}


@media (max-width: 1000px) {
    .album-manager, .photo-manager {
        width: 100%;
        min-width: auto;
    }
}

.album-item, .photo-item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 0.8rem;
}

.album-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.photo-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.album-item span {
    flex: 1;
    margin-left: 10px;
}

.album-item div {
    flex: 1;
    margin-left: 10px;
}

.photo-item span {
    flex: 0.6;
    margin-left: 20px;
}

.photo-item div {
    flex: 1;
    margin-left: 5px;
}

.photo-manager {
    flex: 1;
    display: flex;
    border: #fbc2fd solid 0.5px;
    border-radius: 10px;
}

.photo-filter{
    position: absolute;
    right: 15%;
    color: #efb7f5;
    font-size: 14px;
    font-weight: bold;
    min-width: 60px;
    padding: 5px 10px;
    border: 1px solid #efb7f5;
    border-radius: 5px;
    background-color: #fff;
    transition: box-shaow 0.2s ease;
}

.photo-filter:focus {
    box-shadow: #f468ed 0px 0px 0px 1px;
}
.photo-filter:focus-visible {
    outline: none;
}


.album-filter option:hover{
    font-weight: bold;
}

.category-button, .album-button {
    background-color: rgb(250, 250, 250);
    border: 1.5px solid #fbc2fd;
    font-size: 14px;
    padding: 5px 6px;
    border-radius: 7px;
    color: #fbc2fd;
}

.update-button {
    background-color: rgb(85, 209, 237);
    border: 1px solid rgb(85, 209, 237);
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 7px;
    transition: .3s;
    cursor: pointer;
    color: #fff;
}

.update-button:hover {
    border: 1px solid rgb(66, 197, 226);
    background-color: transparent;
    color: rgb(66, 197, 226);
}

.update-button:focus {
    box-shadow: 0px 0px 0px 1.5px rgb(33, 194, 228), 0px 0px 0px 3px rgb(13, 181, 225);
    outline: none;
}

.delete-button {
    background-color: rgb(239, 88, 88);
    border: 1px solid rgb(239, 88, 88);
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 7px;
    transition: .3s;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
}

.delete-button:hover {
    border: 1px solid rgb(216, 22, 22);
    background-color: transparent;
    color: rgb(216, 22, 22);
}

.delete-button:focus {
    box-shadow: 0px 0px 0px 1.5px rgb(194, 16, 16), 0px 0px 0px 3px rgb(169, 13, 13);
    outline: none;
}


/*爱心加载动效*/
.loveBox {
    display: flex;
    justify-content: center;
}

.loveLine {
    height: 20px;
    width: 110px;
    margin: 10px auto;
}

.loveLine li {
    float: left;
    list-style: none;
    width: 2px;
    height: 2px;
    border-radius: 1px;
    margin-right: 1px;
}

.loveLine li:nth-child(1) {
    background-color: red;
    animation: jump1 3s infinite;
}

.loveLine li:nth-child(2) {
    background-color: rgb(238, 118, 5);
    animation: jump2 3s 0.2s infinite;
}

.loveLine li:nth-child(3) {
    background-color: rgb(106, 10, 233);
    animation: jump3 3s 0.4s infinite;
}

.loveLine li:nth-child(4) {
    background-color: darkmagenta;
    animation: jump4 3s 0.6s infinite;
}

.loveLine li:nth-child(5) {
    background-color: rgb(245, 11, 147);
    animation: jump5 3s 0.8s infinite;
}

.loveLine li:nth-child(6) {
    background-color: rgb(32, 9, 231);
    animation: jump4 3s 1.0s infinite;
}

.loveLine li:nth-child(7) {
    background-color: rgb(36, 170, 81);
    animation: jump3 3s 1.2s infinite;
}

.loveLine li:nth-child(8) {
    background-color: #f62e74;
    animation: jump2 3s 1.4s infinite;
}

.loveLine li:nth-child(9) {
    background-color: red;
    animation: jump1 3s 1.6s infinite;
}

@keyframes jump1 {

    30%,
    50% {
        height: 6px;
        transform: translateY(-3px);
    }

    70%,
    100% {
        height: 2px;
        transform: translateY(0px);
    }
}

@keyframes jump2 {

    30%,
    50% {
        height: 12px;
        transform: translateY(-6px);
    }

    70%,
    100% {
        height: 2px;
        transform: translateY(0px);
    }
}

@keyframes jump3 {

    30%,
    50% {
        height: 16px;
        transform: translateY(-7.5px);
    }

    70%,
    100% {
        height: 2px;
        transform: translateY(0px);
    }
}

@keyframes jump4 {

    30%,
    50% {
        height: 18px;
        transform: translateY(-6px);
    }

    70%,
    100% {
        height: 2px;
        transform: translateY(0px);
    }
}

@keyframes jump5 {

    30%,
    50% {
        height: 20px;
        transform: translateY(-4.5px);
    }

    70%,
    100% {
        height: 2px;
        transform: translateY(0px);
    }
}

/*加载*/
/* From Uiverse.io by Donewenfu */
.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #fafafa;
    z-index: 9999;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
    position: absolute;
    top: 0;
    content: '';
}

.jimu-primary-loading:before {
    left: -19.992px;
}

.jimu-primary-loading:after {
    left: 19.992px;
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
    background: #2ea0f1;
    -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    width: 13.6px;
    height: 32px;
}

.jimu-primary-loading {
    text-indent: -9999em;
    margin: auto;
    position: absolute;
    right: calc(50% - 6.8px);
    top: calc(50% - 16px);
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}

@-webkit-keyframes loading-keys-app-loading {

    0%,
    80%,
    100% {
        opacity: .75;
        box-shadow: 0 0 #2ea0f1;
        height: 32px;
    }

    40% {
        opacity: 1;
        box-shadow: 0 -8px #2ea0f1;
        height: 40px;
    }
}

@keyframes loading-keys-app-loading {

    0%,
    80%,
    100% {
        opacity: .75;
        box-shadow: 0 0 #2ea0f1;
        height: 32px;
    }

    40% {
        opacity: 1;
        box-shadow: 0 -8px #2ea0f1;
        height: 40px;
    }
}


/*照片详情页的显示转换*/
.btn-container i {
    display: inline-block;
    position: relative;
    top: -9px;
}

label {
    font-size: 13px;
    color: #424242;
    font-weight: 500;
}

.btn-color-mode-switch {
    display: inline-block;
    margin: 0px;
    position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
    margin: 0px;
    width: 140px;
    height: 30px;
    background: #E0E0E0;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
    display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
    content: attr(data-on);
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    top: 7px;
    right: 20px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
    content: attr(data-off);
    width: 70px;
    height: 16px;
    background: #fff;
    border-radius: 26px;
    position: absolute;
    left: 2px;
    top: 2px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 6px -2px #111;
    padding: 5px 0px;
}

.btn-color-mode-switch > .alert {
    display: none;
    background: #FF9800;
    border: none;
    color: #fff;
}

.btn-color-mode-switch input[type="checkbox"] {
    cursor: pointer;
    width: 50px;
    height: 25px;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
    background: #151515;
    color: #fff;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
    content: attr(data-on);
    left: 68px;
    background: #3c3c3c;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
    content: attr(data-off);
    right: auto;
    left: 20px;
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
    display: block;
}

.dark-preview {
    background: #0d0d0d;
}

.white-preview {
    background: #fff;
}

.mobile-toolbar {
    display: none;
}

@media screen and (max-width: 760px) {
    .mobile-toolbar {
        color: #fff;
        width: 100%;
        height: 52px;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999;
        background-image: linear-gradient(to left, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.54));
        display: flex;
        justify-content: space-around;
    }
    .mobile-toolbar a{
        color: #000000;
        font-weight: bold;
        font-size: 14px;
    }

    .sidebar-nav {
        display: none;
    }
}