* {
    font-family: initial;
}

/* 密码切换图标样式 */
.password-toggle-wrap {
    position: relative;
    display: inline-flex;
    width: 100%;
}
.password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    width: 18px;
    height: 18px;
    z-index: 10;
}
.password-toggle-icon:hover {
    color: #666;
}
/* 调整密码输入框的padding，避免文字被图标遮挡 */
.password-input {
    padding-right: 30px !important;
}

/* ========== 隐藏所有浏览器默认的密码相关图标 ========== */

/* Edge 浏览器（旧版/IE）：隐藏默认的眼睛图标（::-ms-reveal） */
.password-input::-ms-reveal,
.password-toggle-wrap input[type="password"]::-ms-reveal {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Edge/IE 浏览器：隐藏清除按钮（::-ms-clear） */
.password-input::-ms-clear,
.password-toggle-wrap input[type="password"]::-ms-clear {
    display: none !important;
}

/* Chrome/Edge（Chromium）/Safari：隐藏自动填充和密码管理相关图标 */
.password-input::-webkit-credentials-auto-fill-button,
.password-toggle-wrap input[type="password"]::-webkit-credentials-auto-fill-button,
.password-input::-webkit-strong-password-auto-fill-button,
.password-toggle-wrap input[type="password"]::-webkit-strong-password-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 移除浏览器默认外观，防止显示默认图标 */
.password-toggle-wrap input[type="password"],
.password-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Firefox：虽然通常不显示，但为了保险也添加规则 */
.password-input::-moz-focus-inner,
.password-toggle-wrap input[type="password"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* 表单项布局样式 */
.form-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.form-item label {
    box-sizing: border-box;
}

.form-item .flex-1 {
    flex: 1;
    width: 100%;
}

.form-item input, .form-item textarea {
    width: 100%;
    box-sizing: border-box;
}

/* 自定义下拉框样式 */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
}

.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.custom-select-value {
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-arrow {
    width: 12px;
    height: 8px;
    margin-left: 8px;
    color: #666;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.custom-select-wrapper.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-select-wrapper.active .custom-select-dropdown {
    display: block;
}

.custom-select-options {
    padding: 4px 0;
}

.custom-select-option {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-option:hover {
    background-color: #f5f5f5;
    color: #f50;
}

.custom-select-option.selected {
    background-color: #f5f5f5;
    color: #f50;
}

.custom-select-wrapper input[type="hidden"] {
    display: none;
}

/* 错误状态样式 */
.custom-select-display.border-red-500 {
    border-color: #F12900 !important;
}

/* 自定义滚动条样式 */
.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 错误提示样式 */
.error-tip {
    display: none;
    margin-top: 4px;
    line-height: 1.2;
    font-size: 12px;
    color: #F12900;
}

/* 产品卡片样式兜底 */
.activity-seckill-item {
    width: 100%;
    box-sizing: border-box;
}

.activity-empty {
    color: #6A6A6A;
    font-size: 14px;
    text-align: center;
    padding: 40px 0;
}

button.active  {
    border: 1px solid #FF5500;
    color: #FF5500;
}

.continent-tab {
    padding-bottom: 6px;
}

.continent-tab.active {
    position: relative;
    border: none;
}

.continent-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FF5500;
    border-radius: 2px;
}

.wp-top-img {
    position: relative;
    background-image: url('../images/market/wp-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 410px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 62px 0 40px;
}

.default-font-color {
    color: #141414;
}

.wp-top-img-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .wp-top-img {
        background-image: url('../images/market/wp-bg-m.png');
        /*min-height: 71.46vw;*/
        padding: 30vw 0 4vw 0;
        align-items: flex-start;
        background-position: center top;
        background-size: cover;
    }

    .default-font-color {
        color: #fff;
    }

    .wp-top-img-content {
        width: 100%;
        padding: 0;
    }
}

.wp-default-color {
    color: #FF5500
}

.wp-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.wp-header {
    width: 100%;
    margin: 0 auto;
    padding: 6vw 4vw 0 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*max-width: 900px;*/
}

.wp-header h1 {
    font-weight: 600;
    font-size: 40px;
    color: #141414;
    line-height: 1.5;
    text-align: center;
}

.wp-subtitle {
    max-width: 900px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #6A6A6A;
    line-height: 1.5;
    padding: 0 100px;
}

.wp-features-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 32px 0;
}

.wp-feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background-color: white;
    border-radius: 175px;
}

.wp-feature-badge img {
    width: 14px;
    height: 14px;
}

