/* Animate.css动画演示 */
@import "../swiper/animate.min.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/font/css/font-awesome.min.css";

/* 公共样式 */
@import "../css/public.min.css";

/* 头部 */
.header {
  width: 100%;
  background-color: #e50012;
  overflow: hidden;
}
.header>.container{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.logo{
  display: flex;
  align-items: center;
}
.logo > a{
  width: 399px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.header_R{
  width: 40.5%;
  background: url(../images/header_bj.jpg) no-repeat left center #626262;
  background-size: auto 100%;
  position: relative;
  padding: 22px 0;
}
.header_R::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: #626262;
  float: left;
  position: absolute;
  left: 99%;
  top: 0;
}
.header_add{
  float: right;
  position: relative;
  z-index: 2;
  line-height: 22px;
  font-size: 15px;
  color: #fff;
  background: url(../images/header_icon1.png) no-repeat left center;
  padding-left: 25px;
}
.header_dianhua {
  width: 100%;
  float: right;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  line-height: 22px;
  font-size: 15px;
  color: #fff;
}
.header_dianhua>span{
  float: right;
  background: url(../images/header_icon2.png) no-repeat left center;
  padding-left: 28px;
}

/* 导航 */
nav {
  background-color: #222;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.nav{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.nav>li{
  float: left;
  position: relative;
}
.nav>li>a{
  display: block;
  overflow: hidden;
  height: 68px;
  line-height: 68px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.nav>li>a::before{
  content: "";
  width: 0;
  height: 3px;
  float: left;
  background-color: #e50012;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 0.4s;
}
.nav>li:hover>a::before,
.nav>li.nav-this>a::before{
  width: 100%;
}

/* 导航下拉 */
.nav-child{
  display: none;
  width: 200%;
  float: left;
  background-color: rgba(34,34,34,0.95);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 9;
}
.nav-child>li{
  display: block;
  overflow: hidden;
}
.nav-child>li>a{
  display: block;
  overflow: hidden;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.nav-child>li>a:hover{
  background-color: #e50012;
  color: #fff;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox img {
  width: 100%;
  display: block;
  height: auto;
}
/*圆点*/
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #e50012;
  opacity: 0.5;
  border-radius: 50%;
}
.banner .banner-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e50012;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-prev,
.banner .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(229,0,18,0.6);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.banner .banner-next{
  left: initial;
  right: 2%;
}
.banner:hover .banner-next,
.banner:hover .banner-prev {
  opacity: 1;
}
/* END */

/*首页*/
.full{
  width: 100%;
  overflow: hidden;
  background: url(../images/full_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 50px 0;
}
.full_title{
  display: block;
  overflow: hidden;
  text-align: center;
}
.full_p{
  line-height: 42px;
  font-size: 30px;
  color: #e50012;
  text-transform: uppercase;
}
.full_sp{
  line-height: 30px;
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}
.full_ul{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding-top: 30px;
  width: 1444px;
}
.full_ul li{
  width: 317px;
  float: left;
  margin: 0 44px 10px 0;
}
.full_ul li>a{
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background-color: #e50012;
  padding: 40px 20px;
}
.full_ul li>a .full_iconB{
  width: 100%;
  max-width: 174px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 10px;
  overflow: hidden;
}
.full_ul li>a .full_iconB .full_icon{
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
}
.full_ul li>a .full_iconB .full_icon::before{
  content: "";
  display: block;
  padding-top: 100%;
}
.full_ul li>a .full_iconB .full_icon>img:first-child{opacity: 1;}
.full_ul li>a .full_iconB .full_icon>img:last-child{opacity: 0;}
.full_ul li>a .full_tit{
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.full_ul li>a .full_txt{
  display: block;
  overflow: hidden;
  line-height: 26px;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.full_ul li:hover>a{
  background-color: #e50012;
}
.full_ul li:hover>a .full_iconB .full_icon>img:first-child{opacity: 0;}
.full_ul li:hover>a .full_iconB .full_icon>img:last-child{opacity: 1;}
.full_ul li:hover>a .full_tit,
.full_ul li:hover>a .full_txt{
  color: #fff;
}

.event{
  width: 100%;
  overflow: hidden;
  padding: 55px 0;
}
.event_ul{
  display: flex;
  flex-wrap: wrap;
  width: 1416px;
  padding-top: 25px;
}
.event_ul li{
  width: 456px;
  float: left;
  margin: 0 16px 20px 0;
}
.event_ul li>a{
  width: 100%;
  float: left;
  overflow: hidden;
  border: 1px solid #e7e7e7;
}
.event_ul li>a .event_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #e7e7e7;
}
.event_ul li>a .event_img::before{
  content: "";
  display: block;
  padding-top: 66.4474%;
}
.event_ul li>a .event_img .event_hover{
  width: 100%;
  float: left;
  height: 0;
  background-color: rgba(253,38,52,0.75);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.event_ul li>a .event_txt{
  display: block;
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  font-size: 18px;
  color: #333;
  text-align: center;
}
.event_ul li>a:hover{
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.event_ul li>a:hover .event_img .event_hover{
  height: 100%;
}
.event_ul li>a:hover .event_txt{
  color: #e50012;
}
.event_more{
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-top: 12px;
}
.event_more>a{
  width: 204px;
  float: left;
  height: 62px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #e50012;
  background-color: #e50012;
  font-size: 16px;
  color: #fff;
}
.event_more>a:hover{
  background-color: #fff;
  color: #e50012;
}

.sports{
  width: 100%;
  overflow: hidden;
  background: url(../images/sports_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 55px 0;
}
.sports_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
}
.sports_nav>li{
  width: 124px;
  float: left;
  margin: 0 9px 10px 9px;
}
.sports_nav>li>a{
  display: block;
  overflow: hidden;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: #333;
  font-size: 18px;
  color: #fff;
}
.sports_nav>li:hover>a,
.sports_nav>li.sports_active>a{
  background-color: #e50012;
}
.sports_contect{
  display: block;
  overflow: hidden;
  padding-top: 30px;
}
.sports_contect>div{display: none;}
.sports_contect>div:first-child{display: block;}
.sports_ul{
  display: block;
  overflow: hidden;
  width: 1416px;
}
.sports_ul li{
  width: 338px;
  float: left;
  margin: 0 16px 15px 0;
}
.sports_ul li>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #999;
}
.sports_ul li>a::before{
  content: "";
  display: block;
  padding-top: 68.82353%;
}
.sports_ul li>a .sports_hover{
  width: 56%;
  float: right;
  position: absolute;
  right: 0;
  bottom: 30px;
  background-color: rgba(51,51,51,0.95);
  padding: 15px;
  line-height: 30px;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sports_ul li>a .sports_hover>img{
  margin-right: 5px;
}
.sports_ul li>a .sports_hover>span{
  text-overflow:ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.sports_ul li>a:hover{
  border-color: #e50012;
}
.sports_ul li>a:hover>img{transform: scale(1.1);}
.sports_ul li>a:hover .sports_hover{
  background-color: rgba(229,0,18,0.8);
}
.sports .event_more{
  padding-top: 25px;
}
.sports .event_more>a{
  background-color: #fff;
  color: #e50012;
}
.sports .event_more>a:hover{
  background-color: #e50012;
  color: #fff;
}

.cus{
  width: 100%;
  overflow: hidden;
  background: url(../images/cus_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 55px 0;
}
.cus .full_p,
.cus .full_sp{
  color: #fff;
}
.cus_ul{
  display: block;
  overflow: hidden;
  padding-top: 40px;
}
.cus_ul li{
  width: 25.5%;
  float: left;
  padding-left: 28px;
  margin-bottom: 28px;
}
.cus_ul li>a{
  width: 100%;
  overflow: hidden;
  position: relative;
  float: left;
  border: 2px solid #fff;
}
.cus_ul li>a::before{
  content: "";
  display: block;
  padding-top: 96.9388%;
}
.cus_ul li>a .cus_txt{
  width: 100%;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(229,0,18,0.8);
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: -100%;
}
.cus_ul li:first-child{
  width: 49%;
  padding: 0;
}
.cus_ul li:first-child>a .cus_txt{
  height: 74px;
  line-height: 74px;
}
.cus_ul li>a:hover>img{transform: scale(1.1);}
.cus_ul li>a:hover .cus_txt{
  bottom: 0;
}
.cus .event_more{
  padding-top: 25px;
}
.cus .event_more>a{
  border-color: #fff;
  background-color: initial;
  color: #fff;
}
.cus .event_more>a:hover{
  border-color: #e50012;
  background-color: #e50012;
  color: #fff;
}

.gsjj{
  width: 100%;
  overflow: hidden;
  padding: 55px 0;
  background: url(../images/gsjj_bj.png) no-repeat left bottom;
}
.gsjj_contect{
  display: block;
  overflow: hidden;
  padding-top: 35px;
}
.gsjj_left{
  width: 54.5%;
  float: right;
  position: relative;
  padding: 50px 42px 0 130px;
}
.gsjj_left::before{
  content: "";
  width: 68%;
  float: left;
  height: 78%;
  background-color: #e50012;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.gsjj_left::after{
  content: "";
  width: 35.5%;
  float: left;
  height: 50%;
  background: url(../images/gsjj_bj.png) repeat left center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.gsjj_left>.gsjj_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.gsjj_left>.gsjj_img::before{
  content: "";
  display: block;
  padding-top: 61.96944%;
}
.gsjj_right{
  width: 44%;
  float: left;
}
.gsjj_tit{
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 30px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.gsjj_tit>span{
  color: #e50012;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  margin-top: 55px;
  font-size: 16px;
  line-height: 36px;
  color: #333;
  height: 180px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.gsjj_right .event_more{
  justify-content: flex-start;
}
.gsjj_right .event_more>a{
  background-color: #fff;
  color: #e50012;
}
.gsjj_right .event_more>a:hover{
  background-color: #e50012;
  color: #fff;
}

.equ{
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(#f8f8f8,#fff);
  padding: 55px 0;
}
.equ-imgbox{
  margin-top: 35px;
}
.equ-imgbox .swiper-slide .equ_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #999;
}
.equ-imgbox .swiper-slide .equ_img::before{
  content: "";
  display: block;
  padding-top: 68.82353%;
}
.equ-imgbox .swiper-slide .equ_txt{
  display: block;
  overflow: hidden;
  height: 58px;
  line-height: 58px;
  text-align: center;
  background-color: #999;
  font-size: 18px;
  color: #fff;
}
.equ-imgbox .swiper-slide:hover .equ_img{
  border-color: #d7000f;
}
.equ-imgbox .swiper-slide:hover .equ_img>img{
  transform: scale(1.1);
}
.equ-imgbox .swiper-slide:hover .equ_txt{
  background-color: #d7000f;
  color: #fff;
}
.equ .event_more{
  padding-top: 45px;
}
.equ .event_more>a{
  background-color: #fff;
  color: #e50012;
}
.equ .event_more>a:hover{
  background-color: #e50012;
  color: #fff;
}
/*END-首页*/

/* 底部 */
footer {
  background: #222;
  overflow: hidden;
}
footer>.container{
  display: flex;
}
.footer_left{
  width: 23%;
  float: left;
  position: relative;
  padding: 50px 0;
}
.footer_left::before{
  content: "";
  width: 500%;
  float: left;
  height: 100%;
  background-color: #e50012;
  position: absolute;
  right: 0;
  top: 0;
}
.footer_left>div{
  position: relative;
  z-index: 2;
}
.footer_logo{
  display: block;
  overflow: hidden;
  padding: 0 10px 24px 0;
  border-bottom: 1px solid #f28089;
}
.footer_logo>img{
  display: block;
  max-width: 100%;
  height: auto;
}
.footer_dianhuaB{
  display: block;
  overflow: hidden;
  padding: 12px 0 16px 0;
  border-bottom: 1px solid #f28089;
}
.footer_dianhua{
  display: block;
  overflow: hidden;
  background: url(../images/footer_dianhua.png) no-repeat left center;
  padding-left: 66px;
  line-height: 28px;
  color: #fff;
  font-size: 16px;
}
.footer_dianhua>span{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-family: Impact;
  font-size: 24px;
}
.footer_txt{
  display: block;
  overflow: hidden;
  line-height: 22px;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}

.footer_right{
  width: 77%;
  float: left;
}
.footer{
  width: 100%;
  overflow: hidden;
  padding: 30px 0 30px 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_B{
  float: left;
  border-right: 1px solid #434343;
}
.footer_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 17px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer_ul{
  display: block;
  overflow: hidden;
}
.footer_ul>li{
  display: block;
  overflow: hidden;
  height: 36px;
  line-height: 36px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.footer_ul>li>a{
  color: #a5a5a5;
  font-size: 14px;
}
.footer_ul>li>a:hover{
  color: #fff;
  text-decoration: underline;
}
.footer_B:nth-child(1){
  width: 13%;
}

.footer_B:nth-child(2){
  width: 28.5%;
  padding-left: 50px;
}
.footer_B:nth-child(2) .footer_ul>li{
  width: 50%;
  float: left;
}

.footer_B:nth-child(3){
  width: 19%;
  text-align: center;
}
.footer_B:nth-child(4){
  width: 20.5%;
  border: none;
  padding-left: 50px;
}
.footer_wx{
  width: 19%;
}
.footer_wx>img{
  width: 100%;
  display: block;
  height: auto;
}

.copyright{
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
}
.copyright a{
  color: #fff;
  margin: 0 5px;
}
.copyright a:hover{
  color: #fff;
  text-decoration: underline;
}
/* END-底部 */

/* 关于我们/员工福利 */
.main{
	width: 100%;
	overflow: hidden;
	padding: 55px 0;
}
.main_left{
	width: 318px;
	float: left;
}
.about{
	width: 100%;
	float: left;
}
.about_title{
	display: block;
	overflow: hidden;
	height: 68px;
	line-height: 68px;
	text-align: center;
	background-color: #151515;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
}
.about_ul{
	display: block;
	overflow: hidden;
  padding-top: 8px;
}
.about_ul>li{
	display: block;
	overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid #e8e8e8;
}
.about_ul>li>a{
	display: block;
	overflow: hidden;
  background-color: #e8e8e8;
	height: 46px;
	line-height: 46px;
	font-size: 16px;
  text-align: center;
	color: #0b0c0f;
}
.about_ul>li:hover,
.about_ul>li.about_on{
  border: 1px solid #d7000f;
}
.about_ul>li:hover>a,
.about_ul>li.about_on>a{
	background-color: #d7000f;
	color: #fff;
}

.about_dl{
	display: none;
	overflow: hidden;
  padding: 4px;
}
.about_dl>dd{
	display: block;
	overflow: hidden;
}
.about_dl>dd>a{
	display: block;
	overflow: hidden;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #0b0c0f;
  text-align: center;
}
.about_dl>dd>a:hover{
	color: #d7000f;
}
.about_B{
  display: block;
  overflow: hidden;
}
.about_B>img{
  width: 100%;
  display: block;
  height: auto;
}
.about_txt{
  display: block;
  overflow: hidden;
  border: 1px solid #eee;
  padding: 18px;
  font-size: 14px;
  color: #111;
  line-height: 30px;
}

.main_right{
	width: 1048px;
	float: right;
}
.dqwz_title{
	width: 100%;
	float: left;
	line-height: 55px;
	font-size: 14px;
	color: #8a8a8a;
	border-bottom: 1px solid #cfcfcf;
}
.dqwz_title>span{
  color: #e50012;
}
.dqwz_contect{
	width: 100%;
	float: left;
	padding-top: 30px;
}
.company{
	display: block;
	overflow: hidden;
	font-size: 14px;
	line-height: 30px;
	color: #333;
}
/* END-关于我们/员工福利 */

/* 活动策划/运动服饰/运动服定制/器材设备 */
.cp_ul{
  display: block;
  overflow: hidden;
  width: 1062px;
}
.cp_ul li{
  width: 340px;
  float: left;
  margin: 0 14px 15px 0;
}
.cp_ul li .cp_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #e8e8e8;
}
.cp_ul li .cp_img::before{
  content: "";
  display: block;
  padding-top: 68.82353%;
}
.cp_ul li .cp_txt{
  display: block;
  overflow: hidden;
  height: 58px;
  line-height: 58px;
  text-align: center;
  background-color: #e8e8e8;
  font-size: 18px;
  color: #151515;
}
.cp_ul li:hover .cp_img{
  border-color: #d7000f;
}
.cp_ul li:hover .cp_img>img{
  transform: scale(1.1);
}
.cp_ul li:hover .cp_txt{
  background-color: #d7000f;
  color: #fff;
}

.cpxq{
  display: block;
  overflow: hidden;
}
.cpxq_img{
  width: 60.5%;
  float: left;
  margin-right: 35px;
  overflow: hidden;
  position: relative;
}
.cpxq_img::before{
  content: "";
  display: block;
  padding-top: 78.2132%;
}
.cpxq_tit{
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 18px;
  color: #151515;
  margin-bottom: 15px;
}
.cpxq_txt{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #666;
}
.cpxq_txt>span{
  font-weight: bold;
  font-size: 18px;
  color: #ff0000;
}
.cpxq_title{
  width: 100%;
  float: left;
  margin-top: 30px;
  line-height: 28px;
  padding: 20px 28px;
  background-color: #e8e8e8;
  font-size: 18px;
  color: #151515;
  font-weight: bold;
}
.cpxq_contect{
  width: 100%;
  float: left;
  font-size: 16px;
  color: #151515;
  line-height: 30px;
  padding-top: 20px;
}
/* END-活动策划/运动服饰/运动服定制/器材设备 */

/* 联系我们 */
.contact{
  display: block;
  overflow: hidden;
}
.contact_txt {
  width: 40%;
  float: left;
  font-size: 14px;
  color: #333;
  line-height: 30px;
}
.contact_map {
  width: 58%;
  float: right;
  overflow: hidden;
  height: 400px;
  border: none;
}
/* END-联系我们 */

@media (max-width: 1420px) {
/* 头部 */
.header_R {
  width: 50.5%;
}
/* END-头部 */

/* 首页 */
.full_ul {
  width: 102%;
  margin-left: -1%;
}
.full_ul li {
  width: 23%;
  margin: 0 1% 10px 1%;
}

.event {
  padding: 50px 0;
}
.event_ul {
  width: 102%;
  margin-left: -1%;
}
.event_ul li {
  width: 31.3333%;
  margin: 0 1% 20px 1%;
}

.sports {
  padding: 50px 0;
}
.sports_ul {
  width: 102%;
  margin-left: -1%;
}
.sports_ul li {
  width: 23%;
  margin: 0 1% 15px 1%;
}
.sports_ul li>a .sports_hover {
  width: 70%;
  bottom: 10px;
}

.cus {
  padding: 50px 0;
}
.gsjj {
  padding: 50px 0;
}
.gsjj_left {
  padding: 30px 30px 0 80px;
}
.gsjj_txt {
  margin-top: 25px;
}

.equ {
  padding: 50px 0;
}
/* END-首页 */

/* 底部 */
.footer_left {
  padding: 30px 0;
}
.footer {
  padding: 20px 0 20px 30px;
}
.footer_B:nth-child(2) {
  padding-left: 30px;
}
.footer_B:nth-child(4) {
  padding-left: 30px;
}
/* END-底部 */

/* 关于我们/员工福利 */
.main{
	padding: 40px 0;
}
.main_left{
	width: 24%;
}
.main_right{
	width: 74%;
}
/* END-关于我们/员工福利 */
.cp_ul{
  width: 102%;
	margin-left: -1%;
}
.cp_ul li{
  width: 31.3333%;
  margin: 0 1% 15px 1%;
}

}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 50px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background-size: 100% 100%;
}
.icon-menu>span {
  width: 100%;
  height: 5px;
  float: left;
  background-color: #fff;
  transition: all 0.4s;
}
.icon-menu-active>span:nth-child(2){
  opacity: 0;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(15px) rotate(-45deg);
  -ms-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-15px) rotate(45deg);
  -ms-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

/* 头部 */
.header {
  padding: 20px 0;
  position: absolute;
  top:0;
  z-index: 10;
}

/* 导航 */
nav {
  position: fixed;
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  z-index: 10;
	opacity: 0;
  display: flex;
  justify-content: flex-start;
  transition: all 0.4s;
}
.nav-actived{
  left: 0;
	opacity: 1;
}
nav>.container {
  width: 100%;
  max-width: 100% !important;
}
.nav{
  width: 85%;
  height: 100%;
  background-color: #222;
  display: block;
}
.nav>li{
  width: 100%;
  height: 9%;
  border-bottom: 1px solid #fff;
}
.nav>li>a{
  width: 100%;
  height: 100%;
  line-height: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}
.nav>li>a::before{display: none;}
.nav>li:hover>a, .nav>li.nav-this>a{
  background-color: #e50012;
}

/*圆点*/
.banner .swiper-pagination {
  opacity: 1;
  bottom: 10px;
}
.banner .swiper-pagination-bullet {
  width: 10px;
  height: 2px;
  opacity: 1;
  border-radius: 0;
}
.banner .banner-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}
.banner .swiper-pagination-bullet-active {
  width: 15px;
}
/* END-头部 */

/* 首页 */
.full {
  padding: 30px 0;
}
.full_ul li>a {
  padding: 20px 10px;
}
.full_ul li>a .full_tit {
  margin-top: 10px;
}
.full_ul li>a .full_txt {
  line-height: 24px;
  margin-top: 5px;
}

.event {
  padding: 30px 0;
}
.event_ul li>a .event_txt {
  height: 50px;
  line-height: 50px;
}
.event_more>a {
  width: 184px;
  height: 52px;
  line-height: 50px;
}

.sports {
  padding: 30px 0;
}
.sports_nav {
  padding-top: 20px;
}
.sports_nav>li {
  width: 15.6666%;
  margin: 0 0.5% 10px 0.5%;
}
.sports_contect {
  padding-top: 20px;
}
.sports_ul li {
  width: 31.3333%;
  margin: 0 1% 15px 1%;
}
.sports_ul li>a .sports_hover {
  padding: 10px;
  line-height: 24px;
  font-size: 16px;
}
.sports .event_more {
  padding-top: 15px;
}

.cus {
  padding: 30px 0;
}
.cus_ul {
  padding-top: 20px;
}
.cus_ul li {
  padding-left: 15px;
  margin-bottom: 15px;
}
.cus .event_more {
  padding-top: 15px;
}

.gsjj {
  padding: 30px 0;
}
.gsjj_contect {
  padding-top: 20px;
}
.gsjj_left {
  padding: 20px 20px 0 30px;
}
.gsjj_txt {
  margin-top: 10px;
}

.equ {
  padding: 30px 0;
}
.equ-imgbox {
  margin-top: 20px;
}
.equ .event_more {
  padding-top: 20px;
}
/* END-首页 */

/* 底部 */
.footer_left {
  width: 34%;
  padding: 15px 0;
}
.footer {
  padding: 10px 0 10px 10px;
}
.footer_B:nth-child(1){
  width: 33.3333%;
  margin-bottom: 10px;
}
.footer_B:nth-child(2){
  width: 66.6667%;
  margin-bottom: 10px;
}
.footer_B:nth-child(3),
.footer_B:nth-child(4){
  width: 33.3333%;
}
.footer_wx {
  width: 33.3333%;
}

/* END-底部 */

/* 关于我们/员工福利 */
.main{
	padding: 30px 0;
}
.main_left{
	width: 29%;
}
.main_right{
	width: 69%;
}
/* END-关于我们/员工福利 */

}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  width: 30px;
  height: 21px;
	right: 10px;
}
.icon-menu span {
  height: 3px;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* 头部 */
.header{
  padding: 10px 0;
}
.logo{
  width: 80%;
}
.logo a {
  width: 100%;
}
.nav>li>a{font-size: 16px;}
/* END-头部 */

/* 首页 */
.full {
  padding: 10px 0;
}
.full_p {
  line-height: 30px;
  font-size: 20px;
}
.full_sp {
  line-height: 20px;
  font-size: 14px;
  margin-top: 0;
}
.full_ul {
  padding-top: 10px;
}
.full_ul li {
  width: 48%;
  margin: 0 1% 2% 1%;
}
.full_ul li>a {
  padding: 10px;
}
.full_ul li>a .full_iconB {
  max-width: 100px;
  border: 2px solid #fff;
  padding: 5px;
}
.full_ul li>a .full_iconB .full_icon>img{
  height: 40px;
}
.full_ul li>a .full_tit {
  line-height: 24px;
  margin-top: 5px;
  font-size: 16px;
}
.full_ul li>a .full_txt {
  line-height: 20px;
  font-size: 12px;
}

.event {
  padding: 10px 0;
}
.event_ul {
  padding-top: 10px;
}
.event_ul li {
  width: 48%;
  margin: 0 1% 10px 1%;
}
.event_ul li>a .event_txt {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
.event_more {
  padding-top: 5px;
}
.event_more>a {
  width: 108px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
}

.sports {
  padding: 10px 0;
}
.sports_nav {
  padding-top: 10px;
}
.sports_nav>li {
  width: 32.3333%;
  margin: 0 0.5% 1% 0.5%;
}
.sports_nav>li>a {
  height: 32px;
  line-height: 32px;
  font-size: 16px;
}
.sports_contect {
  padding-top: 10px;
}
.sports_ul li {
  width: 48%;
  margin: 0 1% 10px 1%;
}
.sports_ul li>a .sports_hover {
  width: 80%;
  bottom: 5px;
  line-height: 22px;
  font-size: 14px;
}
.sports .event_more {
  padding-top: 5px;
}

.cus {
  padding: 10px 0;
}
.cus_ul {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cus_ul li {
  width: calc(50% - 5px);
  padding-left: 0;
  margin-bottom: 10px;
}
.cus_ul li:first-child {
  width: 100%;
}
.cus .event_more {
  padding-top: 5px;
}

.gsjj {
  padding: 10px 0;
}
.gsjj_contect {
  padding-top: 10px;
}
.gsjj_left {
  width: 100%;
  padding: 0;
}
.gsjj_left::before,
.gsjj_left::after{display: none;}
.gsjj_right {
  width: 100%;
}
.gsjj_tit {
  margin-top: 10px;
  line-height: 24px;
  font-size: 16px;
}
.gsjj_txt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  height: auto;
  -webkit-line-clamp: initial;
}

.equ {
  padding: 10px 0;
}
.equ-imgbox {
  margin-top: 10px;
}
.equ-imgbox .swiper-slide .equ_txt {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
.equ .event_more {
  padding-top: 10px;
}
/* END-首页 */

/* 底部 */
.footer_right {
  width: 100%;
}
.copyright {
  line-height: 20px;
  font-size: 12px;
  padding: 10px 0;
}
/* END-底部 */

/* 关于我们/员工福利 */
.main{
	padding: 0;
}
.main_left{
	width: 100%;
}
.about{
	margin: 0;
}
.about_title{
  width: calc(100% + 20px);
  text-align: left;
  margin-left: -10px;
  font-size: 18px;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  position: relative;
}
.about_title::after{
  content: "\f078";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.about_ul{
  display: none;
  padding-top: 3px;
}
.about_ul>li {
  margin-bottom: 3px;
}
.about_ul>li>a {
  height: 40px;
  line-height: 40px;
}
.about_dl>dd>a {
  height: 36px;
  line-height: 36px;
  font-size: 14px;
}
.main_right{
	width: 100%;
}
.dqwz_contect{
	padding: 10px 0;
}
.company{
	line-height: 24px;
}
/* END-关于我们/员工福利 */

/* 活动策划/运动服饰/运动服定制/器材设备 */
.cp_ul li{
  width: 48%;
  margin: 0 1% 10px 1%;
}
.cp_ul li .cp_txt {
	height: 40px;
	line-height: 40px;
	font-size: 16px;
}

.cpxq_img{
  width: 100%;
  margin-right: 0;
}
.cpxq_tit{
  width: 100%;
  float: left;
  margin: 10px 0;
}
.cpxq_txt{
  width: 100%;
  float: left;
  line-height: 22px;
  font-size: 14px;
}
.cpxq_txt>span{
  font-size: 16px;
}
.cpxq_title{
  margin-top: 10px;
  line-height: 20px;
  padding: 10px;
  font-size: 16px;
}
.cpxq_contect{
  font-size: 14px;
  line-height: 22px;
  padding-top: 10px;
}
/* END-活动策划/运动服饰/运动服定制/器材设备 */

/* 联系我们 */
.contact_txt {
  width: 100%;
  line-height: 24px;
}
.contact_map {
  width: 100%;
  height: 250px;
  margin-top: 10px;
}
/* END-联系我们 */

}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 56px;
  float: left;
  background-color: #fff;
	height: calc(56px +  constant(safe-area-inset-bottom));
	height: calc(56px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root {
  width: 100%;
  height: 54px;
  background-color: #e50012;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
	height: calc(54px +  constant(safe-area-inset-bottom));
	height: calc(54px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root>li{
  width: 25%;
  float: left;
  border-right: 1px solid #fff;
}
.root>li:last-child{border: none;}
.root>li>a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 0;
}
.root>li>a>div {
  width: 100%;
  float: left;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.root>li>a>div:first-child {
  font-size: 22px;
  margin-bottom: 6px;
}
.root>li>a:hover {
  background-color: #222;
  color: #fff;
}
/* 电话 */
.root_bj {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 8;
}
.root_phone {
  display: none;
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.root_phone>a,
.root_phone>.root_off {
  display: block;
  background-color: #fff;
  line-height: 44px;
  color:#333;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size:15px;
}
.root_phone .root_off {
  margin-top: 6px;
  border-top: 1px solid #ddd;
}
.root_phone .root_off:hover,
.root_phone a:hover {
  background:#ddd;
}
/* 微信号 */
.wecht-box{
  display: none;
  width: 100%;
  float: left;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.wecht-box .wecht{
  width: 100%;
  float: left;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wecht-box .wecht .wecht_title{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.wecht-box .wecht .wecht_title>span{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}
.wecht-box .wecht>img{
  display: block;
  max-width: 150px;
  margin: 10px auto;
  overflow: hidden;
}
.wecht-box .wecht .wecht_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  line-height: 18px;
}
.wecht-box .wecht .wecht_txt>span{
  font-family: Impact;
  font-size: 16px;
}
.wecht-box .wecht .wecht_off{
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left:50%;
  bottom:-38px;
  border: 1px solid #fff;
  transform:translateX(-50%);
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center
}
/* END-手机底部组件 */

.jlfanye{ width:100%;margin:0 auto; text-align: center; }
.jlfanye a{ padding:5px 15px;  border: solid 1px #dedede; float:none; display: inline-block; min-width:8px; margin:8px 2px; color:#999;}
.jlfanye a:hover{ color:#c41313;}
.contact_map{width: 100%; height: 400px;}
