/* 导航条样式 */
.navbar {
    background-color: rgba(255,255,255,.8);
    /*background-color: #368;*/
    width: 100%;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    position: absolute;
    /*padding: 0 5%;*/
    /*opacity: .5;*/
    top: 0px;
    z-index: 100;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    float: right;
    flex-wrap: wrap; /* 允许导航项在空间不足时换行 */
    justify-content: center; /* 水平居中导航项 */
}

.navbar ul li {
    color: black;
    margin: 5px 10px; /* 适当减小外边距，尤其是在手机上更紧凑 */
    padding: 5px 10px; /* 添加内边距，增加点击区域和视觉上的间隔 */
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 18px); /* 使用clamp函数，使字体大小在一定范围内自适应 */
}

/* 主要内容容器样式 */
.main-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 110px;
}

.module {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-sizing: border-box;
    border: 1px solid gray;
}

.phoneNavLogo {
    width: 100px;
    margin: 8px 15px;
    /*margin: 25px auto;*/
    /*height: 100%;*/
}
.light-version-logo {
    width: 100%;
    /*height: 100%;*/
}
/* 整体容器样式，用于容纳三条线并进行布局 */
.line-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    /*height: 150px;*/
}

/* 每条线的通用样式 */
.line {
    background-color: blue;
    transition: transform 0.3s ease;
}

/* 第一条短线的样式 */
#line1 {
    width: 50px;
    height: 3px;
    margin-bottom: 10px;
}

/* 第二条长线的样式 */
#line2 {
    width: 100px;
    height: 3px;
    margin-bottom: 10px;
}

/* 第三条短线的样式 */
#line3 {
    width: 50px;
    height: 3px;
}

.select {
    width: 120px;
    font-size: 24px;
}

/* 隐藏弹窗初始状态 */
.phoneNav {
    display: none;
    position: fixed;
    top: 62px;
    /*top: 0;*/
    right: 0;
    left: auto;
    /*width: 80%;*/
    /*width: 300px;*/
    height: 100vh;
    background-color: rgb(248,248,248);
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 9998;
}
.phoneNav ul li {
    line-height: 60px;
    /*margin-left: 35px;*/
    text-align: center;
}
.footerCopyright {
    width: 100%;
    height: 60px;
    color: white;
    font-size: 14px;
}

.ftwz {
    text-indent: 2em;
    font-size: 16px;
}

.footer-container {
    padding: 20px;
}
.footer-introduce {
    color: white;
    text-indent: 2em    ;
}
.footer-ul {
    color: white !important;
}
.footer-ul a{
    color: white !important;
}
/* 隐藏子列表 */
.footer-ul ul li ul {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.2s ease-out;
}

/* 当父列表项被点击时，切换子列表的显示状态 */
.footer-ul ul li.active > ul {
    display: block;
    max-height: 200px; /* 根据子列表可能的最大高度设置一个合适的值 */
}
.carousel {
    margin-top: 100px;
    background-image: url('../../assets/images/xtxq/jygl/gwbg.jpg');
    background-size: cover;
    width: 100%;
    height: 270px;
    overflow: hidden;
}

/* 列表项样式 */
.footer-ul ul li {
    cursor: pointer;
    list-style-type: none;
    /*border: 1px solid #ccc;*/
    margin: 5px;
    padding: 5px;
    position: relative; /* 为添加伪元素箭头做准备，设置相对定位 */
}
/* 一级列表项的箭头样式（用伪元素实现） */
.footer-ul ul .jiantou::after {
    content: '\25BC'; /* 初始为向下箭头字符 */
    position: absolute;
    right: 10px;
    top: 50%;
    color: white;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease; /* 添加箭头旋转的过渡效果 */
}

/* 当一级列表项展开（添加active类）时，旋转箭头 */
.footer-ul ul .jiantou.active::after {
    content: '\25B2'; /* 变为向上箭头字符 */
    transform: translateY(-50%) rotate(120deg);
}


