:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    background-color: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    background-color: #B7B4BB;
    border-radius: 4px;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #272727;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #4d4d4d;
}

::-webkit-scrollbar-track {
    background-color: #000;
}

html, body {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: #757575;
}

.home {
    width: 100%;
    overflow: hidden auto;
    color: #757575;
}

.pc-header {
    border-bottom: 1px solid #272727;
}
.pc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    height: 80px;
    max-width: 1430px;
    margin: 0 auto;
}
.pc-nav .logo {
    height: 60px;
}
.pc-nav .list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pc-nav .list a {
    padding-left: 16px;
    padding-right: 16px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}
.pc-nav .list a:hover {
    opacity: 0.7;
}
.pc-nav .list .language {
    flex: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.pc-nav .list .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 27px;
    padding-right: 27px;
    border-radius: 30px;
    min-width: 183px;
    height: 60px;
    font-size: 18px;
    color: #fff;
    margin-left: 108px;
    cursor: pointer;
}
.pc-nav .list .download-btn img {
    width: 24px;
    height: 24px;
}

.h5-nav {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #000;
    border-bottom: 1px solid #272727;
    width: 100%;
    height: 80px;
    z-index: 100;
}
.h5-nav .logo {
    width: 66px;
}
.h5-nav .menu-open svg {
    width: 24px;
    height: 20px;
}
.h5-nav .menu-off {
    position: absolute;
    right: 18px;
    top: 16px;
    display: none;
}
.h5-nav .menu-off .close {
    color: #fff;
    font-size: 30px;
}
.h5-nav .menu-list {
    position: absolute;
    top: 80px;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 30%;
    background-color: #000;
    width: 100%;
    height: 100dvh;
    font-size: 32px;
}
.h5-nav .menu-list a {
    color: #fff;
    text-transform: uppercase;
}
.h5-nav .menu-list .language {
    width: 24px;
    height: 24px;
}

/* banner */
.banner {
    width: 100%;
    max-width: 1310px;
    min-height: 650px;
    margin: 70px auto 0;
}
.banner-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner .banner-left {
    width: 570px;
}
.banner .banner-left .title {
    max-width: 532px;
    width: 100%;
}
.banner .banner-left .desc {
    font-size: 24px;
    color: #F8861C;
    font-weight: bolder;
    margin-top: 30px;
}
.banner-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 10%;
    margin-top: 50px;
}
.banner-btm .jump {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #F8861C;
    border-radius: 6px;
    min-width: 236px;
    max-width: 300px;
    height: 60px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}
.banner-btm .jump img {
    width: 24px;
}
.banner-btm .jump span {
    font-size: 24px;
    white-space: nowrap;
    font-weight: 500;
}

.banner-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 67px;
}
.banner-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.banner-list-item > img {
    width: 60px;
    height: 60px;
}
.banner-list-item-desc {
    color: #fff;
}
.banner-list-item-desc > img {
    width: auto;
    height: 30px;
}
.banner-list-item-desc > span {
    display: block;
    line-height: 1;
    font-size: 16px;
    margin-top: 5px;
}

.banner-right-box {
    flex: 1;
    max-width: 600px;
    width: 100%;
}
.banner-right {
    position: relative;
    background: url("./images/banner/phone.png") no-repeat center right 40% / 180px auto;
    width: 100%;
    height: 100%;
}
.banner-right .banner-right-img {
    position: absolute;
}
.banner-right .banner-right-img img {
    width: 100%;
}
.banner-right .banner-right-img:nth-child(1) {
    bottom: 15%;
    left: 12%;
    width: 30%;
}
.banner-right .banner-right-img:nth-child(2) {
    bottom: 5%;
    right: 15%;
    width: 30%;
}
.banner-right .banner-right-img:nth-child(3) {
    right: 5%;
    top: 10%;
    width: 22%;
}
.banner-right .banner-right-img:nth-child(4) {
    left: 32%;
    top: 15%;
    width: 15%;
}

/* about */
.about {
    position: relative;
    padding-top: 50px;
    width: 100%;
    max-width: 1310px;
    margin: 200px auto 0;
}
.about-text {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 812px;
}
.about-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-title {
    width: auto;
    height: 50px;
}
.about_img {
    width: auto;
    height: 409px;
}
.about-desc {
    margin-top: 30px;
}
.about-desc .about-desc-list p {
    line-height: 1.4;
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    word-break: break-word;
}

/* WHITEPAPER */
.whitepaper {
    width: 100%;
    margin-top: 100px;
}
.whitepaper_bg {
    width: 100%;
}
.whitepaper-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.whitepaper-main h3 {
    font-size: 60px;
    color: #F8861C;
}
.whitepaper-main .whitepaper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border-radius: 6px;
    min-width: 236px;
    height: 60px;
    margin-top: 80px;
    cursor: pointer;
}
.whitepaper-main .whitepaper-btn span {
    font-size: 18px;
    color: #000;
}
.whitepaper-main .whitepaper-btn img {
    width: 24px;
    height: 24px;
}
.whitepaper-main-h {
    margin-top: 5%;
}


