html body{
	background-color: #f5f5f5;
}

/*banner图*/
.twobanner {
    position:relative;
}
.twobanner>img {
    width: 100%;
    animation: myfirst 25s linear infinite normal;
}
.twobanner:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.0);
    z-index:1;
    transition:all 0.3s;
}
.twobanner-item {
    position:absolute;
    z-index:2;
    top:25%;
    left:10%;
    width:82%;
    color:#fff;
}


.twobanner-item h1 {
    font-size:70px;
    color: #fff;
    font-weight:bold;
    margin:2% 0 1% 0;
    text-shadow: 6px 8px 5px rgb(0 0 0 / 10%);
}
.twobanner-item h2 {
    font-size:48px;
    color:#fff;
    font-weight: lighter;
    letter-spacing:0px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
    margin-top:2%;
}
.twobanner-item i {
    display: block;
    width: 30px;
    height: 30px;
    margin:1% 0 1% 0;
    background: url(../images/vi-icon.svg) no-repeat center center/30px;
}

.twobanner-item h3 {
    font-size:30px;
    color:#fff;
    font-weight: lighter;
}

.go-more {
    position:absolute;
    bottom:0;
    width:100%;
    height:100px;
    background:url(../images/xia.svg) no-repeat center center/30px;
    animation: go-more 0.3s linear infinite;
}
@keyframes go-more {
  0% {
      opacity:0.5;
      -webkit-transform: translate(0px,5px);
  }
  50% {
      opacity:1;
      -webkit-transform: translate(0px,10px);
  } 
  100% {
      opacity:1;
      -webkit-transform: translate(0px,5px);
  }
   
}
/*自适应样式*/
@media screen and (max-width:1024px) {
.twobanner {
    position:relative;
    width:100%;
    overflow:hidden;
}
.twobanner:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.1);
    z-index:1;
    transition:all 0.3s;
}
.twobanner-item {
    position:absolute;
    z-index:2;
    top:20%;
    left:0%;
    width:100%;
    color:#fff;
    text-align:center;
}

.twobanner-item h1 {
    font-size:26px;
    color: #fff;
    font-weight:bold;
    margin:8% 0 2% 0;
}
.twobanner-item h2 {
    font-size:18px;
    color:#fff;
    font-weight: lighter;
    letter-spacing:0px;
    margin-top:10%;
}
.twobanner-item i {
    display: block;
    width: 30px;
    height: 30px;
    margin:1% auto 1% auto;
    background: url(../images/vi-icon.svg) no-repeat center center/18px;
}
.twobanner-item h3 {
    font-size:16px;
    color:#fff;
    font-weight: lighter;
    margin-top:5%;
}

.go-more {
    background:url(../images/xia.svg) no-repeat center center/15px;
}
}
/*自适应样式 end*/


/*板块标题*/
.home-title {
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    padding:45px 0;
}
.home-title h3 {
    font-size: 40px;
    color: #252525;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
}
.home-title h3 span {
    font-size: 30px;
    color: #d1292e;
    padding-left: 20px;
}
.home-title p {
    font-size: 16px;
    color: #999;
} 
@media screen and (max-width:1024px){
.home-title {
    padding:45px 0;
}
.home-title h3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.home-title h3 span {
    font-size: 18px;
    padding-left: 10px;
}
.home-title p {
    font-size: 16px;
}    
} 


/* 招募条件 */
.cooperation-list1{
	margin: 100px 0;
}
.tit2{
	color: #424242;
}
.cooperation-list1 .p{
	width: 80%;
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
}

