* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: Arial, "Helvetica Neue", sans-serif;
    overflow-x: hidden;
    overflow-y: overlay;
}

input,
textarea {
    -webkit-appearance: none;
    border: none;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
    display: none;
}

*::-webkit-scrollbar-corner {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    border: 1px solid rgba(240, 187, 187, 0);
    height: 6px;
    border-radius: 25px;
    background-clip: padding-box;
    background-color: rgba(47, 44, 44, 0.1);
}

*::-webkit-scrollbar-thumb:hover {
    border: 4px solid #2F3975;
    background-color: #2F3975;
}

ul,
li {
    list-style: none;
}

.loadingPage {
    display: block;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.successShow {
    display: none;
}

.maxWidthStyle {
    max-width: 1280px;
    margin: 0 auto;
}

/* header */

.header {
    height: 84px;
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    transition: all 1s;
}

.headerScroll {
    /* background-color: transparent; */
    box-shadow: 1px 1px 25px #f5f5f5;
}

.headerHeight {
    height: 84px;
}

.headerContent {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerUl {
    display: flex;
}

.headerUl li {
    margin-right: 84px;
    font-size: 18px;
    font-family: "Arial-regular";
    font-weight: 600;
    color: #2F3975;
    cursor: pointer;
}

.headerUl li:hover {
    color: #E68B7E;
}

.headerUl li:last-child {
    margin-right: 0;
}

.headerButtonBox {
    display: flex;
}

.headerButton_outlined {
    color: #2F3975;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    height: 41px;
    border-radius: 8px;
    border: 2px solid #2F3975;
    font-size: 18px;
    cursor: pointer;
}

.headerButton_contained {
    width: 135px;
    height: 41px;
    background: #2F3975;
    border-radius: 8px 8px 8px 8px;
    font-size: 18px;
    font-family: "Arial-Bold", "Arial";
    font-weight: bold;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.headerButton {
    margin-right: 19px;
}

.headerButton:last-child {
    margin-right: 0;
}

/* swpier */
.mySwiper {
    height: auto;
    width: 100%;
}

.swiper-slide-background-image {
    /* background: url("./image/banner.png") no-repeat;
    background-size: cover; */
    position: relative;
}

.swiper-slide-background-image .button:hover {
    color: #00FFEB;
}

.swiper-slide-background-image .button {
    cursor: pointer;
    width: 10.4vw;
    height: 3vw;
    background: #2F3975;
    border-radius: 8px;
    font-size: 1.2vw;
    font-family: "Heiti SC-Medium", "Heiti SC";
    font-weight: bold;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 10vw;
    bottom: 13vw;
    text-decoration: none;
}

.swiper-slide-background-image .banner3_button {
    background: linear-gradient(136deg, #5689E4 0%, #3FC6DF 100%);
    border-radius: 8px 8px 8px 8px;
}

.swiper-slide-background-image .banner2_button {
    left: 50%;
    bottom: 23.8vw;
    width: 12vw;
    margin-left: -6vw;
    background-color: #00FFEB;
    color: #232323;
}

.swiper-slide-background-image .banner2_button:hover {
    color: #050e0d;
}

/* Explore Out Products */
.ExploreOutProductsTitle {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.ExploreOutProductsTitleSvg {
    fill: url(./css/index.css#ExploreOutProductsTitlelinearGradient);
    font-size: 40px;
    font-weight: bolder;
}

.ExploreOutProductsSubTitle {
    margin-top: 50px;

}

.ExploreOutProductsSubTitle span {
    font-size: 18px;
    font-family: "Arial-Regular", "Arial";
    font-weight: 400;
    color: #333333;
    line-height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ExploreOutProductsUl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 57px;
}

.ExploreOutProductsUl li {
    width: 368px;
    min-height: 395px;
    background: #FFFFFF;
    border-radius: 26px 26px 0px 0px;
    opacity: 1;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    border: 2px solid #707070;
    padding: 27px 29px 50px;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    /* overflow: hidden; */
    border-bottom: none;
}

.ExploreOutProductsUl li .p3 {
    position: absolute;
    bottom: 0;
    height: 11px;
    width: calc(100% + 1px);
    left: -1px;
    /* transition: width 0.5s; */
    background-color: #343C7D;
}

.ExploreOutProductsUl li .p4 {
    position: absolute;
    bottom: 0;
    height: 11px;
    width: 0;
    left: -1px;
    transition: all 0.5s;
    background: linear-gradient(to right, #E78E79, #D66D9F, #8547CC);

}

.ExploreOutProductsUl li .p1 span {
    display: block;
    position: absolute;
    bottom: -10px;
    height: 6px;
    width: 0;
    transition: all 0.5s;
    background: linear-gradient(to right, #E78E79, #8547CC);

}

.ExploreOutProductsUl .p1 {
    font-size: 32px;
    font-family: "Arial-Bold", "Arial";
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.5s;

}

.ExploreOutProductsUl .p2 {
    font-size: 18px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #333333;
    line-height: 30px;
    letter-spacing: 1px;
    transition: all 0.5s;

}

.ExploreOutProductsUl li:hover {
    background-color: #343C7D;
}

.ExploreOutProductsUl li:hover .p1 {
    color: #F78BA1;
}

.ExploreOutProductsUl li:hover .p1 span {
    width: 77px;
}

.ExploreOutProductsUl li:hover .p2 {
    color: #ffffff;
}

.ExploreOutProductsUl li:hover .p3 {
    width: 0;
    left: calc(100% + 1px);
}

.ExploreOutProductsUl li:hover .p4 {
    width: calc(100% + 1px);
}


/*  Why Choose TripleLab */
.section4 {
    margin-top: 100px;
    background: linear-gradient(135deg, #0a1628 0%, #0d2448 50%, #091630 100%);
    background-size: cover;
}

.WhyChooseTriplelab {
    padding: 100px 0;
}

.WhyChooseTriplelabTitle {
    font-size: 60px;
    word-spacing: 17px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.WhyChooseTriplelabUl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 90px;
    justify-content: space-between;
}

.WhyChooseTriplelabUlItem {
    width: 30%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.WhyChooseTriplelabUlItemImage {
    width: 63px;
    height: 62px;
    margin-bottom: 13px;
}

.WhyChooseTriplelabUlItemImage img {
    height: 62px;
}

.WhyChooseTriplelabUlItemTitle {
    font-size: 24px;
    font-family: "Arial-regular", "Arial";
    font-weight: 500;
    color: #FFFFFF;
    line-height: 43px;
}

.WhyChooseTriplelabUlItemSubTitle {
    font-size: 16px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 15px;
    opacity: .66;
}

/* TripleLab Management Platform */

.TriplelabManagementPlatform {
    padding: 100px 0 150px;
    background-color: #fff;
}

.TriplelabManagementPlatform .images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    width: 86%;
    justify-content: space-around;
}

/* .TriplelabManagementPlatform .images img {
    height: 35px;
    max-width: 100%;
} */

.TriplelabManagementPlatform .images .two {
    transition: all 2s;
    transform:rotateY(0)

}
.TriplelabManagementPlatform .images .Twoactive {
    transform:rotateY(360deg)
}

.TriplelabManagementPlatformTitle {
    color: #343C7D;
    font-size: 66px;
    word-spacing: 17px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 74px;
}

.TriplelabManagementPlatformUl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 96%;
    margin: 0 auto;
    margin-top: 10px;
}

.TriplelabManagementPlatformItem {
    width: 382px;
    height: 114px;
    box-shadow: 10px 20px 20px 1px rgba(167, 182, 193, 0.44);
    border-radius: 77px 77px 77px 77px;
    border: 4px solid #4635E7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: "Arial-regular", "Arial";
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    margin-top: 43px;
    transition: all .5s;
}

.TriplelabManagementPlatformItemBig {
    width: 597px;
    height: 114px;
}

.TriplelabManagementPlatformItem:hover {
    color: #fff;
    border: none !important;
}

.TriplelabManagementPlatformItem:nth-of-type(2) {
    background: #F9F7FA;
    box-shadow: 10px 20px 20px 1px rgba(167, 182, 193, 0.44);
    border: 4px solid #8B49C9;
}

.TriplelabManagementPlatformItem:nth-of-type(4) {
    box-shadow: 10px 20px 20px 1px rgba(167, 182, 193, 0.44);
    border: 4px solid #D06AA3;
}

.TriplelabManagementPlatformItem:nth-of-type(5) {
    box-shadow: 10px 20px 20px 1px rgba(167, 182, 193, 0.44);
    border: 4px solid #EFA65E;
}

.TriplelabManagementPlatformItem:hover:nth-of-type(1) {
    background: linear-gradient(to right, #E07198, #4635E7);

}

.TriplelabManagementPlatformItem:hover:nth-of-type(2) {
    background: linear-gradient(to right, #AC4FC5, #8B49C9);
}

.TriplelabManagementPlatformItem:hover:nth-of-type(3) {
    background: linear-gradient(to right, #E07198, #4635E7);
}

.TriplelabManagementPlatformItem:hover:nth-of-type(4) {
    background: linear-gradient(to right, #D06AA3, #AC4FC5);
}

.TriplelabManagementPlatformItem:hover:nth-of-type(5) {
    background: linear-gradient(to right, #EFA65E, #D06AA3);
}

/*  Supported Chains & Coming Soon  */
.section6 {
    background-color: #F0EFF4;
}

.SupportedChainsComingSoon {
    padding: 180px 0 150px;
    display: flex;
    overflow: hidden;
}

.SupportedChainsComingSoonLeft {
    width: 512px;
    flex-shrink: 0;
}

.SupportedChainsComingSoonWidth {
    width: 50px;
    flex-shrink: 0;
}

.SupportedChainsComingSoonRight {
    flex: 1;
    padding-left: 34px;
}

.SupportedChainsComingSoonLeft .p1 {
    font-size: 30px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #343C7D;
    margin-bottom: 10px;
}

.SupportedChainsComingSoonLeft .images {
    display: block;
    height: 140px;
    margin: 34px 0 55px;
}

.SupportedChainsComingSoonLeft .p4 {
    font-size: 18px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #333333;
    line-height: 36px;
    min-height: 114px;
}

.SupportedChainsComingSoonRight .SupportedChainsComingSoonRightUl {
    position: relative;
}

.SupportedChainsComingSoonRightUl li {
    width: 207px;
    height: 130px;
    /* background: linear-gradient(144deg, #EA5748 0%, #7274E0 100%); */
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    position: absolute;
    /* transition-property: left 1s, top 1s, transform 2s; */
    transition-property: left, top;
    transition-duration: 1s;
}


/* 1 */
.SupportedChainsComingSoonRightUl .li1:nth-of-type(2) {
    left: 458px;
}

.SupportedChainsComingSoonRightUl .li1:nth-of-type(3) {
    top: 146px;
    left: 458px;
}

.SupportedChainsComingSoonRightUl .li1:nth-of-type(4) {
    top: 294px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li1:nth-of-type(5) {
    top: 294px;
    left: 230px;
}

.SupportedChainsComingSoonRightUl .li1:nth-of-type(6) {
    top: 294px;
    left: 458px;
}

.SupportedChainsComingSoonRightUl .active {
    width: 436px !important;
    height: 276px !important;
}

/* 2 */
.SupportedChainsComingSoonRightUl .li2:nth-of-type(1) {
    left: 458px;
    top: 0;
}

.SupportedChainsComingSoonRightUl .li2:nth-of-type(2) {
    left: 0;
}

.SupportedChainsComingSoonRightUl .li2:nth-of-type(3) {
    top: 146px;
    left: 458px;
}

.SupportedChainsComingSoonRightUl .li2:nth-of-type(4) {
    top: 294px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li2:nth-of-type(5) {
    top: 294px;
    left: 230px;
}

.SupportedChainsComingSoonRightUl .li2:nth-of-type(6) {
    top: 294px;
    left: 458px;
}

/* 3 */
.SupportedChainsComingSoonRightUl .li3:nth-of-type(2) {
    top: 146px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li3:nth-of-type(3) {

    left: 230px;

}

.SupportedChainsComingSoonRightUl .li3:nth-of-type(4) {
    top: 294px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li3:nth-of-type(5) {
    top: 294px;
    left: 230px;
}

.SupportedChainsComingSoonRightUl .li3:nth-of-type(6) {
    top: 294px;
    left: 458px;
}

/* 4 */
.SupportedChainsComingSoonRightUl .li4:nth-of-type(2) {
    top: 0;
    left: 230px;
}

.SupportedChainsComingSoonRightUl .li4:nth-of-type(3) {
    left: 458px;
    top: 0;

}

.SupportedChainsComingSoonRightUl .li4:nth-of-type(4) {
    top: 146px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li4:nth-of-type(5) {
    top: 294px;
    left: 458px;
}

.SupportedChainsComingSoonRightUl .li4:nth-of-type(6) {
    top: 146px;
    left: 458px;
}

/* 5 */
.SupportedChainsComingSoonRightUl .li5:nth-of-type(2) {
    top: 0;
    left: 230px;
}

.SupportedChainsComingSoonRightUl .li5:nth-of-type(3) {
    left: 458px;
    top: 0;
}

.SupportedChainsComingSoonRightUl .li5:nth-of-type(4) {
    top: 146px;
    left: 458px;
}

.SupportedChainsComingSoonRightUl .li5:nth-of-type(5) {
    top: 146px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li5:nth-of-type(6) {
    top: 294px;
    left: 458px;
}

/* 6 */
.SupportedChainsComingSoonRightUl .li6:nth-of-type(2) {
    top: 0;
    left: 230px;
}

.SupportedChainsComingSoonRightUl .li6:nth-of-type(3) {
    left: 458px;
    top: 0;
}

.SupportedChainsComingSoonRightUl .li6:nth-of-type(4) {
    top: 294px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li6:nth-of-type(5) {
    top: 146px;
    left: 0;
}

.SupportedChainsComingSoonRightUl .li6:nth-of-type(6) {
    top: 146px;
    left: 230px;
}







/*  */
.section7 {
    /* background-color: #E6ECFC; */
}

.gift {
    position: relative;
}

.gift img {
    width: 100%;
}

.Getyourgift {
    padding: 52px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.GetyourgiftLeft {
    height: 335px;
    width: 576px;
    flex-shrink: 0;
    display: flex;
}

.GetyourgiftLeft img {
    width: 90%;
}

.GetyourgiftRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.GetyourgiftRightp {
    font-size: 33px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #343C7D;
    line-height: 65px;
    max-width: 656px;
    width: 100%;
    text-align: right;
}

.GetyourgiftRightBtn {
    width: 11vw;
    height: 3rem;
    background: #2F3975;
    border-radius: 8px 8px 8px 8px;
    opacity: 1;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    cursor: pointer;
    position: absolute;
    left: 17.8vw;
    bottom: 4.7vw;
}

/* Subscribe to TripleLab Newsletter  */
.section8 {
    background-color: #343C7D;
    padding: 65px 0 0 0;
}

.SubscribeTriplelabNewsletter .p1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.SubscribeTriplelabNewsletter .p2 {
    font-size: 16px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #00FFEB;
    text-align: center;
}

.SubscribeTriplelabNewsletter .p3 {
    font-size: 16px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #FFFFFF;
    line-height: 27px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;

}

.SubscribeTriplelabNewsletter .formSubmit {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.SubscribeTriplelabNewsletter .formSubmit input {
    width: 285px;
    height: 46px;
    background: #FFFFFF;
    border-top-right-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
    padding-left: 24px;
    color: #162F56;
    font-size: 14px;
    border: 0;
}

.SubscribeTriplelabNewsletter .formSubmit input:focus {
    box-shadow: none;
    border: none;
    outline: none;

}

.SubscribeTriplelabNewsletter .formSubmit div {
    width: 140px;
    height: 46px;
    background: #738BD8;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 14px;
    font-family: "Arial-regular", "Arial";
    font-weight: 400;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* margin-left: -60px; */
}

.SubscribeTriplelabNewsletter .footer {
    display: flex;
    justify-content: space-between;
    height: 78px;
    align-items: center;
    border-top: 1px solid #2E4882;
    margin-top: 66px;
}

.SubscribeTriplelabNewsletter .footerIcon img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 10px;
}








/* md */
.md_headerBox {
    display: none;
}

.md_headerUl {
    height: 0;
    transition: all 1s;
}

.md_menu {
    display: none;
}

.md_ExploreOutProductsTitle {
    display: none;
}


.myBtn {
    display: block;
    /* 默认隐藏 */
    position: fixed;
    bottom: 100px;
    right: -100px;
    z-index: 99;
    border: none;
    outline: none;
    /* 设置背景颜色，你可以设置自己想要的颜色或图片 */
    cursor: pointer;
    /* 圆角 */
    transition: all 1s;
}

.myBtn:hover {
    /* background-color: #343C7D; */
}

.myBtnShow {
    right: 20px;
}


#ajax_Products {
    background: linear-gradient(180deg, #f0f4ff 0%, #e8efff 100%);
    background-size: 100% 100%;
}


.pc_banner,
.pc_gift_image {
    display: block;
}

.md_banner,
.md_gift_image {
    display: none;
}

@media screen and (max-width: 1500px) {
    .maxWidthStyle {
        max-width: 1100px;
    }

    .section6 .maxWidthStyle {
        max-width: 1280px;
    }

    .ExploreOutProductsUl li {
        width: 30%;
    }

    .TriplelabManagementPlatformUl {
        width: 100%;
    }

    .TriplelabManagementPlatformItem {
        width: 32%;
        height: 100px;
    }

    .TriplelabManagementPlatformItemBig {
        width: 48%;
        height: 100px;
    }
}

@media screen and (max-width: 1400px) {
    .maxWidthStyle {
        max-width: 1000px;
    }
}
/*
     FILE ARCHIVED ON 09:22:18 Jan 03, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:40:06 May 14, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.9
  exclusion.robots: 0.058
  exclusion.robots.policy: 0.043
  esindex: 0.017
  cdx.remote: 12.111
  LoadShardBlock: 78.594 (3)
  PetaboxLoader3.resolve: 695.975 (4)
  PetaboxLoader3.datanode: 73.248 (5)
  load_resource: 712.888
  loaddict: 21.228
*/