/*基础CSS*/

/*基础颜色配置*/
:root {
  --white-color:                  #ffffff;
  --main-color:					  #1296db;
  --second-color:				  #007bff;
  --third-color:				  #A8DDF8;
  --dark-blue:                    #163053;
  --red-font:                    #F13A3A;
  --dark-bg:                  	#343a40;
}
body{
	background-color: #fff;
	color: #010101;
	position: relative;
}
*:hover{

}


a{
		transition: all 0.3s;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		-moz-transition: all 0.3s;
}
a:hover,a:hover h4,a:hover h3{
	color: var(--main-color);
		transition: all 0.3s;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		-moz-transition: all 0.3s;
}

.bg-gray{
	background-color: #e7e7e7e7;
}
.bg-dark{
	background-color: #0A577D!important;
	color: #fff;
}

.bg-blue{
	background-color: var(--main-color);
}



.white{
	color: #ffffff;
}
.black{
	color: #333;
}
.gray{
	color:#999999;
}
.red{
	color: var(--red-font);
}

.hide{
	opacity: 0!important;
}

/*------------------------布局*/
.container{
	max-width: 1200px;
}
.container-white{
	background-color:#fff;
}
.container-gray,.box-gray{
	background-color: #f1f1f1;
}

.box,.box-gray{
	flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px 0;
}

.box{
	background-color: #fff
}

.pages{
	padding-top:20px;
	padding-bottom:20px;
	min-height: auto;
	margin-bottom:40px; 
}


.info{

}


.content{

}
.content h4{
	color: #333;
}
.content p{
	color: #666;
	text-align: justify; 
}

.relative{
	position: relative;
}

.block{
	display: block;
}


/*------------------------------------------------------------------图标*/
.info{
	
}
.icons{
color: #999;
padding-right: 10px

}



/*------------------------------------------------------------------图标 集合*/
.icon-img-box .service-item｛
	padding:40px 0px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