.download {
    max-width: 1430px;
    width: 100%;
    margin: 150px auto 0;
}
.download-title {
    width: 100%;
}
.download-title img {
    width: 100%;
    max-width: 977px;
}
.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}
.download-content > img {
    width: 512px;
}
.download-content-right {
    flex: 1;
    padding-top: 190px;
    max-width: 60%;
}
.download-content-right .any {
    max-width: 600px;
    width: 100%;
}
.download-content-right-scan {
    display: flex;
    align-items: center;
    gap: 43px;
    margin-top: 82px;
    margin-bottom: 88px;
}
.download-content-right-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #6D6D6D;
    width: 214px;
    height: 214px;
}
.download-content-right-img article {
    border-radius: 10px;
    width: 200px;
    height: 200px;
    img {
        border-radius: 10px;
    }
}
.download-content-right-text {
}
.download-content-right-text-desc {
    font-size: 24px;
    color: #fff;
}

.download-content-right-text-title {
    font-size: 30px;
    color: #ADFF00;
    margin-top: 40px;
}
.download-content-right-ia {
    display: flex;
    align-items: center;
    gap: 8%;
    width: 100%;
}
.download-content-right-ia p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.download-content-right-ia p img {
    width: 240px;
}

/* Web */
.web {
    padding-top: 50px;
    width: 100%;
    max-width: 1310px;
    margin: 100px auto 0;
}
.web3-png {
    width: 100%;
    max-width: 1261px;
}
.web3-title {
    max-width: 100%;
    margin: 70px 0;
}
.web3-title .we3-title-text {
    width: 100%;
    color: #fff;
}
.web3-title .we3-title-text h3 {
    font-size: 60px;
    color: #ADFF00;
    width: 100%;
}
.web3-title .we3-title-text p {
    font-size: 26px;
    margin-top: 70px;
}
.web3-title img {
    width: 510px;
}
.we3-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 59px;
    max-width: 100%;
    margin: 0 auto;
}
.we3-list .web3-list-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 30px 20px;
    border-radius: 26px;
    border: 1px solid #6D6D6D;
    background: #0F0F0F;
    max-width: 290px;
}
.we3-list .web3-list-item:nth-of-type(1) {
    margin-top: 30px;
}
.we3-list .web3-list-item:nth-of-type(3) {
    margin-top: 50px;
}
.we3-list .web3-list-item:nth-of-type(4) {
    margin-top: 10px;
}
.we3-list .web3-list-item img {
    width: 50px;
}
.we3-list .web3-list-item h4 {
    font-size: 30px;
    color: #F8861C;
    line-height: 1.2;
}
.we3-list .web3-list-item p {
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
}

/* vision */
.vision {
    padding-top: 50px;
    width: 100%;
    max-width: 1310px;
    margin: 71px auto 0;
}
.vision-img {
    width: 100%;
    max-width: 1206px;
}
.vision-main {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
}
.vision-title {
    width: 1031px;
    margin-top: 100px;
}
.vision-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 144px;
    margin-top: 30px;
}
.vision-main-content p {
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
}
.vision-main-content img {
    width: 432px;
}

/* vecent */
.vecent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1310px;
    margin: 288px auto 0;
}
.vecent .title {
    max-width: 351px;
    width: 100%;
    margin: 0 auto;
}

.vecent .con {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding-bottom: 100px;
    width: 100%;
    height: 600px;
}

.vecent .con .ban {
    width: 367px;
    height: 331px;
}
.vecent .con .kot {
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
}