.wp-feature-badge span {
    font-weight: 400;
    font-size: 12px;
    color: #3D3D3D;
    line-height: 1;
}

/* 价格卡片区域 */
/*#product-card-anchor {*/
/*    margin-top: 20px;*/
/*}*/
/*}*/
.wp-pricing-section {
    padding: 0;
    background: transparent;
    /*margin-top: -148px;*/
    position: relative;
    z-index: 1;
}

.wp-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 232px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.wp-pricing-tab {
    width: 160px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #3D3D3D;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 232px;
    font-weight: 400;
    line-height: 1;
}

.wp-pricing-tab.wp-tab-active {
    background: #fff;
    color: #FF5500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wp-pricing-tab:hover {
    color: #FF5500;
}

.wp-pricing-cards {
    /*display: grid;*/
    /*grid-template-columns: repeat(4, 1fr);*/
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.wp-cards-fade-out {
    opacity: 0;
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-pricing-card {
    width: 248px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 24px 20px;
    transition:
        transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    animation: cardFadeIn 0.4s ease-out forwards;
    opacity: 0;
    will-change: transform;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wp-pricing-card:hover {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
    border-radius: 8px 8px 8px 8px;
    transform: translateY(-4px) !important;
}

.wp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.wp-card-title-group {
    flex: 1;
    height: 72px;
}

.wp-card-title {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    line-height: 1.5;
}

.wp-card-subtitle {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    line-height: 1.5;
    min-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.wp-card-badge {
    padding: 4px 6px;
    background: rgba(255, 85, 0, 0.15);
    color: #FF5500;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    box-sizing: border-box;
}

.wp-card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}

.wp-price {
    font-size: 36px;
    font-weight: 600;
    color: #141414;
    line-height: 1;
}

.wp-period {
    font-size: 14px;
    color: #565656;
    margin-left: 16px;
}

.wp-card-description {
    height: 80px;
    font-size: 12px;
    color: #565656;
    line-height: 20px;
    margin-bottom: 24px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.wp-card-buy-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, #FF8000 0%, #FF5500 100%);
    border-radius: 4px;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.wp-card-buy-btn:hover {
    opacity: 0.8;
}

.wp-card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 120px;
    flex: 1;
}

.wp-card-feature {
    font-size: 14px;
    color: #3D3D3D;
    line-height: 1;
}

.wp-custom-config {
    text-align: center;
}

.wp-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 27px;
    background: #fff;
    color: #FF5500;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 400;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.wp-custom-btn:hover {
    opacity: 0.8;
}

.wp-custom-btn svg {
    transition: transform 0.3s;
}

.wp-custom-btn:hover svg {
    transform: translateX(4px);
}

/* 开箱即用体验区域 */
.wp-experience-section {
    padding: 64px 0 0 ;
}

.wp-experience-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.wp-experience-column {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 32px 28px;
}

.wp-column-title {
    font-weight: 600;
    font-size: 20px;
    color: #141414;
    line-height: 1;
    margin-bottom: 32px;
}

.wp-experience-list {
    display: grid;
    column-gap: 16px;
    row-gap: 32px;
}

/* 左侧列表：2列布局 */
#smartDeployList {
    grid-template-columns: repeat(2, 1fr);
}

/* 右侧列表：1列布局 */
#securityList {
    grid-template-columns: 1fr;
}

.wp-experience-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wp-experience-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.wp-experience-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.wp-experience-content {
    flex: 1;
}

.wp-experience-content h4 {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    line-height: 1;
    margin: 0;
    margin-bottom: 10px;

}

.wp-experience-content p {
    font-weight: 400;
    font-size: 14px;
    color: #565656;
    line-height: 1.55;
}


/* HTTPS 安全模式 Section */
.wp-https-section {
    padding: 64px 0 0;
    background: #f7f7f7;
}

.wp-https-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.wp-https-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding:  24px;
    text-align: center;
    transition: all 0.3s ease;
}

.wp-https-card:hover {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.wp-https-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
}

.wp-https-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.wp-https-card-title {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    line-height: 1;
    margin-bottom: 10px;
}

.wp-https-card-desc {
    font-weight: 400;
    font-size: 14px;
    color: #565656;
    line-height: 1.5;
}

/* 开箱即用的 WordPress 体验 Section (第二个) */
.wp-experience-section-2 {
    padding: 64px 0 0;
    background: #f7f7f7;
}

