/* 公共头部样式 */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #336df3; /* 蓝色主题色 */
    display: flex;
    align-items: center;
    z-index: 1000;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.header-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

/* 公共底部导航栏样式 */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    border-top: 1px solid #eee;
    display: flex;
    z-index: 999;
}

.footer-nav {
    border-top: 1px solid #e6e6e6;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    font-size: 12px;
    text-decoration: none; /* 移除链接默认下划线 */
    flex: 1;
    padding: 5px 0;
}

.nav-item.active {
    color: #336df3; /* 蓝色主题色 */
}

.nav-item i {
    font-size: 22px;
    line-height: 1.5;
}

/* 公共body样式 */
body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* 灰色背景 */
    padding-top: 50px; /* 为顶部导航留出空间 */
    padding-bottom: 60px; /* 为底部导航留出空间 */
}

/* 公共容器样式 */
.container {
    width: 100%;
    height: calc(100vh - 110px); /* 减去头部(50px)和底部(60px)的高度 */
    overflow-y: auto;
}

/* 公共内容页样式 */
.content-page {
    padding: 15px;
    min-height: calc(100vh - 60px);
}

/* 公共页面标题样式 */
.page-title {
    text-align: center;
    margin-bottom: 20px;
    color: #336df3;
}

/* 公共内容区域样式 */
.page-content {
    background: white;
    padding: 10px 15px 15px 15px;
     border-radius: 0 0 15px 15px;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

/* 公共蓝色主题按钮样式 */
.btn-blue {
    background-color: #336df3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-blue:hover {
    background-color: #007DDB;
}

/* 搜索板块样式 */
.search-section {
    padding: 15px;
    background: white;
    /* margin-bottom: 15px; */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.search-form{
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 15px 15px 0 0;
}
.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #336df3; /* 使用蓝色主题色 */
    border-radius: 10px;
    overflow: hidden;
    /*background: #f9f9f9; !* 浅色背景 *!*/
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 14px;
    background: transparent;
}

.search-button {
    border: none;
    background: #336df3;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}
