/* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .mapsubull li {
            width: 25%;
            text-align: center;
            padding-top: 35px;
            padding-bottom: 30px;
            list-style: none;
        }

        .mapsubull li a {
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
        }

        .mapsubull li a img {
            vertical-align: middle;
            width: 30px;
            height: 30px;
            margin-right: 10px;

        }

        .fl {
            float: left;
        }

        .curli {
            border-bottom: 2px solid #bd1a2d;
        }

        .mapsubull {
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 50px;
            overflow: hidden;
        }

        /* 头部样式 */
        .header {
            background-color: #bd1a2d;
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .header .contact-phone {
            font-size: 18px;
            font-weight: 500;
            background-color: rgba(255, 255, 255, 0.2);
            display: inline-block;
            padding: 5px 20px;
            border-radius: 20px;
        }

        /* 主容器样式 */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }

        /* 一级页签样式 */
        .tab-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .primary-tabs {
            display: flex;
            border-bottom: 2px solid #e8e8e8;
        }

        .primary-tab {
            flex: 1;
            padding: 20px 0;
            text-align: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            color: #666;
        }

        .primary-tab:hover {
            color: #bd1a2d;
            background-color: #fafafa;
        }

        .primary-tab.active {
            color: #bd1a2d;
            border-bottom: 3px solid #bd1a2d;
        }

        /* 二级页签样式 */
        .secondary-tabs {
            display: flex;
            padding: 15px 20px;
            background-color: #fafafa;
            border-bottom: 1px solid #e8e8e8;
        }

        .secondary-tab {
            padding: 10px 20px;
            margin-right: 10px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            color: #666;
        }

        .secondary-tab:hover {
            background-color: #e8e8e8;
        }

        .secondary-tab.active {
            background-color: #bd1a2d;
            color: white;
        }

        /* 内容区域样式 */
        .tab-content {
            padding: 30px;
        }

        /* 服务列表样式 */
        .service-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .service-list-personal {
            border-bottom: 1px solid red;
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .service-list-personals {
            border-top: 1px solid red;
            margin-top: 20px;
            padding-top: 20px;
        }

        .service-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            background-color: white;
        }

        .service-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* 数字标记样式 */
        .number-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #bd1a2d;
            color: white;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .service-info {
            flex: 1;
        }

        .service-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 5px;
        }

        .service-title a {
            color: #000000;
            font-weight: bold;
            text-decoration: none;
        }

        .service-desc {
            font-size: 14px;
            color: #999;
        }

        /* 无数据提示样式 */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .empty-state i {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.3;
        }

        /* 申请信息区域样式 */
        .application-info {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .application-info p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #333;
        }

        /* 网上办理按钮样式 */
        .online-apply-btn {
            background-color: #bd1a2d;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(189, 26, 45, 0.2);
            margin: 0 auto;
            display: block;
        }

        .online-apply-btn:hover {
            background-color: #a31727;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(189, 26, 45, 0.3);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .primary-tab {
                font-size: 16px;
                padding: 15px 0;
            }

            .secondary-tabs {
                overflow-x: auto;
                padding: 10px;
                -webkit-overflow-scrolling: touch;
            }

            .secondary-tab {
                white-space: nowrap;
                margin-bottom: 5px;
            }

            .tab-content {
                padding: 20px 15px;
            }

            .service-list {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .service-item {
                padding: 15px;
            }

            .number-badge {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }

        .Tips {
            border: 1px solid #f8c68e;
            background: #fff;
            margin: 10px auto;
            width: 99%;margin-top:30px;
        }

        .tips_t {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            color: #ff7802;
            padding-left: 22px;
            padding-top: 22px;
        }

        .tips_t img {
            padding-right: 13px;
        }

        .tips_cont {
            padding-top: 20px;
            padding-left: 59px;
            padding-bottom: 30px;
        }

        .tips_cont p {
            font-size: 16px;
            color: #ff7802;
            line-height: 2;
            text-align: justify;
        }

        .tips_cont p:before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ff7802;
            display: inline-block;
            margin-right: 10px;
        }