/*加盟支持*/
.cooperation-list2 .ulbox{	
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cooperation-list2 .icon {
    height: 26px;
    display: block;
    margin: 0 auto;
}
.cooperation-list2 img {
    display: block;
    max-width: 100%;
}
.cooperation-list2 img {
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}
.cooperation-list2 .li {
    width: 28%;
	margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    background: #fff;
    padding: 50px 30px;
    border-radius: 5px;
}

.cooperation-list2 .tit3 {
    color: #454545;
    margin: 20px 0;
}
.tit-28{
	font-size: 26px;
}

/*自适应*/
@media screen and (max-width:1024px){
	/* 招募条件 */
	.cooperation-list1{
		margin: 50px 0;
	}
	.tit2{
		font-size: 24px;
	}
	.cooperation-list1 .p{
		width: 90%;
		margin-top: 10px;
	}
	/*加盟支持*/
	.cooperation-list2 .ulbox{
		margin: 15px 5px;
		display: flex;
		flex-wrap: wrap;
	}
	.cooperation-list2 .li {
	    width: 46%;
		margin-left: 2%;
	    margin-right: 2%;
	    margin-bottom: 5%;
	    background: #fff;
	    padding: 20px 10px;
	    border-radius: 5px;
	}
	.cooperation-list2 .tit3 {
	    margin: 10px 0;
	}
	.tit-28{
		font-size: 18px;
	}
}


/*定制留言*/
.apply {
    padding: 5% 0;
    background: #f7f7f7;
}

.apply-item {
    overflow: hidden;
    background: #fff;
}
.apply .photo{
    width: 50%;
    position: relative;

}
.apply .photo img {
    width: 100%;

}
.apply .photo:after {
    opacity: 0.5;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(top,#3a3332,#080404);
    z-index: 1;
    transition: all 0.3s;
}
.apply .photo .word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  z-index: 2;
}
.apply .photo .word h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: normal;
}
.apply .photo .word h4 {
  font-size: 20px;
  color:#fff;
  line-height: 1.8;
  font-family: 'Futura';
  text-transform: uppercase;
  margin-top: 10%;
  font-style: normal;
}
@media screen and (max-width:1024px){
.apply .photo{
    width: 100%;
}
.apply .photo .word {
}
.apply .photo .word h2 {
  font-size: 18px;
}
.apply .photo .word h4 {
  font-size: 14px;
}
}

/*申请留言*/
.apply-box {
	width:50%;
	padding:5%;
}
.apply-box .tit {
	margin-bottom:40px;
}
.apply-box .tit .p1 {
	font-size: 28px;
    color: #000;
}
.apply-box .tit .p2 {
	font-size: 16px;
    color: #666;
	margin:20px 0;
}
.apply-box .tit .p2 span {
	color: #e62129;
	font-weight:bold;
	padding:0 5px;
}
.apply-box .tit .p3 {
	font-size:14px;
	color:#666;
}
.apply-box .con {
	overflow:hidden;
}
.apply-box .con input,.con select {
    border: 1px solid #ddd;
    color: #666;
    font-size: 14px;
    height: 40px;
    line-height: 18px;
    padding: 11px 10px 11px 10px;
    float: left;
}

.apply-box .con .name ,.apply-box .con .telephone{
	width: 47.5%;
    margin: 5px 2.5% 5px 0;
}
.apply-box .con .address{
	width:30.5%;
	margin: 5px 2.5% 5px 0;
	background: #fff;
}
.apply-box .con .content {
	width: 100%;
	height:100px;
	margin: 5px 2.5% 5px 0;
	line-height: 18px;
}
.apply-box .con .bottom {
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    font-stretch: normal;
    letter-spacing: 0;
    color: #fff;
    width: 160px;
    margin:30px 0 0 0;
    line-height: 44px;
    border-radius: 42px;
    border: 2px solid #e6213a;
    background: #e6213a;
    z-index: 0;
    
}
.apply-box .tit .p3 {
	font-size:14px;
}


@media only screen and (max-width: 1024px) and (min-width: 0){
.apply-box {
	margin:10% 0 0 0;
	width:100%;
	padding: 5%;
}
.apply-box .tit {
	margin-bottom:30px;
}
.apply-box .tit .p1 {
	font-size: 18px;
}
.apply-box .tit .p2 {
	font-size: 14px;
}
.apply-box .tit .p2 span {

}
.apply-box .con .bottom {
    max-width: 1000px;
}
}