* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* box0 */
.box0 {
    width: 100%;
    /* height: 100vh; */
    position: absolute;
    top: 0;
    left: 0;
    background-color: #5e8b91;
}


.gundong {
    width: 10000px;
    /* 根据实际需求调整宽度 */
    height: 40px;
    /* 根据实际需求调整高度 */
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
}

.gundongitem {
    display: inline-block;
    height: 30px;
    padding: 0 10px;
    border-radius: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 10px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.gundong {
    animation: scrollLeft 100s linear infinite;
    /* 10秒完成一次动画，线性动画，无限循环 */
}


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

.phone {
    width: 80%;
    height: 44px;
    font-size: 17px;
    background: #fff;
    outline: none;
    border: none;
    border-radius: 30px;
    padding-left: 20px;
}

.dinggou {
    width: 100%;
    height: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.dinggou img {
    width: 60%;
    animation: fangda 2s linear infinite;
}

@keyframes fangda {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

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

/* box0 */

/* box1 */

.box1 {
    width: 100%;
    height: 10678px;
    position: relative;
}

.phone1 {
    width: 80%;
    height: 44px;
    font-size: 17px;
    background: #fff;
    outline: none;
    border: none;
    border-radius: 30px;
    padding-left: 20px;
    position: absolute;
    top: 123vw;
    left: 10vw;
}


.code {
    width: 58%;
    height: 44px;
    font-size: 17px;
    background: #fff;
    outline: none;
    border: none;
    border-radius: 30px;
    padding-left: 20px;
    position: absolute;
    top: 143vw;
    left: 10vw;
}

.time {
    width: 21%;
    /* height: 5%; */
    position: absolute;
    top: 145vw;
    left: 68vw;
    font-size: 13px;
    text-align: center;
    color: #fff;
}

.dinggou1 {
    /* background-color: rgba(0, 0, 0, 0.5); */
    width: 100%;
    height: 23vw;
    position: absolute;
    top: 158vw;
    left: 0vw;
}

/* box1 */

/* box2 */
.box2 {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: black;
}

.box2 img {
    width: 82%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* box2 */

/* box3 */
.box3 {
    width: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: black;
}

.box3heard {
    width: 100%;
    height: 44px;
    background-color: rgb(23, 154, 210);
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0%;
    /* left: 0%; */
    z-index: 999;
}

.box3 img {
    margin-top: 44px;
    width: 100%;
}

.inner {
    width: 100%;
    /* height: 300px; */
    background-color: black;
}

h1 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

.item {
    width: 80%;
    height: 200px;
    background-color: aliceblue;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 20px;
}

.item-top {
    display: flex;
    flex-direction: row;
}

.item-top span {
    width: 23px;
    height: 23px;
    border-radius: 3px;
    background-color: black;
    color: aliceblue;
    text-align: center;
}

.item-bottom {
    display: flex;
    flex-direction: row;
    position: relative;
}

.item-bottom .item-left {
    width: 50%;
}

.item-bottom .item-left img {
    width: 127px;
    height: 135px;
    margin-top: 11px;
}

.item-bottom .item-left .text {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: red;
    color: aliceblue;
    text-align: center;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 1%;
}

.item-bottom .item-right {
    width: 50%;
    position: relative;
}

.item-bottom .item-right .item-right-top {
    font-size: 1.3rem;
}

.item-bottom .item-right .item-right-middle {
    font-size: 1.1rem;
    color: #999;
}

.item-bottom .item-right .item-right-middle span {
    font-size: 1.7rem;
    color: #bd9943;
    margin-right: 3px;
}

.item-bottom .item-right .item-right-bottom {
    display: flex;
    width: 58%;
    height: 21%;
    border-radius: 3px;
    color: aliceblue;
    text-align: center;
    background-color: red;
    /* align-content: center; */
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.8rem;
}


.box3-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box3-popup-bg-success {
    width: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;

}

.box3-popup-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.box3-popup-bg-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.box3-popup-bg-content div:nth-child(2) {
    margin-top: 10px;
    color: #169fe8;
}



.box3-popup-content {
    width: 90%;
    /* height: 300px; */
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.box3-popup-content div:nth-child(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.box3-popup-content div:nth-child(2) {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 14px 0;
}

.box3-popup-content div:nth-child(2) input {
    flex: 1;
    margin-left: 10px;
    height: 38px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    padding-left: 10px
}

.box3-popup-content div:nth-child(2) span {
    color: red;
}

.box3-popup-content div:nth-child(3) {
    margin-top: 29px;
    width: 100%;
    height: 40px;
    background-color: #ff5327;
    color: white;
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
}

.guanbi {
    width: 30px;
    color: #999;
}


/* box3 */



/* 加载动画 */
/* From Uiverse.io by abrahamcalsin */
.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #146be6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

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

    50% {
        transform: scale(1);
        opacity: 1;
    }
}