/*banner*/
.zsjm-banner{
	overflow: hidden;
	width: 100%;
    height: auto;
    position: relative;
	padding-top:1rem;
}
.zsjm-banner .swiper-slide{
	width:100%;
}
.zsjm-banner .swiper-slide img{
	width:100%;
	height:auto;
}

/* 实力展示 */
.zsjm-logo{
    width: 100%;
    background: url(../images/slzs-bg.png) no-repeat 100% 100%;
    background-size: cover;
}
.main-container {
    display: flex;
    width: 100%;
    gap: 60px;
    height: 5.2rem; /* 固定高度确保对齐 */
}

/* 左侧Logo区域 */
.logo-wrapper {
    width: 280px;
    height: 100%;
    position: relative;
    /* 关键：左侧容器顶部与右侧内容区顶部对齐 */
    /* padding-top: 60px;  */
	overflow:hidden;
}
.logo-swiper {
    width: 100%;
    height: calc(100% - 30px); /* 减去顶部留白，确保第一个logo与右侧对齐 */
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.5;
    transform: scale(0.7);
    /* margin: 20px 0; */
}
.logo-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .5;
}
/* 选中Logo样式 - 居中放大+不透明 */
.logo-item.active {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    /* margin: 25px 0 !important; */
    z-index: 10;
}
.logo-item.active img{
    filter: none;
    opacity: 1 !important;
}

/* 右侧内容展示区 */
.content-wrapper {
    flex: 1;
    height: 100%;
    background-color: rgba(255, 255, 255, .6);
    border-radius: .12rem;
    box-shadow: 0 .08rem .3rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    /* 右侧内容区顶部与左侧第一个logo对齐 */
    padding-top: .6rem;
}
.content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: .6rem .5rem 0 .5rem;
    display: none;
}
.content-item.active {
    display: block;
}
.content-item .text-box{
    width: 50%;
}
.content-item .img{
    width: 45%;
}
.content-item .text-box .logo{
    width: 1.25rem;
    height: auto;
    transform: translateY(.2rem);
    animation: fadeInDown 0.6s forwards 0.1s;
}
.content-item .text-box .logo img{
    width: 100%;
    height: auto;
}
.content-item .text-box .text{
    font-size: .17rem;
    line-height: .3rem;
    margin: .3rem 0;
    transform: translateY(.2rem);
    animation: fadeInDown 0.6s forwards 0.1s;
}
.content-item .text-box .people{
    align-items: center;
    transform: translateY(.2rem);
    animation: fadeInDown 0.6s forwards 0.1s;
}
.content-item .text-box .people .p-img{
    width: .7rem;
    height: .7rem;
    border-radius: .5rem;
    background: #d53c25;
    margin-right: .2rem;
}
.content-item .text-box .people .p-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}
.content-item .text-box .people .des .des{
    font-size: .15rem;
}
.content-item .text-box .people .des h5{
    font-size: .19rem;
}
.content-item .text-box .people .des p{
    color:#666;
    margin-top: .06rem;
}
.content-item .img{
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
    transform: translateY(.2rem);
    animation: fadeInDown 0.6s forwards 0.1s;
}
.content-item .img .s-p{
    position: absolute;
    bottom: 0;
    right: .6rem;
}
.content-item .img .s-p img{
    display: block;
}
.content-item .img .bg{
    width: 100%;
    height: auto;
    margin-top: .5rem;
}

/* 动画定义 */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper样式调整 */
/* .swiper-wrapper {
    align-items: center;
}
.swiper-slide {
    width: 100% !important;
} */

