.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(36 34 34 / 67%) 0%, rgb(250 250 250 / 0%) 100%);
    z-index: 1;
}

.banner_txt {
    position: relative;
    z-index: 5;
}

.gallery-button-container {
    position: relative;
    z-index: 2;
}

/* 六大行业拨盘区域 */
.industries-section {
    margin: 40px 0 60px;
    position: relative;
}

.dial-container {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.dial-wheel {
    position: relative;
    width: 500px;
    height: 500px;
}

.dial-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(51, 112, 255, 1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.5);
}

.industry-item {
    position: absolute;
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    transform-origin: center;
    text-align: center;
    transform: translate(-50%, -50%) scale(1);
}

.industry-item:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.industry-item.active {
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 15;
}

.industry-icon {
    margin-bottom: 12px;
    color: rgba(51, 112, 255, 1);
    transition: transform 0.3s ease;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
}

.industry-item h3 {
    color: #2c3e50;
    font-weight: 600;
}

.industry-description {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 300px;
    text-align: center;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.industry-description.top {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.industry-description.bottom {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.industry-description.left {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.industry-description.right {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.industry-description.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.industry-description h3 {
    color: rgba(51, 112, 255, 1);
    margin-bottom: 15px;
}

.industry-description p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-cases-btn {
    background: rgba(51, 112, 255, 1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.view-cases-btn:hover {
    background: rgba(51, 112, 255, 1);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .dial-wheel {
        width: 450px;
        height: 450px;
    }

    .industry-item {
        width: 120px;
        height: 120px;
    }

}

@media (max-width: 900px) {
    .dial-wheel {
        width: 400px;
        height: 400px;
    }

    .industry-item {
        width: 110px;
        height: 110px;
    }


    .industry-description {
        width: 280px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    .dial-container {
        height: 450px;
    }

    .dial-wheel {
        width: 350px;
        height: 350px;
    }

    .industry-item {
        width: 100px;
        height: 100px;
    }

    .industry-icon {
        margin-bottom: 8px;
    }

    .industry-description {
        width: 250px;
        padding: 18px;
    }

    .dial-center {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .dial-container {
        height: 400px;
    }

    .dial-wheel {
        width: 300px;
        height: 300px;
    }

    .industry-item {
        width: 90px;
        height: 90px;
    }

    .dial-center {
        width: 90px;
        height: 90px;
    }

    .industry-description {
        width: 220px;
        padding: 15px;
    }
}



.border-underline {
    border-bottom: 2px solid rgba(51, 112, 255, 1);
    /* 2px蓝色实线下划线 */
    padding-bottom: 15px;
    /* 可选：增加文本与下划线间距 */
    display: inline-block;
    /* 使边框仅环绕文本 */
}

.container2 {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.header-content {
    flex: 1;
}


.case-container {
    position: relative;
}

.cases-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.case-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    overflow: hidden;
}

.case-group {
    margin-bottom: 30px;
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
}

.case-card {
    width: 430px;
    /* display: flex;
    flex-direction: column; */
    height: 530px;
}

.case-card-inner {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 5px 9px 10px rgba(0, 0, 0, 0.4);
}

.case-image {
    justify-items: center;
    /* height: 220px; */
    height:100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-image:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(5, 45, 140, 0.3);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: rgba(5, 45, 140, 1);
    font-size: 24px;
    margin-left: 4px;
}

.case-content {
    position: relative;
    padding: 25px 25px 0px 25px;
    flex: 1;
    display: flex;
    height: calc(100% - 220px);
    flex-direction: column;
    box-sizing: border-box;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
    height: 60px;
}

.case-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    /* flex: 1; */
    height: 100px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: #eef5ff;
    color: rgba(5, 45, 140, 1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tag i {
    margin-right: 6px;
    font-size: 12px;
}

.view-case-button {
    background: linear-gradient(95deg, rgba(5, 45, 140, 1) 0%, rgba(12, 62, 180, 1) 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(5, 45, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.view-case-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 45, 140, 0.35);
}

.view-case-button i {
    margin-left: 8px;
    font-size: 12px;
}

.nav-button {
    position: absolute;
    background: rgb(255, 255, 255);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(5, 45, 140, 0.25);
    z-index: 10;
}

.nav-button:hover {
    background: rgb(255, 255, 255);
    transform: scale(1.1);
}

.nav-button i {
    font-size: 20px;
}

.nav-button.prev {
    left: -8%;
}

.nav-button.next {
    right: -8%;
}

.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dots {
    display: flex;
    gap: 12px;
    background: rgba(5, 45, 140, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: rgba(5, 45, 140, 1);
    transform: scale(1.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 85%;
    max-width: 1000px;
}

.close-button {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-button:hover {
    color: #ccc;
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1200px) {
    .case-card {
        flex: 0 0 48%;
    }

    .case-group {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .case-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .section-header {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-decoration {
        display: none;
    }

    .case-container {
        padding: 25px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .nav-button.prev {
        left: -15px;
    }

    .nav-button.next {
        right: -15px;
    }
}

/* 搜素框 */
.search-container {
    display: block;
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    width: 100%;
    width: 1720px;
    padding: 25px;
    position: relative;
}



.search-input-container {
    /* width: 140%; */
    text-align: center;
    position: relative;
    margin: 25px 0;
    padding: 0 10px;
}

.search-input {
    box-sizing: border-box;
    width: 100%;
    padding: 16px 25px 16px 50px;
    border: 2px solid #e6e6e6;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.search-input-container i {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    font-size: 18px;
}

.search-input-container:hover i {
    color: rgba(51, 112, 255, 1);
}

.search-controls {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.filter-group {
    /* flex: 1; */
    min-width: 180px;
}

.filter-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-button:hover {
    background: #e8f4fc;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.filter-button.active {
    background: #e8f4fc;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.button-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.arrow {
    color: rgba(51, 112, 255, 1);
    transition: transform 0.3s ease;
    margin-left: 10px;
    margin-right: 10px;
}

.arrow.rotated {
    transform: rotate(180deg);
}

.action-buttons {
    display: flex;
    position: absolute;
    right: 0;
}

.action-btn {
    width: 65px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.reset-all-btn {
    border-radius: 35px;
    background: rgba(51, 112, 255, 1);
    color: #ffffff;
    border: 1px solid #ddd;
}

.reset-all-btn:hover {
    background: rgb(14, 85, 250);
}
.search-btn {
    border-radius: 35px;
    background: rgba(51, 112, 255, 1);
    color: #ffffff;
    border: 1px solid #ddd;
}

.search-btn:hover {
    background: rgb(14, 85, 250);
}
.search-action-btn {
    background: none;
    color: rgb(0, 0, 0);
}

.search-action-btn:hover i {
    color: rgba(51, 112, 255, 1);
}

.dropdown {
    display: none;
    position: absolute;
    margin-top: 10px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 100;
    width: 60%;
}

.dropdown.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-search-box {
    position: relative;
    margin-bottom: 15px;
}

.dropdown-search-box input {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.dropdown-search-box input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.dropdown-search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
}

.dropdown-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
    margin-bottom: 15px;
}

.option {
    display: flex;
    align-items: center;
}

.option input {
    margin-right: 8px;
    cursor: pointer;
}

.option label {
    cursor: pointer;
    color: #34495e;
    font-size: 14px;
    transition: color 0.2s;
}

.option label:hover {
    color: #3498db;
}

.dropdown-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dropdown-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.reset-btn {
    background: #f8f9fa;
    color: #7f8c8d;
    border: 1px solid #ddd !important;
}

.reset-btn:hover {
    background: #e9ecef;
}

.apply-btn {
    background: #3498db;
    color: white;
    display: none;
}

.apply-btn:hover {
    background: #2980b9;
}

.selected-count {
    font-size: 14px;
    color: #7f8c8d;
    margin-right: auto;
}

@media (max-width: 992px) {
    .search-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .action-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dropdown-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-input {
        padding: 14px 20px 14px 45px;
    }

    .search-input-container i {
        left: 25px;
    }

    .action-buttons {
        flex-direction: column;
    }
}

.anli_name {
    margin: 15px;
    text-align: center;
    font-size: 22px;
    color: black;
    font-weight: bold;
}

.anli_description {
    font-size: 16px;
    color: #9a9a9a;
    line-height: 20px;
    margin: 10px;
}

.anli_keys {
    text-align: right;
    margin: 10px;

}

.keyword-label {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    margin: 8px 8px 8px 0;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.keyword-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

/* 案例卡片悬停动画效果 */
.case_list ul li {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case_list ul li:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
}

/* 添加分页动画样式 */
.case_list ul {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.case_list ul.row {
    position: relative;
}

/* 添加页码跳转样式 */
.page-jump {
    text-align: center;
}

.page-jump input[type="number"] {
    margin: 0 5px;
    width: 60px;
    padding: 8px 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.page-jump button {
    padding: 8px 16px;
    background: rgba(51, 112, 255, 1);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.3s;
}

.page-jump button:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .page-jump input[type="number"] {
        width: 60px;
        padding: 6px 10px;
        font-size: 13px;
    }

    .page-jump button {
        padding: 6px 12px;
        font-size: 13px;
        margin-left: 5px;
    }
}

/* FAQ Section */
.faq-section {
    margin: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: transparent;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    width: 100%;
    padding: 10px 0;
    text-align: left;
    outline: none;
    border-bottom: 1px solid rgb(221 225 234);
    transition: all 0.3s ease;
}

.faq-answer {
    line-height: 1.6;
    display: none;
    margin-top: 10px;
    padding-left: 44px;
    font-size: 16px;
    color: #555;
}

.faq-answer a {
    color: rgba(51, 112, 255, 1);
    font-weight: bold;
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    display: block;
}

.kehuanli-card {
    box-shadow: 0 0px 5px rgb(0 0 0 / 50%);
    border-radius: 10px;
    width: 31%;
    height: 430px;
    margin: 10px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.keywords {
    width: 100%;
    position: absolute;
    align-items: end;
    display: flex;
    justify-content: space-between;
    bottom: 0;
}

.keywords a {
    margin: 10px;
    color: rgba(51, 112, 255, 1);
    font-weight: 600;
    font-size: 16px;
    align-items: end;
    display: flex;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
    overflow: hidden;
    height: 550px;
    display: flex;
    align-items: center;
    padding: 1%;
}

.ztwz-btn {
    background: rgba(51, 112, 255, 1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.ztwz-btn:active {
    transform: scale(0.9);
}

.ztwz-btn:hover {
    background: white;
    color: rgba(51, 112, 255, 1);
    box-shadow: 0 0px 5px rgba(51, 112, 255, 0.5);
}

.prev-btn {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    z-index: 10;
}

.next-btn {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    z-index: 10;
}

/* 页面指示器样式 */
.page-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: #007bff;
    /* 蓝色 */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.indicator.active {
    width: 24px;
    /* 激活时变长 */
    border-radius: 6px;
    /* 保持轻微圆角 */
}

.case_type {
    display: none;
}

.all_anli_keys {
    text-align: right;
    width: 75%;
}


.anli-label {
    border: 1px solid #d0cece;
    display: inline-block;
    color: #948c8c;
    padding: 2px 6px;
    border-radius: 12px;
    margin: 2px;
    font-size: 14px;
}

/* 卡片分页样式 */
.case-card.hidden {
    display: none !important;
}

.case-card.active {
    display: block !important;
}

.fwbzh-img {
    width: 80%;
}

.tree-mb {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 2;
    will-change: transform, height, opacity;
    /* 优化性能 */
}

.tree-mb.animate {
    animation: tree-mb 1.2s ease forwards;
}

@keyframes tree-mb {
    0% {
        height: 100%;
        opacity: 1;
        -webkit-filter: blur(0px);
    }

    /* 50% {
        height: 50%;
        opacity: 1;
        -webkit-filter: blur(2px);
        filter: blur(2px);
      } */

    100% {
        height: 0%;
        opacity: 1;
        -webkit-filter: blur(0px);
    }
}

.fwbzh-text {
    font-weight: bold;
}


.fwbzh-text-img {
    z-index: 5;
    display: flex;
    position: relative;
}

.fwbzh-img2 {
    width: 60px;
    height: 60px;
}

.menu_tit222 {
    line-height: 1.5;
    margin-right: 20px;
    font-size: 15px;
    color: #000;
    background-color: #77777726;
    padding: 10px 20px;
    border-radius: 20px;
}

.fwbzh-text-img:hover .menu_tit222 {
    color: #fff;
    background-color: #1E90FF;
}

.menu_tit333 {
    font-weight: 600;
    font-size: 20px;
    margin-right: 10px;
}

/* 视频播放相关样式 */
.ztal-img,
.ztal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ztal-video {
    display: none;
    text-align: center;
}

.ztal-video video {
    height: 100%;
    width: 100%;
}

.ztal-video.active {
    display: block;
}

.ztal-img.hidden {
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.page-btn {
    padding: 8px 15px;
    margin: 0 5px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}