.wp-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.wp-experience-card-2 {
    background: #FFFFFF;
    border-radius: 8px;
    padding:  24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.wp-experience-card-2:hover {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.wp-experience-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.wp-experience-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.wp-experience-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wp-experience-card-title {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    line-height: 1;
    margin: 0 0 10px 0;
}

.wp-experience-card-desc {
    font-weight: 400;
    font-size: 14px;
    color: #565656;
    line-height: 1.5;
}

/* 步骤区域 */
.wp-steps-section {
    padding: 64px 0 0;
}

.wp-step-container{
    background: #FFFFFF;
    padding:48px 80px;
}

.wp-section-title {
    font-size: 26px;
    font-weight: 600;
    color: #141414;
    text-align: center;
    margin-bottom: 16px;
}

.wp-section-subtitle {
    font-size: 16px;
    color: #6A6A6A;
    text-align: center;
    max-width: 50%;
    margin: 0 auto 40px auto;
}

.wp-steps-wrapper {
    position: relative;
    margin-bottom: 48px;
    padding: 0 80px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.wp-steps-line {
    display: none;
}

.wp-steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 0;
}

.wp-step-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.wp-step-item:nth-child(1)::after,
.wp-step-item:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(50% + 16px);
    width: calc(100% - 32px);
    height: 2px;
    z-index: -1;
}

.wp-step-item:nth-child(1)::after {
    background: #FF5500;
}

.wp-step-item:nth-child(2)::after {
    background: #E5E5E5;
}

.wp-step-number {
    width:32px;
    height: 32px;
    background: #E2E2E2;
    color: #121E2F ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto 32px;
}

.wp-step-number.active {
    background: #FF5500;
    border-color: #FF5500;
    color: #fff;
}

.wp-step-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 10px;
}

.wp-step-item p {
    font-size: 14px;
    color: #565656;
    line-height: 1.5;
}

.wp-cta-button {
    text-align: center;
}