/* 项目亮点 */
.xmld-container dl{
    width: 23%;
    background-color: #f2f2f2;
    border-radius: .1rem;
    padding: .4rem .3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border:.01rem solid #f2f2f2;
}
.xmld-container dl:hover{
	border:.01rem solid #cd2921;
}
.xmld-container dl dt h1{
    font-size: .22rem;
    color:#cd281f;
    font-weight: bold;
    letter-spacing: .02rem;
}
.xmld-container dl dt p{
    margin: .1rem 0 .2rem 0;
    font-size: .16rem;
    letter-spacing: .01rem;
    line-height: .22rem;
}
.xmld-container dl dt a{
    display: inline-block;
    width: .94rem;
    height: .26rem;
    background: #cd2921;
    border-radius: .5rem;
    color:#fff;
    text-align: center;
    line-height: .26rem;
    font-size: .14rem;
    transition: .4s;
}
.xmld-container dl dt a:hover{
	background-image: linear-gradient(to right,#cd281f,#e66932);
	color:#fff;
}
.xmld-container dl dd{
    width: 43%;
}
.xmld-container dl dd img{
    width: 100%;
}

/* 人力创业 */
.rlcy-box{
    padding-bottom: .8rem;
}
.rlcy-box dl{
    width: 23%;
    border-radius: .05rem;
    position: relative;
    height: 3.8rem;
}
.rlcy-box dl dt{
    width: 100%;
    height: 100%;
}
.rlcy-box dl dt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .05rem;
}
.rlcy-box dl dd{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: .4rem .3rem 0 .3rem;
    color:#fff;
}
.rlcy-box dl dd h2{
    font-size: .22rem;
    letter-spacing: .02rem;
}
.rlcy-box dl dd p{
    font-size: .16rem;
    margin: .04rem 0;
}
.rlcy-box dl dd i{
    display: block;
    position: relative;
    font-style: normal;
    font-size: .16rem;
    padding-left: .42rem;
    font-weight: bold;
}
.rlcy-box dl dd i::after{
    content: '';
    display: block;
    width: .39rem;
    height: .01rem;
    background: #fff;
    position: absolute;
    top: .12rem;
    left: 0;
}

/* 立即预约 */
.zsjm-form{
    background: url(../images/appoint.png) no-repeat 100% 100%;
    background-size: cover;
    padding: .5rem 0;
}
.zsjm-form-box dl{
    width: 100%;
    background: #fff;
    /* padding: .2rem; */
    border-radius: .06rem;
    display: flex;
    align-items: center;
    position: relative;
}
.zsjm-form-box .on1{
    width: 25%;
}
.zsjm-form-box .on2{
    width: 47%;
}
.zsjm-form-box dt{
    text-align: center;
}
.zsjm-form-box .on2 dt{
    width: 8%;
}
.zsjm-form-box .on1 dt{
    width: 15%;
}
.zsjm-form-box .on1 dd{
    width: 84%;
}
.zsjm-form-box dl dt .iconfont{
  color:#cd281f;
  font-size:.27rem;
  vertical-align: middle;
}
.zsjm-form-box dl dt .iconfont{
  color:#cd281f;
  font-size:.22rem;
  vertical-align: middle;
}
.zsjm-form-box dl dd{
  width: 91%;
  position: relative;
}
.zsjm-form-box dl dd::before{
  content: '';
  display: block;
  width: 1px;
  height: .22rem;
  background: #e5e5e5;
  position: absolute;
  left: -2px;
  top: 12px;
}
.zsjm-form-box dl dd input{
  font-size:.14rem;
  width: 100%;
  padding: .15rem;
  border-radius: 10px;
}

/* 地图 */
.zsjm-map{
    position: relative;
}
.zsjm-map .img img{
    width: 100%;
    height: auto;
}
.zsjm-map .text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.zsjm-map .text img{
    width: 26%;
    position: absolute;
    right: 0;
    top: 1.3rem;
}

