body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
a{
    color: #000;
    text-decoration: none;
    background-color: transparent;
}
.home {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* 移动菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 头部样式 */
.Header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 8px 0;
    color: white;
    background: linear-gradient(to right, #0060FF, #367AF7);
    z-index: 9999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}

.Header-body {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Header-body .logo {
    width: 60px;
    height: 60px;
}

.Header-body .school {
    width: 160px;
    margin-left: 5px;
}

.Header-body .name {
    font-weight: 600;
    font-size: 24px;
    margin: 0 20px;
    color: #fff;
}

.Header-body .tabar {
    display: flex;
}

.Header-body .tabar .item {
    padding: 0 24px;
    line-height: 60px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.Header-body .tabar .item:hover::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    background: white;
    height: 2px;
    width: 50px;
    border-radius: 2px;
}

.Header-body .tabar .active {
    position: relative;
}

.Header-body .tabar .active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    background: white;
    height: 2px;
    width: 50px;
    border-radius: 2px;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .home {
        width: 100%;
    }

    .Header-body .name {
        font-size: 20px;
        margin: 0 10px;
    }

    .Header-body .tabar .item {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .Header-body {
        justify-content: space-between;
    }

    .Header-body .name {
        font-size: 18px;
    }

    .Header-body .tabar .item {
        padding: 0 10px;
        font-size: 14px;
    }

    .home-doings {
        flex-direction: column;
    }

    .home-doings .list {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .home-reveal .taber {
        flex-direction: column;
    }

    .home-reveal .taber .item {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .home-artifact .title {
        flex-direction: column;
    }

    .home-artifact .title .item {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .home-public .list .item {
        width: 31%;
    }

    .home-show .item {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .Header-body {
        padding: 8px 15px;
    }

    .Header-body .school {
        width: 120px;

    }

    .Header-body .name {
        font-size: 16px;
        margin: 0 8px;
    }

    .Header-body .tabar {
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        background: #1773DB;
        flex-direction: column;
        padding: 10px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .Header-body .tabar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .Header-body .tabar .item {
        line-height: 40px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .Header-body .tabar .item:hover::after,
    .Header-body .tabar .active::after {
        display: none;
    }

    .carousel {
        height: 300px;
        margin-top: 77px;
    }

    .grand-total {
        flex-direction: column;
        padding: 15px 10px;
    }

    .grand-total .divider {
        display: none;
    }

    .home-reveal .list .item {
        width: 48%;
    }

    .home-reveal .list {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home-artifact .listact .item {
        width: 48%;
    }

    .home-artifact .listact {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home-amity .imgtm {
        flex-wrap: wrap;
    }

    .home-amity .imgtm a {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 15px;
    }

    .home-show .item {
        width: calc(50% - 10px);
    }

    .footer .footer-body {
        flex-direction: column;
    }

    .footer .footer-body h4 {
        text-align: center;
        margin-top: 20px;
    }

    .footer .copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .copyright > div {
        margin: 5px 0;
    }

    .home-public .list {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home-public .list .item {
        width: 48%;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .Header-body .logo {
        width: 40px;
        height: 40px;
    }

    .Header-body .school {
        width: 100px;

    }

    .Header-body .name {
        font-size: 14px;
    }

    .carousel {
        height: 200px;
        margin-top: 57px;
    }

    .home-reveal .taber .item .items {
        margin: 0 10px;
        font-size: 13px;
    }

    .home-artifact .title .item .items {
        margin: 0 5px;
        font-size: 13px;
    }

    .home-reveal .list .item {
        width: 100%;
    }

    .home-artifact .listact .item {
        width: 100%;
    }

    .home-amity .imgtm a {
        flex: 0 0 calc(50% - 10px);
    }

    .home-show .item {
        width: 100%;
    }

    .home-public .list .item {
        width: 100%;
        min-width: auto;
    }
}

/* 轮播图样式 */
.carousel {
    position: relative;
    height: 550px;
    overflow: hidden;
    margin-top: 76px; /* 为固定头部留出空间 */
}

.carousel-container {
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.carousel-indicator {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicator.active {
    background: #0052D9;
}

.carousel-item:nth-child(2n) {
    background-color: #99a9bf;
}

.carousel-item:nth-child(2n+1) {
    background-color: #d3dce6;
}

/* 总览组件样式 */
.grand-total {
    background-image: url('../assets/total_back.png');
    background-size: 100% 100%;
    height: auto;
    min-height: 80px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9A9EA2;
    font-size: 15px;
    padding: 15px;
    text-align: center;
    flex-wrap: wrap;
}

.grand-total span {
    color: #1773DB;
    font-size: 20px;
    font-weight: 560;
    margin: 0 10px;
}

.grand-total .divider {
    margin: 0 10px;
}

/* 新闻列表组件样式 */
.home-new-list {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
}

.home-new-list .item-left {
    width: 70%;
    background: white;
    padding: 0 20px 14px;
    margin-right: 20px;
    box-sizing: border-box;
}

.home-new-list .item-left .newsTab {
    display: flex;
    justify-content: space-between;
    line-height: 56px;
    font-size: 20px;
    color: #1773DB;
    flex-wrap: wrap;
}

.home-new-list .item-left .newsTab .icontab {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.home-new-list .item-left .newsTab .more {
    font-size: 15px;
    cursor: pointer;
}
.home-new-list .item-left .newsTab .more a{
    color: #1773DB;
}

.home-new-list .item-left .neslist {
    display: flex;
    justify-content: space-between;
    color: #000;
    font-size: 15px;
    line-height: 37px;
    flex-wrap: nowrap;
}

.home-new-list .item-left .neslist > div:first-child {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}

.home-new-list .item-left .neslist .date {
    font-size: 15px;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

.home-new-list .item-right {
    width: 28%;
    background: white;
    padding: 0 20px;
    background-image: url('../assets/consult_back.png');
    background-size: 100% 100%;
    position: relative;
    box-sizing: border-box;
    min-height: 400px;
}

.home-new-list .item-right .title {
    color: #1773DB;
    line-height: 56px;
    font-size: 20px;
}

.home-new-list .item-right .icontab {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.home-new-list .item-right .icon {
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.home-new-list .item-right .name {
    color: #000029;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.home-new-list .item-right .tips {
    color: #333333;
    font-size: 15px;
    margin-bottom: 10px;
    margin-left: 22px;
    word-break: break-word;
}

.home-new-list .item-right .vajra {
    display: flex;
    justify-content: space-between;
    border-top: 2px dashed #D7D7DB;
    padding: 12px 0;
    flex-wrap: wrap;
}

.home-new-list .item-right .vajra .vajra-item {
    width: 20%;
    text-align: center;
    font-size: 13px;
    color: #333333;
}

.home-new-list .item-right .vajra .vajra-item img {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}

.home-new-list .item-right .ability {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #D7D7DB;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.home-new-list .item-right .ability .ability-item {
    width: 33%;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 50px;
    color: #1773DB;
    position: relative;
}

.home-new-list .item-right .ability .ability-item::before {
    position: absolute;
    content: '';
    right: 0;
    top: 16px;
    background: #E4E4EB;
    width: 1px;
    height: 20px;
}

.home-new-list .item-right .ability .ability-item:last-child::before {
    display: none;
}

@media (max-width: 991px) {
    .home-new-list {
        flex-direction: column;
    }

    .home-new-list .item-left,
    .home-new-list .item-right {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .home-new-list .item-right {
        min-height: 436px;
    }
}

/* 动态组件样式 */
.home-doings {
    display: flex;
    background: white;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.home-doings .list {
    width: calc(50% - 5px);
    padding: 10px 20px 16px;
    box-sizing: border-box;
}

.home-doings .list:last-child {
    margin-left: 10px;
}

.home-doings .list .navbar {
    display: flex;
    justify-content: space-between;
    color: #1F88FF;
    line-height: 40px;
    flex-wrap: wrap;
}

.home-doings .list .navbar .icontab {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.home-doings .list .navbar .more {
    font-size: 15px;
    cursor: pointer;
}

.home-doings .list .item {
    display: flex;
    justify-content: space-between;
    line-height: 37px;
    font-size: 15px;
    color: #000;
    flex-wrap: nowrap;
}

.home-doings .list .item > div:first-child {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}

.home-doings .list .item .date {
    font-size: 15px;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

@media (max-width: 991px) {
    .home-doings .list {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .home-doings .list .item .date {
        min-width: 70px;
    }
}

/* 陈列展示组件样式 */
.home-reveal {
    margin-bottom: 20px;
    padding: 10px 20px 0;
    background: white;
}

.home-reveal .taber {
    line-height: 36px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.home-reveal .taber .name {
    font-size: 16px;
    color: #1F88FF;
    display: flex;
    align-items: center;
}

.home-reveal .taber .name .icontab {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.home-reveal .taber .item {
    display: flex;
    flex-wrap: wrap;
}

.home-reveal .taber .item .items {
    color: #000;
    margin: 0 30px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
    text-align: center;
}

.home-reveal .taber .item .items:hover {
    color: #1F88FF;
    transform: translateY(-2px);
}

.home-reveal .taber .item .active {
    color: #1F88FF;
    border-bottom: 2px solid #1F88FF;
    transform: translateY(-2px);
}

.home-reveal .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-reveal .list .item {
    width: 23.6%;
    border: 1px solid #E3E3E3;
    text-align: center;
    border-radius: 2px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.home-reveal .list .item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-reveal .list .item .name {
    line-height: 46px;
    font-size: 15px;
    word-break: break-word;
    padding: 0 5px;
}

.home-reveal .view {
    line-height: 60px;
    font-size: 12px;
    color: #1F88FF;
    text-align: center;
    cursor: pointer;
}
.home-reveal .view a{
    line-height: 60px;
    font-size: 15px;
    color: #1F88FF;
}

/* 文物赏析组件样式 */
.home-artifact {
    padding: 10px 20px 24px;
    background: white;
    margin: 20px 0;
}

.home-artifact .title {
    line-height: 40px;
    font-size: 20px;
    color: #1F88FF;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.home-artifact .title .name{
    font-size: 16px;
    color: #1F88FF;
    display: flex;
    align-items: center;
}


.home-artifact .title .icontab {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.home-artifact .title .item {
    display: flex;
    flex-wrap: wrap;
}

.home-artifact .title .item .items {
    color: #000;
    margin: 0 30px;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
}

.home-artifact .title .item .active {
    border-bottom: 2px solid #1F88FF;
}

.home-artifact .listact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-artifact .listact .item {
    width: 23.6%;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.home-artifact .listact .item img {
    margin-top: 10px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.home-artifact .listact .item .name {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    color: white;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    word-break: break-word;
}

.home-artifact .paging {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.home-artifact .paging img {
    width: 20px;
    height: 20px;
    margin: 0 6px;
    cursor: pointer;
}

.home-artifact .paging .drop {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BCBCBC;
    margin: 0 4px;
    cursor: pointer;
}

.home-artifact .paging .active {
    background: #3979FF;
}

@media (max-width: 991px) {
    .home-artifact .title .item .items {
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .home-artifact .title .item .items {
        margin: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .home-artifact .title .item .items {
        margin: 0 5px;
        font-size: 13px;
    }
}

/* 公众服务组件样式 */
.home-public {
    padding: 0 20px 20px;
    background: white;
    margin: 20px 0;
}

.home-public .title {
    line-height: 50px;
    font-size: 20px;
    color: #1F88FF;
}

.home-public .title .name {
    display: flex;
    align-items: center;
}

.home-public .title .icontab {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.home-public .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-public .list .item {
    width: 31%;
    text-align: center;
    background-image: url('../assets/public_back.png');
    background-size: 100% 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.home-public .list .item img {
    margin-top: 30px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.home-public .list .item .name {
    color: #1F88FF;
    font-weight: 600;
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 50px;
    word-break: break-word;
}

.home-public .paging {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.home-public .paging .drops-container {
    display: flex;
    gap: 8px;
    margin: 0 10px;
}

.home-public .paging .drop {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #BCBCBC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-public .paging .drop.active {
    background-color: #3979FF;
    transform: scale(1.2);
}

.home-public .paging img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.home-public .paging img:hover {
    opacity: 0.8;
}

/* 文创展示组件样式 */
.home-show {
    padding: 0 20px 30px;
    background: white;
    margin: 20px 0;
}

.home-show .title {
    line-height: 56px;
    font-size: 20px;
    color: #1F88FF;
}

.home-show .title .name {
    display: flex;
    align-items: center;
}

.home-show .title .icontab {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.home-show .showcontent {
    position: relative;
    min-height: 240px;
}

.home-show .showcontent-item {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.home-show .list-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease-out;
}

.home-show .item {
    transition: all 0.3s ease;
    transform: scale(1);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    width: 23%; /* 每行显示4个，留出间距 */
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    height: auto;
}

.home-show .item:nth-child(1) { animation-delay: 0.1s; }
.home-show .item:nth-child(2) { animation-delay: 0.2s; }
.home-show .item:nth-child(3) { animation-delay: 0.3s; }
.home-show .item:nth-child(4) { animation-delay: 0.4s; }
.home-show .item:nth-child(5) { animation-delay: 0.5s; }
.home-show .item:nth-child(6) { animation-delay: 0.6s; }
.home-show .item:nth-child(7) { animation-delay: 0.7s; }
.home-show .item:nth-child(8) { animation-delay: 0.8s; }
.home-show .item:nth-child(9) { animation-delay: 0.9s; }
.home-show .item:nth-child(10) { animation-delay: 1s; }
.home-show .item:nth-child(11) { animation-delay: 1.1s; }
.home-show .item:nth-child(12) { animation-delay: 1.2s; }

.home-show .item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.home-show .item img {
    margin-top: 10px;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.home-show .item .name {
    color: #000;
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 5px;
    word-break: break-word;
    max-height: 40px;
    overflow: hidden;
}

.home-show .paging {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.home-show .paging .drops-container {
    display: flex;
    align-items: center;
    margin: 0 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.home-show .paging img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.home-show .paging img:hover {
    opacity: 0.7;
}

.home-show .paging .drop {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BCBCBC;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-show .paging .drop.active {
    background: #3979FF;
}

/* 友情链接组件样式 */
.home-amity {
    padding-bottom: 30px;
    background: white;
    margin-bottom: 20px;
}

.home-amity .name {
    padding-left: 20px;
    line-height: 60px;
    color: #1F88FF;
    font-size: 20px;
}

.home-amity .name .icontab {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.home-amity .imgtm {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
    padding: 0 20px;
}

.home-amity .imgtm a {
    flex: 0 0 calc(20% - 12px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.home-amity .imgtm a:hover {
    transform: translateY(-2px);
}

.home-amity .imgtm img {
    width: 100%;
    height: 50px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .home-show .item {
        width: 48%;
    }

    .home-show .item img {
        height: 120px;
        width: 120px;
    }

    .home-amity .imgtm a {
        flex: 0 0 calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {
    .home-amity .imgtm a {
        flex: 0 0 calc(50% - 8px);
        margin-bottom: 0px;
    }

    .home-amity .imgtm img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .home-show .item {
        width: 48%;
    }

    .home-show .item img {
        height: 130px;
        width: 130px;
    }

    .home-amity .imgtm a {
        flex: 0 0 calc(50% - 8px);
    }
}

/* 页脚组件样式 */
.footer {
    background: #444855;
    padding: 46px 20px;
}

.footer .footer-body {
    color: #A0A1A5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer-body h4 {
    margin-bottom: 10px;
}

.footer .footer-body p {
    font-size: 15px;
    line-height: 38px;
    word-break: break-word;
}

.footer .footer-body .code {
    width: 80px;
    height: 80px;
}


.footer .copyright {
    border-top: 1px dashed #A0A1A5;
    padding: 46px 0 0px;
    width: 100%;
    max-width: 1200px;
    font-size: 15px;
    margin: 30px auto 0;
    display: flex;
    color: #CDCDCD;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .copyright .public {
    width: 20px;
    height: 20px;
}
.footer .copyright .gongan{
    display: flex;
    align-items: center;
}
.zhantinglist .list-item {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}
.zhantinglist {
    position: relative;
    min-height: 300px; /* 根据实际内容调整高度 */
}
.zhantinglist .list-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.zhantinglist .list-item .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.zhantinglist .list-item .list .item {
    transition: all 0.3s ease;
    transform: scale(1);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.zhantinglist .list-item .list .item:nth-child(1) { animation-delay: 0.1s; }
.zhantinglist .list-item .list .item:nth-child(2) { animation-delay: 0.2s; }
.zhantinglist .list-item .list .item:nth-child(3) { animation-delay: 0.3s; }
.zhantinglist .list-item .list .item:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.zhantinglist .list-item .list .item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.wenhuacontent {
    position: relative;
    min-height: 400px;
}

.wenhuacontent-item {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}

.wenhuacontent-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.wenhuacontent-item .listact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease-out;
    min-height: 320px; /* 保持高度稳定 */
}

.wenhuacontent-item .listact .item {
    transition: all 0.3s ease;
    transform: scale(1);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    width: 23%; /* 每行显示4个，留出间距 */
    margin-bottom: 20px;
    box-sizing: border-box;
}

.wenhuacontent-item .listact .item:nth-child(1) { animation-delay: 0.1s; }
.wenhuacontent-item .listact .item:nth-child(2) { animation-delay: 0.2s; }
.wenhuacontent-item .listact .item:nth-child(3) { animation-delay: 0.3s; }
.wenhuacontent-item .listact .item:nth-child(4) { animation-delay: 0.4s; }
.wenhuacontent-item .listact .item:nth-child(5) { animation-delay: 0.5s; }
.wenhuacontent-item .listact .item:nth-child(6) { animation-delay: 0.6s; }
.wenhuacontent-item .listact .item:nth-child(7) { animation-delay: 0.7s; }

.wenhuacontent-item .listact .item:nth-child(8) { animation-delay: 0.8s; }
.wenhuacontent-item .listact .item:nth-child(9) { animation-delay: 0.9s; }
.wenhuacontent-item .listact .item:nth-child(10) { animation-delay: 1s; }

.wenhuacontent-item .listact .item:nth-child(11) { animation-delay: 1.1s; }
.wenhuacontent-item .listact .item:nth-child(12) { animation-delay: 1.2s; }
.wenhuacontent-item .listact .item:nth-child(13) { animation-delay: 1.3s; }
.wenhuacontent-item .listact .item:nth-child(14) { animation-delay: 1.4s; }
.wenhuacontent-item .listact .item:nth-child(15) { animation-delay: 1.5s; }
.wenhuacontent-item .listact .item:nth-child(16) { animation-delay: 1.6s; }
.wenhuacontent-item .listact .item:nth-child(17) { animation-delay: 1.7s; }
.wenhuacontent-item .listact .item:nth-child(18) { animation-delay: 1.8s; }
.wenhuacontent-item .listact .item:nth-child(19) { animation-delay: 1.9s; }
.wenhuacontent-item .listact .item:nth-child(20) { animation-delay: 2s; }

.wenhuacontent-item .listact .item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wenhuacontent-item .paging {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.wenhuacontent-item .paging .drops-container {
    display: flex;
    align-items: center;
    margin: 0 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.wenhuacontent-item .paging img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.wenhuacontent-item .paging img:hover {
    opacity: 0.7;
}

.wenhuacontent-item .paging .drop {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BCBCBC;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wenhuacontent-item .paging .drop.active {
    background: #3979FF;
}

.wenhuacontent .wenhuacontent-item{
    display: none;
}
.wenhuacontent-item.active{
    display: block;
}
.home-public  .title .name{
    display: flex;
    align-items: center;
}
.home-show .title .name{
    display: flex;
    align-items: center;
}

/* 响应式样式调整 */
@media (max-width: 991px) {
    .wenhuacontent-item .listact .item,
    .zhantinglist .list-item .list .item {
        width: 48%;
    }

    .wenhuacontent-item .listact .item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .wenhuacontent-item .listact .item,
    .zhantinglist .list-item .list .item {
        width: 48%;
    }

    .wenhuacontent-item .listact .item img {
        height: 200px;
    }
}
.wxcode{
    text-align: center;
}
