html {
    height: 100%;
    font-size: 15px;
}

header {
    width:100%;
    /*background-color: rgba(0, 0, 0, 0.9);*/
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 视口高度 */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 确保padding和border包含在元素的总宽度和高度内 */
}

.yaowen-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    border-bottom: solid 3px rgba(8, 93, 173, 0.6);
    /*border-bottom: solid 2px rgba(8, 93, 173, 0.6);*/
    background-color: rgba(255, 255, 255, 0);
    /*background-color: #0B99F3;*/
    /*margin-top: 10px;*/
    margin-bottom: 20px;
    font-size: 18px;
    /*color: rgba(0 , 170, 255, 1);*/
    color: rgba(255 , 255, 255, 0.9);
}

.yaowen-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    text-align: left;
}

.yaowen-logo {
    width: 150px;
    text-align: center;
}

.yaowen-container .yaowen-title:before {
    content: "◆";
    display: inline-block;
    margin-right: 7px; /* 你可以根据需要调整这个值来设置点和文本之间的间距 */
}

.yaowen-title a {
    font-size: 18px;
}

.yaowen-more {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: center;
    margin-right: 200px;
}

.content-area {
    display: flex;
    width: 100%; /* 确保容器宽度正确 */
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* 隐藏超出容器的内容 */
    position: relative; /* 添加定位上下文，以便分页器可以绝对定位 */
}

.content-area .employee-image {
    width: 50%;
    border-radius: 10px;
    /* 设置图片的初始透明度，例如：0.8（80%的不透明度） */
    opacity: 0.3;
    /* 为了平滑过渡效果，你可以添加一个transition属性 */
    transition: opacity 0.3s ease-in-out;
}

.content-area .employee-image:hover {
    /* 当鼠标悬停在图片上时，改变透明度，例如：1（完全不透明）或更小的值（更透明） */
    opacity: 0.8;
}

.block-container {
    width: 50%;
    background-color: rgba(255, 255, 255, 0);
    padding: 20px; /* 内边距 */
    border-radius: 5px; /* 圆角 */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); !* 阴影效果 *!*/
    color: rgba(255, 255, 255, 0.9); /* 标题颜色 */
}

.block-container ul {
    list-style-type: none; /* 去除列表样式 */
    padding-left: 0; /* 去除左侧内边距 */
}

.block-container li {
    margin-bottom: 10px; /* 每个公告项之间的间距 */
}

.block-name {
    display: flex;
    justify-content: space-between;
    height: 39px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.circle-plus {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5); /* 文本颜色 */
}

.block-content {
    height: 230px;
}

.block-content li {
    display: flex;
    justify-content: space-between;
    padding: 3px;
    color: rgba(255, 255, 255, 0.9);
}

.block-content a {
    color: rgba(255, 255, 255, 0.9);
}

.block-content a:hover {
    color: orange;
}

.block-content a:before {
    content: "·";
    display: inline-block;
    margin-right: 10px; /* 你可以根据需要调整这个值来设置点和文本之间的间距 */
}

.swiper-container {
    width: 100%; /* 确保容器宽度正确 */
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* 隐藏超出容器的内容 */
    position: relative; /* 添加定位上下文，以便分页器可以绝对定位 */
}

.swiper-slide img {
    width: 100%; /* 图片宽度设置为100%，以适应幻灯片宽度 */
    height: auto; /* 高度自动调整以保持图片的宽高比 */
    opacity: 0.8; /* 可选：调整图片的不透明度 */
    transition: opacity 0.5s ease;
}

.swiper-pagination {
    position: absolute; /* 将分页器绝对定位到容器的底部 */
    bottom: 10px; /* 距离容器底部10px */
    width: 100%; /* 分页器占据整个容器的宽度 */
    text-align: center; /* 使分页器居中对齐 */
    left: 0; /* 确保分页器从左边开始 */
}


footer {
    width: 100%; /* 确保容器宽度正确 */
    /* 将footer推到main的下方 */
    margin: 15px auto 0;
    padding-top: 5px; /* 在footer上方添加10px的间距，而不是直接调整footer的位置 */
}

footer p {
    color: rgba(255, 255, 255, 0.8);
}

footer a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

footer .limit-width {
    width: 100%; /* 确保容器宽度正确 */
    max-width: 1200px;
    display: flex; /* 使用Flexbox布局 */
    border-top: solid 1px rgba(255, 255, 255, 0.2);
    /*border-top: solid 1px rgba(8, 93, 173, 0.6);*/
    margin: auto auto 30px;
    padding-top: 120px;
    padding-bottom: 50px;
}

footer .full-width {
    width: 100%; /* 确保容器宽度正确 */
    margin: auto auto 0;
    /*padding: 5px;*/
    font-size: 12px;
    text-align: center; /* 文本水平居中 */
    padding-top: 25px;
    padding-bottom: 10px;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    /*background-color: rgba(8, 93, 173, 0.6);*/
    background:url('/static/img/banner.png') no-repeat top center;
    background-size: cover;
}

.footer-column {
    width: 100%; /* 确保容器宽度正确 */
    font-size: 12px;
    color: #fff;
    margin: 15px auto 10px;
}

.footer-column.left {
}

.footer-column.right {
    max-width: 300px;
}

.contact-info {
    position: relative; /* 设置为相对定位，以便内部元素可以使用绝对定位 */
}

.contact-details {
    padding-left: 70px; /* 根据图标大小调整，用于为图标留出空间 */
}

.contact-icon {
    position: absolute; /* 绝对定位图标 */
    top: 0; /* 图标顶部与父元素顶部对齐 */
    left: 0; /* 图标左侧与父元素左侧对齐 */
}

.contact-icon img {
    width: 50px; /* 设置图标宽度 */
    height: auto; /* 图标高度自动，以保持原始宽高比 */
}
