/*2026.6.30 新order页面*/
/*banner css*/
a {
	text-decoration: none !important
}
.sm-premium-banner {
    position: relative;
    padding: 20px 0; 
    overflow: hidden;

    background-color: #ffffff; 
    

    background-image: 
        radial-gradient(at 50% 40%, rgba(255, 255, 255, 1) 0px, transparent 60%),       
        radial-gradient(at 20% 30%, rgba(203, 238, 255, 0.85) 0px, transparent 55%),   
        radial-gradient(at 80% 35%, rgba(186, 232, 255, 0.75) 0px, transparent 60%),  
        radial-gradient(at 50% 90%, rgba(235, 247, 255, 0.9) 0px, transparent 50%),    
        radial-gradient(at 10% 80%, rgba(243, 235, 255, 0.4) 0px, transparent 40%);   
}

.sm-banner-img {
    border-radius: 12px !important;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: pointer;
    margin: 12px;
}


.sm-banner-img:hover {
    transform: translateY(-8px) scale(1.12); 
    box-shadow: 0 15px 30px rgba(47, 189, 248, 0.18); 
    filter: brightness(1.03); 
}
.sm-banner-more {
    width: 84px; 
    height: 84px; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0; 
    color: #64748b; 
    margin: 12px; 
    text-decoration: none !important; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.sm-banner-more:hover {
    transform: translateY(-8px) scale(1.12); 
    box-shadow: 0 15px 30px rgba(47, 189, 248, 0.18); 
    filter: brightness(1.03); 
    text-decoration: none !important; 
}

.sm-premium-banner .sm-action-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 260px !important;
    padding: 14px 28px !important;
    font-size: 1.15rem !important;
    border-radius: 50px !important; 
    text-decoration: none !important;
    margin: 0 !important; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}


.sm-premium-banner .sm-action-btn:hover {
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(47, 189, 248, 0.25) !important;
    filter: brightness(1.03) !important;
    text-decoration: none !important;
}

.sm-premium-banner .sm-action-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 4px 10px rgba(47, 189, 248, 0.15) !important;
    filter: brightness(0.95) !important;
}

.sm-premium-banner .sm-action-btn img {
    margin-right: 10px !important;
    width: 22px !important;
    height: auto !important;
}


