
@font-face {
    font-family: 'Alimama ShuHeiTi';
    src: url('../font/AlimamaShuHeiTi-Bold.woff2') format('woff2'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
            url('../font/AlimamaShuHeiTi-Bold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: sans-serif,"黑体","Microsoft Yahei" ;
        }
        div, dl, dt, td, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote {
            list-style:none;
            margin: 0;
            padding: 0;
        }
        a:link, a:visited {
            text-decoration: none;
            vertical-align: baseline;
            word-break: break-all;
            outline: none;
        }
        body {
            background-color: #f5f7fa;
        }
        /* 核心内容容器：限制宽度1400px，居中对齐，内容嵌套其中 */
        .content-wrapper {
            width: 100%;
            max-width: 1200px; /* 核心内容上限1400px */
            margin: 0 auto; /* 实现水平居中，超出1400px时两侧留空（背景全屏） */
        }

        /* 头部导航 - 背景全屏，内容居中1400px */
        .header {
            background-color: #fff;
            padding: 12px 0; /* 去掉左右内边距，由content-wrapper控制水平间距 */
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            width: 100vw; /* 头部背景全屏（视口宽度） */
        }
        /* 头部内容容器：继承1400px限制，添加左右内边距 */
        .header .content-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header .logo {
            display: flex;
            align-items: center;
        }
        .header .logo .icon {
            width: 36px;
            height: 36px;
            background: url(../images/szsclogo.png);
            background-size: 36px;
            margin-right: 8px;
        }
        .header .title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        .header .title b{
            font-weight: bold;
            font-size: 20px;
        }
        .header .tools {
            display: flex;
            gap: 8px;
            /* 跨域通办下拉层需要相对定位容器 */
            position: relative;
        }
        .header .tools .btn {
            font-size: 14px;
            padding: 5px 16px;
            background-color: #2D70C5;
            color: #fff;
            border-radius: 4px;
            border: none;
            cursor: pointer;
        }
        .header .tools .btn.backindex{
            border-radius: 34px;
        }
        /* 跨域通办按钮单独样式：用于精准定位下拉层 */
        #crossDomainBtn {
            position: relative; /* 作为下拉层的绝对定位参考（更精准） */
        }
        /* 跨域通办下拉层样式 - 调整为按钮正下方 */
        .cross-domain-dropdown {
            /* 初始隐藏 */
            display: none;
            /* 绝对定位：相对于crossDomainBtn按钮，实现正下方对齐 */
            position: absolute;
            top: 100%; /* 紧贴按钮底部 */
            left: 150px; /* 对齐按钮左侧，实现正下方 */
            margin-top: 2px; /* 微小间距，避免紧贴显得拥挤 */
            width: 120px;
            background-color: #fff;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            padding: 8px 0;
            z-index: 999;
            /* 防止下拉层超出视口（可选优化） */
            white-space: nowrap;
            overflow: hidden;
        }
        .cross-domain-dropdown a {
            display: block;
            padding: 8px 16px;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            text-align: center;
            font-weight: bold;
        }
        .cross-domain-dropdown a:hover {
            background-color: #f5f7fa;
            color: #1976d2;
        }

        /* 横幅区域 - 背景全屏，内容居中1400px */
        .banner {
            position: relative;
            width: 100vw; /* 横幅背景全屏 */
            height: 450px;
            background: url(/image/zcj-banner-2026-2.png) no-repeat top #fff;
            background-size: 100%;
            overflow: hidden;
            display: flex;    
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        /* 横幅内容容器：限制1400px，承载文字和占位图 */
        .banner .content-wrapper {
            position: relative;
            z-index: 1;
            height: 60%;
            display: flex;    
            align-items: flex-start;
            flex-direction: column;
        }
        .banner .content-wrapper p{
            font-size: 16px;
            color: #fff;
            max-width: 700px;
            margin-top: 20px;
        }
        .banner .content-wrapper .link{
            margin-top: 30px;
                display: flex;
        }
        .banner .content-wrapper .link a{
            line-height: 40px;
            cursor: pointer;
            width: 174px;
            height: 56px;
            border-radius: 4px;
            opacity: 1;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 8px 20px;
            gap: 12px;
            background: linear-gradient(90deg, #7CD0FF 2%, #0454FF 100%);
            backdrop-filter: blur(4px);
            box-shadow: 0px 4px 12px 0px rgba(9, 30, 66, 0.08), 0px 0px 1px 0px rgba(9, 30, 66, 0.2);
            box-sizing: border-box;
            font-weight: bold;
            color: #FFFFFF;
            margin-right: 24px;
        }
        .banner .content-wrapper .link a:hover{
            background: linear-gradient(271deg, #FF9100 0%, #E8A300 99%);
            backdrop-filter: blur(4px);
            box-shadow: 0px 4px 12px 0px rgba(9, 30, 66, 0.08), 0px 0px 1px 0px rgba(9, 30, 66, 0.2);
        }
        .banner .content-wrapper .link a img{
            width: 20px;
        }
        .banner .bg-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #64b5f6;
            z-index: 0;
        }
        .banner .text {
            color: #fff;
            font-size: 48px;
            font-weight: 700;
            text-align: left;
            line-height: 1.4;
            font-family: 'Alimama ShuHeiTi';

        }
        .banner .text img{width: 900px}


        /* 办理流程 */
        .bllc {
            padding: 48px 0;
            width: 100vw;
            position: relative;
            overflow: hidden;
            background: url(../images/bg2.png) center bottom / contain no-repeat;
                background-size: 100%;
        }
        .bllc::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><path d="M0,600 L200,500 L400,580 L600,480 L800,560 L1000,460 L1000,600 Z" fill="none" stroke="#e8f2ff" stroke-width="1"/></svg>');
            background-size: cover;
            opacity: 0.6;
            z-index: 0;
        }
        .bllc .content-wrapper {
            position: relative;
            z-index: 1;
        }


        .section-title {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 32px;
            position: relative;
            /* 给伪元素留出空间，避免文字重叠 */
            padding: 0 40px;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-title::before {
            content: ""; /* 清空文字内容，必须保留content（即使为空），伪元素才会显示 */
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 24px; /* 伪元素宽度，控制背景显示大小 */
            height: 24px; /* 伪元素高度，与宽度一致保证背景规整 */
            background-color: #1976d2; /* 背景色（基础版），也可替换为背景图 */
            background:url(../images/left.png);
            background-size: contain; /* 让背景（图/色）适配伪元素大小 */
            border-radius: 50%; /* 可选：让背景色变成圆形，更美观 */
        }
        .section-title::after {
            content: ""; /* 清空文字内容，必须保留content（即使为空），伪元素才会显示 */
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 24px; /* 伪元素宽度，控制背景显示大小 */
            height: 24px; /* 伪元素高度，与宽度一致保证背景规整 */
            background-color: #1976d2; /* 背景色（基础版），也可替换为背景图 */
            background:url(../images/right.png);
            background-size: contain; /* 让背景（图/色）适配伪元素大小 */
            border-radius: 50%; /* 可选：让背景色变成圆形，更美观 */
        }
        .section-title::before {
            left: 0; /* 左侧伪元素定位 */
        }
        .section-title::after {
            right: 0; /* 右侧伪元素定位 */
        }
        .lcimg img{width: 100%;}
        .box2 {
            background: #ecf3fe;
            margin-top: 50px;
            padding: 50px 0;
                min-height: 450px;
        }

        .box2 p {
            line-height: 30px;
            color: #000;
            text-transform: inherit;
            text-indent: 2em;
            padding-top: 30px;
        }

        .box2 .box2Con {
            padding-top: 30px;
        }

        .box2 .box2Con li {
            float: left;
            width: 106px;
            margin-right: 70px;
            text-align: center;
        }

        .box2 .box2Con li a {
            display: block;
            font-size: 18px;
        }

        .box2 .box2Con li a:hover {
            color: #666;
        }

        .box2 .box2Con li a img {
            transition: all .5s ease-in-out;
        }

        .box2 .box2Con li span {
            display: block;
        }
        .operation {
            float: right;
            width: 282px;
        }

        .operation p {
            line-height: 30px;
            color: #000;
            text-indent: 2em;
        }

        .operation a {
            width: 220px;
            height: 48px;
            line-height: 48px;
            font-size: 18px;
            display: block;
            border-radius: 40px;
            border: 2px solid #3d72f6;
            text-align: center;
            margin-top: 15px;
            color: #3d72f6;
            transition: all .5s ease-in-out;
        }

        .operation a:hover {
            background: #3d72f6;
            color: #fff;
        }
    .qiebrn {
            width: 180px;
            height: 32px;
            border-radius: 4px;
            opacity: 1;
            box-sizing: border-box;
            /* 自动布局 */
            display: flex;
            flex-direction: row;
            padding: 2px 4px;
            gap: 8px;
            padding: 2px 4px;
            background: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.1);

        }

        .qiebrn .qbtn {
            width: 84px;
            height: 28px;
            border-radius: 4px;
            opacity: 1;

            /* 自动布局 */
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0px 8px;
            gap: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: normal;
            color: #008DFF;

        }
        .qiebrn .qbtn span{
            padding-left: 30px;
            background: url(../images/noselect.png) no-repeat;
            background-size: 20px;
        }
        .qiebrn .qbtn.avtive span{
            padding-left: 30px;
            background: url(../images/selected.png) no-repeat;
            background-size: 20px;
        }
        .qiebrn .qbtn.avtive {
            background: #008DFF;
            color: #fff;
            box-shadow: 0px 2px 4px 0px rgba(58, 87, 232, 0.25);
        }
        video {
            width: 100%;
            border-radius: 1.5rem 1.5rem 0rem 0rem;
            margin-top: 3rem;
        }
        .boxCon{
            z-index: 2;
            width: 100%;
            background: rgb(255, 255, 255);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px;
            border-radius: 20px;
            opacity: 1;
            display: flex;
            flex-direction: column;
            padding: 16px 24px;
        }
        .boxCon ul li{
            height: 48px;
            line-height: 48px;
            display: flex;
            align-items: center;
                justify-content: space-between;
        }
        .boxCon ul li:before {
            content: "";
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #007bff;
        }
    .boxCon ul li a{
            padding-left: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #333;
    }
    .box3{
            margin-top: 50px;
        padding: 50px 0;
        min-height: 450px;
        background:url(https://amr.sz.gov.cn/2020/static/images/newsbg.png) no-repeat right bottom #ecf3fe
    }
    .box5 {
        padding: 30px 0;
        background: linear-gradient(to right,#e8eeff,#b9c3f6);
    }

    .box5 ul {
        background: #fff;
        padding: 28px;
        overflow: hidden;
            display: flex;
        justify-content: space-between;    border-radius: 20px;
    }

    .box5 ul li {
        float: left;
        width: 195px;
        text-align: center;
    }

    .box5 ul li a {
        display: block;
        color: #333;
    }

    .box5 ul li a img {
        height: 46px;
        transition: all .5s ease-in-out;
    }

    .box5 ul li a:hover img {
        transform: translate3d(0, -.3rem, 0);
    }

    .box5 ul li a span {
        display: block;
    }
    .box6{
            background: #fff;
    margin-top: 0px;
    padding: 80px 0;
    }
    .box6 ul{
            display: flex;
                justify-content: space-between;
    }
    .box6 ul li a.logo img{
        width: 100px;
    }
    .box6 ul li{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .box1{padding: 50px 0;padding-bottom: 190px;    background: url(../images/bg2.png) center 22% / cover no-repeat;}
.box1 .box1Con{padding-top: 50px;overflow: hidden;}
.box1 .box1Con {overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.box1 .box1Con i,.box2 .box2Con i{width: 27px;height: 27px;float: left;background: url(../images/2021zxyct_lcIcon4.png) no-repeat center;display: inline-block;padding: 0 10px;    margin-top: 122px;}
.box1 .box1Con .step{float: left;position: relative;text-align: center;height: 440px;border-radius: 15px;padding: 15px;transition: all .5s ease-in-out;}

.box1 .box1Con .stepTit{position: absolute;color: #fff;top: -20px;padding: 5px 10px;border-radius: 10px;}
.box1 .box1Con h3{font-size: 18px;color: #000;padding: 15px 0;}
.box1 .box1Con p{line-height: 30px;color: #000;}
a.blBtn{display: inline-block;padding: 5px 15px;text-align: center;background: #008dff;border-radius: 40px;color: #fff;}
.box1 .box1Con .step1{width: 268px;background: #f3faff;border:1px dotted #008dff;}
.box1 .box1Con .step1 .stepTit{background: #008dff;    left: 100px;}
.box1 .box1Con .step1 .centerCon1{width: 100%;    height: auto;border-bottom: 1px solid #008dff;padding:15px 0;}
.box1 .box1Con .step1 .centerCon1 span{display: block;padding-bottom: 10px;}
.box1 .box1Con .step1 .centerCon1 a.blBtn{margin-right: 10px;}
.box1 .box1Con .step1 .bottomCon1{width: 100%;    height: auto;padding-top: 30px;}
.box1 .box1Con .step1 .bottomCon1 img{float: left;}
.box1 .box1Con .step1 .bottomCon1 a{margin-top: 15px;}
.box1 .box1Con .step2{width: 230px;background: #edfffa;border:1px dotted #26d19f;}
.box1 .box1Con .step2 .stepTit{background: #26d19f;left: 70px;}
.box1 .box1Con .step2 a.blBtn{width: 142px;margin: 0 auto;display: block;background-color: #26d19f;margin-bottom: 10px;}
.box1 .box1Con .step2  .notic{padding-left: 28px;background: url(../images/swzxbszn.png) no-repeat;color: #fe4734;}
.box1 .box1Con .step2 .centerCon2 span{display: block;padding-bottom: 10px;}
.box1 .box1Con .step3{width: 580px;background: #fef9f0;border:1px dotted #eca638;}
.box1 .box1Con .step3 .stepTit{background: #eca638;left: 263px;}
.box1 .box1Con .step3 .centerCon3{position: relative;padding:15px 0;}
.box1 .box1Con .step3 .centerCon3 span{position: absolute;color: #000;}
.box1 .box1Con .step3 .centerCon3 span.zx1{top:18px;right: 132px;}
.box1 .box1Con .step3 .centerCon3 span.zx2{top:107px;right: 170px;}
.box1 .box1Con .step3 .centerCon3 a{position: absolute;top: 53px;right: 130px;}
.box1 .box1Con .step3 a.blBtn{width: 70px;background-color: #eca638;}
.box2{padding:50px 0;background: url(https://amr.sz.gov.cn/2020/static/images/newsbg.png) no-repeat right bottom #ecf3fe;}
.box1 .box1Con .step3 img {
    width: 480px;
}
.box2 .box2Con .step2 img {
    width: 520px;
}

.box2 p{
    text-align: center;
}
.box2 .box2Con{padding-top: 30px;
        display: flex;
    justify-content: space-between;}
.box2 .box2Con .step{width: 550px;background: #fff;float: left;position: relative;height: 370px;border-radius: 15px;padding: 30px;transition: all .5s ease-in-out;}
a.blBtn{transition: all .5s ease-in-out;}
.box1 .box1Con .step1 a.blBtn:hover{background: #006bc1;}
.box1 .box1Con .step2 a.blBtn:hover{background: #097946;}
.box1 .box1Con .step3 a.blBtn:hover{background-color: #bd7207;}
.box2 .box2Con .step1 a.blBtn:hover{background: #006bc1;}
.box2 .box2Con .step2 a.blBtn:hover{background: #097946;}
.box2 .box2Con .stepTit{position: absolute;color: #fff;top: -20px;left: 42%;padding: 5px 20px;border-radius: 10px;}
.box2 .box2Con h3{font-size: 18px;color: #000;padding: 15px 0;text-align: center;}
.box2 .box2Con p{line-height: 30px;color: #000;}
.box2 .box2Con .step1{border:1px dotted #008dff;}
.box2 .box2Con .step1 .stepTit{background: #008dff; }
.box2 .box2Con .step1 .stepTit img{float: left;}
.box2 .box2Con .step1 .zxCon1 .zxCon1Fr{float: right;}
.box2 .box2Con .step1 .zxCon1 span{display: block;padding-bottom: 10px;}
.box2 .box2Con .step1 .zxCon1 span.jyzx2{margin-top: 85px;}
.box2 .box2Con .step1 a.blBtn{margin-right: 10px;}
.box2 .box2Con .step2{border:1px dotted #26d19f;}
.box2 .box2Con .step2 .zxCon2{position: relative;}
.box2 .box2Con .step2 .stepTit{background: #26d19f;}
.box2 .box2Con .step2 a.blBtn{background: #26d19f;}
.box2 .box2Con .step2 .zxCon2 span{position: absolute;top:10px;left: 100px;display: block;    font-size: 14px;}
.box2 .box2Con .step2 .zxCon2 span.zxsx2{top:78px;left: 80px;font-size: 14px;}
.box2 .box2Con .step2 .zxCon2 a{display: block;position: absolute;top:38px;left: 90px;}
@media (max-width: 768px){
        .header .title t{display: none;}
        .banner.change{
            height: 550px;
        }
        .process {
            display: flex;
            justify-content: space-between;
            flex-direction: column;
        }
        .bllc-change ul.step1{
            width: 80%;
            height: 407px;
                margin: 0 auto;
        }
        .bllc-change ul.step2{
            width: 80%;
            height: 407px;
                margin: 0 auto;
        }
        .bllc-change ul.step3{
            width: 80%;
            height: 407px;
                margin: 0 auto;
        }
        .process i{
            background: none;
                margin-top: 22px;
        }
        .banner.change .text{font-size: 27px;}
             .header .content-wrapper{
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 16px;
                flex-direction: column;
            }
            .header .tools {
                display: flex;
                gap: 8px;
                position: relative;
                margin-top: 15px;
            }
            .banner{display: block;}
            .banner .text{font-size: 30px;text-align: center;        margin-top: 34px;}
            .banner .content-wrapper{
                padding-top: 0px;
                height: 23%;
                display: flex;
                align-items: center;
                flex-direction: column;
            }   
            .banner .content-wrapper p{
                margin-top: 70px;
                padding: 0px 10px;
                text-align: justify;
                color: #333;
            }
            .banner .content-wrapper .link{
                display: flex;
                flex-direction: column;
                width: 90%;
            }
            .banner .content-wrapper .link a{
                width: 100%;
                margin-bottom: 10px;
            }
            .box2 .box2Con{
                    display: flex;
                flex-direction: column;
            }
            .box2{    min-height: 700px;}
            .box2 p{
                padding: 0px 15px;
                text-align: justify;
            }
            .box2 .box2Con li{
                    width: 32%;
                    margin-right:0px;
            }
            .operation {
                float: right;
                width: 100%;
                display: flex;
                padding: 0 20px;
            }
            .boxCon ul li span{min-width: 55px;}
            .box6 ul {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                padding: 0 10px;
            }
            .box1{padding: 30px 15px;padding-bottom: 70px;background: url(../images/2021zxyct_bg1.png) no-repeat left -36px;background-size: cover;}
            .box1 .box1Con{padding-top: 30px;overflow: hidden;}
            .box1 .box1Con {overflow: hidden;}
            .box1 .box1Con i,.box2 .box2Con i{width: 27px;height: 27px;float: left;background: url(../images/2021zxyct_lcIcon4.png) no-repeat center;display: inline-block;padding: 0 10px;    margin-top: 122px;display: none;}

            .box1 .box1Con div:hover{transform: translate3d(0, -.3rem, 0);}

            .box1 .box1Con h3{font-size: 18px;color: #000;padding: 15px 0;}
            .box1 .box1Con p{line-height: 30px;color: #000;}
            a.blBtn{display: inline-block;padding: 5px 15px;text-align: center;background: #008dff;border-radius: 40px;color: #fff;}
            .box1 .box1Con .step{float: none;box-sizing:border-box;margin-bottom: 50px;position: relative;text-align: center;height: auto;border-radius: 15px;padding: 15px;transition: all .5s ease-in-out;}
            .box1 .box1Con .stepTit{position: absolute;color: #fff;top: -20px;left: 40%;padding: 5px 10px;border-radius: 10px;}
            .box1 .box1Con .step1{width: 100%;background: #f3faff;border:1px dotted #008dff;margin-right: 0;}
            .box1 .box1Con .step1 .stepTit{background: #008dff;    left:40%;}
            .box1 .box1Con .step1 .centerCon1{width: 100%;    height: auto;border-bottom: 1px solid #008dff;padding:15px 0;}
            .box1 .box1Con .step1 .centerCon1 span{display: block;padding-bottom: 10px;}
            .box1 .box1Con .step1 .centerCon1 a.blBtn{margin-right: 10px;margin-bottom: 10px;}
            .box1 .box1Con .step1 .bottomCon1{width: 75%;margin:0 auto;height: auto;padding-top: 10px;}
            .box1 .box1Con .step1 .bottomCon1 img{float: left;}
            .box1 .box1Con .step1 .bottomCon1 span{display: block;}
            .box1 .box1Con .step1 .bottomCon1 a{margin-top: 15px;}
            .box1 .box1Con .step2{width: 100%;background: #edfffa;border:1px dotted #26d19f;}
            .box1 .box1Con .step2 .stepTit{background: #26d19f; left:40%;}
            .box1 .box1Con .step2 a.blBtn{width: 110px;margin: 0 auto;display: block;background-color: #26d19f;margin-bottom: 10px;}
            .box1 .box1Con .step2 .centerCon2{padding:15px 0;}
            .box1 .box1Con .step2  .notic{padding-left: 28px;background: url(../images/2021zxyct_zxIcon5.png) no-repeat;color: #fe4734;}
            .box1 .box1Con .step2 .centerCon2 span{display: block;padding-bottom: 10px;}
            .box1 .box1Con .step3{width: 100%;background: #fef9f0;border:1px dotted #eca638;margin-top: 20px;}
            .box1 .box1Con .step3 .stepTit{background: #eca638; left:40%;}
            .box1 .box1Con .step3 .centerCon3{position: relative;padding:15px 0;}
            .box1 .box1Con .step3 .centerCon3 span{position: absolute;color: #000;}
            .box1 .box1Con .step3 .centerCon3 span.zx1{top:18px;right: 14px;}
            .box1 .box1Con .step3 .centerCon3 span.zx2{top:122px;right: 164px;}
            .box1 .box1Con .step3 .centerCon3 a{position: absolute;top: 53px;right: 14px;}
            .box1 .box1Con .step3 a.blBtn{width: 70px;background-color: #eca638;}
            .box1 .box1Con .step3 img{width: 100%;}
            .box2{padding:30px 15px;background: url(../images/2021zxyct_bg2.png) no-repeat;background-size: cover;}
            .box2 p{text-align: center;}
            .box2 .box2Con{padding-top: 30px;}
            .box2 .box2Con .step{box-sizing:border-box;width: 100%;background: #fff;float: left;position: relative;height: auto;border-radius: 15px;padding: 15px;transition: all .5s ease-in-out;}
            .box2 .box2Con div:hover{transform: translate3d(0, -.3rem, 0);}
            .box2 .box2Con .stepTit{position: absolute;color: #fff;top: -20px;left: 38%;padding: 5px 20px;border-radius: 10px;}
            .box2 .box2Con h3{font-size: 18px;color: #000;padding: 15px 0;text-align: center;}
            .box2 .box2Con p{line-height: 30px;color: #000;}
            .box2 .box2Con .step1{border:1px dotted #008dff;}
            .box2 .box2Con .step1 .stepTit{background: #008dff; }
            .box2 .box2Con .step1 .stepTit img{float: left;}
            .box2 .box2Con .step1 .zxCon1 .zxCon1Fr{float: right;    width: 70%;}
            .box2 .box2Con .step1 .zxCon1 span{display: block;padding-bottom: 10px;}
            .box2 .box2Con .step1 .zxCon1 span.jyzx2{margin-top: 85px;}
            .box2 .box2Con .step1 a.blBtn{margin-right: 10px;}
            .box2 .box2Con .step2{border:1px dotted #26d19f;margin-top: 50px;}
            .box2 .box2Con .step2 .zxCon2{position: relative;padding-bottom: 50px;}
            .box2 .box2Con .step2 .stepTit{background: #26d19f;}
            .box2 .box2Con .step2 a.blBtn{background: #26d19f;width: 70px;margin: 0 auto;display: block;}
            .box2 .box2Con .step2 img{width: 100%;}
            .box2 .box2Con .step2 .zxCon2 span{position: absolute;top:0;left: 65px;display: block;}
            .box2 .box2Con .step2 .zxCon2 span.zxsx2{top:158px;left: 0;}
            .box2 .box2Con .step2 .zxCon2 a{display: block;position: absolute;top:23px;left: 233px;font-size: 14px;padding: 2px 8px;}
            .box1 .box1Con{display: block;}
}