.map {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    width: 100%;
    max-width: 1310px;
    margin: 125px auto 0;
}
.map .planning_route {
    flex: none;
    width: 100%;
    max-width: 1189px;
}
.map .con {
    max-width: 1310px;
    margin: 0 auto;
}
.map .con .map-title {
    flex: none;
    max-width: 383px;
    margin-top: 100px;
}
.map .con .map-visual {
    position: relative;
    width: 100%;
    max-width: 790px;
    margin: 50px auto 0;
}
.map .con .mapTwo {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.map .con .map-text {
    position: absolute;
    z-index: 1;
    font-weight: 700;
    line-height: 1.1;
}
.map .con .map-date {
    color: #000;
    font-size: clamp(18px, 3vw, 32px);
    transform: translate(-50%, -50%);
}
.map .con .map-label {
    color: #fff;
    font-size: clamp(14px, 2vw, 20px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
    transform: translateY(-50%);
    white-space: nowrap;
}
.map .con .date-1 {
    top: 9.3%;
    left: 36.5%;
}
.map .con .label-1 {
    top: 9.3%;
    left: 9%;
}
.map .con .date-2 {
    top: 22.8%;
    left: 63.5%;
}
.map .con .label-2 {
    top: 22.8%;
    left: 72.5%;
}
.map .con .date-3 {
    top: 36.5%;
    left: 36.8%;
}
.map .con .label-3 {
    top: 36.5%;
    left: 13.5%;
}
.map .con .date-4 {
    top: 50%;
    left: 63%;
}
.map .con .label-4 {
    top: 50%;
    left: 72.5%;
}
.map .con .date-5 {
    top: 64%;
    left: 36.7%;
}
.map .con .label-5 {
    top: 64%;
    left: 14%;
}
.map .con .date-6 {
    top: 77%;
    left: 62.5%;
}
.map .con .label-6 {
    top: 77%;
    left: 72.5%;
}
.map .con .date-7 {
    top: 91%;
    left: 36.7%;
}
.map .con .label-7 {
    top: 91%;
    left: 10.5%;
}


/* partners */
.partners {
    max-width: 1310px;
    margin: 0 auto;
}
.bottom-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 34px;
    max-width: 996px;
    margin: 30px auto 0;
}
.bottom-logos img:nth-child(1) {
    height: 30px;
}
.bottom-logos img:nth-child(2) {
    height: 25px;
}
.bottom-logos img:nth-child(3) {
    height: 47px;
}
.bottom-logos img:nth-child(4) {
    height: 72px;
}
.bottom-logos img:nth-child(5) {
    height: 66px;
}
.bottom-logos img:nth-child(6) {
    height: 76px;
}
.bottom-logos img:nth-child(7) {
    height: 67px;
}

/* bottom */
.bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-left: 12px;
    padding-right: 12px;
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
}
.bottom .con {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 100px;
}
.bottom .con1 {
    flex: none;
}

