

/************************************************************
 * ONLYLIEFLAT – Checkout 最终稳定结构样式
 ************************************************************/

/* 页面背景 */
body.woocommerce-order-pay {
    background: #f4f6f9;
}

/* 外层白卡片 */
.checkout-wrapper {
    padding: 80px 20px;
}

.checkout-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0,0,0,.08), 0 12px 30px rgba(0,0,0,.04);
}

/* 左右两栏布局 */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
}

/* 移动端一列 */
@media (max-width: 980px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

/* 表格样式 */
.checkout-left table.shop_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 24px;
}

.checkout-left table.shop_table th,
.checkout-left table.shop_table td {
    padding: 12px 8px;
    border-bottom: 1px solid #e1e4e8;
    text-align: left;
    font-size: 15px;
}

.checkout-left table.shop_table tfoot tr th,
.checkout-left table.shop_table tfoot tr td {
    font-weight: 600;
    font-size: 15px;
}

/* 支付区域卡片 */
.checkout-right #payment {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 6px 30px rgba(0,0,0,.05);
}

/* 支付方式列表 */
.checkout-right ul.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-right ul.wc_payment_methods li {
    background: #f9fafc;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-right ul.wc_payment_methods li:hover {
    border-color: #5b8cff;
    background: #f0f4ff;
}

.checkout-right ul.wc_payment_methods li input[type="radio"] {
    display: none;
}

.checkout-right ul.wc_payment_methods li input[type="radio"]:checked + label {
    border-color: #5b8cff;
    background: #e6edff;
}

.checkout-right ul.wc_payment_methods li label {
    flex: 1;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #333;
    font-size: 0px;
}

