.thirdSections {
    height: 100vh;
    width: 100vw;
    background-color: rgb(252, 237, 186);
    position: relative;
    overflow: hidden;
}

.thirdSections .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thirdSections #magic-circle {
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.thirdSections #magic-circle .qimenzhen {
    position: absolute;
    width: 20vh;
    height: 20vh;
    margin-bottom: 1vh;
}

.thirdSections .text {
    position: absolute;
    top: 20%;
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.thirdSections .text .title {
    width: 100%;
    font-size: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.thirdSections .text .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    opacity: 0;
    width: 100%;
}

.thirdSections .t1 .content {
    position: absolute;
    bottom: -50vh;
    font-size: 1.6em;
}

.thirdSections .t2 .content {
    position: absolute;
    bottom: -30vh;
    font-size: 1.2em;
}

.thirdSections .t3 .content {
    position: absolute;
    bottom: -50vh;
    font-size: 1.5em;
}

.thirdSections .t4 .content {
    position: absolute;
    bottom: -50vh;
    font-size: 1.5em;
}

.thirdSections .t4 img {
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translate(-50%, 0);
    width: 30vw;
    height: 30vw;
    opacity: 0.3;
}

.thirdSections .t4 .withimg {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thirdSections .text .content .word {
    display: block;
}

.thirdSections .t2 .content .word {
    color: white;
}

.thirdSections .link-btn {
    padding: 0.5em 1em 0.5em 1em;
    margin-top: 0.5em;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(255, 215, 0);
    text-decoration: none;
    color: black;
    animation: link-btn-ani 3s infinite;
}

.thirdSections .link-btn:hover {
    background-color: rgb(255, 215, 0);
    color: white;
    font-weight: bolder;
}

@keyframes link-btn-ani {

    0%,
    100% {
        clear: background-color;
    }

    50% {
        background-color: rgb(255, 215, 0);
    }
}

.thirdSections .eclipse {
    border-radius: 50% / 50%;
    margin-bottom: 1vh;
}

.thirdSections .outer1 {
    position: absolute;
    width: 60vw;
    height: 20vh;
    left: 50%;
    top: 5vh;
    transform: translate(-50%, 0);
}

.thirdSections .inner1 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.thirdSections .outer2 {
    position: relative;
    width: 110vw;
    height: 30vh;
    left: 50%;
    top: 5vh;
    transform: translate(-50%, 0);
}

.thirdSections .inner2 {
    position: relative;
    width: 100%;
    height: 100%;
}

.thirdSections .outer3 {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150vw;
    height: 37vh;
}

.thirdSections .inner3 {
    position: relative;
    width: 100%;
    height: 100%;
}

@keyframes ani1 {

    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    }

    60% {
        box-shadow: 0px 0px 0px 36px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* .thirdSections svg text {
  fill: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 50px rgba(255, 215, 0, 0.8));
} */

.thirdSections #coin-tornado {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
    width: 100vw;
    height: 90vh;
}

.thirdSections #coin-tornado span {
    position: absolute;
    width: 32px;
    height: 32px;
    background: url('../../tongqian.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 50%;
    box-shadow: 0 1px 0 5px rgba(254, 254, 255, 0.2), 0 1px 0 7px rgba(245, 254, 255, 0.1), 0 1px 21px rgba(253, 253, 245, 1);
    animation: coin-anim 3s ease-in-out infinite;
}

.thirdSections #coin-tornado span::before {
    content: '';
    width: 290px;
    height: 2px;
    position: absolute;
    top: 53%;
    transform: translateY(-45%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), transparent);
}

@keyframes coin-anim {
    0% {
        transform: rotate(305deg) translateX(0);
        opacity: 1;
    }

    40% {
        opacity: 0.8;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(305deg) translateX(-900px);
        opacity: 0;
    }
}

.thirdSections #coin-tornado span:nth-child(1) {
    top: 5%;
    left: 100%;
    animation-delay: 0;
    animation-duration: 4s;
}

.thirdSections #coin-tornado span:nth-child(2) {
    top: 30%;
    left: 150%;
    animation-delay: 0.3s;
    animation-duration: 4s;
}

.thirdSections #coin-tornado span:nth-child(3) {
    top: 50%;
    left: 90%;
    animation-delay: 0.3s;
    animation-duration: 3s;
}

.thirdSections #coin-tornado span:nth-child(4) {
    top: 15%;
    left: 120%;
    animation-delay: 0.7s;
    animation-duration: 3s;
}

.thirdSections #coin-tornado span:nth-child(5) {
    top: 20%;
    left: 60%;
    animation-delay: 0.6s;
    animation-duration: 2.5s;
}

.thirdSections #coin-tornado span:nth-child(6) {
    top: -1%;
    left: 70%;
    animation-delay: 0.8s;
    animation-duration: 3s;
}

.thirdSections #wenchangta {
    position: absolute;
    width: 50vw;
    height: 70vh;
    top: 5vh;
    left: 50%;
    transform: translate(-50%, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/public-static/wenchangta.png');
    opacity: 0.55;
}

.thirdSections #maobi {
    position: absolute;
    width: 10vw;
    height: 12vw;
    top: 60%;
    right: 8%;
    transform: translate(-50%, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/public-static/maobi80x90.png');
    opacity: 0.75;
}

.thirdSections #shujuan {
    position: absolute;
    width: 16vw;
    height: 14vw;
    top: 60%;
    left: 8%;
    transform: translate(-50%, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/public-static/shujuan100x79.png');
    opacity: 0.55;
}

@keyframes ani-bounce {

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

    50% {
        transform: translateY(14px);
    }
}

.thirdSections .backImg {
    position: absolute;
    overflow: hidden;
    opacity: 0.6;
}

.thirdSections .backImg .img1 {
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/public-static/yu_dong_shao_dan_tu.jpg');
}

.thirdSections .backImg .img2 {
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/public-static/kongzi_sheng_ji_tu.jpg');
    opacity: 0;
    display: none;
}

.thirdSections .backImg .img3 {
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/public-static/queqiaoxianghui.jpg');
    opacity: 0;
    display: none;
}

.thirdSections .backImg .img4 {
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/public-static/yu_dong_shao_dan_tu_2.jpg');
    opacity: 0;
    display: none;
}