.sm-pricing-section {
/*    padding-top: 50px;*/
   padding-bottom: 100px; 
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.sm-main-switcher {
    display: flex;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    max-width: 500px; 
    margin: 0 auto 60px; 
}
.sm-main-btn {
    flex: 1;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem; 
    text-align: center;
    color: #555555;
    transition: all 0.3s ease;
    border: none;
    background: none;
}
.sm-main-btn.active {
    background: #2fbdf8 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(47, 189, 248, 0.35);
}

.sm-main-panel { 
    display: none; 
}
.sm-main-panel.active { 
    display: block !important; 
}

.sm-split-layout {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border: 1px solid #eef0f2;
    overflow: hidden;
    min-height: 650px; 
}


.sm-left-sidebar {
    width: 300px;
    background-color: #f4f7f9;
    border-right: 1px solid #eef0f2;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}
.sm-sidebar-btn {
    display: flex;
    align-items: center;
    padding: 20px 36px; 
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25rem; 
    color: #4f5d6c;
    transition: all 0.2s ease;
    border-left: 6px solid transparent;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    text-align: left;
    width: 100%;
}
.sm-sidebar-btn img {
    margin-right: 20px;
    border-radius: 10px;
    width: 40px !important; 
    height: 40px !important;
}
.sm-sidebar-btn:hover {
    background-color: rgba(47, 189, 248, 0.05);
    color: #2fbdf8;
}
.sm-sidebar-btn.active {
    background-color: #ffffff !important;
    color: #2fbdf8 !important;
    border-left-color: #2fbdf8 !important;
}


.sm-right-content {
    flex: 1;
    padding: 50px;
    background: #ffffff;
}


.sm-product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px; 
}
.sm-product-logo {
    width: 64px; 
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
}
.sm-product-title-area h3 {
    font-weight: 800; 
    margin: 0 0 6px 0;
    font-size: 1.75rem; 
    color: #222;
}
.sm-product-title-area p {
    color: #777; 
    font-size: 1.05rem; 
    margin: 0;
}

.sm-product-view {
    display: none; 
}
.sm-product-view.active {
    display: block !important;
}


.sm-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 35px; 
}
.sm-inner-buy-card {
    border: 1px solid #2fbdf8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.02);
}
.sm-card-header {
    padding: 16px;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem; 
    text-align: center;
}
.sm-card-header.win { background-color: #2fbdf8; }
.sm-card-header.mac { background-color: #2fbdf8; }

.sm-card-body {
    padding: 35px 25px; 
    text-align: center;
}
	
	.sm-pricing-section a, 
.sm-pricing-section a:hover {
    text-decoration: none !important;
}

.sm-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 0 0 10px 0;
	display: flex !important; flex-direction: row !important; align-items: baseline !important; justify-content: center !important;
}
.sm-price-now {
    font-size: 2.4rem; 
    font-weight: 800; 
    color: #ff9800;
}
.sm-price-old {
    font-size: 1.3rem;
    color: #bbbbbb;
    text-decoration: line-through;
    font-weight: 500;
}


.sm-action-btn {
    display: inline-block;
    width: 100%;
    max-width: 220px; 
    padding: 10px 20px; 
    background-color: #2fbdf8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem; 
    margin: 20px auto 0;
    transition: background-color 0.2s;
}
.sm-action-btn:hover { background-color: #1baee9; color: #ffffff; }
.sm-action-btn.mac-btn { background-color: #2fbdf8; }
.sm-action-btn.mac-btn:hover { background-color: #1baee9; }


.sm-card-features {
    text-align: left;
    padding-left: 0;
    list-style: none;
    margin: 25px 0 0;
    font-size: 0.95rem; 
    color: #555;
}
.sm-card-features li {
    padding: 6px 0 6px 22px; 
    position: relative;
    line-height: 1.5;
}
.sm-card-features li::before {
    content: "�?;
    color: #2fbdf8;
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    top: 5px;
}

.sm-compare-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sm-compare-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sm-compare-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 50px;
}

.sm-compare-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
    border: 1px solid #eef0f2;
    overflow: hidden;
}


.sm-compare-row {
    display: grid;
    grid-template-columns: 3.0fr 2.0fr 2.0fr 3.5fr !important;
    align-items: center;
    border-bottom: 1px solid #f1f4f6;
}
.sm-compare-row:last-child {
    border-bottom: none;
}


.sm-compare-cell {
    padding: 22px 25px;
    font-size: 1.05rem;
    color: #4f5d6c;
    text-align: center;
}

.sm-compare-cell.feature-name {
    text-align: left;
    font-weight: 700;
    color: #222222;
    font-size: 1.1rem;
}

.sm-compare-header-row {
    background-color: #f8fafc;
    border-bottom: 2px solid #eef0f2;
    align-items: stretch; 
}

/* 保持你原本的居中对齐，碰都不碰它，绝对安�?*/
.sm-compare-header-cell {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sm-compare-header-cell h4 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #222222;
}

.sm-compare-header-cell .price {
    font-size: 1.5rem;
    color: #7b8893;
    font-weight: 600;
}

/* 🛠�?核心魔术微调：针对不同列进行精准对齐，绝不搞乱间�?*/

/* 1. 让最左边�?"What's Included" 文字往下沉一点，和右边的产品名对�?*/
.sm-compare-header-cell:first-child {
    padding-top: 55px !important; 
}

/* 2. 中间两列（Free Trial �?Single Product）因为顶部没有蓝�?Badge 标签�?
   我们在它们顶部人为加上一�?32px 的空隙，假装这里有个标签，这样它们的价格和按钮就会瞬间跟右边对齐了！ */
.sm-compare-header-cell:not(.highlight-column) {
    padding-top: 62px !important; 
}

/* 3. 规范所有价格盒子的上下间距，确保它们高度统一 */
.sm-price-box {
    margin: 10px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 以下为你原本的高亮、Badge等样式，完全保留 */
.sm-compare-row .highlight-column {
    background-color: rgba(47, 189, 248, 0.02); 
    position: relative;
}
.sm-compare-header-cell.highlight-column {
    background: linear-gradient(180deg, rgba(47, 189, 248, 0.08) 0%, rgba(47, 189, 248, 0.02) 100%);
    border-top: 4px solid #2fbdf8;
    padding-top: 30px !important; /* 带有王牌标签的这一列保持原样顶�?*/
}
.sm-compare-header-cell.highlight-column h4 {
    color: #1e9cd8; 
}
.sm-compare-header-cell .badge {
    background: #2fbdf8;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-icon {
    font-weight: bold;
    font-size: 1.3rem;
    display: inline-block;
}
.status-icon.yes {
    color: #2fbdf8;
}
.status-icon.no {
    color: #ccc; 
}


.sm-table-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ffffff;
    color: #2fbdf8;
    border: 2px solid #2fbdf8;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-top: 10px;
}
.sm-table-btn:hover {
    background-color: #2fbdf8;
    color: #ffffff !important;
}
.sm-table-btn.btn-highlight {
    background-color: #2fbdf8;
    color: #ffffff;
}
.sm-table-btn.btn-highlight:hover {
    background-color: #1baee9;
}


.sm-mini-logos {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 180px;
    margin: 4px auto 0;
}
.sm-mini-logos img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.sm-upgrade-container {
    text-align: center;
    padding: 40px 0 20px;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


.sm-upgrade-btn {
    display: inline-block;
    background-color: #2fbdf8; 
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 16px 50px;
    border-radius: 50px; 
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgb(160, 225, 252);
    transition: all 0.3s ease;
    margin-bottom: 18px;
}

.sm-upgrade-btn:hover {
    background-color: #23b1ec;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgb(202, 238, 253);
}

.sm-upgrade-text {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(90deg, #2fbdf8 0%, #70d1fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    letter-spacing: 0.3px;
}

.sm-trust-section {
    padding-bottom: 60px;
    background-color: #f8fafc; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sm-trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}


.sm-trust-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 50px;
}


.sm-reason-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 35px;
    margin-bottom: 70px;
}


.sm-reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid #eef0f2;
    text-decoration: none !important; 
    color: inherit;
    box-shadow: 0 6px 20px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sm-reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(47, 189, 248, 0.12);
    border-color: #2fbdf8;
}

.sm-reason-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #222222;
    margin: 0 0 12px 0;
}
.sm-reason-card p {
    font-size: 1.02rem;
    color: #667582;
    line-height: 1.5;
    margin: 0;
}
.sm-reason-icon-wrap [class^="icon-"], 
.sm-reason-icon-wrap [class*=" icon-"] {
    font-size: 36px !important;    
    color: #2fbdf8 !important;     
    line-height: 1 !important;    
    display: inline-block !important;
}


.sm-pay-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.sm-pay-logos img {
    height: 38px; 
    object-fit: contain;
    filter: grayscale(10%) contrast(95%);
    transition: filter 0.2s ease;
}
.sm-pay-logos img:hover {
    filter: none; 
}


@media (max-width: 992px) {
	
	.sm-compare-section {
    padding: 50px 0;
}
	.sm-pricing-section {
		padding-bottom: 0;
	}
    .sm-premium-banner {
        padding: 60px 0;
    }
    .sm-premium-banner h1 {
        font-size: 2rem !important; 
    }
    .sm-banner-img {
        width: 64px !important; 
        height: 64px !important;
        margin: 6px;
    }
	.sm-banner-more {
        width: 64px !important;    
        height: 64px !important;
        margin: 6px !important;    
        border-radius: 8px !important; 
        background: #ffffff !important;
    }
    .sm-banner-more span:first-child {
        font-size: 1.15rem !important; 
    }
    .sm-banner-more span:last-child {
        font-size: 0.65rem !important; 
        margin-top: 0 !important;
    }
    .sm-banner-more:hover {
        transform: none !important; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    }
	
	.sm-compare-row .sm-price-box,
    .sm-price-box {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;   
        justify-content: center !important;
        gap: 2px !important;              
    }
    .sm-price-now {
        font-size: 2rem !important;
        display: inline-block !important;
        font-weight: 700 !important;
    }
    .sm-price-old {
        font-size: 1rem !important;
        display: inline-block !important;
        margin-left: 4px !important;       
    }
    .sm-compare-header-cell .price {
        font-size: 1.3rem !important;
    }
    .sm-price-box span:last-child {
        display: block !important;        
        width: 100% !important;
        text-align: center !important;    
        font-size: 1rem !important;      
        color: #94a3b8 !important;         
        margin-left: 0 !important;         
    }
	
    .sm-split-layout {
        flex-direction: column; 
        min-height: auto;
    }
    .sm-left-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eef0f2;
        padding: 10px 0;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
    }
    .sm-left-sidebar::-webkit-scrollbar {
        display: none; 
    }
    .sm-sidebar-btn {
        padding: 12px 20px;
        font-size: 1rem;
        white-space: nowrap; 
        width: auto;
        border-left: none;
        border-bottom: 4px solid transparent; 
    }
    .sm-sidebar-btn.active {
        border-left-color: transparent !important;
        border-bottom-color: #2fbdf8 !important; 
    }
    .sm-sidebar-btn img {
        width: 28px !important;
        height: 28px !important;
        margin-right: 10px;
    }

    .sm-right-content {
        padding: 30px 20px;
    }
    .sm-product-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .sm-cards-row {
        grid-template-columns: 1fr; 
        gap: 25px;
    }

    .sm-compare-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    

    .sm-compare-table-wrapper {
        overflow-x: auto !important; 
        -webkit-overflow-scrolling: touch !important; 
        width: 100% !important;
        padding: 0 !important;
    }
    
    .sm-compare-row {
        width: max-content !important; 
        display: grid !important;
        grid-template-columns: 140px 100px 100px 100px !important; 
        align-items: stretch !important;
        background-color: #ffffff !important;
        padding: 0 !important; 
    }

  
    .sm-compare-header-row {
        position: sticky !important; 
        top: 0 !important;
        z-index: 100 !important;
        background-color: #f8fafc !important;
        border-bottom: 2px solid #e2e8f0 !important;
    }

    
    .sm-compare-cell.feature-name,
    .sm-compare-header-row .sm-compare-header-cell:first-child {
        position: sticky !important;
        left: 0 !important; 
        z-index: 10 !important;
        background-color: #ffffff !important;
        box-shadow: 4px 0 8px rgba(0, 0, 0, 0.06) !important; 
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
    }
    
 
    .sm-compare-header-row .sm-compare-header-cell:first-child {
        background-color: #f8fafc !important;
    }

   
    .sm-compare-header-cell {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 12px 4px !important;
        border-bottom: 1px solid #eef1f6 !important;
    }
    
    .sm-compare-header-cell h4 {
        font-size: 1rem !important;
        font-weight: 700 !important;
        margin: 0 0 4px 0 !important;
        text-align: center !important;
    }
    .sm-compare-header-cell .badge {
        font-size: 0.8rem !important;
        padding: 1px 4px !important;
        margin-bottom: 2px !important;
        white-space: nowrap !important;
    }
    .sm-compare-header-cell .sm-table-btn,
    .sm-compare-header-cell .click-buy {
        padding: 4px 6px !important;
        font-size: 0.78rem !important;
        width: 90% !important;
        max-width: 85px !important;
        text-align: center !important;
        margin-top: 4px !important;
    }
    .sm-compare-cell:not(.feature-name) {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        padding: 12px 6px !important;
        font-size: 0.88rem !important;
        color: #475569 !important;
        text-align: center !important;
        border-bottom: 1px solid #eef1f6 !important;
    }
    .status-icon {
        font-size: 1.1rem !important;
        font-weight: bold !important;
    }
    .status-icon.yes { color: #2fbdf8 !important; }
    .status-icon.no { color: #cbd5e1 !important; }
    .sm-compare-row .sm-compare-cell.highlight-column span,
    .sm-compare-header-cell.highlight-column h4 {
        color: #2fbdf8 !important;
        font-weight: 700 !important;
    }
    .sm-upgrade-btn {
        font-size: 1.25rem;
        padding: 12px 35px;
        width: 100%;
        max-width: 320px; 
    }
    .sm-upgrade-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    .sm-trust-title {
        font-size: 1.8rem;
    }
    .sm-reason-row {
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-bottom: 40px;
    }
    .sm-reason-card {
        padding: 30px 20px;
    }
    .sm-pay-logos {
        gap: 12px;
    }
    .sm-pay-logos img {
        height: 28px; 
    }
	
}

/*2026.06.30 new order css*//* CSS Document */