/* 加盟流程 */
.jmlc-box{
    position: relative;
}
.jmlc-box .swiper-container{
    padding: .8rem 0 1.3rem 0;
}
.jmlc-box .swiper-slide .icon{
    width: .9rem;
    height: .9rem;
    border-radius: .5rem;
    box-shadow: 1px -2px 9px #fbd9d5;
    text-align: center;
    line-height: .9rem;
    margin: 0 auto;
}
.jmlc-box .swiper-slide{
    text-align: center;
    cursor: pointer;
}
.jmlc-box .swiper-slide .icon .iconfont{
    font-size: .5rem;
    color:#d53c25;
}
.jmlc-box .swiper-slide .dot{
    width: .12rem;
    height: .12rem;
    background:#d23423;
    border-radius: .5rem;
    margin: 0 auto;
    margin-top: .3rem;
    margin-bottom: .2rem;
}
.jmlc-box .swiper-slide .text{
    font-size: .20rem;
    color:#d23423;;
}
.jmlc-box .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
}
.jmlc-box .swiper-slide-active .icon {
    background-color: #d53c25;
    border-radius: 1rem;
    width: 1.3rem;
    height: 1.3rem;
    line-height: 1.3rem;
    margin-top: -.45rem;
}
.jmlc-box .swiper-slide-active .icon .iconfont{
    color:#fff;
    font-size: .7rem;
}
.jmlc-box .swiper-slide-active .dot {
    opacity: 1;
}

