.header {
    background: var(--gradient-bg);
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 3rem;
}

@keyframes colorfulGradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.apititle a {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: colorfulGradientAnimation 3s infinite;
    background-size: 200% 100%;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo_size {
    height: 50px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 2rem;
    position: relative;
}

.nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav ul li a:hover {
    transform: translateY(-3px);
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-text);
    transition: width 0.3s ease;
}

.nav ul li a:hover::after {
    width: 100%;
}

.title {
    text-align: center;
    padding: 4rem 0 2rem;
}

.title h1 {
    color: var(--light-text);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title p {
    color: var(--light-text);
    font-size: 1.2rem;
    opacity: 0.9;
}

.notice {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 1rem;
    width: 90%;
    max-width: 1000px;
    margin-bottom: 2rem;
}

.noticeColor {
    color: var(--light-text);
    text-align: center;
    font-weight: 500;
}

.noticeIstyle {
    font-weight: 700;
    margin-right: 0.5rem;
}

/* 能量闪租部分 */
.energyRentalDiv {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.energyRentalDiv h2 {
    grid-column: 1 / -1;
}

.bishuPublick {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.bishuPublick:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.setpNumberSytle {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.setpNumberSytle2 {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bishuPublick ul {
    list-style: inside;
    margin-left: 0.5rem;
}

.bishuPublick ul li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.selectTimeAndPrice {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.selectTimeAndPrice select {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selectTimeAndPrice select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.selectTimeAndPrice span {
    margin: 0 1rem;
    font-weight: 500;
}

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

.SelectPrompt span {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.SelectPrompt a {
    font-weight: 500;
}

.addressTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

#rqCodeicon2, #rqCodeicon3, #rqCodeicon4 {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#rqCodeicon2:hover, #rqCodeicon3:hover, #rqCodeicon4:hover {
    transform: scale(1.1);
}

.addressDiv {
    background-color: rgba(99, 102, 241, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px dashed var(--primary-color);
}

#energyAddress, #exchangeAddress, #copyPrestoreAddress {
    font-size: 1rem;
    font-family: monospace;
    display: block;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s ease;
}

#energyAddress:hover, #exchangeAddress:hover, #copyPrestoreAddress:hover {
    color: var(--primary-color);
}

.priceDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.priceSpan {
    font-weight: 500;
}

#price, #tokenName {
    color: var(--primary-color);
    font-weight: 700;
}

.conversion {
    display: flex;
    gap: 0.5rem;
}

.selectTrxUsdt, #selectUsdt {
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selectTrxUsdt {
    background-color: var(--primary-color);
    color: white;
}

#selectUsdt {
    background-color: #e2e8f0;
    color: #64748b;
}

.convertSpan {
    font-size: 0.9rem;
    color: #64748b;
}

/* U-T闪兑部分 */
.exchangeDiv {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.exchangeDiv h2 {
    /* 删除重复样式，保留统一样式 */
}

.exchangeRateDiv {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.exchangeRateP {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.exchangeutRate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.exchangeInputDiv {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    align-items: center;
}

.exchangeAddressDiv {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.exchangeItemFull {
    width: 100%;
}

.exchangeItem {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.exchangeItem:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.exchangeItemTitle {
    margin-bottom: 1rem;
}

.exchangeItemContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exchangeItemSwitch {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.exchangeItemSwitch:hover {
    transform: scale(1.1) rotate(180deg);
    background-color: var(--primary-color);
}

.exchangeItemSwitch:hover img {
    filter: brightness(0) invert(1);
}

#iconName1, #iconName2 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

#exchangeInput1 {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    background-color: white;
    color: #333;
}

#exchangeInput1:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.getCountStyle {
    margin-top: 0.5rem;
    width: 100%;
    display: block;
}

#getCount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    display: block;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: white;
    width: 100%;
}

.iconFont1 {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.iconName3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.address-with-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    background-color: rgba(99, 102, 241, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed var(--primary-color);
}

#exchangeAddress {
    flex: 1;
    word-break: break-all;
    font-size: 1rem;
    color: var(--primary-color);
    font-family: monospace;
}

.copy-btn {
    padding: 0.4rem 0.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

.exchangePrompt {
    font-size: 1rem;
    color: #64748b;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 在小屏幕上加入横向滚动而不是换行 */
@media (max-width: 768px) {
    .exchangePrompt {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

/* 笔数模式部分 */
.prestoreDiv {
    padding: 40px;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.prestoreDiv h2 {
    /* 删除重复样式，保留统一样式 */
}

.prestoreContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prestoreRow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.prestoreLeft {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prestoreRight {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.calculator-address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.prestoreRow:nth-child(2) {
    margin-top: 20px;
}

.SelectDiv {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.prestorePrompt {
    margin-top: 20px;
    padding: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 8px;
}

.descriptionDiv {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.descriptionDiv:hover {
    transform: translateY(-5px);
}

.descriptionDiv ul {
    list-style: inside;
    margin-left: 0.5rem;
}

.descriptionDiv ul li {
    margin-bottom: 0.75rem;
    text-align: left;
}

.descriptionDiv b {
    color: var(--primary-color);
    font-weight: 600;
}

.gray {
    color: #64748b;
}

.calculator {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.calculator:hover {
    transform: none;
}

.calculatorTitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.selectMethod {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
}

.useTrx, .useUsdt {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    background-color: #e2e8f0;
    color: #64748b;
    border: none;
    outline: none;
    user-select: none;
    display: inline-block;
}

.useTrx.active, .useUsdt.active {
    background-color: var(--primary-color);
    color: white;
}

.useTrx:not(.active), .useUsdt:not(.active) {
    background-color: #e2e8f0;
    color: #64748b;
}

.useTrx:hover, .useUsdt:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.calculatorGetCount {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}

#calculatorInput {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

#calculatorInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.calculatoriconDiv {
    margin: 1.25rem 0;
    display: flex;
    justify-content: center;
}

.calculatoricon {
    width: 1.5rem;
    transform: rotate(90deg);
}

#calculatorText {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.75rem 0;
}

.selectText {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

.prestoreAddress, .SelectDiv {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.prestoreAddress:hover {
    transform: none;
}

.selectTitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

#selectAddress {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 10px;
}

#selectAddress:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

#selectAddrBtn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: block;
}

#selectAddrBtn:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

/* 优化笔数模式说明文字居中 */
.prestoreExplain {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}

/* 添加标题样式 */
.prestoreHeading {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prestoreHeading span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #6366f1;
    background: linear-gradient(to right, #6366f1, #9f7aea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.prestoreHeading span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6366f1, #9f7aea);
    border-radius: 2px;
}

/* 代理部分 */
.agentsDiv {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.agentsDiv h2 {
    /* 删除重复样式，保留统一样式 */
}

.agentsContentDiv {
    display: block;
    width: 100%;
    padding: 0;
}

.agentsWrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.agentsSalary {
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.agentsSalary p, 
.agentsRequire p {
    font-weight: 600;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.agentsSalaryDiv, 
.agentsRequireDiv {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.ourResources, 
.agentsRequirements {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: calc(50% - 10px);
    margin-bottom: 15px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .ourResources, 
    .agentsRequirements {
        width: 100%;
    }
    
    .agentsSalary,
    .agentsRequire {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.ourResources img, 
.agentsRequirements img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.ourResources .agentsSalarySpan,
.agentsRequirements .agentsSalarySpan {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.5;
}

.agentsRequire {
    margin-top: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.agentsConsult {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.agentsConsultHeader {
    margin-bottom: 25px;
}

.agentsConsultHeader h3 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.agentsConsultContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.agentsConsultContent img {
    width: 32px;
    height: 32px;
}

.agentsConsultContent a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.agentsConsultContent a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* 关于我们部分 */
.aboutDiv {
    padding: 40px;
    background-color: #fff;
}

.aboutIndexPage {
    text-align: center;
}

.aboutIndexPage h3 {
    /* 删除重复样式，保留统一样式 */
}

.aboutUl {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.aboutUl li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.aboutUl li img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.aboutUl li span {
    font-weight: 600;
    color: #333;
}

.aboutIndexPage > div {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #4b5563;
    text-align: left;
}

.aboutIndexPage a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.aboutIndexPage a:hover {
    text-decoration: underline;
}

/* 加入我们部分 */
.joinUsDiv {
    padding: 40px;
    background-color: #f8fafc;
}

.joinUsIndexPage {
    text-align: center;
}

.joinUsIndexPage h3 {
    /* 删除重复样式，保留统一样式 */
}

.joinUsUl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

.joinUsUl li {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: calc(50% - 1rem);
    text-align: left;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.joinUsUl li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.joinUsUl li span {
    flex: 1;
    line-height: 1.5;
    color: #4b5563;
}

.joinUsUl li span i {
    font-style: normal;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.joinUsUl li span a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.joinUsUl li span a:hover {
    text-decoration: underline;
}

/* FAQ部分 */
.faq {
    padding: 40px;
    background-color: #fff;
}

.faqDiv {
    text-align: center;
}

.faqDiv h3 {
    /* 删除重复样式，保留统一样式 */
}

.faqItem {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faqItem:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faqTitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.faqTitle img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faqTitle h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faqItem p {
    margin: 0;
    padding-left: 2.25rem;
    color: #4b5563;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faqItem.active p {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.75rem;
}

.faqItem.active .faqTitle img {
    transform: rotate(90deg);
}

/* 底部导航栏 */
.footDiv {
    padding: 40px;
    background-color: var(--primary-color);
    color: #fff;
}

.safeAuthentication {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.safeAuthentication img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.safeAuthentication span {
    font-size: 0.9rem;
}

.footDiv a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footDiv a:hover {
    text-decoration: underline;
}

/* 模态框样式 */
.modal-step {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-step h4 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 16px;
}

.modal-step p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.modal-step a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.modal-step a:hover {
    text-decoration: underline;
}

.modal-action {
    margin-top: 24px;
    text-align: center;
}

.modal-action .btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.modal-action .btn:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

/* Telegram链接样式 */
.viewBot, .lianxikefu {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.viewBot:hover, .lianxikefu:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.apiKeFuId {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.apiKeFuId:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.energyRentalDiv h2, 
.exchangeDiv h2, 
.prestoreDiv h2, 
.apiDiv h2, 
.agentsDiv h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

.aboutIndexPage h3, 
.joinUsIndexPage h3, 
.faqDiv h3, 
.agentsConsultHeader h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

/* API部分样式 */
.apiDiv {
    background-color: var(--card-bg);
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.apiDiv h2 {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    display: block;
}

.apiContent {
    max-width: 1200px;
    margin: 0 auto;
}

.apiIntro {
    text-align: center;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.apiFeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.apiFeature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: calc(33.33% - 20px);
    min-width: 280px;
}

.apiFeature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.apiFeatureText h4 {
    margin: 0 0 8px 0;
    color: #1f2937;
}

.apiFeatureText p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.apiUsage {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.apiUsage h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.apiSteps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.apiStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    min-width: 200px;
    margin-bottom: 20px;
}

.apiStepNumber {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 10px;
}

.apiStep p {
    margin: 0;
    color: #4b5563;
}

.apiContact {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.apiContact p {
    margin-bottom: 15px;
    color: #4b5563;
}

.apiContactBtn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apiContactBtn:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .apiFeature {
        width: 100%;
    }
    
    .apiStep {
        width: 100%;
    }
}

