@import url('bootstrap.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 0.8rem;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}

.container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
    max-width: 80vw;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: Arial, sans-serif;
    z-index: 999;
}

.container #content-signature {
    margin-bottom: 10px;
}

.content #content-name {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.animation_steps h2 {
    font-size: 1rem;
    margin: 1rem 0;
}

.content p {
    font-size: 0.8rem;
    margin: 1rem 0;
}

#content-decorate {
    font-size: 0.8rem;
    margin: 1rem 0;
}

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

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

html {
    background-color: #f5f5f5;
}

.hide {
    display: none;
}

.show {
    display: block;
}


#animated_left_masks {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255);
    z-index: 1;
    animation: animated_left_masks 3s;
    animation-fill-mode: forwards;
}

#animated_right_masks {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255);
    z-index: 1;
    animation: animated_right_masks 3s;
    animation-fill-mode: forwards;
}

@keyframes animated_left_masks {
    0% {
        width: 50%;
    }

    100% {
        width: 0;
    }
}

@keyframes animated_right_masks {
    0% {
        width: 50%;
    }

    100% {
        width: 0;
    }
}


.animation_steps .element {
    opacity: 0;
    animation: fadeInOut 2s forwards;
}

/* 第一个元素 */
.animation_steps .step1 {
    animation-delay: 0s; /* 第一个元素立即开始 */
}

/* 第二个元素 */
.animation_steps .step2 {
    animation-delay: 2s; /* 第二个元素延迟2秒开始 */
}

/* 第三个元素 */
.animation_steps .step3 {
    animation: blink 2s infinite;
    animation-delay: 4s; /* 第三个元素延迟4秒开始 */
}

/* 动画关键帧 */
@keyframes fadeInOut {
    0% {
        opacity: 0; /* 动画开始时不可见 */
    }
    50% { /* 元素显示 */
        opacity: 1;
    }
    100% { /* 元素消失 */
        opacity: 0;
    }
}

.footer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-top: 1px solid #eee;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9em;
}

.footer-content p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.footer-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.8rem;
}

.footer-content a:hover {
    color: #333;
}

.footer-content img {
    height: 15px;
    vertical-align: middle;
    margin-left: 5px;
    transition: opacity 0.3s ease;
}

.footer-content img:hover {
    opacity: 0.8;
}

.support-mobile {
    display: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .footer-container {
        padding: 0.8rem 0;
    }

    .footer-content {
        font-size: 0.8em;
        padding: 0 15px;
    }

    .footer-content a {
        margin: 0 0.5rem;
    }

    .footer-content span:first-child {
        display: block;
        margin-bottom: 0.3rem;
    }

    .support-mobile {
        display: block;
    }

    .support-pc {
        display: none;
    }
}
