body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.wenhua_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(128, 128, 128, 0.3); /* 半透明的灰色，可按需调整颜色值和透明度数值 */
    padding: 10px 20px;
    position: fixed; /* 修改为固定定位，使其下滑时固定在页面顶部 */
    top: 0; /* 距离页面顶部0像素 */
    left: 0;
    right: 0;
    z-index: 2; /* 提高导航栏层级，使其在视频上方显示 */
}
.wenhua_header {
    display: flex;
    justify - content: space - between;
    align - items: center;
    background - color: rgba(128, 128, 128, 0.1); /* 降低透明度 */
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z - index: 2;
}
.wenhua_main {
    padding: 20px;
    margin-top: 60px; /* 根据导航栏的高度适当设置一个顶部外边距，这里假设导航栏高度大约 60px，可按实际调整 */
}
.wenhua_logo {
    display: flex;
    align-items: center;
}

.wenhua_logo img {
    height: 50px;
    margin-right: 10px;
}

.tagline {
    font-size: 1em;
    color: #000;
    font-weight: bold;
}

.wenhua_navigation ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

.nav-item {
    position: relative;
    margin: 0 10px;
    padding: 10px;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    font-weight: bold;
    font-size: 1.1em;
}

.nav-item img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

.nav-item:hover {
    color: #007BFF;
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    align-items: center;
}

.user-icons.icon img {
    height: 24px;
    margin-left: 10px;
}

.user-icons.icon {
    font-size: 0.8em;
}
.user-info {
    display: flex;
    align-items: center;
}

.user-icons .icon img {
    height: 24px;
    margin-left: 10px;
}

.user-icons .icon {
    font-size: 0.8em; /* 减小字体大小 */
}
.user-avatar {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.user-name {
    margin-left: 10px;
    color: #333;
}

.wenhua_hero {
    position: relative;
    /* 确保父容器是相对定位 */
}

.wenhua_hero-image {
    width: 100%;
    height: auto;
}
.wenhua_hero-video-container {
    position: absolute;
    top: 65%; /* 垂直居中定位，可根据实际情况微调 */
    left: 50%; /* 水平居中定位 */
    transform: translate(-50%, -50%);
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中对齐 */
    justify-content: center; /* 水平居中对齐 */
    width: 80%; /* 根据需求调整视频和图片的总宽度 */
    max-width: 1200px; /* 设置最大宽度，避免内容过大 */
    z-index: 1; /* 确保视频在背景图上方，但在导航栏下方 */
}

.wenhua_hero-video-container video {
    width: 50%; /* 视频占容器宽度的60% */
    height: auto;
    object-fit: contain; /* 让视频按原比例显示，完整展示视频内容 */
    border-width: 15px; /* 设置边框宽度，根据实际需求调整 */
    border-style: solid;
    border-image-slice: 30 fill; /* 30 表示切割图片的尺寸（根据图片实际情况调整），fill表示填充 */
    border-image-repeat: round; /* 让边框图片重复平铺以形成完整边框效果，可按需选择其他值如 repeat、stretch等 */
}

.wenhua_hero-video-container img {
    width: 50%; /* 图片占容器宽度的40% */
    height: auto;
    margin-left: 20px; /* 图片和视频之间的间距 */
}


.wenhua_hero-video-container video::before {
    content: "";
    position: absolute;
    top: -15px; /* 向上偏移一定距离形成上边框，根据边框宽度调整 */
    left: -15px; /* 向左偏移形成左边框 */
    right: -15px; /* 向右偏移形成右边框 */
    bottom: -15px; /* 向下偏移形成下边框 */
    background: url('cloudy-border-bg.png') repeat; /* 使用背景图片并设置重复平铺 */
    z-index: -1; /* 将伪元素置于视频下方，避免遮挡视频内容 */
}
.wenhua_hero-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.wenhua_hero-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center; /* 添加这行代码，使内部的文本元素在水平方向上居中对齐 */
    display: flex; /* 使用flex布局，方便垂直方向的对齐控制 */
    flex-direction: column; /* 让内部元素纵向排列 */
    align-items: center; /* 让内部元素在水平方向上居中对齐（结合flex布局使用） */
}
.wenhua_hero h1 {
    font-size: 4em;
	font-family: "楷体_GB2312"; 
	color: #FFFFE0;
    margin: 0;
}

.wenhua_hero-text p {
    font-size: 2em;
    font-family: "楷体_GB2312"; /* 设置为楷体_GB2312字体 */
	color: #FFFFFF;
    margin: 0;
}
.wenhua_button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 20px 40px; /* 将内边距加倍，水平和垂直方向都增大，可根据实际效果微调 */
    cursor: pointer;
    margin-top: 20px;
    font-size: 1.5em; /* 增大按钮文字的字体大小，可按需调整倍数 */
}
.wenhua_main {
    padding: 20px;
}

.wenhua_footer {
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.wenhua_footer-left,
.wenhua_footer-right,
.wenhua_footer-center {
    flex: 1;
}
.wenhua_footer-left img {
    height: 50px;
    margin-right: 10px;
}
.wenhua_footer-links,
.wenhua_about-us {
    list-style-type: none;
    padding: 0;
}

.wenhua_footer-links li,
.wenhua_about-us li {
    margin: 10px 0;
}

.wenhua_footer-links li a,
.wenhua_about-us li a {
    text-decoration: none;
    color: #333;
}

.wenhua_hero-video-container p {
    display: left;
    align - items: center;
    height: 100%;
}
/* 弹出框的初始状态为隐藏 */

/* 弹出框内容的样式 */
.popupBoxContent {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 5px;
}

/* 关闭按钮的样式 */

.closeBtn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease; /* 添加颜色过渡效果 */
}

.closeBtn:hover,
.closeBtn:focus {
    color: #007BFF; /* 鼠标悬停时变为蓝色，你可以选择其他颜色 */
    text - decoration: none;
    cursor: pointer;
}

@font - face {
    font - family: 'CustomFont';
    src: url('path/to/font.woff2') format('woff2'),
         url('path/to/font.woff') format('woff'),
         url('path/to/font.ttf') format('ttf');
}
.popupBoxContent {
    font - size: 16px;
    visibility: visible;
}
.popupBoxContent p {
    font - family: Arial, sans - serif;
}
#popupBox.popupBoxContent p {
    font - family: Arial, sans - serif;
}
.popupBox {
	display: none;
    width: 300px;
    height: 200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background - color: white;
    border: 1px solid #ccc; /* 添加浅灰色边框 */
    box - shadow: 0 0 10px rgba(0,0,0,0.2); /* 添加柔和的阴影效果 */
}