｝
.icon-img-box .service-item:hover{

}
.icon-img-box .rounded{
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.icon-img-box .rounded:hover{
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    box-shadow: 0px 0px 9px rgba(26,26,26,.2);
}

/*------------------------------------------------------------------图标 数字*/
.num-box{
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;	
	color: #fff;
	background: var(--main-color);
}
.num-box h2{
	margin: 0px;
	line-height: 35px;
}

/*--------------------------------------大标题*/
.title{
    padding-top: 10px;
    padding-bottom: 10px;
}
.title h2{
	text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;

  	
}
.title h2:after{
	
	content: "";
    width: 66%;
    margin: 0 auto;

    display: block;


}
.title h3,h3.title{
	font-weight: normal;
	color: #333;
	font-size: 24px;
}
.title a:hover h3{
	color: #000;
}
.title p{
	color: #666666;
}

/*--------------------------------------有背景图的大标题*/
.title-bg1{
	/*background-image: url(../images/title3.png);*/
	background-repeat: no-repeat;
	background-position: center;
	height: 70px;

	text-align: center;
}
.title-bg1 h3{
	display: inline-block;
	padding: 5px 25px 0;	
	color: #000;
	
	border-radius: 0.15rem;
	font-weight: bold;
	font-size: 30px;
	
}
.title-bg1  a:hover h3{
	color: #000;
}

.i-title{
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	position: relative;
	 height: 32px;
    line-height: 32px;
    font-size: 1.6rem;

}

.i-title:before{
	content: "";
    position: absolute;
    left: 0;
    top:0px;
    width: 8px;
    height: 34px;
    line-height: 34px;
	background-image:url(../images/line.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
}

.l-title{
	border-bottom: 1px dashed #b9b9b9
}

.i-title h3{
	line-height: 2rem;

}


.title-index{
	text-align: center;
}
.title-des p{
    line-height: 2;
    color: #777;
    font-size: 1.4rem;
}



.line{
	border-top: 1px solid #999;
	display: block;
	margin: 20px 0px;
}
.line-das{
	border-bottom: 1px dashed #E5E5E5;
	display: block;
	margin: 0px 0px 20px;
}

.line-das-l{
	border-left: 1px dashed #E5E5E5;
}

.line-box{
	
}

/*图片样式*/

.img-lg{
	width: 100%;
	position: relative;
    transition: all 0.5s;

}
.img-lg:hover{
	transform: scale(1.2);
	transition: all 0.5s;
}
.img-box{
	width: 100%;
	overflow: hidden;
	position: relative;	
	text-align: center;
	margin: 0 auto;
	    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.img-box-a{
		width: 100%;
		height: 200px;
}

.img-box-circle{
	margin: 0 auto;
	margin-bottom: 15px;  
    overflow: hidden;  
    text-align: center;
    border: 4px solid #fff;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

/*图片样式*/
/*图片样式-----圆图*/

.img-circle{
	width: 140px;
	height: 140px;
	line-height: 140px;
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
	border-radius: 50%!important;
	position: relative;
}
.img-circle img{ 
	max-width: 220px;
	position: absolute;
	left: -30%;
	top:-10%;
}

.jumbotron-fluid{
	background-repeat: no-repeat;
	background-position: center;
	background-color:#e9ecef; 
}


/*---------------------------------------------------------------动画特效*/

/*圆角*/
.radius-5{
	 border-radius: 50%;
	 overflow: hidden;
}
.radius-sm{
	border-radius: 0.5rem;
}

/*阴影*/

.shadow-9{
	box-shadow: 0px 0px 9px #999;
}
.shadow-a{
	box-shadow: 0 1px 3px rgba(26,26,26,.1);
}

.shadow-red{
	box-shadow: 3px 3px 15px #FAD0D4;
}

.shadow-big{    
	box-shadow: 0px 5px 20px #333;

}

.shadow-d{    
	box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
}

}

.tran5{
	transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}

.images-white{

	padding: 20px;
	background-color: #fff;
}

/*--------------------动画特效---图片轮播*/

.swiper-pagination-bullet-active{
	background: var(--main-color);
}
.swiper{
	
	padding: 0px 20px;

}

.swiper  a{
	color: #666;
}
.swiper  a:hover{
		color: var(--main-color);
}
.swiper .arrow-left{
	position: absolute;
	top: 50%;
    left: 0px;
    width: 28px;

    z-index: 10;
    text-align: left;
    margin-top:-50px;
}

.swiper .arrow-right{
	    position: absolute;
	    top: 50%;
    right: 0px;
    width: 28px;
    z-index: 10;
    text-align: right;
    margin-top:-50px;
}

.swiper .arrow{
	font-size: 3rem;

}

.swiper .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	opacity:0.7;
}


button.carousel-control{
display: inline-block;
top: 45%;
width: 30px;
height: 30px;
line-height: 40px;
border: 0px;
border-radius: 50%;
padding: 0;
text-align: center;

z-index: 3;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
button.carousel-control-prev{
	padding-right: 3px;
	left: 20px;
}
button.carousel-control-next{
	padding-left: 3px;
	right: 20px;
}
.carousel-indicators{
}
.carousel-indicators li{
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.carousel-indicators li.active{
	background: var(--main-color);
	background-clip: padding-box;
}

.carousel-item{

}

.carousel-item .carousel-img{
	position: relative;
	width: 100%;
	height: 100%;

   


}

.carousel-item a{
  	height: 700px;
	max-height:700px;
	display: block;
  	background-size: cover;
  	background-position: center;
}

.carousel-item .carousel-cover{
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	
}

.carousel-item .carousel-text{
	position: absolute;
	bottom: 50px;
	left:0px;
	width: 100%;
	padding: 20px 30px 50px;
	color:#fff;
	text-align: center;
	z-index: 3;
	opacity: 1;
		transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

				.carousel-text p{
						font-size: 1.2rem;
						padding: 5px 
				}
				.carousel-text .carousel-title{
	
						font-weight:bold;
						font-size: 1.7rem;
				}
.carousel-button{


	opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;

}
.carousel-inner button{
	opacity: 0;
}

.carousel-inner:hover .carousel-cover{
	opacity: 0.3;
}
.carousel-inner:hover button{
	opacity: 1;

}
.carousel-item:hover{
	  box-shadow: 0 3px 9px rgba(26,26,26,.9);
}
.carousel-item:hover .carousel-button{
margin-top: 20px;
	opacity: 1;

}
/* 幻灯片 */



/*隐藏背面*/
.overlay-box{
	opacity: 0;
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #000;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
a:hover .overlay-box{
	opacity: 1;
}


/*按钮*/


/*更多按钮*/
a.btn-more{

    height: 40px;
    line-height: 35px;
    text-align: center;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 0.25rem;
	font-size: 1.2rem;
	color: #fff;
	padding: 0px 20px;
    display:inline-block;
    	transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
		
}
a.btn-more:hover{
	background: #fff;
	color: var(--second-color);
	 border: 2px solid var(--second-color);	
}

.btn-primary{
    color: #fff;
    background-color: var(--main-color);
    border-color: #007bff;
}
.btn-outline-primary{
	color:#333;
	
    border-color: var(--main-color);
}
.btn-outline-primary:hover{
	background-color: var(--main-color);
}
.btn-red{
	color: #fff;
	background-color: red;
	border-radius: 26px;
	font-size: 12px;
	padding:3px 10px;

}

/*导航*/
.navbar{
	padding-top: 0px;
	padding-bottom: 0px;
}
.navbar-light .navbar-nav .nav-link{
	color: #333;
	font-size: 1rem;
	font-weight: bold;
}
.navbar-light .navbar-nav .active>.nav-link
,.navbar-light .navbar-nav .active>.nav-link:hover{
	background: var(--main-color);
	color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link{
	height: 71px;
	line-height: 71px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
	background: var(--third-color);
	
}
.nav-link {
	padding: 0px;
}

/*下拉菜单*/

.dropdown:hover .dropdown-menu {

display:block;

}
.dropdown-item{
	 transition: all 0.5s!important;
	 -webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}

.dropdown-toggle::after{
	    width: 0;
    height: 0;
    content: none;
    margin-top: -3px;
}
.dropdown-menu.dropdown-menu-bullet:before,
.dropdown-menu.dropdown-menu-bullet:after{
	border-bottom-color: #ffffff;
	right: 10px;
    left: auto;
    top: -7px;
    position: absolute;
   
    display: inline-block;
    width: 0;
    height: 0;
    content: '';
    border: 7px solid transparent;
    border-top-width: 0;
    z-index: 1200;
}

.dropdown-menu i.fa{
	position: absolute;
	top: -10px;
	right: 10px;
	color: #fff;

}
.navbar-nav .nav-item .dropdown-menu{
	padding: 0px;
	margin: 0px;
	margin-top: -1px;
	border-radius:0px;
	border:none;
	box-shadow: 0 3px 9px rgba(26,26,26,.2);
}
.navbar-nav .nav-item .dropdown-menu .dropdown-item{
	   padding: .572rem 1.072rem;
	   
}
.navbar-nav .nav-item .dropdown-menu a:hover,
.navbar-nav .nav-item .dropdown-menu a:hover span{
	color: #ffffff !important;
    background-color: #e84040 !important;
    background: var(--main-color)!important;

}
.navbar-expand-lg .navbar-nav .dropdown-menu .border-top1{
	border-top: 1px solid rgba(255,255,255,0.2);
}

/*————————————————————————————幻灯片*/
.swiper-index  .swiper-pagination{
	bottom: 100px;
}
.swiper-slide{

	overflow:hidden;
}


/*-----------------------------网站底部*/
.footer{
	background: var(--dark-bg);
	color: #fff;
}
.footer a{
	color: #fff;
}
.footer a:hover{
	color: #fff;
	text-decoration:underline;
}
/*-------------------------- 首页shouye-------------------*/


/*-------------------------- 首页shouye  轮播-------------------*/
.swiper-index .swiper-container{
height: 600px;
background: #999;
}

.swiper-index .swiper-container img{
	height: 600px;
}

/*-------------------------- 首页shouye 我们的服务 -------------------*/


.service-box {
	position: relative;
	margin-top:-70px;
	z-index: 999;
	background: #e7e7e7;
	border-radius: 10px;
	padding-top:1rem;


}
.service-box .rounded {

padding-bottom: 10px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.service-box .rounded:hover{
	box-shadow: 0 3px 9px rgba(26,26,26,.1);
}

.service-item{
	padding:5px 0px 5px;
	margin-bottom: 5px;

	transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;

}

.service-box .service-item{
display: block;
position: relative;
padding:40px 0px 0px;
margin: 10px 40px;


}

.service-item .img-box-circle{
	position: relative;
	width: 90px;
	height: 80px;
	border: 0px;
	margin-bottom: 0px;

border-radius: 0px;
	transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;


}
.service-item .img-box-circle img{
	

width: 80px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;

}




.service-content h3.title{
	font-size: 18px;
	font-weight: bold;
	transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;

}

.service-title{
	margin-top: 2rem;
	margin-bottom: 0;
}
.service-content p{

	line-height: 24px;
    font-size: 1rem;
    color: #8b8b8b;
    transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.service-more{
	text-align: center;
	position: absolute;
	bottom: 0px;
	margin: 0 auto;
	width: 100%;
	visibility: hidden;
}

.service-more .btn{
	padding-left:20px;
	padding-right:20px;
}
.service-item:hover{

}

.service-item:hover h3,.service-item:hover p{


}
.service-item:hover .img-box-circle img{
filter:grayscale(0%);
transition: all 0.3s;
-webkit-transition: all 0.3s;
 -o-transition: all 0.3s;
-moz-transition: all 0.3s;
}


.service-item:hover .service-content h3.title{
	color: var(--main-color);
}
.service-item:hover .service-content p{
	color: #333;
}

/*-------------------------- 首页  代运营招商 -------------------*/


.business-index{

}
.business-index .content-text{
	color: #fff;
	: 
}

.business-content{
	position: relative;
}
.business-content .col{
	padding-left: 5px;
	padding-right: 5px;
}
.business-content .content-text{
	position: absolute;
	top: 60px;
	left: 60px;

}

.business-content .content-text h1{
	font-size: 50px;
	font-weight: bold;
	margin:0px;
}

.business-content .content-text span{
	margin: 0px 20px;
}

/*-------------------------- 首页  关于我们 -------------------*/

.about-index .content p{ 
	line-height: 2rem;
	font-size: 1.2rem;
}
.about-info{
	position: absolute;
	bottom: 80px;
	left: 0px;
	width: 100%;
transition: all 0.3s;
-webkit-transition: all 0.3s;
 -o-transition: all 0.3s;
-moz-transition: all 0.3s;
z-index: 2;

}
.about-info ul{
	margin: 0;
    padding: 0;

	display: flex;
    justify-content: flex-start;
}
.about-info li{
	list-style: none;
    width: 176px;
    height: 176px;
    background-color: #f1f1f1;
    text-align: center;
   	 padding-top: 35px;
       
     border-radius: 50%;
  
     	 transition: all 0.5s;
	-webkit-transition: all 0.5s;
	 -o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	margin-right: 50px;

}

.about-info li h1{
	font-weight: bold;
	color: #000;
	font-size: 40px;
}
.about-info li:hover {
	 background-color: var(--main-color);
	


}
.about-info li:hover h1,
.about-info li:hover p,
.about-info li:hover .red{
	color:#FFF;
}

.about-info .btn-more{
	position: relative;
	bottom: 0px;
	left: 0px;
}

/*-------------------------- 首页  常服展示 -------------------*/

/*-------------------------- 首页 热门常服分类 -------------------*/
.product-index-hot{
	width: 36%;
	margin-left: 15px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.product-index-hot:hover{
	  box-shadow: 0 0px 9px rgba(26,26,26,.4);

}

.product-index .price{
	font-size: 2rem;
	font-family: bold;
}
.product-hot-ico{
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 4;
}

.product-index-list{
	height: 715px;
	padding-right: 15px;
}
.product-index-list .product-item{
	width: 100%;
    height:100%;
    margin-bottom: 4.3%; 
    display: inline-block;
    position: relative;
}


.product-index-list .col{
	margin-bottom: 15px;
	padding-right: 0;
}

/*-------------------------- 首页 常服分类 -------------------*/
.product-item a{
	position: relative;
	width: 100%;
	height: 100%;

}

.product-item .product-img{
		position: absolute;
	top: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
	opacity: 1;
		transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;


}
.product-item  .img-cover{
	opacity: 0;

}

.product-text{
	position: absolute;
	bottom: 10%;
	left: 0px;
	width: 100%;
	text-align: center;
	color: #fff;

}
.product-text h1{

    font-weight: bold;
    text-shadow: 1px 1px 1px #333;
}

.product-text p.product-num{
	font-size: 1.4rem;
	font-weight: 500;
}
.product-text .btn{
	opacity: 0;
	transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;

}

.product-item .overlay-box{
	background-color:rgba(0,0,0,0.4);
}

.product-item a:hover .btn{
		opacity: 1;
		margin-top: 15px;
}
.product-item a:hover .product-img{
opacity: 0;
}
.product-item a:hover .img-cover{
	opacity: 1;
}

.product-item .img-box:hover img{
	transform: scale(1.06);
}
.product-item .img-box:hover .overlay-box{
opacity:0.7;
background: #000;
}

.product-item .content{
	color: #fff;
	text-align: center;
	position:relative;
	top: 30%;

	padding: 20px 0px;
	

}

.product-item .content h4{
	font-weight: bold;
	color: #fff;

}
.product-item .content .info{
	display: inline-block;
}
.product-item .content p{
	text-align: left;
	color: #fff;
	
}
/*------------------------首页 舞服定制*/

/*--------首页 舞服定制  幻灯片*/

.custom-index .col{
	padding-left: 20px;
	padding-right: 0px;
}

.custom-index .col-right{
	padding-left: 0px;
	margin-right: 20px;
}
.custom-index  .carousel-img{
height: 570px;
max-height: 570px;

}

.custom-index .carousel-text{
	bottom: 0px;
}


/*--------首页 舞服定制 服务*/
.custom-service{


}

.custom-service .arrow i{
	font-size: 2rem;
	color: var(--main-color);
}
.custom-service-item{
    display: flex;
   	padding-top: 25px;
	padding-left: 80px;
	padding-right: 80px;
	padding-bottom: 25px;
}
.custom-service-ico{
width:55px;
}

.custom-service-ico .num-box{
	width: 4rem;
    height: 4rem;
    display: inline-block;
    text-align: center;
}
.custom-service-ico  .num-box h2{
	line-height: 4rem;
}
.custom-service-text{
	margin-left: 30px;
}

.custom-service-text h3{
	font-size: 20px;
    font-weight: bold;
    color: #333;
}
.custom-contact{
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding:20px 80px 20px;


	background:#333;
	color: #fff;
	display: flex;
    flex-wrap: wrap;

}
.custom-contact-img{
text-align: center;
padding: .25rem;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: .25rem;
    display: inline-block;
    flex-basis: 29%;
}
.custom-contact img{
	width: 120px;
}
.custom-contact-text{
	display: inline-block;
	padding-left: 20px;


}
.custom-more{
	
	width: 40px;
	height: 100%;
	position: absolute;
	right:0;
	top: 0px;
	display: -ms-flexbox;
    display: flex;

    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
   
    transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
color: #fff;

}
.custom-more-ico{

}
.custom-more a{
	color: #fff;
}
.custom-more i{
	font-size: 30px;
}
.custom-more p{
position: absolute;
width: 60px;
bottom: 50px;
font-size: 1rem;
font-family: bold;
opacity: 0;


}


.custom-more:hover{
	background: var(--main-color);
	width: 100px;
	right:0;
	color: #fff;

}
.custom-more:hover i{
	
}
.custom-more:hover p{
	opacity: 1;

}

/*------------------------首页 红人推荐*/

.teacher-index .img-box{
	max-height: 360px;

}

.teacher-index .img-box img{
	border-radius: 10px;
}
.teacher-index-item a{
	border-radius: 10px;
}
.teacher-index-item a:hover{
	box-shadow: 0px 0px 9px #999;
}
.teacher-index-item a:hover .overlay-box{
	opacity: 1;
	background: #efefef;
	color: #666;
	
}
/*------------------------首页 新闻通告*/
.news-index{

}
.news-index .col-md-8 .img-box{

	max-height: 580px;
	    border-radius: .25rem!important;
}

/*------------------------首页 加入我们*/

.join-index{
margin-top: 200px;
height:400px;
}
.join-index .title-bg1{
	text-align: left;
	height: auto;
}
.join-index h3{
	color: #fff;
}
.join-text{
	
}
.join-img{
	width: 100%;
	height: 100%;
	position: relative;
	height:400px;
}
.join-img img{
	position: absolute;
	/*top: -109px;*/
	bottom: 0px;
	right: 0;
}


/*首页----------------合作客户*/
.case-index{

}

.case-index-list li img{

border: 1px solid  #E8E8E8;
background: #fff;
}

/*当前位置*/
.container-position{

}
.position{
margin-bottom: 2rem;

}
.position a{
	line-height: 2em;
	padding: 5px 8px;
	margin:0px  5px;
	
	color: #666;
	transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}
.position a:hover{
	color: #fff;
	background-color:var(--main-color);
		
}





/*关于我们*/
.about-img{
	max-height: 300px;
	overflow: hidden;


}
.about h2{}
.about-page .content-tag{

}

.about-page .content-tag p{
	font-size: 1.25rem;
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid var(--main-color);
	margin-top: 10px;
	color: #fff;
	background-color: var(--main-color);
	border-radius: 0.25rem;
			transition: all 0.3s;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		-moz-transition: all 0.3s;
}

.about-page .content-tag p:hover{
	color: #666;
	background-color: #fff;
	border: 1px solid #fff;.
}

/*-------------------------------------------------------------------------栏目页面*/

.view-pages{
	position: relative;
	top: -50px;
	border-radius: 10px 10px 0 0;
}

.view-pages .title h2{
	font-weight: bold;
	color: #000;
}

.view-content p{
	font-size: 16px;
}
.view-content p i{

	margin-right: 10px;
}

/*关于我们-----------------我们有什么*/


/*背景图片时差样式*/
.bg-img-have{
	background-image: url(../images/parallax1.jpg);
	background-size: cover;
    background-position: 50% 50%;

}
.parallax{
	background-attachment: fixed;
}
/*背景图片时差样式- end----------*/

.about-service{
	color: #fff;
}
.about-service h2,.about-service p{
		color: #fff;
}
.about-service-item{
	padding: 20px 10px;
	margin-bottom: 10px;
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}

.about-service-item h5{
	font-weight: bold;
	font-size: 1.2rem;
	color: #fff;

}
.about-service-item p{
	font-size: 1rem;
	font-weight: normal;
	color: #fff;
	line-height: 1;
	text-align: center;
}

.about-service-item .num{
	color: var(--red-font);
	font-size: 2.25rem;

}

.about-service-item .image{
	width: 120px;
    height: 120px;
    border-radius: 50%;
    line-height: 116px;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px;
    border: 4px solid #fff;
    transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
   
}

.about-service-item .image img{
	width: 80px;
    height: 80px;
	margin-bottom: 10px;
}


.about-service-item:hover .image{
		border: 4px solid var(--main-color);
		background: var(--main-color);
}


/*关于我们----------发展历程*/
.bjh-history {
padding-left: 30px;
}

.bjh-history li{
	position: relative;
    display: block;
    padding:0 0px  30px 0px;

	

}

.bjh-history li h5{
	line-height: 2rem;
	font-size: 14px;
	background-color: #eee;
	border-radius: 10px;
	
}
.bjh-history li p{
	font-size: 12px;
	color: #666;
	line-height: 2rem;
}
.bjh-history li:before{
	   display: flex;
    content: "";
    position: absolute;
    left: -30px;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--main-color);
    z-index: 2;

}

.bjh-history li:after{
	   display: flex;
    content: "";
    position: absolute;
    left: -26px;
    top: 12px;
    border-left: 1px solid var(--main-color);
    height: 100%;
    border-radius: 50%;
    background-color: var(--main-color);
}
.bjh-history li.last{
	padding-bottom: 0px;
}
.bjh-history li.last:after{
	display: none;
}
.bjh-history li:hover{



}

. li:hover p{
	
}


.about-history .swiper-container {
	height: 500px;
}

/*舞蹈团队*/
.bjh-team{
	line-height: 1.5rem;
}
.weibo,.douyin{
	color: #666;
	font-size: 1rem;
	padding-left: 23px;
	padding-right: 5px;
	height: 45px;
		line-height: 45px;
	display: inline-block;
	

}
.weibo{
	background: url(../images/weibo.png) no-repeat ;
	background-size: 35px ;
	background-position: left;	
}

.douyin{
	background: url(../images/douyin.png) no-repeat ;
	background-size: 45px ;
	background-position: left;

}

.other-info{
	vertical-align: middle; 
	position: relative;
	top: 2px;
}

.play{
	display: block;
	background: url(../images/play2.png) no-repeat ;
	background-size: 30px ;
	background-position: center;
	margin-top: 3px;
	margin-left: 10px;
	width: 30px;
	height: 30px;


}
.play-w{
	display: block;
	background: url(../images/play-w.png) no-repeat ;
	background-size: 60px ;
	background-position: center;
	width: 80px;
	height: 80px;
}

.more-1{
	display: block;
	background-image: url(../images/more1.png);
	background-repeat: no-repeat;
	background-size: 34px ;
	background-position: left;
	width: 34px;
	height: 20px;
	margin-top:14px;
}


.team-page-list .douyin{
	line-height: 1.2rem;
	height: auto;
	background-size: 30px;
	padding-left: 40px;
}

.team-page-list .col{
	padding-left: 10px;
	padding-right: 10px;
}



.team-list-item{
	transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.team-list-item .content{
	background-color: #fff;
	color:#333;
		transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.team-list-images{
	height: 380px;
	border-top-left-radius: 0.5rem;
 	border-top-right-radius:0.5rem;
 	background-position: center;
 background-size: 100% auto;
 			transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.team-list-content h3{
	font-size: 1.4rem;
	font-weight: bold;
	 			transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.team-list-content p{
		 			transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}


.team-list-item:hover p{
	color: #333;
}

.team-list-item:hover h3{
	color: var(--main-color)
}
.team-list-item:hover .team-list-images{
background-size: 110% auto;
 			transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.team-page-list a.team-list-item{
	display: block;
	  border-top-left-radius: 1rem !important;
 		 border-top-right-radius: 1rem !important;
}
.team-page-list .team-list-item:hover {
	box-shadow: 0 0 7px 3px #ccc;
	border-radius: 1rem;
}

.team-page-list a:hover h3,.team-page-list a:hover p{

}

.team-page-list a:hover .content{

}
.team-page-list:hover .images img{
	transform: scale(1.1);
	transition: all 0.5s;
}
.team-page-list .images img{
	transition: all 0.5s;
}


.team-page-list:hover .more-1{
	background-image: url(../images/more2.png) ;
	background-repeat: no-repeat; 
}


/*舞蹈团队----------人员详情*/
.bjh-teaminfo{

}
.bjh-team-img{

}
.bjh-team-img img{
	width: 100%;
	
	border-radius: 0.25rem !important;


}

.bjh-team-info-3{
	display: block;
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding-bottom: 40px;
	padding-left: 15px;
}


.bjh-team-other:hover{
	
}
.team-other{
	display: flex;

}
.team-other-ico{
	width: 40px;
	z-index: 2;

}
.team-other-ico img{
	width: 100%;
}
.team-other-text{
min-width: 120px;
		line-height: 25px;
		border: 1px solid #666;
		border-left: 0;
		padding: 0px 10px 0 25px;
		margin-top: 7px;
		margin-left: -20px;
		border-radius: 5px;
		z-index: 1;
		color: #666;
			font-size: 1rem;
	font-weight: 500;
		transition: all 0.5s;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
-moz-transition: all 0.5s;

	}

.team-other-text:hover{
	color: #000;
	border-color: #000;
	  box-shadow: 0 3px 9px rgba(26,26,26,.1);
}

/*舞蹈团队----------相关作品*/

.bjh-works{
	padding: 0px 15px;

}
.bjh-works-imgbox{

	border-top-left-radius: 1rem !important;
 	 border-top-right-radius: 1rem !important;
 	 position: relative;
	height: 480px;
	overflow: hidden;
	text-align: center;
	transition: all 0.5s;

}
.bjh-works-imgbox img{
	width: 100%;
	height:100%;
	text-align: center;
	transition: all 0.5s;
		
}

.bjh-works-imgbox .play-w{
	position: absolute;
	top: 50%;
	left: 50%;
	cursor:pointer;
	transform: translate(-50%,-50%);
	opacity:0.8;
	z-index: 2
}

.bjh-works-content{
	background: #fff;
	padding: 20px ;
	box-shadow: 1px 1px 10px #999;
	transition: all 0.5s;


}
.bjh-works-content p{
	color: #666;
	transition: all 0.5s;
}


.bjh-works:hover .bjh-works-imgbox img{
	transform: scale(1.1);	
}
.bjh-works:hover .bjh-works-imgbox{
	border-radius: 0rem !important;
		
}

.bjh-works:hover .play-w{
	opacity:1;
}
.bjh-works:hover .bjh-works-content{
	background: var(--main-color);
	color: #fff;
	
}
.bjh-works:hover  p{
	color: #fff;	
}


/*其他导师*/
.team-orther .img-box{
	width: 240px;
	height: 240px;
	border: 4px solid #F13A3A;
	margin: 0 auto;
	
}
.team-orther .img-box img{
	position: relative;
	top: -5%;


}
.team-orther a{
	transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.team-orther .content,.team-orther .content p{
	color: #999;
	transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.team-orther a:hover .content,.team-orther a:hover  p{
color: #666;
transition: all 0.5s;
-webkit-transition: all 0.5s;
 -o-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.team-orther a:hover .img-box{
	border: 4px solid var(--main-color);
}
/*日常新闻------------------------*/

/*日常新闻------------------------新闻列表*/
.newslist .img-box{
	width: 250px;
	height: 185px;
	overflow: hidden;

}
.sider-box{
	margin-bottom: 4rem;
}
.sider-box ul li{
	margin-bottom: 0.5rem;
}
.sider-box ul.related-list li{
	border-bottom: 1px dashed #dee2e6;
	margin-bottom: 1rem;
}
.sider-box ul.tag-list li a{
	color: #999;
}

.sider-box ul.like-list .img-box{
	position: relative;
	width: 100%;
	height: 140px;
	overflow: hidden;


}
.sider-box ul.like-list  .img-box img{
	width: 255px;
	position: relative;
	top: -20%;

	
}

.sider-box .i-title:before{


}

/*定制产品产品列表*/

.prod-page{
	 position: relative;
	 top: -50px;
}

.prod-page-title {
	 position: relative;
	
	 background: #fff;
	 padding: 20px 20px 0;
	 border-radius: 10px 10px 0 0;
}

.prod-page-title .title{
padding-top: 0;
padding-bottom: 0;
}

.prod-page-title  h2{
	font-weight: bold;
	color: #000;

}


.prod-page-title .title-sub{
	font-size: 1.3rem;
	color: #666;

}

.prod-page-title  .search-box{

float: right;
text-align: right;

}
.contact-weixin  img{
	width: 80px;
}


.prod-type li{
	 text-align: center;
}
.prod-type-ico img{
	width: 50px;
}
.prod-type a{

border-radius: 5px;
}

.prod-type-ico{
	display:inline-block;
	position: relative;
	bottom: 0px;
	left: 0px;
	width: 105px;
	height: 65px;

	padding-top: 75px;
	font-size: 1.2rem;
	font-weight: bold;
	background-size: 50px auto;
	background-repeat: no-repeat;
	background-position: center;
}
.prod-type-ico0{
	background-image:url(../images/type-ico0.png);
}
.prod-type-ico1{
	background-image:url(../images/type-ico1.png);
}
.prod-type-ico2{
	background-image:url(../images/type-ico2.png);
}
.prod-type-ico3{
	background-image:url(../images/type-ico3.png);
}
.prod-type-ico4{
	background-image:url(../images/type-ico4.png);
}
.prod-type-ico5{
	background-image:url(../images/type-ico5.png);
}

.prod-type2-ico1{
	background-image:url(../images/custom-ico1.png);
}
.prod-type2-ico2{
	background-image:url(../images/custom-ico2.png);
}
.prod-type2-ico3{
	background-image:url(../images/custom-ico3.png);
}
.prod-type2-ico4{
	background-image:url(../images/custom-ico4.png);
}
.prod-type2-ico5{
	background-image:url(../images/custom-ico5.png);
}

.prod-type3-ico1{
	background-image:url(../images/num1.png);
}
.prod-type3-ico2{
	background-image:url(../images/num2.png);
}
.prod-type3-ico3{
	background-image:url(../images/num3.png);
}
.prod-type3-ico4{
	background-image:url(../images/num4.png);
}
.prod-type3-ico5{
	background-image:url(../images/num5.png);
}

.prod-type a.active{
	background-color: var(--third-color);
	color: var(--main-color);
}

.prod-list{
	padding-top: 20px;
	min-height: 535px;
}
.prod-list .card{	
	height: 520px;
	margin:0px 0px 15px;
	overflow: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.prod-list .card:hover{
	/*box-shadow: 0px 0px 10px #999999;*/
}
.prod-list .card-img-box{
	position: relative;
	height: 380px;
	min-height: 380px;
    overflow: hidden;
    cursor: pointer;
  
}
.prod-list .card-img-box .card-img{
	width: 100%;
    height: 100%;
	background-size: cover;
	background-position: center;
    top: 0px;
    transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}
.prod-list .card-img-box  .card-tag{
	position: absolute;
	top: 8px;
	right: 8px;


}
.prod-list .card-img-box  .card-tag h4{
	font-size: 1rem;
	font-weight: bold;
}
.prod-list .card-img-box  .card-tag img{
	width: 35px;
	height: auto;
}
.prod-list .card .overlay-box{
	bottom: 0;
	height: 100%;
	background: #000;
	padding-top: 60px;
	color: #fff;
}

.prod-list .card .overlay-box a{
	color: #fff;
}
.prod-list .card .overlay-box a:hover{
	color:var(--main-color);
}

.prod-list .card:hover .overlay-box{
	opacity: 0;

}


.prod-list .card-body{
	padding:0px;
}

.prod-list .card-body .card-text{
	text-align: left;
}

.prod-list .card-body .card-title{
	    display: flex;
	    justify-content: space-between;
	margin: 0px;
	padding: 14px 8px 8px ;
	border-bottom: 1px solid  #DFDFDF;
}

.prod-list .card-title .prod-title{
	font-size: 1.15rem;
	font-weight: 700;
}

.prod-list .card-title  .prod-price{
	position: relative;
	right: 0px;
	    font-size: 1.2rem;
    	font-weight: 700;
    	display: inline-block;

}
.prod-list .prod-price span{
	font-size: 0.8rem;
}
.prod-list .card-body .card-content{
	color: #999;
	padding: 14px 8px 8px;
	    transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}

.prod-list .card-body .card-content p{
	margin-bottom: 10px;
}

.prod-list .card-body .card-content .fa{
	font-weight: bold;
}



.prod-list .card:hover .card-img{
	transform: scale(1.06);
}
.prod-list .card:hover .card-content{
		color: #666;
}



/*常服产品列表*/
.prod-list-suit .card-img-box{
	height: 100%;
}

/*产品 流程*/
.path-box{
	padding: 20px 200px 20px;
}

.path-item{
	text-align: center;
}
.path-item .num-box{
		width: 3rem;
		height: 3rem;
		display: inline-block;
		
}
.path-item .num-box h2{
	line-height: 3rem;
}
.path-item p{
	color: #8e8e8e;
}
.path-title-t{
	font-size: 1.5rem;
}
.path-title-l{
	position: absolute;
    left: 0;
    bottom: 3px;
    z-index: 2;
    width: 100%;
    height: 6px;
    opacity: 0.6;
    background-color: var(--second-color);
}

.path-arrow{
	line-height: 108px;
	font-size: 1.5rem;
	color: var(--main-color);
}
.path-arrow {

}



/*产品列表 侧边栏*/
.prod-sider,.prod-sider.affix-bottom{
	position:absolute;
	top: 0%;
	left: -162px;
	width: 150px;

}
.prod-sider.affix{
	position: fixed;
    top: 9%;
    left: 10%;
    z-index: 10;
}

.prod-sider .title{
	padding-top: 0;
}
.prod-sider .sider-box  {
	text-align: right;
}
.prod-sider .sider-box .btn{
	display: block;
	text-align: right;
}


/*产品列表 弹出框*/
.prod-dialog {

/*	*/
}


.prod-dialog .prod-dialog-content{

	color: #fff;
 border-radius: 1rem;
	border: 2px solid #000;
		background-image: url(../images/prod-dialog-bg.png);
		background-size: 800px;
		background-color: #1F1F1F;

}
.prod-dialog .prod-dialog-header,.prod-dialog .prod-dialog-footer{
 background: none;
 border: none;

}
.prod-dialog-header h3{
	color:#D9A251
}
.prod-dialog-header .close{
	color: #fff;
	    padding: 0.5rem 1rem;
}
.prod-dialog-header .close span{
	font-size: 2rem;
}
.prod-dialog-body{
	padding: 40px 0px;
}

/*产品详情*/

 
.product .view .swiper-slide{
	height: 470px;
	line-height: 470px;
	background: #e6e6e6;
	border-radius: 0.25rem;


}

.product .view .swiper-slide img{
max-width: 470px;
max-height: 470px;
height: auto;

}



.product .preview{
	width: 100%;
left: -3px;

}
.product .preview .swiper-slide{
	line-height: 87.5px
}
.product .preview .swiper-slide img{
	max-width: 87.5px;
max-height:87.5px;
height: auto;
}

.preview .swiper-slide{
	text-align: center;
	border: 1px solid #f1f1f1;
	background: #e6e6e6;
	    width: 87.5px;
    height: 87.5px;
    border-radius: 0.25rem;
}
.preview .active-nav{
	border: 1px solid var(--main-color);
	border-radius: 0.25rem;
}

.preview .arrow-left{
	line-height: 87.5px;
	height: 87.5px;
	left: -25px;

}
.preview .arrow-right{

line-height: 87.5px;
	height: 87.5px;
	right: -20px;
}

.preview .arrow{
	background-color: #fff;
	text-align: center;
	background-position: center;
	line-height: 70px;
	font-size: 20px;
	color: #666;
	width: 25px;

}

.preview .arrow:hover {
	background-color: var(--main-color);
	color: #fff;
}



/*产品详情 内容部分*/

.product-page .preview .arrow-left{
	line-height: 87.5px;
	height: 87.5px;
	left: -25px;
}

.product-page .preview .arrow-right{
	line-height: 87.5px;
	height: 87.5px;
	right: -20px;
}

.prod-info{
	color: #6c757d;
	line-height: 2;
	border-bottom: 1px dashed #dee2e6;
	margin-bottom: 1rem;
	display: flex;

}

.prod-info-title{
	display: inline-block;
}

.prod-info-content{
display: inline-block;

}
.prod-content{
	min-height:120px;
}
.prod-tel{
	border-top: 2px solid #e6e6e6;
    margin-top: 15px;
    padding-top: 15px;
    background: url(../images/tel.png) no-repeat 0 15px;
    background-size: 42px;

    padding-left: 60px;
    line-height: 21px;
    font-size: 16px;
    font-weight: bold;
    color: #666;



}

.prod-tel .tel-box{

}
.product-page .content{
	padding-left: 100px;
	padding-right:100px;
}

/*在线咨询*/
.online dl{
	background: var(--main-color);

}
.online dl:hover{
	background: var(--second-color);

}

.page-num, .page-link{
	color: #666;
}
.page-num-current{
	background: var(--main-color);
	border-color: var(--second-color);
	color: #fff;
}

.page-link:hover{
	color: var(--second-color);
}


/*艺术兼职*/

.parttime-content p{
	font-size: 1.2rem;
}

.parttime-code img{
	width: 220px;
	border-radius: 5px;
	border:1px solid #666;
}

.parttime-code-title{
font-weight: bold;
font-size: 1.2rem;
}


/*艺术兼职 案例*/
.parttime-case{

}
.parttime-case .col{
	margin-bottom: 1rem;
}

.parttime-case-item{
border-radius: 5px;
	overflow:hidden;
transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
		
}
.parttime-case-item:hover{
box-shadow: 0 0 10px rgba(0,0,0,0.38)
}
.parttime-case-item img{

		    transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
}

.parttime-case-item img:hover{
	    transform: scale(1.06);

}

.parttime-team .col{
	border-radius: 5px;
	border:1px solid #eaeaea;
	padding-bottom: 10px;
}
.parttime-team-img{
	margin-bottom: 10px;
	height: 260px;

	overflow: hidden;
	background-repeat: no-repeat;
	background-position: top;
}

.parttime-team-img img{
	

}
.parttime-team-text{
	text-align: center;
	color: #333;
}
.parttime-team-text p{
	color: #666;
}

/*-------------------------------绘画页面*/

.picturelist .position{


}
.sonsort  a{
	margin-right: 0.5rem;
}


#outerdiv {
	z-index: 1031;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
  
}



/*-------------------------- 专题页 代运营招商 -------------------*/


.busniess .view-content p{
		margin-bottom: 10px;
	color: #222;
}

.busniess .view-content i{
color: #000;
}
.business-item .img-box{
	width: 100%;
    vertical-align: middle;
    align-self: center;
    flex: 0 0 auto;
    border-radius: 100%;
    overflow: hidden;
    padding: 8px;
    height: auto;
    background-image: linear-gradient(rgb(255, 245, 165) 0%, rgba(255, 245, 165, 0) 100%);
}
.business-item .img-box-circle{
	border: none;
	margin-bottom: 0px;
}
.business-item h4{
	text-align: center;
	color: #1296DB;
}

.business-item p{

}


/*-------------------------- 专题页面  达人孵化 -------------------*/

.expert-page .view-content p{
	font-size: 18px;
	margin-bottom: 10px;
	color: #222;

}

.expert-page .view-content i{
color: #000;
}

.expert-item .col{
	padding: 0px;
}


.expert-join{
	color: #fff;
	background-color: #FF4200;
	text-align: center;
	line-height: 100%;
	display: flex;
	align-items:center;
	justify-content:center;

}

.expert-about {
	background-color: #111;
}

.expert-about-item{

	text-align: center;
	padding:20px 0 40px;

}

.expert-about-item  h4{
	font-size: 16px;
}
.expert-about-item p{
	color: #6a6a6a;
	font-size: 12px;
}

.expert-about-item img{
	width: 90px;
}

/*--------------------------  专题 电商运营 -------------------*/

.retailers-page .view-pages{
	background-color: #F1F8FF;
}

.retailers-page .title{
position: absolute;
top:45%;
left: 45%;

}

.retailers-page .title h2{
	display: block;
	color: #1296DB;
	font-size: 3rem

}
.retailers-page .col{
	margin-bottom: 50px;
}
.retailers-page h3{
	font-weight: bold;
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}