/* 描述文本容器 - 固定在底部居中 */
.jmlc-box .des-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 6rem;
    border-radius: .1rem;
    color:#fff;
    text-align: center;
    line-height: .7rem;
    background-image: linear-gradient(to right,#cd281f,#e66932);
    position: absolute;
}
.jmlc-box .des-container::after{
    content: '';
	display: block;
	border:.1rem solid transparent;
	border-bottom: .13rem solid #cd281f;
	width: 0;
	left: 0;
	position: absolute;
	top: -.21rem;
	left: 50%;
	margin-left: -.07rem;
}
.jmlc-box .des {
    background-image: linear-gradient(to right,#cd281f,#e66932);
    color: white;
    padding: 0 .1rem;
    border-radius: 6px;
    text-align: center;
    font-size: .2rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

/* 当前激活步骤的描述显示 */
.jmlc-box .des.active {
    display: block;
}

.jmlc-box .line {
    position: absolute;
    top: 2.04rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d23423;
    z-index: 1;
}
.jmlc-box .swiper-button-next {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: transform 0.2s ease;
    background: none;
}
.jmlc-box .swiper-button-next::after{
    display: none;
}
.jmlc-box .swiper-button-next .iconfont{
    font-size: .3rem;
    color:#d23423;
    margin-top: .2rem;
}
.jmlc-box .swiper-button-next i {
    font-size: 18px;
}
.swiper-button-next:focus{
    outline: none;;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 合伙人联盟 */
.hhrlm-box{
    width: 100%;
    background: url(../images/jm-bg.png) no-repeat 100% 100%;
    background-size: cover;
    background-position: right top;
    padding-top: .8rem;
    position: relative;
}
.hhrlm-box .index_title,
.hhrlm-box .index_title p{
    color:#fff;
}
.hhrlm-box .bg{
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
}
.hhrlm-box .bg img{
    width: 100%;
    height: auto;
}
.hhrlm-box .hhrlm-container{
    position: relative;
    margin-top: 1.8rem;
}
.hhrlm-box .hhrlm-container .hhrlm-list:first-child{
    width: 29%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.hhrlm-box .hhrlm-container .hhrlm-list:nth-child(2){
    margin: 0 auto;
    position: relative;
    left: 2.5%;
}
.hhrlm-box .hhrlm-container .hhrlm-list:last-child{
    position: absolute;
    right: 0;
    bottom: 0;
}
.hhrlm-box .hhrlm-container .hhrlm-list{
    width: 25%;
}
.hhrlm-box .hhrlm-container .hhrlm-list .img img{
    width: 100%;
    height: auto;
    display: block;
}
.hhrlm-list .text{
    width: 82%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2.5rem 0 .4rem 0;
    text-align: center;
    color: #fff;
}
.hhrlm-list:last-child .text{
    width: 87%;
}
.hhrlm-list .text h3{
    font-size: .42rem;
    font-weight: bold;
    letter-spacing: .01rem;
}
.hhrlm-list .text span{
    border: .02rem solid #fff;
    border-radius: .5rem;
    font-size: .18rem;
    line-height: .3rem;
    font-weight: bold;
    margin: .08rem 0 .3rem 0;
    padding: 0 .1rem;
    display: inline-block;
    letter-spacing: .01rem;
}
.hhrlm-list .text .des i{
    display: table;
    font-weight: bold;
    font-size: .18rem;
    margin: 0 auto;
    margin-top: .15rem;
    border-bottom: .02rem solid #fff;
    padding-bottom: .08rem;
    font-style: normal;
}
.hhrlm-box .click-xq{
	position: absolute;
	top: 20%;
    right: 4%;
    width: 3.2rem;
}
.hhrlm-box .click-xq img{
	width:100%;
	height:auto;
}
.hhrlm-box .click-xq .hide{
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}
.hhrlm-box .click-xq p{
	position:absolute;
	top:0;
	left:0;
	color:#fff;
	font-weight:bold;
	font-size:.24rem;
	padding: .12rem 0 0 .7rem;
}
.hhrlm-box .click-xq:hover .hide{
	opacity:1;
}
.hhrlm-box .click-xq:hover .show{
	opacity:0;
}
.hhrlm-box .click-xq:hover p{
	color:#cd281f;
}



/*箭头*/
.flipster2 .flipto-prev, .flipster2 .flipto-next{
    width: 50px;
    height: 50px;
    text-align: center;
    background-size: 100%;
    color: #333;
    padding: 0;
    border: none;
    margin-top: -25px;
}
.flipster2 .flipto-prev:hover, .flipster2 .flipto-next:hover{
    /*background-color: #e1b585;
    color: #fff;*/
}
.flipster .flipto-prev {
    left: 0;
    position: absolute;
    top: 50%;
    z-index: 999;
    background-image: url(../images/r-left-h.png);
    display: block;
}
.flipster .flipto-next {
    right: 0;
    position: absolute;
    background-image: url(../images/r-right-h.png);
    top: 50%;
    z-index: 999;
    display: block;
}

/* 8大赋能 */
#certify {
	width: 100%;
	position: relative;
}
#certify .swiper-slide{
    position: relative;
    background: url(../images/fn_03.png) no-repeat 100% 100%;
    background-size: cover;
    background-position: top;
    color:#5a5a5a;
    border-radius: 10px;
}
#certify .swiper-slide {
	height: 510px;
	width: 450px;
    box-shadow: 1px 1px 15px #d4d4d4;
}
#certify .swiper-slide .text{
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 60px 20px;
    font-size: .2rem;
    color:#5a5a5a;
}
#certify .swiper-slide .text h4{
    font-size: .31rem;
    font-weight: bold;
    margin-bottom: .2rem;
}
#certify .swiper-slide .text p{
    line-height: .35rem;
}

#certify .swiper-container {
	padding-bottom: .8rem;
}
#certify .swiper-button-prev,
#certify .swiper-button-next{
	width: .45rem;
    height: .45rem;
    border: .03rem solid #db4d2a;
    border-radius: .5rem;
	transition: all ease-out .3s;
	-webkit-transition: all ease-out .3s;
	-moz-transition: all ease-out .3s;
	-ms-transition: all ease-out .3s;
    background: none;
    color:#db4d2a;
}
#certify .swiper-button-prev{
	left: -35px;
}
#certify .swiper-button-prev .iconfont{
    transform: rotate(180deg);
}
#certify .swiper-button-prev .iconfont,
#certify .swiper-button-next .iconfont{
    font-weight: bold;
}
#certify .swiper-button-next{
	right: -35px;
}
.swiper-button-prev::after,
.swiper-button-next::after{
    display: none;
}
#certify .swiper-slide-active::before{
    display: none;
}
#certify .swiper-slide-active{
    background: url(../images/active_03.png) no-repeat 100% 100%;
    background-size: cover;
    background-position: top;
}
#certify .swiper-slide-active .text{
    color:#fff;
}