.wp-start-btn {
    width: 160px;
    height: 40px;
    background: linear-gradient( 90deg, #FF8000 0%, #FF5500 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.wp-start-btn:hover {
    opacity: 0.8
}

/* n8n区域 */
.wp-n8n-section {
    padding: 64px 0;
    background: #f7f7f7;
}

.wp-n8n-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wp-n8n-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.wp-n8n-card:hover {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.wp-n8n-card img {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

/* 卡片标签 */
.wp-n8n-card-tag {
    display: inline-block;
    width: max-content;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tag-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.tag-green {
    background-color: #ecfdf5;
    color: #10b981;
}

.tag-yellow {
    background-color: #fffbeb;
    color: #f59e0b;
}

/* 卡片图标 */
.wp-n8n-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wp-n8n-card-title {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    line-height: 1.5;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wp-n8n-card-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: #999;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.wp-n8n-card-desc {
    font-weight: 400;
    font-size: 14px;
    color: #6A6A6A;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.external-icon {
    width: 14px;
    height: 14px;
    color: #999;
    flex-shrink: 0;
}

/* 响应式设计 - 中等屏幕 (768px - 1080px) */
@media screen and (max-width: 1080px) {
    .wp-experience-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* 中等屏幕：两列都显示2列布局 */
    #smartDeployList,
    #securityList {
        grid-template-columns: repeat(2, 1fr);
    }

    /* HTTPS 安全模式 - 中等屏幕 */
    .wp-https-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* 开箱即用体验第二个 - 中等屏幕 */
    .wp-experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* 价格卡片 - 中等屏幕：2列布局 */
    .wp-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式设计 - 手机屏幕 */
@media screen and (max-width: 768px) {
    .wp-header {
        padding: 0 4vw;
        margin-top: 0;
        margin-bottom: 4vw;
    }

    .wp-header h1 {
        font-size: 5.5vw;
        line-height: 7.5vw;
        margin-bottom: 3vw;
        font-weight: 600;
    }

    .wp-subtitle {
        font-size: 3.2vw;
        line-height: 4.8vw;
        padding: 0;
        margin-top: 2vw;
    }

    .wp-features-list {
        gap: 2vw;
        margin: 4vw 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .wp-feature-badge {
        gap: 1.5vw;
        padding: 2vw 3.5vw;
        border-radius: 35vw;
    }

    .wp-feature-badge img {
        width: 2.8vw;
        height: 2.8vw;
    }

    .wp-container {
        padding: 6.4vw;
    }

    .wp-pricing-section {
        padding: 0;
    }

    .wp-pricing-tabs {
        margin-bottom: 5.73vw;
        margin-top: 5.73vw;
    }

    .wp-pricing-tab {
        font-size: 3.73vw;
        width: 41vw;
        height: 9.6vw;
    }

    .wp-pricing-cards {
        grid-template-columns: 1fr;
        margin-bottom: 7.33vw;
        gap: 7.33vw;
        flex-direction: column;
    }

    .wp-pricing-card {
        padding: 8.4vw 7.07vw;
        box-sizing: border-box;
        width: 100%;
    }

    .wp-card-title {
        font-size: 5.63vw;
        line-height: 9.14vw;
    }

    .wp-card-subtitle {
        font-size: 5.63vw;
        line-height: 9.14vw;
    }

    .wp-price {
        font-size: 12.66vw;
    }

    .wp-card-badge{
        font-size: 4.22vw;
        padding:1.47vw 2.13vw;
        box-sizing: border-box;
    }

    .wp-card-description{
        font-size: 4.22vw;
        line-height: 7.03vw;
        min-height: 14.06vw;
        margin-bottom: 8.53vw;
    }

    .wp-card-buy-btn{
        height: 14.06vw;
        border-radius: 1.41vw;
        font-size: 4.92vw;
        letter-spacing: 2px;
        margin-bottom: 8.4vw;
    }

    .wp-card-features{
        gap: 4.27vw;
        font-size: 4.92vw;
    }

    .wp-card-feature {
        font-size: 3.8vw;
    }

    .wp-pricing-card:hover {
        transform: translateY(0px) !important;
    }

    .wp-custom-btn {
        gap: 2.13vw;
        padding: 2.4vw 7.2vw;
        border-radius: 1.07vw;
        font-size: 4.27vw;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 400;
    }

    .wp-steps-wrapper {
        margin-bottom: 8.53vw;
    }

    .wp-steps-line {
        display: none;
    }

    .wp-steps-container {
        flex-direction: column;
        gap: 10.67vw;
        align-items: center;
    }

    .wp-step-item {
        width: 100%;
    }

    .wp-n8n-grid {
        grid-template-columns: 1fr;
        gap: 4.4vw;
    }

    /* n8n section 手机端 */
    .wp-n8n-section {
        padding: 4.27vw 0;
    }


    .wp-n8n-cards {
        grid-template-columns: 1fr;
        gap: 8.53vw;
    }

    .wp-n8n-card {
        border-radius: 0;
    }

    .wp-n8n-card-content {
        padding: 16px;
    }

    .wp-n8n-card-tag {
        font-size: 3.4vw;
    }

    .wp-n8n-card img {
        margin-bottom: 0;
    }

    .wp-n8n-card-content h4 {
        font-size: 3.81vw;
        line-height: 5.99vw;
    }

    .wp-n8n-card-content p {
        font-size: 3.27vw;
        line-height: 1.5;
    }
    .wp-n8n-card {
        border-radius: 2.18vw;
    }

    .wp-section-subtitle {
        font-size: 3.73vw;
        max-width: 100%;
        padding: 0px;
    }

    .wp-section-subtitle-m{
        padding: 0 8.27vw 8.53vw;
        margin-bottom: 0;
    }

    .wp-section-title {
        font-size: 4.8vw !important;
    }

    .wp-experience-wrapper {
        grid-template-columns: 1fr;
        gap: 10.67vw;
        margin-top: 0px;
    }

    .wp-experience-column {
        padding: 7.87vw 6.93vw;
        border-radius: 1.98vw;
    }

    .wp-column-title {
        font-size: 4.95vw;
        margin-bottom: 8vw;
    }

    .wp-experience-list {
        gap: 13.47vw;
    }

    /* 手机端：1列布局 */
    #smartDeployList,
    #securityList {
        grid-template-columns: 1fr;
    }

    .wp-experience-item {
        gap: 4vw;
    }

    .wp-experience-icon {
        width: 9.91vw;
        height: 9.91vw;
    }

    .wp-experience-icon img {
        width: 9.91vw;
        height: 9.91vw;
    }

    .wp-experience-content h4 {
        font-size: 3.96vw;
    }

    .wp-experience-content p {
        font-size: 3.47vw;
    }

    /* HTTPS 安全模式 - 移动端 */
    .wp-https-section {
        padding: 0px 0;
    }

    .wp-https-grid {
        grid-template-columns: 1fr;
        gap: 8.93vw;
    }

    .wp-https-card {
        padding:8.53vw 8.53vw 10vw;
    }

    .wp-https-icon {
        width: 14.24vw;
        height: 14.24vw;
        margin-bottom: 7.07vw;
    }

    .wp-https-icon img {
        width: 14.24vw;
        height: 14.24vw;
    }

    .wp-https-card-title {
        font-size: 5.69vw;
        margin-bottom: 3.6vw;
    }

    .wp-https-card-desc {
        font-size: 4.98vw;
    }

    .wp-experience-section{
        padding:0;
    }

    /* 开箱即用体验第二个 - 移动端 */
    .wp-experience-section-2 {
        padding: 0 0;
    }

    .wp-experience-grid {
        grid-template-columns: 1fr;
        gap: 8.93vw;
        margin-top: 0px;
    }

    .wp-experience-card-2 {
        padding: 20px;
    }

    .wp-experience-card-2:hover {
        transform: translateY(0px);
        box-shadow: none;
    }

    .wp-experience-card-icon {
        width: 10.57vw;
        height: 10.57vw;
        margin-bottom: 0;
        padding: 0;
    }

    .wp-experience-card-icon img {
        width: 10.57vw;
        height: 10.57vw;
    }

    .wp-experience-card-title {
        font-size: 4.23vw;
        margin-bottom:2.53vw;
    }

    .wp-experience-card-desc {
        font-size: 3.7vw;
    }

    .wp-steps-section{
        padding:0 0 5.07vw
    }

    .wp-step-container {
        padding: 8.67vw 9.6vw 7.07vw;
    }

    .wp-steps-wrapper {
        padding: 0;
        margin-bottom: 10.67vw;
    }

    .wp-step-item::after {
        display: none !important;
    }

    .wp-step-number {
        width: 8.53vw;
        height: 8.53vw;
        font-size: 4.27vw;
        margin: 0 auto 6.4vw;
    }

    .wp-step-item h4 {
        font-size: 4.27vw;
        margin-bottom: 2.67vw;
        line-height: 1;
    }

    .wp-step-item p {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }

    .wp-start-btn {
        width: 42.67vw;
        height: 10.67vw;
        font-size: 3.73vw;
        border-radius: 1.07vw;
    }

    .external-icon {
        width: 3.2vw;
        height: 3.2vw;
    }
}

/* WordPress配置弹窗 */
.wp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.wp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.wp-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    scrollbar-width: thin;
    scrollbar-color: #EEEEEE transparent;
}

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

.wp-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.wp-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 28px;
    height: 28px;
}

.wp-modal-close:hover {
    color: #666;
}

.wp-modal-body {
    padding:0 32px;
}

/* 区域选择标签 */
.wp-region-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.wp-region-tab {
    padding: 10px 32px;
    border: none;
    background: none;
    font-size: 14px;
    color: #747474;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.wp-region-tab.wp-active {
    color: #FF5500;
    border-bottom-color: #FF5500;
}

.wp-region-tab:hover {
    color: #FF5500;
}

/* 数据中心选择 */
.wp-datacenter-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.wp-datacenter-tab {
    width: 104px;
    height: 32px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    color: #3D3D3D;
    line-height: 1;
    cursor: pointer;
    background: #FFFFFF;
}

.wp-datacenter-tab.wp-active {
    background: #fff;
    color: #FF5500;
    border-color: #FF5500;
    background: rgba(255,90,7,0.1);
}

.wp-datacenter-tab:hover {
    border-color: #FF5500;
}

/* 表单行 */
.wp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.wp-form-group {
    display: flex;
    flex-direction: row;
    height: 32px;
    align-items: center;
    gap: 12px;
}

.wp-form-group-area{
    align-items: flex-start;
    height: auto;
}

.wp-form-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
    width: 88px;
    flex-shrink: 0;
}

.wp-form-input {
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    flex: 1;
}

.wp-form-input:focus {
    outline: none;
    border-color: #FF5500;
}

.wp-form-input::placeholder {
    color: #ccc;
}

.wp-form-textarea {
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    resize: none;
    font-family: inherit;
    flex: 1;
}

.wp-form-textarea:focus {
    outline: none;
    border-color: #FF5500;
}

.wp-form-textarea::placeholder {
    color: #ccc;
}

/* 付款周期 */
.wp-billing-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 24px;
}