/* 这里放置 CSS 样式 */
.original-div {
    width: 100%;
    height: 500px;
    padding: 10px;
    float: left;
    position: relative;
    /*background-color: #eee;*/
    overflow: hidden;
    background-image: url('../../assets/images/hylytp/hyly1.jpg');
}
/* 这里放置 CSS 样式 */
.original-div1 {
    width: 100%;
    height: 500px;
    padding: 10px;
    float: left;
    margin-left: .6%;
    position: relative;
    /*background-color: #eee;*/
    overflow: hidden;
    background-image: url('../../assets/images/hylytp/hyly2.jpg');
}
/* 这里放置 CSS 样式 */
.original-div2 {
    width: 100%;
    height: 500px;
    padding: 10px;
    float: left;
    margin-left: .6%;
    position: relative;
    /*background-color: #eee;*/
    overflow: hidden;
    background-image: url('../../assets/images/hylytp/hyly3.jpg');
}
/* 这里放置 CSS 样式 */
.original-div3 {
    width: 100%;
    height: 500px;
    padding: 10px;
    float: left;
    margin-left: .6%;
    position: relative;
    /*background-color: #eee;*/
    overflow: hidden;
    background-image: url('../../assets/images/hylytp/hyly4.jpg');
}
/* 这里放置 CSS 样式 */
.original-div4 {
    width: 100%;
    height: 500px;
    padding: 10px;
    float: left;
    margin-left: .6%;
    position: relative;
    /*background-color: #eee;*/
    overflow: hidden;
    background-image: url('../../assets/images/hylytp/hyly5.jpg');
}
/* 这里放置 CSS 样式 */
.original-div5 {
    width: 100%;
    height: 500px;
    padding: 10px;
    float: left;
    margin-left: .6%;
    position: relative;
    /*background-color: #eee;*/
    overflow: hidden;
    background-image: url('../../assets/images/hylytp/hyly6.png');
}

.statistics-top {
    width: 100%;
    height: 240px;
    margin-bottom: 1%;
    text-align: left;
}
.statistics-top-content {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    margin-right: 1%;
    border-radius: 20px;
    padding: 15px;
    background: linear-gradient(to bottom, #0b4fa3, #3ab33a);
}

.icon {
    display: none;
    color: #f8f8f8;
    position: absolute;
    top: 60px;
    right: 1%;
    z-index: 1000;
    cursor: pointer;
}

.icon3 {
    display: none;
    color: #f8f8f8;
    position: absolute;
    top: 60px;
    right: 1%;
    z-index: 1000;
    cursor: pointer;
}

/* 隐藏弹窗初始状态 */
.popupphone {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 360px;
    /*height: 500px;*/
    border-radius: 30px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    /*background-color: #0a0e92;*/
    z-index: 9998;
}

.xqboxphone {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 360px;
    /*height: 400px;*/
    border-radius: 30px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 9999;
}

.xqbox1phone {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 360px;
    /*height: 400px;*/
    border-radius: 30px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 9999;
}
.phoneNav {
    width: 100%;
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    background-color: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none; /* 默认不显示 */
    overflow-y: auto; /* 允许垂直滚动 */
    max-height: 90vh; /* 最大高度为视口高度 */
}

.phoneNav #closeNav {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 45px; /* 调整关闭按钮的字体大小 */
}

.phoneNav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center; /* 居中对齐列表项 */
}

.phoneNav li {
    margin: 10px 0;
}

.phoneNav a {
    text-decoration: none;
    color: #3d3c38;
    font-size: 16px; /* 减小字体大小 */
    display: block;
    padding: 8px; /* 减小内边距 */
}

.phoneNav a:hover {
    background-color: #f0f0f0;
}

.phoneNav .nav-link-item {
    display: block;
    padding: 8px; /* 减小内边距 */
}

.phoneNav .nav-link-item:hover {
    background-color: #f0f0f0;
}

.phoneNav span {
    display: inline-block;
    padding: 0 8px; /* 减小内边距 */
}

/* 357x667分辨率的设备 */
@media (max-width: 375px) and (max-height: 667px) {
    .phoneNav a {
        font-size: 14px; /* 进一步减小字体大小 */
        padding: 6px; /* 进一步减小内边距 */
    }

    .phoneNav span {
        padding: 0 6px; /* 进一步减小内边距 */
    }

    .phoneNav #closeNav {
        font-size: 40px; /* 进一步减小关闭按钮的字体大小 */
    }
}
.closeDisplay {
    display: block;
}
