/*服务内容*/
/* 主容器样式 */
        .jwtz-xmbox {
            width: 1200px;
            height: 353px;
            margin: 0px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-radius: 10px;
            box-sizing: border-box;
        }
        
        /* 小盒子样式 */
        .jwtz-xmbox1 {
            width: calc(25% - 20px);
            height: 346px;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 35px 25px;
            text-align: center;
            background: white;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }
        
        /* 悬停效果 */
        .jwtz-xmbox1:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: #4a90e2;
        }
        
        
        /* 图标样式 */
        .jwtz-xmboxi {
            width: 70px;
            height: 70px;
            margin-bottom: 30px;
        }
        .jwtz-xmboxi>img{
            width: 100%;
        }
        /* 标题样式 */
        .jwtz-xmboxt {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            padding-bottom: 10px;
        }
        
        .jwtz-xmboxt::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: #4a90e2;
        }
        
        /* 描述文字样式 */
        .jwtz-xmboxd {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            letter-spacing: 0.5px;
        }
/*服务内容*/

        .jwtz_top{
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            height: 350px;
            display: flex;
            margin: 0 auto;
            letter-spacing: 2px;
            line-height: 28px;
        }

        .jwtz_top_img {
            width: 45%;
            height: 100%;
            justify-items: center;
            text-align: center;
        }

        .jwtz_top_img img {
            max-height: 295px;
            object-fit: cover;
            border-radius: 10px;
        }

        .jwtz_top_text {
            width: 50%;
            padding: 8px;
            box-sizing: border-box;
            overflow-y: auto;
            font-size: 20px;
            font-family: "宋体";
        }
        
/*办理资料*/
/* 主容器样式 */
        .jwtz-zl {
            width: 1200px;
            margin: 0 auto;
            padding: 30px;
        }
        
        /* 标题区域 */
        .filing-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .filing-title {
            font-size: 24px;
            color: #000;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .filing-subtitle {
            font-size: 16px;
            color: #333;
        }
        
        /* 双栏布局 */
        .jwtz-zl1 {
            display: flex;
            justify-content: space-between;
        }
        
        .jwtz-zl-c {
            width: 49%;
            transition: all 0.3s ease; /* 添加过渡效果 */
        }
        
        /* 鼠标悬停效果 */
        .jwtz-zl-c:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 栏目标题 */
        .jwtz-zl-t {
            background-color: #0800ff;
            color: white;
            padding: 12px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            border-radius: 4px 4px 0 0;
            transition: all 0.3s ease; /* 标题过渡效果 */
        }
        
        /* 鼠标悬停时标题效果 */
        .jwtz-zl-c:hover .jwtz-zl-t {
            background-color: #0073ff;
            box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
        }
        
        /* 内容区域 */
        .jwtz-zl-con {
            border: 1px solid #ddd;
            border-top: none;
            padding: 20px;
            min-height: 380px;
            transition: all 0.3s ease; /* 内容区域过渡效果 */
        }
        
        /* 鼠标悬停时内容区域效果 */

        
        /* 列表样式 */
        .jwtz-zl-lis {
            list-style-type: none;
            counter-reset: requirement-counter;
        }
        
        .jwtz-zl-lis li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            line-height: 1.5;
            font-size: 15px;
            transition: all 0.2s ease; /* 列表项过渡效果 */
        }
        
        /* 鼠标悬停时列表项效果 */
        .jwtz-zl-c:hover .jwtz-zl-lis li {
            color: #333;
        }
        
        .jwtz-zl-lis li::before {
            counter-increment: requirement-counter;
            content: counter(requirement-counter) "、";
            position: absolute;
            left: 0;
            color: #000000;
            font-weight: bold;
            transition: all 0.2s ease; /* 序号过渡效果 */
        }
        
        /* 鼠标悬停时序号效果 */
        .jwtz-zl-c:hover .jwtz-zl-lis li::before {
            color: #525252;
            font-size: 1.05em;
        }
/*办理资料*/