.wp-billing-row > .wp-form-label {
    flex: 0 0 80px;
    margin-bottom: 0;
}

.wp-billing-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wp-billing-tabs {
    display: flex;
    gap: 15px;
}

.wp-billing-tab {
    width: 96px;
    height: 32px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid rgba(0,0,0,0.12);
    font-weight: 400;
    font-size: 14px;
    color: #3D3D3D;
    line-height: 1;
    background-color: white;
}

.wp-billing-tab.wp-active {
    background: #fff;
    color: #FF5500;
    border-color: #FF5500;
}

.wp-billing-tab:hover {
    border-color: #FF5500;
}

.wp-auto-renew {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #141414;
    cursor: pointer;
    margin-left: auto;
}

.wp-auto-renew input[type="radio"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #FF5500;
}

.wp-auto-renew span {
    user-select: none;
}

/* 数量选择 */
.wp-quantity-row {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 24px;
}

.wp-quantity-row > .wp-form-label {
    flex: 0 0 80px;
    margin-bottom: 0;
}

.wp-quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    overflow: hidden;
}

.wp-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    font-size: 12px;
    color: #929292;
    cursor: pointer;
    border-right: 1px solid rgba(0,0,0,0.12);
}

.wp-qty-btn:last-child {
    border-right: none;
    border-left: 1px solid rgba(0,0,0,0.12);
}

