.banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 260px 10px 120px 10px;
    position: relative;
}

.indexTitleDiv {
    position: relative;
}

.indexTitleImg1 {
    position: absolute;
    top: 15%;
    left: 0;
    width: 120px;
    height: 150px;
    z-index: -1;
    animation: floatAnimation 3.5s linear infinite;
    animation-delay: -5s;
}

.nav>img {
    width: 150px;
}

.indexTitleImg2 {
    position: absolute;
    top: 15%;
    right: 0;
    width: 120px;
    height: 150px;
    z-index: -1;
    animation: floatAnimation 3.5s linear infinite;
    animation-delay: 0s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-40%);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(40%);
    }

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

canvas {
    display: block;
    width: 100%;
    /* height: 1000px; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.indexTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.indexTitleH1 {
    color: #fff;
    font-size: 70px;
    margin-bottom: 60px;
    background-image: linear-gradient(90deg, #36ebb5, #ff8238);
    -webkit-background-clip: text;
    color: transparent;
}

.indexTitleH2 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
    background-image: linear-gradient(90deg,#ff8238, #36ebb5);
    -webkit-background-clip: text;
    color: transparent;
}

.herdDiv {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: transparent;
    backdrop-filter: blur(4px);
    box-sizing: border-box;
    border-bottom: 1px solid #8b8b8b;
}

.smallNav {
    display: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navul>li>span {
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
}

.navul>li>a {
    margin-left: 10px;
    padding: 8px 30px;
    background-image: linear-gradient(90deg, #36EBB5 0%, #00D1FF 100%);
    border-radius: 30px;
}

.navul>li>a:hover {
    cursor: pointer;
    background-image: linear-gradient(90deg, #00D1FF 0%, #00D1FF 100%);
}

.navul>li>span:hover {
    cursor: pointer;
    color: rgb(0, 183, 255);
}

.energyRental,
.apiPrice,
.aboutUs,
.question,
.contact {
    margin: 0 auto;
    padding: 100px 10px 0;
    position: relative;
}

.energyRental {
    padding-top: 20px;
}

.energyRental::after,
.apiPrice::after,
.question::after {
    content: "";
    width: 900px;
    height: 900px;
    border-radius: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, .3) 0%, #00000000 60%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    pointer-events: none;
    opacity: .7;
}

.energyRental h2,
.apiPrice h2,
.aboutUs h2,
.question h2,
.contact h2 {
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding-bottom: 20px;
}

.energyRentalBoder,
.apiDivBoder {
    border: none;
    background-color: #fff;
    box-sizing: border-box;
    background-image: linear-gradient(#000028, #000028), linear-gradient(160deg, #36ecb5, #03223c, #00d2ff);
    font-weight: 300;
    padding: 4px;
    border-radius: 16px;
    background-clip: content-box, padding-box;
}

.energyRentalDiv {
    padding: 48px 16px;
    display: flex;
    flex-direction: row;
}

.buynumber-error {
    animation: color-change 2s infinite;
}

@keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: yellow;
    }

    100% {
        color: red;
    }
}

.energyRentalLeft {
    width: 50%;
    padding: 0 30px;
    border-right: 1px dashed rgba(255, 255, 255, .32);
    display: flex;
    flex-direction: column;
}

.energyRentalTitle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.energyRentalTitleDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.energyRentalTitleNum {
    height: 64px;
    width: 58px;
    text-align: center;
    font-size: 24px;
    line-height: 64px;
    font-weight: bold;
    --un-text-opacity: 1;
    color: rgba(6, 6, 27, var(--un-text-opacity));
    background: url(../image/titlebgc.svg) no-repeat center / cover;
}

.energyRentalTitleText {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-left: 15px;
}

.energyRentalTitleImg {
    background: url(../image/row_img.svg) no-repeat center;
    width: 176px;
    height: 40px;
}

.energyRentalContent {
    display: flex;
    flex-direction: column;
}

.energyRentalContent>p,
.payInfoTitle>p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.payInfoTitleP {
    font-size: 16px !important;
}

.energyRentalContentSpan {
    font-size: 15px;
    font-weight: 400;
    color: #cfcfcf;
    margin-bottom: 25px;
}

.energyRentalInput {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.energyRentalInput>span {
    color: #ffffff;
    font-size: 16px;
}

#selectBiShu {
    width: 45%;
    text-align: center;
    background-color: #000028;
    padding: 11px 8px;
    border: 1px solid #555555;
    border-radius: 5px;
    color: #00ffde;
    font-size: 16px;
    cursor: pointer;
}

#energyNumberInput {
    display: none;
    width: 25%;
    text-align: center;
    background-color: #000028;
    padding: 11px 8px;
    border: 1px solid #555555;
    border-radius: 5px;
    color: #00ffde;
    font-size: 16px;
    cursor: pointer;
}

.energyRentalInputSpan {
    display: none;
}

#selectTime {
    width: 45%;
    text-align: center;
    background-color: #000028;
    padding: 11px 8px;
    border: 1px solid #555555;
    border-radius: 5px;
    color: #00ffde;
    font-size: 16px;
    cursor: pointer;
}

#selectBiShu>option,
#selectTime>option {
    background-color: #262627;
}

#selectBiShu:hover,
#selectTime:hover,
#energyNumberInput:hover {
    box-shadow: 0 0 3px 1px #00ffde;
}

#selectBiShu:focus,
#selectTime:focus {
    box-shadow: 0 0 1px 1px #00ffde;
}

.customNote {
    display: none;
    font-size: 14px;
    color: #1dfc00;
    margin-top: 15px;
    font-weight: 400;
}

.energyRentalQuestionDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
}

.questionTitle {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.questionImg {
    width: 28px;
    height: 28px;
}

.questionP1 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 15px;
}

.questionDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 23px;
}

.questionSpan {
    width: 6px;
    height: 6px;
    background: #36ecb5;
    border-radius: 12px;
    margin-right: 6px;
}

.questionP {
    font-size: 15px;
    font-weight: 400;
    color: #b8b8b8;
}

.energyRentalRight {
    width: 50%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.payInfoDiv {
    display: flex;
    flex-direction: column;
}

.payInfoTitle {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.payNumberDiv,
.payAddressTitleDiv {
    width: 100%;
    border: 1px solid #555555;
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.payNumberSpan1 {
    font-size: 24px;
    font-family: Manrope-Bold, sans-serif;
    font-weight: bold;
    color: #00f3ff;
}

.payNumberSpan2 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 4px 0 8px;
}

.payNumberSpan3 {
    font-size: 17px;
    margin-left: 16px;
    width: 88px;
    height: 30px;
    line-height: 30px;
    background-image: linear-gradient(90deg, #a9e234 0%, #36ebb5 100%);
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.payNumberSpan3::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
    background: #a9e234;
    left: -5px;
    top: 10px;
}

.payNumberLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.copyNumberImg {
    width: 20px;
    height: 20px;
}

.clickCopy {
    font-size: 15px !important;
}

.payAddressDiv {
    margin-top: 25px !important;
}

.payAddressTitleDiv {
    margin-top: 8px;
}

.payAddressTitleDiv>span {
    font-size: 16px;
    color: #cfcfcf;
    font-weight: 400;
    padding: 5px 0;
}

.payNumberDiv:hover,
.payAddressTitleDiv:hover,
.saveImgDiv:hover {
    cursor: pointer;
    box-shadow: 0 0 3px 1px #00b7ff;
}

.qrcodeDiv {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.qrcodeDivDiv {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.qrcodeImg {
    width: 180px;
    height: 180px;
    border: 1px solid #555555;
    border-radius: 6px;
    padding: 6px;
}

.qrcodeText {
    font-size: 15px;
    font-weight: 400;
    color: #cfcfcf;
    text-align: center;
    margin-top: 8px;
}

.qrcodeP {
    font-size: 15px;
    font-weight: bold;
    color: #00b7ff;
    text-align: center;
    margin: 8px 4px 0 4px;

}

.saveImgDiv {
    margin-top: 8px;
    padding: 6px;
    border: 1px solid #555555;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #cfcfcf;
    text-align: center;
}

.copySuccess {
    padding: 15px;
    border-radius: 8px;
    background-color: #032000;
    color: #01ff38;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    display: none;
    z-index: 1000;
}

.apiPriceDiv {
    padding: 20px 16px;
    display: flex;
    flex-direction: row;
}

.apiPriceDivLeftDiv {
    display: flex;
    flex-direction: row;
}

.apiQuestionImg {
    width: 38px;
    height: 38px;
}

.apiQuestion {
    width: 50%;
    padding: 0 30px;
}

.aprPriceDivLeft {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    border-right: 1px dashed #555555;
}

.priceIcon {
    width: 38px;
    height: 38px;
}

.priceTitle,.priceTitle2 {
    display: block;
    width: 100%;
    padding: 6px 8px;
    font-size: 18px;
    background-image: linear-gradient(90deg, #36ebb5 0%, #a9e234 100%);
    border-radius: 4px;
    font-weight: bold;
    color: #181818;
    text-align: center;
    margin-left: 12px;
}

.priceTitle2 {
    background-image: linear-gradient(90deg, #a9e234 0%, #36ebb5 100%);
}

.priceShow,.priceShow2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.priceShow>p,.priceShow2>p {
    display: block;
    width: 50%;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 16px;
}

.priceShow>p::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: rgb(131 255 0);
    box-shadow: 0 0 10px 6px rgba(1, 204, 255, 0.5);
    animation: dotAnimation 1.5s infinite;
}

.priceShow2>p::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: rgb(0, 174, 255);
}

@keyframes dotAnimation {
    0% {
        box-shadow: 0 0 10px 6px rgba(0, 253, 55, 0.5);
    }

    50% {
        box-shadow: 0 0 10px 6px rgba(0, 174, 255, 0);
    }

    100% {
        box-shadow: 0 0 10px 6px rgba(0, 255, 13, 0.5);
    }
}

.price_1hour,
.price_1day,
.price_3day,
.price_7day,
.price_15day,
.price_30day {
    font-size: 20px;
    font-weight: bold;
    color: #00f3ff;
}

.priceShowSpan {
    font-size: 16px;
    font-weight: 400;
    color: #888888;
    margin-top: 15px;
}

.priceShowSpan2 {
    font-size: 16px;
    font-weight: 400;
    color: #ff0000;
    margin-top: 15px;
}

.apiQuestion1,.apiQuestion2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.apiQuestion1>p,.apiQuestion2>p {
    width: 100%;
    padding: 6px 8px;
    font-size: 18px;
    background-image: linear-gradient(90deg, #36ebb5 0%, #a9e234 100%);
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    color: #181818;
    margin-left: 12px;
}

.apiQuestion2>p {
    background-image: linear-gradient(90deg, #a9e234, #36ebb5);
}

.priceTelegramDiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
	margin-bottom: 20px;
}

.Pricetelegram {
    width: 45px;
    height: 45px;
    cursor: pointer;
    margin-right: 25px;
}

.priceTelegramDiv>a {
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    background-image: linear-gradient(45deg, #01ff7e, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apiPrice::after {
    width: 400px !important;
    height: 400px !important;
    transform: translate(-50%, -30%) !important;
}

.aboutUs {
    margin: 0 auto;
}

.aboutUs>p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 35px;
}

.question {
    display: flex;
    flex-direction: column;
}

.panel {
    padding: 0 15px;
    background-color: #1e1e5d;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 25px;
}

.panel-heading {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.panel-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.panel-title>p {
    margin-right: 12px;
    width: 28px;
    height: 24px;
    line-height: 24px;
    background-image: linear-gradient(90deg, #36EBB5 0%, #00D1FF 100%);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    color: #06061b;
    text-align: center;
}

.panel-title>h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.panel-content {
    display: none;
    overflow: hidden;
    border-top: 1px solid #6f6f6f;
    padding: 8px 0;
}

.panel-content-div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.panel-content-p {
    margin-right: 12px;
    width: 28px;
    height: 24px;
    line-height: 24px;
    background-image: linear-gradient(90deg, #36EBB5 0%, #00D1FF 100%);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    color: #06061b;
    text-align: center;
}

.panel-content-p2 {
    font-size: 16px;
    color: #dddddd;
    line-height: 28px;
}

.contact {
    display: flex;
    flex-direction: column;
}

.telegramDiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
}

.telegram,
.telegram2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.telegram {
    padding-right: 20px;
    cursor: pointer;
}

.telegram2 {
    padding-left: 50px;
    cursor: pointer;
}

.telegramImgDiv {
    width: 100px;
    height: 100px;
    border: 1px solid #555555;
    border-radius: 50%;
    background-color: #0b1131;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.telegramImgDiv:hover {
    box-shadow: 0 0 8px 1px #00ffde;
}

.telegramImg {
    width: 60px;
    height: 60px;
}

.telegramText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-weight: bold;
    font-size: 18px;
}

.footer {
    width: 100%;
    padding: 15px 5px;
    text-align: center;
    background-color: #101036;
    margin-top: 40px;
}

.footer {
    font-size: 16px;
    font-weight: 400;
    color: #777777;
}

.footer p {
  margin: 10px 0;
  font-size: 0.9rem;
}

.footer img {
  width: 45px;
  height: 45px;
  margin: 0 auto 20px;
}