/* common.css */

/* Base Typography and Colors */
html,
body {
    background-color: #fff;
    font-size: 0.28rem;
}

/* Shared Header Styles */
.module-header {
    position: relative;
    width: 100%;
    height: auto;
    background: none;
    padding-top: 0;
    display: block;
}

.header-bg-img {
    width: 100%;
    display: block;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
}

.logo-area {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-icon {
    height: 0.62rem;
    width: auto;
    margin-right: 0.2rem;
}

.logo-img-text {
    height: 0.55rem;
    width: auto;
}

.search-bar {
    position: relative;
    z-index: 1;
    background: url('http://szshequ.org.cn/static/sgw-mobile/images/headers/bg-search.png') no-repeat center center;
    background-size: 100% 100%;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #A29E9F;
    font-size: 0.28rem;
    text-align: left;
}

.search-icon-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Tab/Header Separator */
.icon-tab-sep {
    height: 0.16rem;
    display: block;
    margin: 0 0.07rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 0.3rem 0.4rem;
    font-size: 0.28rem;
    color: #666;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb .separator {
    margin: 0 0.2rem;
    color: #666;
}

.breadcrumb .current {
    color: #3182d9;
}

/* Prevent scrolling when popup is open */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
    position: relative;
}