
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft YaHei", sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f5f7fa;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            vertical-align: middle;
            border: none;
            max-width: 100%;
        }

        /* 布局组件样式 */
        .zubang-container {
            width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .zubang-hidden-sm, .zubang-hidden-xs {
            display: block;
        }
        @media (max-width: 768px) {
            .zubang-hidden-sm, .zubang-hidden-xs {
                display: none !important;
            }
            .zubang-container {
                width: 100%;
            }
        }

        /* 头部导航样式 */
        header {
            width: 100%;
            z-index: 99;
        }
        .zubang-border-bottom {
            border-bottom: 1px solid #e5e6eb;
        }
        .zubang-bg-white {
            background-color: #fff;
        }
        .foxcms-header-pc {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
        }



        /* 面包屑导航样式 */
        .zubang-breadcrumb {
            display: flex;
            align-items: center;
            padding: 20px 0;
            color: #666;
            font-size: 14px;
        }
        .zubang-breadcrumb-item {
            display: flex;
            align-items: center;
        }
        .zubang-breadcrumb-item:last-child {
            color: #333;
        }
        .zubang-breadcrumb-item i {
            margin: 0 5px;
        }
        .zubang-breadcrumb-item i img {
            width: 6px;
            height: 12px;
        }

        /* 文章标题区样式 */
        .article-head {
            padding: 20px 0 30px;
            border-bottom: 1px solid #f2f2f2;
        }
        .article-head h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .article-head p {
            color: #999;
            font-size: 14px;
        }
        .article-head p span {
            display: inline-block;
            margin-right: 20px;
        }

        /* 文章内容区样式 */
        .article-content {
            padding: 30px 0;
        }
        .rich-text {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
        }
        .rich-text p {
            margin-bottom: 20px;
        }
        .rich-text img {
            max-width: 80%;
            margin: 20px auto;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* 相关问题区样式 */
        .recommend-list {
            padding: 30px 0 50px;
        }
        .recommend-list .title {
            margin-bottom: 30px;
        }
        .recommend-list .title h1 {
            font-size: 24px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 2px solid #1e50e1;
            display: inline-block;
        }
        .swiper {
            width: 100%;
            overflow: hidden;
        }
        .swiper-wrapper {
            display: flex;
        }
        .swiper-slide {
            flex-shrink: 0;
        }
        .list-article-item {
            display: flex;
            height: 180px;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .list-article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .list-article-item .pic {
            width: 40%;
            height: 100%;
            overflow: hidden;
        }
        .list-article-item .pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .list-article-item:hover .pic img {
            transform: scale(1.05);
        }
        .list-article-item .text {
            width: 60%;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        .list-article-item .info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 12px;
            color: #999;
        }
        .list-article-item .info .right {
            display: flex;
            align-items: center;
        }
        .list-article-item .info .right i {
            margin-right: 5px;
        }
        .list-article-item .info .right img {
            width: 14px;
            height: 14px;
        }
        .list-article-item h1 {
            font-size: 16px;
            margin-bottom: 10px;
            flex: 1;
            color: #333;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        .list-article-item p {
            font-size: 14px;
            color: #666;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
        }

        /* 轮播控制样式 */
        .swiper-pagination {
            text-align: center;
            margin-top: 20px;
        }
        .swiper-pagination-bullet {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .swiper-pagination-bullet-active {
            background-color: #1e50e1;
            width: 30px;
            border-radius: 5px;
        }
        .swiper-button-prev, .swiper-button-next {
            position: absolute;
            top: 50%;
            width: 40px;
            height: 40px;
            margin-top: -20px;
            background-color: rgba(255,255,255,0.8);
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        .swiper-button-prev {
            left: -20px;
        }
        .swiper-button-next {
            right: -20px;
        }
        .swiper-button-prev::after, .swiper-button-next::after {
            content: '';
            display: block;
            width: 16px;
            height: 16px;
            border-top: 2px solid #333;
            border-right: 2px solid #333;
        }
        .swiper-button-prev::after {
            transform: rotate(-135deg);
        }
        .swiper-button-next::after {
            transform: rotate(45deg);
        }
        .swiper-button-prev:hover, .swiper-button-next:hover {
            background-color: #fff;
        }
        .swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }



        /* 动画样式 */
        .wow {
            visibility: hidden;
        }
        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }
        @keyframes slideInUp {
            from {
                transform: translate3d(0, 30px, 0);
                visibility: visible;
                opacity: 0;
            }
            to {
                transform: translate3d(0, 0, 0);
                opacity: 1;
            }
        }
        .slideInUp {
            animation-name: slideInUp;
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .zubang-container {
                width: 95%;
            }
            .list-article-item {
                height: 160px;
            }
        }
        @media (max-width: 991px) {
            .swiper-button-prev, .swiper-button-next {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .foxcms-header-pc {
                height: 80px;
            }

            .article-head h1 {
                font-size: 22px;
            }
            .rich-text {
                font-size: 15px;
            }
            .rich-text img {
                max-width: 100%;
            }
            .list-article-item {
                flex-direction: column;
                height: auto;
            }
            .list-article-item .pic, .list-article-item .text {
                width: 100%;
            }
            .list-article-item .pic {
                height: 160px;
            }
        }
.copy{font-family: Arial, Helvetica, sans-serif;font-size:14px;color: #ABCAD3;}
.gongan{width:15px;height: 15px;}