.wp-qty-btn:hover {
    background: #f8f8f8;
    color: #FF5500;
}

.wp-qty-input {
    width: 96px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    color: #141414;
}

/* 底部价格和按钮 */
.wp-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px;
    border-top: 1px solid #f0f0f0;
    box-sizing: border-box;
    margin-top: 24px;
}

.wp-total-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.wp-price-label {
    font-size: 14px;
    color: #141414;
}

.wp-price-value {
    font-size: 20px;
    color: #F12900;
    line-height: 1;
    font-weight: 600;
}

.wp-submit-btn {
    padding: 11px 23px;
    background: linear-gradient( 90deg, #FF8000 0%, #FF5500 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.wp-submit-btn:hover {
    opacity: 0.8;
}

/* 响应式 - 弹窗 */
@media screen and (max-width: 768px) {
    .wp-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .wp-modal-close {
        top: 0;
        right: 0;
    }

    .wp-modal-body {
        padding: 0 20px 20px;
    }

    /* 区域选择标签 - 保持水平 */
    .wp-region-tabs {
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .wp-region-tab {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* 数据中心选择 - 保持水平，支持横向滚动但隐藏滚动条 */
    .wp-datacenter-tabs {
        gap: 12px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        /* 隐藏滚动条 */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    /* 隐藏滚动条 - Webkit浏览器 */
    .wp-datacenter-tabs::-webkit-scrollbar {
        display: none;
    }

    .wp-datacenter-tab {
        flex-shrink: 0;
        width: auto;
        min-width: 104px;
        padding: 0 16px;
    }

    /* 表单行 - 改为单列,每个字段独占一行 */
    .wp-form-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* 表单组 - label和input左右显示 */
    .wp-form-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;
        gap: 12px;
    }

    .wp-form-group-area {
        flex-direction: row;
        align-items: flex-start;
    }

    .wp-form-label {
        width: auto;
        min-width: 88px;
        flex-shrink: 0;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
    }

    .wp-form-input {
        flex: 1;
        height: 40px;
        font-size: 14px;
    }

    .wp-form-textarea {
        flex: 1;
        height: 100px;
        font-size: 14px;
    }

    /* 付款周期 - label在左，内容在右 */
    .wp-billing-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .wp-billing-row > .wp-form-label {
        flex: none;
        width: auto;
        min-width: 88px;
        flex-shrink: 0;
        margin-bottom: 0;
        text-align: left;
        padding-top: 10px;
    }

    .wp-billing-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* 付款周期按钮 - 2x2网格 */
    .wp-billing-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    .wp-billing-tab {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    /* 自动续费 - 在按钮下方 */
    .auto-renew {
        margin-left: 0 !important;
    }

    .wp-auto-renew {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        padding: 0;
    }

    .wp-auto-renew input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    /* 数量选择 - 显示并保持水平布局 */
    .wp-quantity-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }

    .wp-quantity-row > .wp-form-label {
        flex: none;
        width: auto;
        min-width: 88px;
    }

    .wp-quantity-control {
        width: fit-content;
    }

    /* 底部 - 保持水平布局 */
    .wp-modal-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        gap: 16px;
    }

    .wp-total-price {
        justify-content: flex-start;
        flex-shrink: 0;
    }

    .wp-price-label {
        font-size: 14px;
    }

    .wp-price-value {
        font-size: 20px;
    }

    .wp-submit-btn {
        width: auto;
        padding: 11px 32px;
        font-size: 14px;
        flex-shrink: 0;
    }
}