.checkout-right ul.wc_payment_methods li img {
    height: 35px;
    margin: 0 auto;
    content: url(https://onlylieflat.com/wp-content/themes/honestg/images/page-blog/paypal.png);
}

/* 支付按钮 */
.checkout-right button#place_order {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5b8cff, #6b9cff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    margin-top: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-right button#place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}


/* payfor页面 */
/* 页面整体背景 */
body.page-template-payfor {
    background: #f4f6f9;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 统一说明卡片 */
.sponsor-notice {
    background: #f5f7fb;
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
}

/* 整体卡片容器 */
.sponsor-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.sponsor-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 980px) {
    .sponsor-card {
        grid-template-columns: 1fr;
    }
}

/* 单个赞助卡片 */
.sponsor-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 卡片标题 + 底色 */
.sponsor-title {
    background: #f0f4ff;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

/* 描述文字 */
.sponsor-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
}

/* 高亮文字 */
.highlight {
    color: #28a745;
    font-weight: bold;
}

/* 按钮 */
.sponsor-btn {
    background: linear-gradient(135deg, #5b8cff, #6b9cff);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sponsor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

/* 支付宝二维码样式 */
.alipay-btn-wrapper {
    position: relative;
}

.alipay-qr {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    z-index: 100;
    width: 200px;
    text-align: center;
}

.alipay-qr img {
    width: 100%;
    border-radius: 12px;
}

/* 结算页错误提示美化（赞助版） */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-error {
    background: rgba(255, 230, 230, 0.8);
    border-left: 4px solid #ff5a5f;
    padding: 14px 16px;
    border-radius: 10px;
    list-style: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    font-size: 14px;
}

.woocommerce-error li {
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-error strong {
    color: #ff5a5f;
    font-weight: 600;
}
.wc_payment_methods li:not(.payment_method_paypal):not(.payment_method_ppcp-gateway) {
    display: none;
}

.payment_method_paypal label img,
.payment_method_ppcp-gateway label img {
    max-width: 220px;
}

/* 隐藏文章介绍列表 */
.hidden-game-info {
    display:none !important;
}

/* 致歉说明 */
/*.containerP {
            background: white;
            padding: 1.5rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 940px;
            width: 100%;
            text-align: center;
            margin: 0 auto;
            }
.containerP h3 { 
                color: #e74c3c;
                margin-bottom: 0.5rem; 
                font-weight: bold;
                }
.containerP .status-box {
                        background: #fff5f5;
                        border-left: 4px solid #e74c3c;
                        padding: 1rem;
                        margin: 1.5rem 0;
                        text-align: left;
                        font-size: 0.9rem;
                        }
.containerP p {
                margin-bottom: 5px;
                text-align: left;
            }
.containerP .highlight {
    color: var(--primary-color);
    font-weight: bold;
                    }*/


/* 广告 */
/* 铺满全屏的广告布局 */
.ad-overflow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #f9f9f9;
    padding: 20px 0;
}

.side-ad-fixed {
    position: fixed;
    top: 150px;
    width: 160px;
    height: 600px;
    z-index: 10;
}

.download-center-card {
    max-width: 800px;
    width: 95%;
    background: #fff;
    margin: 20px auto;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* 顶部广告位间隔 */
.download-ad-top {
    margin-bottom: 20px;
}

/* 资源缩略图 */
.download-thumb {
    max-width: 280px;
    border-radius: 10px;
}
/* 视频广告占位符 */
.video-ad-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    margin: 20px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
    
/* 移动端适配：隐藏侧边固定广告防止重叠 */
@media (max-width: 1200px) {
    .side-ad-fixed {
        display: none;
    }
}

/*
    =======================================================================================================

    Name          : author

    =======================================================================================================
*/
/* 复用并优化个人中心的 UI 风格 */
.author-page {
    background: #f8f9fa;
    padding: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 40vh;
}

.author-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

/* 顶部名片背景 */
.author-cover {
    height: 160px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    position: relative;
}

/* 头像布局 */
.author-header-content {
    text-align: center;
    margin-top: -60px;
    padding-bottom: 30px;
    position: relative;
}

.author-avatar-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 15px 0 5px;
}

.author-badge {
    display: inline-block;
    background: #e7f1ff;
    color: #007bff;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* 详细信息部分 */
.author-details {
    padding: 30px;
    border-top: 1px solid #f0f0f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-box {
    padding: 15px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.info-box-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box-value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

/* 简介区域全宽 */
.info-box.full-width {
    grid-column: 1 / -1;
}

/* 搜索框美化 */
.author-search-bar {
    margin-bottom: 30px;
}

.search-input-group {
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.search-input-group input {
    border: none !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    flex: 1;
}

.search-input-group button {
    background: #fff;
    border: none;
    padding: 0 20px;
    color: #007bff;
    transition: 0.3s;
}

.search-input-group button:hover {
    background: #007bff;
    color: #fff;
}

/*
    =======================================================================================================

    Name          : newpersonalcenter

    =======================================================================================================
*/
.user-center-page {
    background: #f8f9fa;
    padding: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 630px;
}

.uc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 25px;
    border: none;
}

.uc-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.touxiang-wrapper {
    text-align: center;
    padding: 20px 0;
}

.avatargradien {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, #007bff, #6610f2);
    position: relative;
    transition: transform 0.3s;
}

.avatargrpreview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.notif-item {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.notif-meta {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.status-unread {
    color: #ff4d4f;
    background: #fff1f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

.content-tab {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px !important;
    display: flex;
    list-style: none;
    padding: 0;
}

.content-tab li {
    margin-right: 20px;
    cursor: pointer;
}

.content-tab li a {
    color: #888;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.content-tab li.tab-selected a {
    color: #007bff;
}

.content-tab li.tab-selected a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #007bff;
}

.info-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.info-label {
    width: 100px;
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
}

.info-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.order-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fafafa;
}

.btn-custom {
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary-custom {
    background: #007bff;
    color: #fff;
    border: none;
}
/*
    =======================================================================================================

    Name          : tools

    =======================================================================================================
*/



.textarea_w_h {
    display:block;
    width:100%;
    height:350px;
    background-color:rgba(255,255,255,0.70);
    border:2px solid #AAAAAA;
    padding-left:8px;
}

#id_text_edit_script input.form_input_text {
    display:inline-block;
    vertical-align:middle;
    width:350px;
    height:32px;
    margin:0 5px 0 0;
    padding:0 4px;
 }

 #id_text_edit_script button.form_button {
    display:inline-block;
    vertical-align:middle;
    width:;
    height:32px;
    margin:0px;
    padding:0px 4px;
    cursor:pointer;
 }

 #id_text_edit_script .key {
    display:inline-block;
    vertical-align:middle;
    width:70px;
    height:;
    color:black;
 }

 #id_text_edit_script .sub {
    display:inline-block;
    vertical-align:middle;
    color:gray;
    font-size:smaller;
    margin-left: 3px;
 }

.rpg_title {
    height: 30px;
    font-size: 18px;
    display:block;
    text-align:left;
    color:snow;
    background-color:#000;
    border-bottom:2px solid #df2020;
    margin:0px;
    padding:6px 6px 0 6px;
    vertical-align:middle;
    margin:10px 0px 10px 0px;
}

.rpg_title .h1 {
    color:rgb(180,200,240);
    color:rgba(200,220,240,0.80);
    margin:0px;
    padding:0px;
}

.h1_sub {
    display:inline-block;
    color:snow;
    margin:0px;
    margin-left:4px;
    padding:0px;
    font-size:smaller;
    font-weight:normal;
    filter:alpha(opacity=80);
    opacity:0.80;
}

.h2_sub {
    display:inline-block;
    color:snow;
    margin:0px;
    margin-left:4px;
    padding:0px;
    font-size:smaller;
    font-weight:normal;
    filter:alpha(opacity=80);
    opacity:0.80;
}

.h3_sub {
    display:inline-block;
    color:royalblue;
    margin:0px; margin-left:4px;
    padding:0px;
    font-size:smaller;
    font-weight:normal;
}

.outerframe {
    display:block;
    text-align:center;
}

.outerframe .innerframe {
    display:inline-block;
    width:100%;
    max-width:768px;
    margin-bottom: 30px;
}

.outerframe .innerframe .tablecontent {
    display:block;
    text-align:left;
    margin:0px;
    padding: 0 6px 6px 6px;
}

.outerframe .innerframe .tablecontent .revision {
    display:block;
    margin:8px 0px;
}

.outerframe .innerframe .tablecontent .num {
    display:block;
    color:aliceblue;
    background-color:#000;
    border-radius:4px;
    margin:6px 0px;
    padding:4px;
    padding-left:8px;
    font-weight:bold;
    line-height:100%;
    letter-spacing:1px;
}

.outerframe .innerframe .tablecontent .button {
    display:block;
    width:100%;
    height:50px;
    cursor:pointer;
}

.font_1 {
    font-size:larger;
    line-height:120%;
}

.font_2 {
    font-size:smaller;
    color:gray;
    line-height:100%;
}

.arrow {
    display:block;
    text-align:center;
    color:#df2020;
    font-size:16px;
    line-height:160%;
}

.outer {
    display:block;
    text-align:center;
    width:100%;
}

.outer .inner {
    display:inline-block;
    text-align:left;
    width:100%;
    max-width:768px;
}

.outer .inner .titles {
    color:rgba(50,50,50,0.8);
    font-size:16px;
    font-family:Bookman Old Style,IMPACT,Meiryo;
}

.outer .inner .upload {
    display:inline-block;
    vertical-align:middle;
    color:gray;
    margin-top: 6px;
}

.outer .inner .arrow_2 {
    display:inline-block;
    vertical-align:middle;
    transform:rotate(-90deg);
    -webkit-transform:rotate(-90deg);
    color:#CCCCCC;
    font-size:smaller;
}

.outer .inner .select {
    display:inline-block;
    vertical-align:middle;
    margin-top: 6px;
}

.outer .inner .select .input {
    vertical-align:middle;
    cursor:pointer;
}

.outer .inner .code {
    display:block;
    background-color:rgba(240,240,240,0.8);
    border:1px solid #CCCCCC;
    border-radius:6px;
    margin:8px 0 0 0;
    padding:4px;
}

.outer .inner .code .select_mode {
    display:block;
    margin:0px;
    padding:4px;
    cursor:pointer;
}

.outer .inner .select_radio {
    vertical-align:top;
    width:30px;
    height:30px;
    cursor:pointer;
}

.outer .inner .codeout {
    display:inline-block;
    vertical-align:middle;
    margin:5px 0 0 5px;
}

.outer .inner .codeinn {
    display:inline-block;
    vertical-align:middle;
    font-size:14px;
    letter-spacing:;
}

.outer .inner .edencode {
    color:rgba(30,30,30,0.9);
    font-size:larger;
    letter-spacing:1px;
    font-family:Bookman Old Style,IMPACT,Meiryo;
}

.outer .inner .backgroundmiddle {
    display:inline-block;
    vertical-align:middle;
    color:gray;
    background-color:rgba(220,220,220,0.60);
    border-radius:4px;
    margin:0 0 0 8px;
    padding:4px;
    font-size:12px;
    line-height:120%;
}

.line_color_gray {
    border-color:#CCCCCC;
    margin:8px 0;
 }

.ruby_se .ruby_rp .ruby_se .ruby_rt {
    color:gray;
    font-size:8px;
    font-weight:normal;
    line-height:100%;
}

.fontred {
    color:#df2020 ;
}

.inner .resetout {
    position:relative;
    z-index:5;
    margin-top: 8px;
}

.inner .resetin {
    position:absolute;
    z-index:5;
    right:0px;
    top:0px;
}

.inner .resetout .resetin .resetbutton {
    width:52px;
    height:48px;
    cursor:pointer;
}

.resetout .resetin .resetbutton .resetfont {
    color:gray;
    font-size:10px;
    line-height:120%;
}

.inner .submit {
    display:inline-block;
    color:rgba(30,30,30,0.9);
    font-size:14px;
    font-weight:bold;
    line-height:140%;
    letter-spacing:0px;
}

.inner .submitfont {
    display:inline-block;
    color:gray;
    font-size:10px;
    line-height:120%;
    letter-spacing:2px;
}

.inner .submitbutton {
    width:100%;
    height:48px;
    cursor:pointer;
}

.inner .caution {
    display:none;
    color:red;
    font-size:smaller;
    line-height:160%;
    padding-top: 6px;
}


/*
    =======================================================================================================

    Name          : oldpersonalcenter

    =======================================================================================================
*/

@keyframes moveGradient {
    50% {
        background-position: 100% 50%;
    }
}

.adisabled {
  cursor: default;
  pointer-events: none;
}

.entry-utilitynew {
    width: 100%;
    height: 20px;
    display: block;
    font-size: 13px;
    margin: 3px 0 2px 0;
}

.skm {
    height: auto;
    min-height: 230px;
    overflow: hidden;
    display: block;
    top:0px;
}

.skm-button {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 1px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.skm-button img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.indexnew {
    width: 165px;
    height: 30px;
    position: relative;
    top:11px;
    left:0px;
    float: left;
    border-bottom: 1px gray solid;
}

.indexnew .text{
    font-size: 16px;
    font-weight: bolder;
}

.indexnew .en{
    font-size: 13px;
    color: #494040;
    font-style: italic;
}

/* 反馈按钮样式 */
.btn-feedback {
    color: #1d1d1f
}

.btn-feedback:hover {
    color: #df2020
}

/* ========================================================================
    Redeem & Invite Page - 文字增强版 (基于 3.0 结构)
   ======================================================================== */

.page-pricing-table {
    display: flex;
    justify-content: center;
    margin: 40px auto;
}

.pricing-sugested {
    width: 100% !important;
    max-width: 600px; /* 邀请码页建议宽一点，方便阅读说明 */
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* 标题：保留 3.0 经典切角 */
.pricing-name {
    padding: 25px !important;
    background: #2c2c2e !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800;
    text-align: center;
    letter-spacing: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}

/* 统计区 */
.stats-container {
    padding: 30px 40px 10px !important;
}
.count-num {
    font-family: 'Consolas', monospace;
    font-size: 26px;
    font-weight: bold;
    margin-left: 10px;
}
.available { color: #28a745; }

/* 文本公共样式：优化字号和易读性 */
.text-content {
    font-size: 14px; /* 核心文字大小，不显突兀 */
    line-height: 1.8; /* 增加行间距，适合长句阅读 */
    color: #555;
    text-align: left;
}

/* 红色背景通告区 (原 cell-black 进化) */
.cell-important-notice {
    background: #fff8f7 !important; /* 极浅红背景区分 */
    border-top: 1px solid #ffedeb !important;
    border-bottom: 1px solid #ffedeb !important;
    padding: 20px 40px !important;
    margin: 10px 0;
}

/* 详细规则说明区 */
.cell-detailed-rules {
    padding: 20px 40px !important;
}

/* 强调文字 */
.text-blue-bold { color: #007bff; font-weight: bold; }
.text-red-bold { color: #ff4b2b; font-weight: bold; }

/* 邀请码显示框样式 */
.code-output-box {
    width: 85% !important;
    height: 55px !important;
    background: #f9f9f9 !important;
    border: 2px dashed #ff4b2b !important;
    color: #ff4b2b !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* 按钮：赛博红渐变 */
.btn-main-action {
    width: 85% !important;
    height: 52px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important;
    color: #fff !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-radius: 4px !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.2);
    transition: 0.3s;
}
.btn-main-action:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 75, 43, 0.3);
}

.suggested-button {
    padding: 10px 40px 40px;
    display: flex;           /* 开启弹性布局 */
    justify-content: center;  /* 水平居中 */
    background: #fff;
}
/* 结果显示区容器 */
.display-area {
    padding: 20px 40px 10px !important;
    display: flex !important;           /* 开启弹性布局 */
    justify-content: center !important;  /* 水平居中 */
    background: #fff !important;
}