#NavFooter, .astore{
    display: none;
}

/* 通用头部栏样式 */
.action-header {
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.action-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 45px;
}

.action-header-back {
    position: absolute;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
    -webkit-tap-highlight-color: transparent;
}

.action-header-back i {
    font-size: 1.25rem;
    font-weight: bold;
}

.action-header-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #666;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.action-header-actions {
    position: absolute;
    right: 0;
}

/* 响应式设计 */
@media (max-width: 576px) {
    .action-header {
        padding: 0.5rem;
        min-height: 45px;
    }
    
    .action-header-content {
        min-height: 45px;
    }
    
    .action-header-back {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.375rem;
    }
    
    .action-header-back i {
        font-size: 1.375rem;
    }
}