body {
        
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.navbar {
    margin-bottom: 20px;
}

.navbar-brand {
    font-weight: bold;
}

.navbar-nav > li > a {
    padding: 15px 20px; /* 调整内边距以增大点击区域 */
}

.navbar-nav > li.active > a {
    background-color: #007bff; /* 激活状态的背景色 */
    color: white; /* 激活状态的文字颜色 */
}

.navbar-nav > li > a:hover {
    background-color: #0056b3; /* 悬停状态的背景色 */
    color: white; /* 悬停状态的文字颜色 */
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="submit"], .btn {
    background-color: #15c377;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

input[type="submit"]:hover, .btn:hover {
    background-color: #0056b3;
}

/* 标签页样式 */
.tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px 10px;
    background: #f7f7f7;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid #ddd;
    border-bottom: none;
    transition: background 0.3s;
}

.tab.active {
    background: #15c377;
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.alert {
    margin-top: 20px;
}

.footer-nav {
    margin-top: 20px;
    padding: 10px;
    background-color: #0000000; /* 背景颜色 */
    border-top: 1px solid #ddd; /* 顶部边框 */
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 按钮水平居中 */
    align-items: center; /* 垂直居中对齐 */
}

.footer-nav a,
.footer-nav button {
    flex: 1; /* 每个按钮占据相等的空间 */
    margin: 5px; /* 为按钮增加间距 */
    padding: 10px; /* 内边距 */
    font-size: 14px; /* 字体大小 */
    border-radius: 5px; /* 圆角 */
    transition: background-color 0.3s, color 0.3s; /* 背景色变化效果 */
    display: flex; /* 使用 Flexbox 以便图标和文本能够居中 */
    align-items: center; /* 垂直居中对齐 */
    justify-content: center; /* 水平居中对齐 */
    border: 1px solid #ddd; /* 边框样式 */
}

.footer-nav a {
    background-color: #f7f7f7; /* 默认背景颜色 */
    color: #333; /* 默认文字颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.footer-nav a:hover {
    background-color: #e7e7e7; /* 悬停状态背景颜色 */
    color: #000; /* 悬停状态文字颜色 */
}

.footer-nav .btn-info {
    background-color: #5bc0de; /* 客服按钮的背景颜色 */
    color: white; /* 文字颜色 */
}

.footer-nav .btn-info:hover {
    background-color: #31b0d5; /* 悬停状态背景颜色 */
}
