@charset "utf-8";a,abbr,acronym,address,applet,b,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{
    margin:0;
    padding:0;
    font-family:"Microsoft Yahei",'PingFang SC','Helvetica Neue','Hiragino Sans GB',SimSun;
}
li{
    list-style: none;
}

@font-face{
    font-family:myFont;
    src:url('../font/Alibaba-PuHuiTi-Light.ttf'),url('../font/Alibaba-PuHuiTi-Light.woff');
}
@font-face{
    font-family:myFont1;
    src:url('../font/Alibaba-PuHuiTi-Regular.ttf'),url('../font/Alibaba-PuHuiTi-Regular.woff');
}
@font-face{
    font-family:myFont2;
    src:url('../font/Alibaba-PuHuiTi-B.ttf'),url('../font/Alibaba-PuHuiTi-B.woff');
}
@font-face{
    font-family:myFont3;
    src:url('../font/Alibaba-PuHuiTi-H.ttf'),url('../font/Alibaba-PuHuiTi-H.woff');
}
@font-face{
    font-family:myFont4;
    src:url('../font/Alibaba-PuHuiTi-Medium.ttf'),url('../font/Alibaba-PuHuiTi-Medium.woff');
}
.web-font{font-family:myFont;}
.web-font1{font-family:myFont1;}
.web-font2{font-family:myFont2;}
.web-font3{font-family:myFont3;}
.web-font4{font-family:myFont4;}
/*banner*/
.index-banner img,.ny-banner img{
    width: 100%;
    display: block;
}
.index-banner .swiper-slide{
    background-size: cover !important;
    background-position: center;
    display: flex;
    /* align-items: center; */
}
.index-banner .swiper-slide img{
    width: 100%;
}
.index-banner .banner-text{
    width: 100%;
    position: absolute;
    top: 17%;
    left: 0;
    box-sizing: border-box;
    opacity: 0;
    text-align: left;
    color:#fff;
}
.index-banner .swiper-slide-active .banner-text{
	-webkit-animation: fadeInLeft 1.4s ease-in-out;
	animation: fadeInLeft 1.4s ease-in-out;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

/* 按钮 */
.index-banner .swiper-pagination .swiper-pagination-bullet{
	width: 20px;
	height: 20px;
	background:none;
	border-radius: 50px;
	/* margin-right:20px; */
    border:2px solid #fff;
    margin:0 9px !important;
    opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active{
	position: relative;
	width: 20px;
	height: 20px;
	background:none;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active::after{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50px;
}

.index-banner .swiper-slide img.swiper_img{
	width: 100%;
	height: 100%;
	animation:mymove 8s infinite;
	-webkit-animation:mymove 8s infinite; /*Safari and Chrome*/
	animation-direction:alternate;/*轮流反向播放动画。*/
	animation-timing-function: ease-in-out; /*动画的速度曲线*/
	-webkit-animation:mymove 8s infinite;
	-webkit-animation-direction:alternate;/*轮流反向播放动画。*/
	-webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
	animation-delay:0.1s;
	-webkit-animation-delay:0.1s; /* Safari 和 Chrome */
}
@keyframes mymove

{

	0%{

	transform: scale(1);  /*开始为原始大小*/

	}

	100%{

		transform: scale(1.06); /*放大1.06倍*/

	}



}



@-webkit-keyframes mymove /*Safari and Chrome*/

{

	0%{

	transform: scale(1);  /*开始为原始大小*/

	}

	100%{

		transform: scale(1.06); /*放大1.06倍*/

	}

}


/* 品牌介绍 */
.cont1-box .cont1-text{
    width: 54%;
}
.cont1-box .cont1-text .cont1-title{
    font-size: 34px;
    color:#333;
    font-family: myFont4;
}
.cont1-box .cont1-text .cont1-title span{
    font-size: 37px;
    color:#dadada;
    font-family: myFont4;
    text-transform: uppercase;
    margin-left: 10px;
}
.cont1-box .cont1-text .line{
    width: 50px;
    height: 4px;
    background:#d73038;
    margin:25px 0 35px 0;
}
.cont1-box .cont1-text .cont1-des{
    font-size: 16px;
    color:#4e4e4e;
    line-height: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
.cont1-box .cont1-img{
    width: 42%;
    height: 400px;
}
.cont1-box .cont1-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
	border: 1px solid #d73038;
	box-sizing: border-box;
}

/* 查看更多 */
.cont1-box .link-box{
        margin:inherit;
        margin-top: 40px;
}
.link-box{
    display: block;
    width: 160px;
    height: 50px;
    border:1px solid #d73038;
    color:#d73038;
    font-size: 16px;
    text-align: center;
    line-height: 50px;
    transition: .5s;
    margin:0 auto;
    margin-top: 40px;
}
.link-box .iconfont{
    font-size: 18px;
    vertical-align: bottom;
    margin-left: 5px;
}
.link-box:hover{
    background:#d73038;
    color:#fff;
}

/* 标题 */
.title{
    font-size: 36px;
    color:#333333;
    font-family: myFont4;
    text-align: center;
}
.title p{
    font-size: 30px;
    color:#e8e8e8;
    text-transform: uppercase;
    font-family: myFont1;
}

/* 菜品展示 */
.cont2-box{
    background:url(../images/pro_bg.png) no-repeat 100% 100%;
    background-size: cover;
}
.cont2-box .title{
    color:#fff;
}
.cont2-box .title p{
    color:#5f5652;
}
.cont2-list .img{
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.cont2-list .text{
    margin-top: 23px;
    color:#fff;
    text-align: center;
    font-size: 15px;
}
.cont2-list .text h5{
    font-size: 19px;
    margin-bottom: 3px;
}


/* 加盟代理 */
.cont3-list .cont3-l img{
	width: 100%;
	height: auto;
}
.cont3-list .cont3-l{
    width: 48%;
}
.cont3-list .cont3-l .swiper-slide{
    width: 100%;
}
.cont3-list .cont3-r{
    width: 47%;
}
.cont3-list .cont3-r .cont3-logo img{
    width: auto;
    height: 50px;
}
.cont3-list .cont3-r .cont3-text{
    font-size: 20px;
    color:#333;
    line-height: 40px;
}
.cont3-list .cont3-r .cont3-contact li{
    font-size: 18px;
}
.cont3-list .cont3-r .cont3-contact li p{
    font-size: 30px;
    color:#d73038;
    font-family: myFont4;
    margin-top: 6px;
}
.cont3-list .cont3-r .wyjm-box{
    width: 174px;
    height: 40px;
    background:#d73038;
    color:#fff;
    display: block;
    margin-top: 10px;   
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    transition: .5;
}
.cont3-list .cont3-r .wyjm-box2{
	background:#eda337;
}
.cont3-list .cont3-r .wyjm-box2:hover{
	border:1px solid #eda337;
	color:#eda337;
}
.cont3-list .cont3-r .wyjm-box:hover{
    border:1px solid #d73038;
    color:#d73038;
    background:none;
    transition: .5;
}
.cont3-box .cont3-bg{
    position: absolute;
    left: 0;
    top: 26%;
    z-index: -1;
}
.cont3-box .cont3-bg img{
    width: 100%;
    height: 100%;
}

/* 行业优势 */
.cont4-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 0px;
}
.cont4-list dl{
    border:1px solid #e8e8e8;
    padding:45px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: .5s;
    border-right: none;
}
.cont4-list dl:nth-child(4n){
    border-right:1px solid #e8e8e8;
}
.cont4-list dl:nth-child(5),
.cont4-list dl:nth-child(6),
.cont4-list dl:nth-child(7),
.cont4-list dl:nth-child(8){
    border-top: none;
}
.cont4-list dl dd{
    margin-top: 22px;
}
.cont4-list dl dd h5{
    font-size: 20px;
    color:#434343;
    font-weight: bold;
}
.cont4-list dl dd p{
    font-size: 17px;
    color:#747474;
    margin-top: 7px;
}
.cont4-list dl:hover{
    box-shadow: 1px 1px 20px #eee;
}

/* 门店展示 */
.cont5-list .swiper-slide{
	width:860px;
    height: 640px;
}
.cont5-list .swiper-slide a{
	transition: 0.2s;
}	
.cont5-list .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cont5-list .swiper-slide a:hover{
	opacity:.6;
}	
.cont5-list .swiper-pagination{
	text-align:center;
	width:100%;
	margin-top:10px;
}
.cont5-list .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
	margin:0 5px;
	background:#02328d;
}
.cont5-list .swiper-button-prev{
	width:50%;
	height:100%;
	left:-450px;
	top:0;
    /* background: url(../images/ichimatsu.png) repeat 0 0; */
    background:rgba(255, 255, 255, .7);
    border-radius: 5px;
	margin-top:0;
	z-index:99;
	transition: 0.2s;
	}	
.cont5-list .swiper-button-prev:before{	
    content: '';
    position: absolute;
    width: 15px;
    height: 100%;
    background: url(../images/slide_prev.png) no-repeat 0 center;
    left: 94%;
    top: 50%;
    margin-top: -180px;
}
.cont5-list .swiper-button-next{
	width:50%;
	height:100%;
	right:-450px;
	top:0;
	/* background: url(../images/ichimatsu.png) repeat 0 0; */
    background:rgba(255, 255, 255, .7);
    border-radius: 5px;
	margin-top:0;
	z-index:99;
	transition: 0.2s;
	}
.cont5-list .swiper-button-next:after{	
    content: '';
    position: absolute;
    width: 15px;
    height: 100%;
    background: url(../images/slide_prev.png) no-repeat 0 center;
    right: 94%;
    top: 50%;
    margin-top: -180px;
	transform: rotate(180deg);
}
/* .cont5-list .swiper-button-prev:hover,.cont5-list .swiper-button-next:hover{
	opacity:0.6;
} */


/* 当前位置 */
.location{
    height: 65px;
    line-height: 65px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}
.location .iconfont{
    font-size: 20px;
    vertical-align: middle;
}
/* 内页标题 */
.title-a{
    font-size: 36px;
    color:#333;
    text-align: center;
}
.title-a i{
    display: block;
    width: 35px;
    height: 1px;
    background: #d73038;
    margin:12px auto 0;
}


/* 栏目新闻资讯 */
.news-list-box{
	/* display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 25px; */
}
.news-list-box dl a{
    display: flex;
    justify-content: space-between;
    background:#F5F5F5;
}
.news-list-box dl dt{
    width: 50%;
    height: 345px;
    overflow: hidden;
}
.news-list-box dt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.news-list-box dl:hover dt img{
    transform: scale(1.04);
}
.news-list-box dl dd{
    padding: 4% 4.5%;
    box-sizing: border-box;
    width: 50%;
}
.news-list-box dl dd b{
    color: #d73038;
    font-size: 18px;
    font-weight: bold;
    height: 36px;
    display: block;
}
.news-list-box dl dd h5{
    font-size: 25px;
    height: 54px;
    border-bottom: 1px solid #E6E6E6;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    white-space: nowrap;
}
.news-list-box dl dd p{
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
    margin-top: 20px;
    color: #666666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    text-align: justify;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list-box dl dd em{
    color: #d73038;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.news-list-box dl dd em i{
    font-size: 30px;
    transition: .4s;
}
.news-list-box dl:hover dd em i{
    margin-left: 10px;
}
.ny_news .ny_news_b ul li{
    color: #333333;
    box-sizing: border-box;
    transition: .2s;
    border-bottom: #E6E6E6 solid 1px;
}
.ny_news .ny_news_b ul li a{
    padding: 40px 18px;
}
.dyh-news-box{
    margin-top: 90px;
}
.ny_news .ny_news_b ul li h5{
    font-size: 22px;
    width: 1000px;
    color: #333;
    line-height: 22px;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.2s;
}
.ny_news .ny_news_b ul li p{
    font-size: 17px;
    line-height: 30px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: justify;
}
.ny_news .ny_news_b ul li .c3_news_r_time{
    width: 15%;
}
.ny_news .ny_news_b ul li .c3_news_r_txt{
    width: 85%;
}
.ny_news .ny_news_b ul li .c3_news_r_time{
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 15%;
}
.ny_news .ny_news_b ul li .c3_news_r_time em{
    color: #333;
    font-size: 30px;
}
.ny_news .ny_news_b ul li .c3_news_r_time span{
    color: #666666;
    font-size: 18px;
}
.ny_news .ny_news_b ul li .c3_news_r_time i{
    background: url(../images/jj.png) left center no-repeat;
    height: 15px;
    margin-top: 15px;
}
.ny_news .ny_news_b ul li:hover{
    background-color: #F5F5F5;
}
/* .ny_news .ny_news_b ul li:hover em,.ny_news .ny_news_b ul li:hover span,.ny_news .ny_news_b ul li:hover h5,.ny_news .ny_news_b ul li:hover p{
    color:#fff;
} */


/* 新闻详情 */
.introduce{
    background: #fff;
    margin:50px 0 10px 0;
}
.introduce .intro-con{
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.introduce .intro-con h2{
    font-size: 26px;
    color: #222222;
    margin-bottom: 10px;
    /* font-family: 'myFont1'; */
}
.introduce .intro-con span{
    font-size: 15px;
    padding:0 5px;

}
.introduce .intro-text{
    font-size: 16px;
    line-height: 30px;
    color:#464646;
    margin-top: 30px;
    text-align: justify;
    font-family: myFont1;
}
.introduce .intro-text p{
    font-family: myFont1;
}
.introduce .intro-text img{
    max-width: 85%;
    margin: 0 auto;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}
.introduce .intro-text table,
.table-nr table{
    width: 100% !important;
}
.introduce .intro-text table tr,
.table-nr table tr{
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.introduce .intro-text table tr td,
.table-nr table tr td{
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding:10px;
    font-size: 15px;
    line-height: 32px;
}
.table-nr{
    font-size: 15px;
    line-height: 32px;
    color:#222222;
}
.introduce .detail-r-retrun{
    display: flex;
    justify-content: space-between;
}
.introduce .detail-r-retrun .data-box{
    width: 60%;
    display: flex;
    line-height: 35px;
}
.introduce .detail-r-retrun p{
    color: #a7a7a7;
    font-size: 14px;
    margin-right: 30px;
    position: relative;
    /* font-family: "myFont1"; */
}
.introduce .detail-r-retrun p .iconfont{
    font-size: 18px;
    margin-right: 5px;
    vertical-align: middle;
}
.return-box{
    width: 140px;
    height: 40px;
    background: #d73038;
    text-align: center;
    line-height: 40px;
    font-size: 17px;
    color:#fff;
    cursor: pointer;
    border:1px solid #d73038;
    transition: .5s;
    font-family: myFont4;
}
.introduce .detail-r-retrun p::after{
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    width: 1px;
    height: 13px;
    right: -15px;
    background: #ccc;
}
.introduce .detail-r-retrun p:last-child:after{
    display: none;
}
.return-box:hover{
    color:#d73038;
    background:none;
}

/* 分页 */
.page-box {
    margin-bottom: 60px;
    /* margin-top: 40px; */
}
.page-box div{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    margin-top: 40px;
}
.page-box a{
    display: block;
    padding: 6px 15px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    background:#eee;
    margin: 0 5px;
    /* border-radius: 50px; */
    transition: .5s;
}
.page-box strong{
    display: block;
    padding: 6px 15px;
    font-size: 14px;
    background-color: #d73038;
    color: #fff;
    margin: 0 5px;
    border-radius: 3px;
}
.page-box a:hover{
    background-color: #d73038;
    color:#fff;
}

/* 内页上一页下一页 */
.news-fh{
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e2e2;
}
.news-fh ul li,.news-fh ul li a{
    color:#656565;
    font-size: 15px;
    /* font-family: myFont1; */
}
.news-fh ul li:last-child{
    border-top: 0;
    margin-top: 15px;
}
.news-fh ul li a:hover{
    color:#d73038;
    text-decoration: underline;
    cursor: pointer;
}


/* 联系我们 */
.ny_content{
    margin: 60px 0;
	margin-bottom: 0;
	padding: 50px 0;
	background-color: #f8f8f8;
}
.ny_content .callus_l,.ny_content .callus_r{
    width: 35%;
}
.ny_content .callus_l h1,.ny_content .callus_r h1{
    font-size: 50px;
    font-family: blokcn;
    font-weight: bold;
    height: 60px;
    color: #e5e5e5;
    text-transform: uppercase;
}
.ny_content .callus_l h5,.ny_content .callus_r h5{
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    height: 70px;
    border-bottom: #666666 solid 2px;
}
.ny_content .callus_l img{
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.ny_content .callus_l p{
    text-align: center;
    font-size: 16px;
}
.ny_content .callus_l .code_box{
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 30px;
}
.ny_content .callus_r ul{
    margin-top: 20px;
}
.ny_content .callus_r ul li{
    display: flex;
    /* justify-content: space-between; */
    margin-top: 20px;
    border-bottom: #e6e6e6 solid 1px;
    line-height: 30px;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 15px;
}
.ny_content .callus_r ul li .iconfont{
    font-size: 26px;
}
.ny_content .callus_r ul li p{
    text-align: left;
    margin-left: 10px;
}

/* 内页标题 */
.title-a{
    font-size: 36px;
    color:#333;
    text-align: center;
}
.title-a i{
    display: block;
    width: 35px;
    height: 1px;
    background: #d73038;
    margin:12px auto 0;
}

/* 关于我们 */
.ny_about .about_list-box{
	display: flex;
	justify-content: space-between;
	/* height: 500px; */
}
.ny_about .about_list-box .about_img{
	width: 45%;
}
.ny_about .about_list-box .about_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ny_about .about_list-box .about_txt{
    font-size: 16px;
    color: #333;
    line-height: 35px;
    text-align: justify;
    width: 52%;
    margin-top: 10px;
}

.ny_about .a-bg{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.ny_about .a-bg img{
    width: 100%;
    height: auto;
}

/* 环境展示 */
.envir-list div {
	width: 49.5%;
}

.envir-list a {
	width: 49%;
	margin-bottom: 15px;
	float: left;
	overflow: hidden;
}

.envir-list a img {
	width: 100%;
	height: auto;
	transition: all ease-out .3s;
	-webkit-transition: all ease-out .3s;
	-moz-transition: all ease-out .3s;
	-ms-transition: all ease-out .3s;
}
.envir-list a:hover img{
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-ms-transform: scale(1.02);
	-o-transform: scale(1.02);
	transform: scale(1.02);
	z-index: 5;
	position: relative;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.cont4-l a:nth-child(1) {
	width: 100%;
	height: auto;
}

.cont4-l a:nth-child(2) {
	margin-right: 2%;
}

.cont4-r a:nth-child(1) {
	margin-right: 2%;
}

.cont4-r a:last-child {
	width: 100%;
}

/* 签约榜 */
.ny_qyb{
    background: url(../images/qyb-bg.png) no-repeat 100% 100%;
    background-size: cover;
    padding:70px 0;
}
.ny_qyb .title-a{
    color:#fff;
}
.ny_qyb .qyb-list .swiper-slide{
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.ny_qyb .qyb-list .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内页banner */
.column-banner{
    position: relative;
    display: flex;
    align-items: center;
    min-width: 1200px;
}
.column-banner img{
    width: 100%;
    height: auto;
}
.column-banner .text-box{
    width: 100%;
    position: absolute;
    text-align: center;
    font-size: 42px;
    color: #fff;
    /* margin-top: 50px; */
    
}
.column-banner .area{
    width: 75%;
    /* min-width: 1200px; */
    margin: 0 auto;
    font-family: myFont4;
}
.column-banner .area p{
    font-size: 28px;
    text-transform: uppercase;
    /* margin-top: 5px; */
    font-family: myFont1;
}


/* 门店展示 */
.mdzs-c-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 25px 25px;
}
.mdzs-c-list dl{
    border-bottom:1px solid #ddd;
    position: relative;
}
.mdzs-c-list dl dt{
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.mdzs-c-list dl dd{
    font-size: 17px;
    color:#333;
    line-height: 25px;
    padding:15px 0;
    transition: .5s;
}
.mdzs-c-list dl:hover dd{
    color:#d73038;
}
.mdzs-c-list dl::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background:#d73038;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: .5s;
}
.mdzs-c-list dl:hover::after{
    width: 100%;
}

/* 特色菜品 */
.cpzs-c-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 25px 25px;
}
.cpzs-c-list dl{
    position: relative;
    overflow: hidden;
}
.cpzs-c-list dl a{
    display: block;
}
.cpzs-c-list dl dt{
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}
.cpzs-c-list dl dt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.cpzs-c-list dl:hover dt img{
    transform: scale(1.1);
    transition: 0.4s;
}
.cpzs-c-list dl dd{
    position: relative;
    text-align: center;
    background: #f5f5f5;
    height: 100px;
    /* line-height: 70px; */
    overflow: hidden;
    padding: 0 20px;
    padding-top: 20px;
    font-size: 17px;
    font-weight: normal;
    -webkit-transition: margin .3s;
    -moz-transition: margin .3s;
    -ms-transition: margin .3s;
    -o-transition: margin .3s;
    transition: margin .3s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333;
}
.cpzs-c-list dl .view{
    position: absolute;
    left: 0;
    bottom: -47px;
    /*height: 21px;*/
    width: 100%;
    padding: 11px 0;
    background: #d73038;
    display: block;
    -webkit-transition: bottom .3s;
    -moz-transition: bottom .3s;
    -ms-transition: bottom .3s;
    -o-transition: bottom .3s;
    transition: bottom .3s;
}
.cpzs-c-list dl .view .icon{
    display: block;
    margin: 0 auto;
    background: url(../images/index.png) -545px -62px no-repeat;
    width: 40px;
    height: 20px;
}
.cpzs-c-list dl:hover .view{
    bottom:0;
}
.cpzs-c-list dl:hover{
    box-shadow: 3px 3px 10px #888888;
}
.cpzs-c-list dl .line-i{
    width: 100%;
    height: 280px;
    border:1px solid rgba(255, 255, 255, 0.6);
    margin:0 auto;
    position: absolute;
    top:0;
    left: 0;
    /*display: none;*/
    transition: 0.4s;
}
.cpzs-c-list dl:hover .line-i{
    transform: scale(0.9);
    transition: 0.4s;
}
.cpzs-c-list dl:nth-child(4n){
    margin-right: 0;
}

/* 加盟优势 */
.jmys_box{
    width: 100%;
    height: 100%;
    background: url(../images/jmys_bg.jpg) no-repeat 100% 100%;
    background-size: cover;
}
.jmys_box .jmys_list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px 20px;
}
.jmys_box .jmys_list dl{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    background:#fff;
    padding:40px;
    transition: .5s;
    border:1px solid #fff;
}
.jmys_box .jmys_list dl:hover{
    box-shadow: 1px 1px 15px #ccc;
    border:1px solid #d73038;
    transition: .5s;
}
.jmys_box .jmys_list dl dt{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border:2px solid #d73038;
    text-align: center;
    line-height: 100px;
}
.jmys_box .jmys_list dl dt .iconfont{
    font-size: 56px;
    color:#d73038;
}
.jmys_box .jmys_list dl dd{
    margin-top: 25px;
}
.jmys_box .jmys_list dl dd h5{
    color: #3a3a3a;
    font-size: 24px;
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
}
.jmys_box .jmys_list dl dd h5::before{
    content: '';
    position: absolute;
    width: 90px;
    height: 1px;
    background: #ccc;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.jmys_box .jmys_list dl dd p{
    color: #333;
    font-size: 16px;
    line-height: 30px;
	text-align:justify;
}

.jmtj-tab{
	display: flex;
	justify-content:center;
	margin-top: 50px;
}
.jmtj-tab a{
	width: 140px;
	line-height: 40px;
	border: 1px solid #d73038;
	font-size: 16px;
	color: #d73038;
	text-align: center;
	margin: 0 15px;
}
.jmtj-tab a:hover,.jmtj-tab a.active{
	background-color: #d73038;
	color: #fff;
}
/* 留言 */
.form-box{
    height: 620px;
    padding: 0 190px;
    background: url(../images/form.png) no-repeat center;
    margin-top: 40px;
    text-align: center;
}
.form-box .form-list{
    padding-top: 110px;
}
.form-box .form-list ul{
    display: flex;
    justify-content: space-between;
}
.form-box .form-list ul li i{
    font-size: 25px;
    color: #d73038;
}
.form-box .message-box{
    margin-top: 55px;
}
.form-box .message-box ul{
    overflow: hidden;
}
.form-box .message-box ul li{
	width: 400px;
	float: left;
	margin-bottom: 20px;
}
.form-box .message-box ul li:nth-child(2n){
	margin-left: 20px;
}
.form-box .message-box ul li:last-child{
	width: 100%;
}
.form-box .message-box ul li textarea{
	display:block;
	line-height: 40px;
	height: 300px;
	width: 100%;
	background: #f9f9f9;
	 color: #333;
	 padding: 20px;
	 font-size: 16px;
	 box-sizing: border-box;
	 resize: none;
}
.form-box .message-box ul li input{
    background: #f9f9f9;
    line-height: 50px;
	box-sizing: border-box;
    width: 100%;
    color: #333;
    padding-left: 20px;
    font-size: 16px;
}
.form-box .message-box .form_btn{
    width: 260px;
    height: 50px;
    line-height: 50px;
    margin: 32px auto;
    text-align: center;
    font-size: 20px;
    background: #d73038;
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
}
.form-box .f-title{
    font-size: 50px;
    font-family: myFont4;
    width: 100%;
    text-align: center;
    color:#fff;
    position: relative;
    top: 24px;
}

/* 招商合作 */
.zshz_box::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:rgba(255, 255, 255, 0.32);
    z-index: 1;
}
.zshz_box .des{
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}
.zshz_box .img{
    display: flex;
    justify-content: center;
    text-align: center;
}
.zshz_box .img>div{
    width: 180px;
    height: auto;
    margin-right: 30px;
    margin-top: 40px;
}
.zshz_box .img>div img{
    width: 100%;
    height: auto;
}
.zshz_box .img>div p{
    font-size: 17px;
    margin-top: 10px;
}
.zshz_box .zs-tel{
    font-size: 34px;
    text-align: center;
    margin-top: 30px;
}
.zshz_box .zs-tel .tel-l{
    width: 45%;
    height: 60px;
    border-radius: 50px;
    background: #fff;
    text-align: center;
    line-height: 60px;
    color: #d73038;
    margin: 0 auto;
    font-size: 40px;
    font-family: 'myFont4';
    margin-top: 15px;
}



/* 窗口悬浮 */
.s_spserv__wrap {
	position: fixed;
	right: 21px;
	bottom: 82px;
	padding: 9px;
	z-index: 99;
}

.s_spserv__wrap-morebottom {
	bottom: 105px
}

.s_spserv__wrap-backtop {
	bottom: 117px
}

.s_spserv__item {
	width: 48px;
	height: 48px;
	background: #fff;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, .12);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
	cursor: pointer;
	position: relative;
	color: #333
}

.s_spserv__item:last-of-type {
	margin-bottom: 0
}

.s_spserv__pic {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    color: #666;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    text-align: center;
    line-height: 48px;
	transition: .4s;
}
.s_spserv__pic .iconfont{
	font-size: 26px;
}
.s_spserv__pic:hover{
	background:#d73038;
	color:#fff;
}

.s_spserv__line-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all
}

.s_spserv__hoverarea{
	-webkit-animation: spservhover .3s ease-out 0s forwards;
	animation: spservhover .3s ease-out 0s forwards;
	display: none;
	position: absolute;
	left: -18px;
	top: 50%;
	transform: translate(-100%, -50%);
	padding: 15px 15px;
	background: #fff;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, .12);
	border-radius: 6px;
	/* max-width: 252px; */
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-size: 14px;
	color: #333;
	line-height: 22px;
	text-align: center;
}
.s_spserv__hoverarea:first-child,
.s_spserv__hoverarea:nth-child(2){
	/* width: 252px; */
}
.not-ie-hoverarea:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	right: 0;
	transform: translate(-100%, -50%) rotate(45deg);
	right: -12px;
	filter: drop-shadow(2px -2px 1px rgba(0, 0, 0, .05));
	background: #fff
}

.s_spserv__hoverarea-block {
	display: block
}
.s_spserv__wxpic {
	width: 110px;
	height: 110px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin: 9px auto
}

.s_spserv__hoverarea-wx {
	text-align: center;
	padding: 15px 15px;
}


.back_top_wrapper{
	position: fixed;
	right: 28px;
	bottom: 47px;
	z-index: 200;
	transition: bottom .3s ease;
	width: 48px;
	height: 48px;
	background:#d73038;
	text-align: center;
	line-height: 48px;
	border-radius: 5px;
	transition: .4s;
}
.back_top_wrapper .iconfont{
	font-size: 25px;
	color:#fff;
}
.back_top_wrapper:hover{
	cursor: pointer;
	position: fixed;
	right: 28px;
	bottom: 52px;
}
/*  */
.comt{
	float: right;
	margin-top: 10px;
}
.comt a{
	float: left;
	line-height: 44px;
	padding: 0px 34px;
	color: #666;
	background-color:#f4f4f4;
	margin-left: 20px;
	font-size: 14px;
}
.comt a:hover,.comt a.active{
	background-color:#d73038;
	color: #fff;
}

/* 10.18 */
.message-btn{
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 80px;
	z-index: 9;
}
.message-btn-box{
	height: 80px;
	display: flex;
	justify-content:space-between;
	align-items:center;
}
.message-btn p{
	font-size:30px;
	font-weight: bold;
	color: #fff;
}
.message-btn a{
	display: block;
	width: 120px;
	line-height: 40px;
	border-radius: 50px;
	background-color: #eda337;
	font-size: 16px;
	color: #fff;
	text-align: center;
}
.message-btn img{
	height:50px;
	width: auto;
}
.message-box2{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	left: 0;
	top: 0;
	z-index: 999;
	display: flex;
    justify-content: center;
    align-items: center;
	display: none;
}
.message-box2-box{
	background-color: #fff;
	border-radius: 10px;
	width: 1000px;
	box-sizing: border-box;
	box-shadow: 0 0 10px 10px rgba(0, 0, 0, .2);
	padding: 40px 50px;
	position: relative;
}
.message-box2-box h4{
	font-size: 30px;
	font-weight: bold;
	color: #d73038;
	text-align: center;
}
.message-box2-box p{
	font-size: 14px;
	color: #999;
	text-align: center;
	padding-bottom: 15px;
	margin-top: 5px;
	border-bottom: 1px dashed #ddd;
	margin-bottom: 40px;
}
.message-box2-box i{
	display: block;
	width: 50px;
	line-height: 30px;
	font-size: 13px;
	color: #fff;
	border-radius: 5px;
	background-color: #d73038;
	position: absolute;
	top: 20px;
	right: 20px;
	text-align: center;
	cursor: pointer;
}
.message-box2-box ul{
    overflow: hidden;
}
.message-box2-box ul li{
	width: 440px;
	float: left;
	margin-bottom: 20px;
}
.message-box2-box ul li:nth-child(2n){
	margin-left: 20px;
}
.message-box2-box ul li:last-child{
	width: 100%;
}
.message-box2-box ul li textarea{
	display:block;
	line-height: 40px;
	height: 300px;
	width: 100%;
	background: #f9f9f9;
	 color: #333;
	 padding: 20px;
	 font-size: 16px;
	 box-sizing: border-box;
	 resize: none;
}
.message-box2-box ul li input{
    background: #f9f9f9;
    line-height: 50px;
	box-sizing: border-box;
    width: 100%;
    color: #333;
    padding-left: 20px;
    font-size: 16px;
}
.message-box2-box .form_btn{
	display: block;
    width: 260px;
    height: 50px;
    line-height: 50px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 20px;
    background: #d73038;
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
}