/*分类*/
        .approval-process__table {
            max-width: 1200px;
            margin: 0 auto;
            border-collapse: collapse;
            font-family: "Microsoft YaHei", Arial, sans-serif;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            background-color: white;
            border-radius: 4px;
            overflow: hidden;
        }

        .approval-process__header {
            background-color: #0800ff;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }

        .approval-process__header-cell {
            padding: 20px 15px;
            border: 1px solid #e0e0e0;
            text-align: center;
            letter-spacing: 1px;
        }

        .approval-process__body-cell {
            padding: 18px 15px;
            border: 1px solid #e0e0e0;
            background-color: white;
            color: #333;
            line-height: 1.8;
            font-size: 15px;
            vertical-align: top;
        }

        .approval-process__enterprise-type {
            font-weight: bold;
            width: 180px;
            color: #333;
        }

        /* 合并单元格样式 */
        .approval-process__colspan-2 {
            width: 35%;
        }
        
        /* 行样式 */
        .approval-process__row {
            height: 60px;
        }
        
        /* 流程项样式 */
        .approval-process__procedure-item {
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
        }
/*分类*/

/*办理条件*/
:root {
            --primary: #2A6DFF;
            --hover: #004EBD;
        }

        .jwtz-tj {
            width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 30px;
            padding: 40px;
        }

        .jwtz-tj-card {
            flex: 1;
            min-height: 240px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.25s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background-color:#f2f2f2;
            /*background: url(../images/jwtztj1.png);*/
        }

        .jwtz-tj-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .jwtz-tj-card::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .jwtz-tj-card:hover::before {
            transform: scaleX(1);
        }

        .jwtz-tj-title {
            color: #1a1a1a;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            padding: 0 20px;
            position: relative;
            transition: color 0.2s ease;
        }

        .jwtz-tj-card:hover .jwtz-tj-title {
            color: var(--hover);
        }

        .jwtz-tj-nr {
            color: #4a4a4a;
            font-size: 15px;
            padding: 0 20px;
            width: 100%;
            transition: color 0.2s ease;
        }

        /* 第三个盒子专用样式 */
        .jwtz-tj-list {
            margin: 0 auto;
            padding: 0;
            list-style: none;
            max-width: 280px;
            width: 100%;
        }

        .jwtz-tj-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            text-align: left;
        }

        .jwtz-tj-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            margin: 7px 12px 0 0;
            flex-shrink: 0;
            transition: background 0.2s ease;
        }

        .jwtz-tj-list li:hover::before {
            background: var(--hover);
        }

/*办理条件*/

/*案例*/
.jwtz_lb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
            overflow: hidden;
        }

        .swiper1 {
            width: 100%;
            height: 196px;
        }

        .swiper-wrapper {
            transition-timing-function: linear; /* 线性滑动效果 */
        }

        .swiper-slide {
            width: 285px;
            height: 186px;
            border-radius: 6px;
            overflow: hidden;
            opacity: 0.9;
            transition: opacity 0.3s;
            /*border: 2px solid #de2910;*/
            box-shadow: 0px 0px 2px 2px #ccc;
        }

        .swiper-slide-active {
            opacity: 1;
        }

        .swiper-slide img {
            width: auto;
            height: 100%;
            object-fit: cover;
            
        }

        /* 隐藏导航按钮 */
        .swiper-button-prev,
        .swiper-button-next {
            display: none !important;
        }

/*案例*/

/*案例*/
.table-container {
            width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        .table-header {
            display: grid;
            grid-template-columns: 200px 400px 200px 400px;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
            font-weight: 600;
            font-size: 16px;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .table-header-cell {
            padding: 16px 20px;
            text-align: left;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
            letter-spacing: 0.5px;
        }
        
        .table-header-cell:first-child {
            border-top-left-radius: 10px;
        }
        
        .table-header-cell:last-child {
            border-right: none;
            border-top-right-radius: 10px;
        }
        
        .table-body {
            display: block;
            max-height: 500px;
            overflow-y: auto;
        }
        
        .table-row {
            display: grid;
            grid-template-columns: 200px 400px 200px 400px;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.2s ease;
        }
        
        .table-row:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .table-row:hover {
            background-color: #f0f4ff;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
        }
        
        .table-cell {
            padding: 14px 20px;
            text-align: left;
            border-right: 1px solid #f1f5f9;
            color: #334155;
            font-size: 15px;
        }
        
        .table-cell:last-child {
            border-right: none;
        }
        
        /* 金额单元格特殊样式 */
        .table-cell:nth-child(3) {
            color: #10b981;
            font-weight: 500;
        }
        
        /* 滚动条样式 */
        .table-body::-webkit-scrollbar {
            width: 10px;
        }
        
        .table-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 0 0 10px 0;
        }
        
        .table-body::-webkit-scrollbar-thumb {
            background: #c7d2fe;
            border-radius: 5px;
            border: 2px solid #f1f5f9;
        }
        
        .table-body::-webkit-scrollbar-thumb:hover {
            background: #a5b4fc;
        }
/*案例*/