html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
.navbar {
    background: #e6f2ff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}


.footer {
    background-color: #f0f8ff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f8ff;
    padding: 10px;
}

.logo-company-name {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px; /* 根据需要调整Logo的大小 */
    height: auto;
}

.dingwei {
    width: 500px; /* 根据需要调整大小 */
    height: auto;
}

.company-name {
    font-size: 36px;
    margin-left: 10px;
    font-family: KaiTi; /* 添加楷体字体 */
    font-weight: bold; /* 实现加粗效果 */
}

.company-mingyan {
    font-size: 36px;
    margin-left: 10px;
    font-family: STXingkai; /* 添加楷体字体 */
    font-weight: bold; /* 实现加粗效果 */
    color: red; /* 设置字体颜色为红色 */
}

.company-title {
    display: flex;
    align-items: center;
}

.company-motto {
    text-align: center; /* 居中文本 */
    font-size: 36px;
    margin-top: 10px; /* 根据需要调整 */
    font-family: STXingkai, KaiTi, STKaiti, sans-serif; /* 添加楷体字体 */
    font-weight: bold; /* 实现加粗效果 */
    color: red; /* 设置字体颜色为红色 */
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 400px; /* 根据需要调整导航栏的宽度 */
}

    .nav a {
        text-decoration: none;
        color: #000;
    }

.content {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: nowrap; /* 防止内容换行 */
}

.content-section {
    width: 30%; /* 设置每个部分的宽度 */
    margin: 10px;
    box-sizing: border-box;
    text-align: center;
}



.divider {
    background-color: #0000ff;
    height: 2px;
    width: 100%;
}

.contact-info {
    width: 80%; /* 设置宽度为80% */
    max-width: 800px; /* 设置最大宽度，以防在大屏幕上过宽 */
    margin: 0 auto; /* 居中对齐 */
    background-color: #f9f9f9; /* 可选，设置背景色 */
    padding: 20px; /* 可选，增加内部填充 */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* 可选，添加阴影效果 */
}
body {
  margin-bottom: 60px;
}