.bottom .middle {
    max-width: 394px;
    color: #757575;
}
.bottom .middle img {
    width: auto;
    height: 70px;
}
.bottom .middle .service {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.bottom .middle .thirdUrl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    article {
        width: 40px;
        height: 40px;
    }
    img {
    }
}
.bottom .middle .thirdUrl article {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.bottom .middle .thirdUrl article img {
    width: 100%;
    height: 100%;
}
.bottom .middle .thirdUrl article .activeImg {
    display: none;
}
.bottom .middle .thirdUrl article:hover .itemImg {
    display: none;
}
.bottom .middle .thirdUrl article:hover .activeImg {
    display: block;
}

.bottom .right {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.bottom-right-title {
    color: #fff;
    font-size: 22px;
}
.bottom-right-main {
    display: flex;
    gap: 70px;
    width: 100%;
    margin-top: 38px;
}
.bottom-right-main section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bottom-right-main a {
    font-weight: 400;
    color: #757575;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.bottom-right-main a:hover {
    color: #fff;
}
.bottom-right-main a:hover {
    color: #fff;
}
.bottom-right-main .techList {
    width: 100%;
}
.bottom-right-main .techList a {
    max-width: 232px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* copyright */
.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #281604;
    width: 100%;
    min-height: 62px;
    font-size: 16px;
    font-weight: 400;
    color: #C9C9C9;
    line-height: 1.2;
    text-align: center;
    margin-top: 50px;
}

@media screen and (max-width: 1298px) {
    .about-banner {
        justify-content: center;
        margin-top: 30px;
    }
}
@media screen and (max-width: 1080px) {
    .pc-nav .list .language {
        margin-left: 180px;
    }
    .pc-nav .list .download {
        min-width: 183px;
        height: 60px;
    }
    .banner {
        flex-direction: column;
        justify-content: center;
        background-position: center bottom;
        margin-top: 40px;
    }
    .banner-main {
        flex-direction: column;
        gap: 80px;
    }
    .banner-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    .banner-left .avatar .text p {
        font-size: 26px;
    }
    .banner-btm {
        padding-left: 20px;
        padding-right: 20px;
    }

    .download-content {
        flex-direction: column;
    }
    .download-content-right {
        max-width: 95%;
        margin-top: 80px;
    }

    .bottom-right-main {
        flex-wrap: wrap;
        gap: 30px 60px;
    }
}
@media screen and (max-width: 997px) {
    .home {
        padding-top: 80px;
    }
    .pc-header {
        display: none;
    }
    .h5-nav {
        display: flex;
    }
    .pc-nav .list .language {
        margin-left: 180px;
    }
    .pc-nav .list .download {
        min-width: 183px;
        height: 60px;
    }

    .banner .banner-left {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .about {
        padding-left: 16px;
        padding-right: 16px;
    }
    .about-desc {
        flex-direction: column;
        padding-top: 80px;
    }
    .about-desc .about-desc-list p {
        font-size: 16px;
    }

    .whitepaper {
        padding-left: 16px;
        padding-right: 16px;
    }
    .whitepaper_bg {
        width: 100%;
    }
    .whitepaper-main h3 {
        font-size: 40px;
        line-height: 1.1;
    }
    .download-content-right {
        padding-top: 0;
        text-align: center;
    }
    .download-content-right h3 {
        font-size: 40px;
    }
    .download-content-right-scan {
        display: flex;
        flex-direction: column;
    }
    .download-content-right-ia {
        justify-content: center;
        padding-left: 0;
    }
    .web {
        padding-left: 16px;
        padding-right: 16px;
    }
    .web3-title {
        flex-direction: column;
        padding-top: 10px;
    }
    .web3-title img {
        width: 100%;
    }
    .web3-title .we3-title-text h3 {
        font-size: 30px;
    }
    .we3-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    .we3-list .web3-list-item {
        max-width: 100%
    }
    .vision {
        padding-left: 16px;
        padding-right: 16px;
    }
    .vision-title {
        width: 100%;
        margin-top: 30px;
    }
    .vision-main-content {
        flex-direction: column;
    }
    .vision-main-content p {
        font-size: 20px;
    }
    .vision-main-content img {
        width: 100%;
    }
    .vecent {
        padding-left: 16px;
        padding-right: 16px;
    }
    .vecent .title {
        font-size: 40px;
    }
    .vecent .con {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: 80px;
        background-position: center;
        background-size: 120%;
        height: auto;
    }
    .vecent .con .ban {
        width: 100%;
        height: auto;
    }
    .vecent .con .kot {
        position: static;
    }
    .partners {
        padding-left: 16px;
        padding-right: 16px;
    }
    .map {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 30px;
    }
    .map .con {
        width: 100%;
    }
    .map .con .map-title {
        width: 80%;
        margin-top: 50px;
    }
    .map .con .map-visual {
        margin-top: 24px;
    }
    .map .con .mapTwo {
        width: 100%;
    }
    .map .con .map-date {
        font-size: clamp(12px, 3.8vw, 26px);
    }
    .map .con .map-label {
        font-size: clamp(9px, 2vw, 16px);
    }

    .bottom .con {
        flex-direction: column;
        gap: 50px;
        width: 100%;
        margin-top: 50px;
    }
    .bottom .middle {
        width: 100%;
        height: auto;
    }
    .bottom .middle img {
        width: 100px;
        height: auto;
    }
    .bottom-right-main {
        margin-top: 12px;
    }
    .bottom-right-main > section {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    .bottom-right-main .techList a {
        max-width: 100%;
        cursor: auto;
    }
}
@media screen and (max-width: 804px) {
    .pc-nav {
        gap: 30px;
    }
    .whitepaper {
        text-align: center;
    }
}

/* pc */
@media screen and (max-width: 768px) {
    .h5-nav {
        display: flex;
    }
    .h5-nav .menu-list {
        font-size: 24px;
    }
    .pc-nav {
        gap: 30px;
    }
    .pc-nav .list .language {
        margin-left: 30px;
    }
    .pc-nav .list .download {
        min-width: 140px;
        height: 50px;
    }


    .banner .banner-left .title {
        font-size: 40px;
        line-height: 1.2;
    }
    .banner-right .banner-right-img:nth-child(1) {
        bottom: 15%;
        left: 0;
        width: 35%;
    }
    .banner-right .banner-right-img:nth-child(2) {
        bottom: 8%;
        right: 10%;
        width: 35%;
    }
    .banner-right .banner-right-img:nth-child(3) {
        right: -2%;
        top: 10%;
        width: 25%;
    }
    .banner-right .banner-right-img:nth-child(4) {
        left: 25%;
        top: 15%;
        width: 18%;
    }
    .banner-btm {
        flex-direction: column;
        gap: 40px;
    }
    .about {
        margin-top: 80px;
    }

    .about-title, .about_img {
        width: 100%;
        height: auto;
    }
    .download-title {
        width: 90%;
        margin: 0 auto;
    }
    .download-content > img {
        width: 90%;
    }

    .download-content-right-ia p img {
        width: 150px;
    }

    .we3-list .web3-list-item {
        width: 100%;
    }

    .vecent {
        margin-top: 100px;
    }
    .bottom .right {
        width: 100%;
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.toast_box {
    position: absolute;
    bottom: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    display: none;
}

.toast_box p {
    box-sizing: border-box;
    padding: 10px 20px;
    width: max-content;
    background: #707070;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 6px;
    opacity: 0.8;
}

.toliet {
    margin: 0 auto;
}
