body {
    background: #f7f7f7;
}

.styles_nav__3zu4a {
    background: #fff;
    position: sticky;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
}

.styles_nav__3zu4a .container {
    height: 100px;
}

.styles_nav__3zu4a .logo {
    width: 132px;
    height: 50px;
    margin-right: 20px;
}

header ul {
    display: flex;
    font-size: 18px;
    color: #666666;
    list-style: none;
}

header ul a {
    padding: 4px 8px;
    text-decoration: none;
    cursor: pointer;
    color: #666666;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensures even spacing between steps */
    width: 505px;
    /* Make container span full width */
    text-align: center;
    margin-top: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.icon-background {
    width: 38.34px;
    height: 38.34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ececec;
}

.icon {
    width: 16px;
    height: auto;
}

.step-label {
    margin-top: 5px;
    font-size: 12px;
    color: #333;
}

/* Active step styling */
.step.active .icon-background {
    background-color: #FF0000;
    /* Red background for active step */
}

.step.pending .icon-background {
    background-color: #f7f7f7;
    /* Gray for Pending */
}

.step.completed .icon-background {
    background-color: #00E2A5;
    /* Green for Completed */
}

/* Line styling */
.line {
    height: 1px;
    background-color: #CCCCCC;
    /* Line color */
    flex-grow: 1;
    /* Extend the line to fill available space */
    margin: 0 10px;
    /* Adjusts spacing around the line */
    align-self: center;
    /* Centers the line between steps */
}

.form.success {
    background: url(/assets/images/bg-success.webp) no-repeat 50%;
    background-size: cover;
    text-align: center;
    padding: 20px;
    /* 增加填充，使内容与边框之间有间距 */
    border-radius: 15px;
    /* 让边角更圆滑 */
    width: 300px;
    /* 控制宽度 */
    margin: 0 auto;
    /* 居中 */
}

.message-header {
    font-size: 18px;
    color: #BA5733;
    margin-top: 100px;
    /* 调整上边距 */
    font-weight: bold;
    padding-left: 15px;
}

.message-content {
    font-size: 20px;
    color: #832604;
    line-height: 1.5;
    margin-top: 15px;
    font-weight: bold;
    padding-left: 15px;
}

.message-content .highlight {
    font-weight: bold;
    color: #FF0D08;
}

.bonus-info {
    font-size: 20px;
    color: #FFC7B2;
    font-weight: bold;
    margin-top: 15px;
    padding-left: 15px;

}

.total-amount {
    font-size: 28px;
    color: #FFFFFF;
    margin-top: 10px;
    font-weight: bold;
    padding-left: 15px;
}

.total-amount .amount {
    font-size: 40px;
    font-weight: bold;
}

.download-section {
    background: url('/assets/images/bg-btn.webp') no-repeat center;
    background-size: contain;
    color: #FFFAF4;
    padding: 27px 0;
    /* 控制按钮区域的高度 */
    margin-left: 35px;
    margin-top: 15px;
}

.download-section .btn-download {
    font-size: 18px;
    margin-top: 5px;
    color: #FFFAF4;
}

.button-text {
    position: relative;
    bottom: 10px;
}

.customer-service {
    font-size: 14px;
    color: #A05A40;
    margin-top: -5px;
    margin-left: 30px;
}