body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.banner {
    height: 500px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    font-size: 20px;
}

.banner-bg {
    background-image: url(bg.png);
    background-size: 100% 500px;
    background-repeat: no-repeat;
}

.banner img {
    width: 452px;
    height: 45px;
}

.banner span {
    font-size: 14px;
    color: #676767;
}

.banner .btn {
    width: 147px;
    height: 50px;
    border-radius: 20px;
    border: 1px solid #FF9800;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #FF9800;
    margin-top: 50px;
}

.about {
    text-align: center;
    padding: 50px 0;
}

.about .about-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about .about-title img {
    width: 25px;
    height: 25px;
}

.about .tips {
    font-size: 14px;
    color: #9F9F9F;
}

.about .nav-tabs {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    border: 1px solid transparent;
}

.about .nav-tabs .nav-item {
    margin: 0 50px;
}


.about .nav-tabs .nav-item .nav-link {
    color: #3C2708;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.about .nav-tabs .nav-item .nav-link img {
    width: 20px;
    height: 20px;
}

.about .nav-tabs .nav-link.active {
    background: linear-gradient(291deg, #FFC107 0%, #FF9800 100%);
    border-radius: 22px;
    border: 1px solid transparent;
    color: #fff;
}

.about .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    background: linear-gradient(291deg, #FFC107 0%, #FF9800 100%);
    border-radius: 22px;
    border: 1px solid transparent;
    color: #fff !important;
    opacity: 0.8;
}

.about .tab-content {
    /* width: 70%; */
    margin: 0 auto;
    background: #FFFCF6;
    border-radius: 10px;
    padding: 40px;
}

.about .tab-content .tab-pane .menu1-contnet {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about .tab-content .tab-pane .tab-content-left {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.about .tab-content .tab-pane .tab-content-left .btn-outline-warning {
    width: 60px;
    height: 33px;
    border-radius: 29px;
    border: 1px solid #FF9800;
}

.about .tab-content .tab-pane .tab-content-left h3 {
    font-size: 32px;
    margin-top: 25px;
}

.about .tab-content .tab-pane .tab-content-left span:nth-child(3) {
    color: #868686;
    margin-bottom: 40px;
}

.about .tab-content .tab-pane .tab-content-left span:nth-child(4) {
    color: #402C0E;
    margin-bottom: 20px;
}

.about .tab-content .tab-pane .tab-content-left div .btn-primary {
    width: 97px;
    height: 37px;
    background: #FFC107;
    border-radius: 10px;
    color: #3F2908;
    border: 1px solid transparent;
}

.about .tab-content .tab-pane .tab-content-left div .btn-warning {
    width: 97px;
    height: 37px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #FFC107;
    color: #FFC107;
    margin-left: 20px;
}

.circle {
    background: #FFFCF6;
    padding: 50px 0;
}

.circle>div>div {
    display: flex;
    gap: 20px;
    align-items: center;
    /* width: 50%; */

}

.circle .row>* {
    padding-right: 0;
    padding-left: 0;
}

.circle .circle-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 60px; */
    background: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    padding: 50px;
    flex: 1;
}

.circle .circle-left .circle-left-text .btn-outline-warning {
    /* width: 60px; */
    height: 33px;
    border-radius: 29px;
    border: 1px solid #FF9800;
}

.circle .circle-left .circle-left-text h3 {
    margin-top: 25px;
}

.circle .circle-left .circle-left-text p:nth-child(3) {
    color: #868686;
    margin-bottom: 60px;
}

.circle .circle-left .circle-left-text p:nth-child(4) {
    color: #402C0E;
}

.circle .circle-left .circle-left-text div .btn-primary {
    width: 97px;
    height: 37px;
    background: linear-gradient(233deg, #FFD15A 0%, #FEC01E 100%);
    border-radius: 10px;
    border: 1px solid transparent;
    color: #000000;
}

.circle .circle-left .circle-left-text div .btn-warning {
    width: 97px;
    height: 37px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #FFC107;
    color: #FFC107;
    margin-left: 20px;
}

.circle .circle-right {
    background: #fff;
    border-radius: 10px 10px 10px 10px;
}

.circle .circle-right .circle-right-item {
    /* background: #FFC107; */
    border-radius: 10px 10px 10px 10px;
    padding: 20px 90px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3C2708 !important;
    white-space: nowrap;
    cursor: pointer;
}

.circle .circle-right .circle-right-item img {
    width: 20px;
    height: 20px;
}

.circle .circle-right .active {
    background: #FFC107;
    color: #fff
}

.serve {
    text-align: center;
    padding: 40px 0;
}

.serve .serve-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.serve .serve-title img {
    width: 20px;
    height: 20px;
}

.serve .serve-tips {
    color: #9F9F9F;
}

.serve .serve-content {
    height: 420px;
    background-image: url(bg2.png);
    background-size: 70% 420px;
    background-repeat: no-repeat;
}

.serve .tabs {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    border: 1px solid transparent;
}

.serve .tabs .nav-link {
    color: #5C5C5C;
    font-size: 20px;
    position: relative;
    transition: color 0.3s ease;
    margin: 0 15px;
}

.serve .tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #FF9800;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 40px;
}

.serve .tabs .nav-link.active {
    color: #FF9800;
}

.serve .tabs .nav-link.active::after {
    width: 40%;
}

.serve .tabs .nav-link:hover {
    color: #FF9800;
}

.serve .serve-content .tab-content {
    padding: 20px 0;
}

.serve .serve-content .tab-content .tab-pane .tab1 {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0 60px;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-left {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #231705;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-left h3 {
    margin-bottom: 20px;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-left .tab1-item {
    width: 280px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    color: #948774;
    margin: 30px 0;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-left .tab1-item span:nth-child(1) {
    width: 280px;
    height: 37px;
    line-height: 37px;
    border-left: 4px solid #FF9800;
    color: #31230E;
    padding-left: 16px;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-left .tab1-item span {
    width: 280px;
    height: 37px;
    line-height: 37px;
    padding-left: 20px;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-left .btn-warning {
    width: 110px;
    height: 37px;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #FFC107;
    color: #FF9800;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-right {
    width: 807px;
    height: 241px;
    background: #FFFFFF;
    box-shadow: 0px 0px 29px 0px rgba(53, 36, 11, 0.1);
    border-radius: 10px 10px 10px 10px;
    text-align: left;
    padding: 30px
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-right h5 {
    color: #FF9800;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-right p {
    line-height: 2rem;
}

.serve .serve-content .tab-content .tab-pane .tab1 .tab1-right .btn-warning {
    width: 100px;
    height: 37px;
    background: transparent;
    border-radius: 20px;
    border: 1px solid #FFC107;
    color: #FF9800;
    margin-top: 20px;
}


.pay {
    background: #FFFCF6;
    padding: 20px 0;
}

.pay>div .row {
    display: flex;
    /* justify-content: space-between; */
    gap: 20px;
    align-items: center;
    /* width: 64%; */
}

.pay .pay-left {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* gap: 60px; */
    background: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    padding: 15px 40px;
    flex: 1;
    height: 480px;
}

.pay .pay-left .pay-left-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 180px;
}

.pay .pay-left .pay-left-text .btn-outline-warning {
    width: 60px;
    height: 33px;
    border-radius: 29px;
    border: 1px solid #FF9800;
}

.pay .pay-left .pay-left-text h3 {
    margin-top: 25px;
}

.pay .pay-left .pay-left-text p:nth-child(2) {
    color: #868686;
    margin-top: 30px;
    margin-bottom: 60px;
}

.pay .pay-left .pay-left-text p:nth-child(5) {
    color: #868686;
}

.pay .pay-left .pay-left-text h5,
h6 {
    color: #402C0E;
    font-weight: 700;
}

.pay .pay-left .pay-left-text div .btn-primary {
    width: 106px;
    height: 37px;
    background: linear-gradient(233deg, #FFD15A 0%, #FEC01E 100%);
    border-radius: 10px;
    border: 1px solid transparent;
    color: #000000;
}

.pay .pay-right {
    background: #fff;
    border-radius: 10px 10px 10px 10px;
}

.pay .pay-right .pay-right-item {
    /* background: #FFC107; */
    border-radius: 10px 10px 10px 10px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #3C2708 !important;
}

.pay .pay-right .pay-right-item img {
    width: 80px;
    height: 80px;
}

.pay .pay-right .pay-right-item div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pay .pay-right .pay-right-item div span:nth-child(1) {
    font-size: 18px;
    color: #493D2A;
}

.pay .pay-right .pay-right-item div span:nth-child(2) {
    font-size: 12px;
    color: #999999;
}


/* .pay .pay-right .active {
    background: #FFC107;
    color: #fff
} */

.plan {
    padding: 80px 0;

}

.plan span:nth-child(2) {
    color: #717171;

}

.plan .plan-box {
    background: #FFFCF6;
    border-radius: 10px 10px 10px 10px;
    padding: 30px 38px;
    position: relative;
    margin-top: 40px;
}

.plan .plan-box .plan-left {
    display: flex;
    align-items: center;
    gap: 80px;
}

.plan .plan-box .plan-left .plan-item {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.plan .plan-box .plan-left .plan-item div:nth-child(1) {
    display: flex;
    flex-direction: column;
    /* gap: 4px; */
}

.plan .plan-box .plan-left .plan-item div:nth-child(1) span:nth-child(1) {
    /* font-weight: bold; */
    font-size: 40px;
    color: #000000;
}

.plan .plan-box .plan-left .plan-item div:nth-child(1) span:nth-child(2) {
    font-weight: bold;
    color: #757575;
}

.plan .plan-box .plan-left .plan-item div:nth-child(2) {
    display: flex;
    flex-direction: column;
    /* gap:4px; */
}

.plan .plan-box .plan-left .plan-item div:nth-child(2) span:nth-child(1) {
    margin-bottom: 30px;
    font-size: 20px;
    border-right: 1px solid #D9D9D9;
    padding-right: 80px;
}


.plan .plan-box .plan-left .plan-item div:nth-child(2) span:nth-child(2),
span:nth-child(3) {
    color: #717171;
}

.plan .plan-box .plan-right img {
    width: 400px;
    height: 400px;
    position: absolute;
    right: 0;
    top: -130px;
}


@media screen and (min-width:768px) and (max-width:900px) {
    .circle .circle-right .circle-right-item {
        padding: 20px 27px;
    }

    /* .pay>div .row {
        display: flex;
        flex-direction: column;
        white-space:nowrap;
    } */

    .serve .serve-content .tab-content .tab-pane .tab1 .tab1-right p {
        width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

    }
}

@media screen and (min-width:863px) and (max-width:966px) {
    .circle .circle-right .circle-right-item {
        padding: 20px 27px;
    }

    /* .pay>div .row {
        display: flex;
        flex-direction: column;
        white-space: nowrap;
    } */
}

@media screen and (min-width:823px) and (max-width:863px) {
    /* .pay>div .row {
        display: flex;
        flex-direction: column;
    } */

    footer .footer .footer-bottom {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width:476px)and (max-width:1028px) {
    .serve .serve-content .tab-content .tab-pane .tab1 .tab1-right p {
        width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    footer .footer .footer-bottom {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width:1024px) and (max-width:1366px) {
    .plan .plan-box {
        background: #FFFCF6;
        border-radius: 10px 10px 10px 10px;
        padding: 30px 38px;
        display: flex;
    }

    .plan .plan-box .plan-right img {
        width: 200px;
        height: 200px;
        position: absolute;
        right: 0;
        top: 0;
    }

    footer .footer .footer-bottom {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width:728px) and (max-width:1028px) {
    .plan .plan-box {
        background: #FFFCF6;
        border-radius: 10px 10px 10px 10px;
        padding: 30px 38px;
        display: flex;
    }

    .plan .plan-box .plan-right img {
        width: 200px;
        height: 200px;
        position: absolute;
        right: 0;
        top: 0;
    }

    footer .footer .footer-bottom {
        display: flex;
        flex-direction: column;
    }
}