/*---------------------------------------------------  公共  -------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	box-shadow: none;
}

body {
	background: #ffffff;
	color: #333333;
	font-family: "微软雅黑", sans-serif;
	font-size: 14px;
	line-height: 1.5;
}


a {
	color: #333333;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: inline-block;
}

a:hover,
a:focus,
a:active,
a:visited {
	text-decoration: none;
	outline: none;
}

img {
	height: auto;
	max-width: 100%;
}

dt,
ol,
ul {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

ul li,
ol li {
	margin: 0px;
	padding: 0px;
	position: relative;
	list-style: none;
}

button {
	background: transparent;
	border: none;
	padding: 0;
	outline: none !important;
}

/*外间距*/
.mar-0 {
	margin: 0;
}

.mar-l-20 {
	margin-left: 20px;
}

.mar-tb-15 {
	margin: 15px 0;
}

.mar-tb-30 {
	margin: 15px auto;
}

.mar-tb-1520 {
	margin: 15px 0 20px 0;
}

.mar-t-10 {
	margin-top: 10px;
}

.mar-t-15 {
	margin-top: 15px;
}

.mar-t-20 {
	margin-top: 20px;
}

.mar-t-25 {
	margin-top: 25px;
}

.mar-t-60 {
	margin-top: 60px;
}

.mar-r-5 {
	margin-right: 5px;
}

.mar-r-10 {
	margin-right: 10px;
}

.mar-r-15 {
	margin-right: 15px;
}

.mar-b-15 {
	margin-bottom: 15px;
}

.mar-b-20 {
	margin-bottom: 20px;
}

.cor-red {
	color: #e1343a;
}

/*---------------------------------------------------  导航  -------------------------------------------------------*/

@keyframes fadeHeaderInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.header.sticky {
	animation-name: fadeHeaderInDown;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 22;
	animation-duration: 1s;
	animation-fill-mode: both;
}

.header {
	position: fixed;
	left: 0;
	z-index: 10;
	/* display: flex;
	align-self: center;
	align-items: center; */
	width: 100%;
	height: 60px;
	transform: translateZ(0);
	transition: all .2s ease;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01), 0 1px 8px 0 rgba(0, 0, 0, 0.25);
	background-color: #fff;
}

.header.not-fixed {
	position: relative;
}

.header .navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* width:84% ; */
	/* margin: 0 auto; */
}

.header .navigation .logo {
	/* width: 120px; */
	height: 60px;
	/*margin: 10px 0;*/
	z-index: 10;
	line-height: 60px;
	text-align: right;
}

.main-navigation>nav>.main-menu {
	/* display: flex; */
	align-items: center;
}

.main-navigation>nav>.main-menu>.menu-item {
	margin: 0 10px;
	padding: 18px 0;
	float: left;
}

.main-navigation>nav>.main-menu>.menu-item .phonediv {
	display: none;
	opacity: 0;
}

.main-navigation>nav>.main-menu>.menu-item>a {
	font-weight: 500;
	font-size: 15px;
	padding: 0px 10px;
	text-transform: uppercase;
}

.main-navigation>nav>.main-menu>.menu-item>a:after {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 4em;
	bottom: 0;
	width: 15%;
	height: 2px;
	background: #e1251b;
	content: "";
	z-index: 1;
	opacity: 0;
	transition: all 0.3s
}

.main-navigation>nav>.main-menu>.menu-item:hover>a,
.main-navigation>nav>.main-menu>.menu-item.active>a {
	color: #e1251b;
}

.main-navigation>nav>.main-menu>.menu-item.active>a:after,
.main-navigation>nav>.main-menu>.menu-item:hover>a:after {
	opacity: 1;
	width: calc(100%);
}

.menu-item-has-children>a>.arrow:after {
	display: inline-block;
	margin-left: .55em;
	content: "\e600";
	font-family: 'iconfont';
	font-weight: 900;
}

.menu-item-has-children>.sub-menu {
	position: absolute;
	top: 130%;
	left: 0;
	right: 0;
	transform: translateY(-10px);
	border-bottom: solid 2px #e1251b;
	box-shadow: 0 2px 2px 1px rgba(0, 0, 0, .15);
	background: #fff;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
	min-width: 100px;
}

.menu-item-has-children:hover>.sub-menu {
	border-top: 1px solid rgba(67, 41, 163, .2);
	opacity: 1;
	visibility: visible;
	z-index: 999;
	transform: translateY(0px);
	transition: 0.3s;
}

.menu-item-has-children.nav-postion:hover>.sub-menu {
	top: 0;
	transform: translateY(-100%);
}

.menu-item-has-children>.sub-menu>li.menu-item {
	padding: 0 10px;
}

.menu-item-has-children.nav-postion>.sub-menu>li.menu-item-has-children>.sub-menu {
	top: inherit;
}

.menu-item-has-children>.sub-menu>li.menu-item>a {
	display: block;
	padding: 10px;
	font-weight: 500;
	border-bottom: 1px solid rgba(67, 41, 163, .2);
	transition: 0.5s;
	white-space: nowrap;
	color: #1f2333;
}

.menu-item-has-children>.sub-menu>li.menu-item:last-child>a {
	border: none;
}

.menu-item-has-children>.sub-menu>li.menu-item:hover>a {
	padding-left: 25px;
	transition: 0.5s;
	color: #e1251b;
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>a>.arrow {
	position: absolute;
	right: 10px;
	transform: rotate(-90deg);
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>a>.arrow:after {
	display: inline-block;
	margin-left: 0;
	content: "\e600";
	font-family: 'iconfont';
	font-weight: 900;
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
	left: 100%;
	top: -3%;
}

.header .navigation .right-side-navigation ul {
	/* display: flex; */
	/* align-items: center; */
	height: 60px;
}

.header .navigation .right-side-navigation ul li {
	/* margin-left: 20px; */
	float: left;
	margin-top: 10px;
}

.header .navigation .right-side-navigation ul li a {
	font-size: 18px;
	font-family: arial;
	letter-spacing: 1px;
}

.header .navigation .right-side-navigation ul li.user-details>a {
	display: flex;
	align-items: center;
}

.header .navigation .right-side-navigation ul li.user-details span {
	font-size: 12px;
	margin-left: 10px;
}

.header .navigation .right-side-navigation ul li .cart {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #e1251b;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	top: 8px;
	position: absolute;
	right: -8px;
}

.header .navigation .right-side-navigation .hamburger-menu {
	display: none;
	align-items: center;
	cursor: pointer;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn {
	transition: 0.3s;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn span {
	background: #e1251b;
	height: 2px;
	width: 25px;
	margin-bottom: 5px;
	display: block;
	transition: 0.3s;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn span:last-child {
	margin-bottom: 0;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn.active {
	position: relative;
	top: -4px;
	transition: 0.3s;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn.active span:first-child {
	transform: rotate(45deg);
	transition: 0.3s;
	position: relative;
	top: 7.4px;
	background-color: #e1251b;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn.active span:nth-child(2) {
	display: none;
}

.header .navigation .right-side-navigation .hamburger-menu .menu-btn.active span:last-child {
	transform: rotate(-45deg);
	transition: 0.3s;
	background-color: #e1251b;
}

.sub {
	display: none;
	width: 100%;
	padding: 0;
	position: fixed;
	top: 60px;
	overflow: hidden;
	text-align: left;
	z-index: 110;
	left: 0px;
	background-color: transparent
}

.sub .nav_xiao {
	width: 1000px;
	overflow: hidden;
	margin: 20px auto;
	/* border: 1px solid #e5e5e5; */
	/* box-shadow: 0 0 0 1px rgb(0 0 0 / 1%), 0 1px 8px 0 rgb(0 0 0 / 10%); */
	/* background: #FFFFFF; */
}

/* .sub .nav_xiao .xiao_four{width:512px;overflow:hidden;margin-right:25px;margin-left:55px;} */
.sub .nav_xiao .xiao_four {
	border: 1px solid #E5E5E5;
	padding-bottom: 10px;
	min-height: 216px;
}

.sub .nav_xiao .xiao_four {
	float: left;
	padding: 0 15px;
}

.navbgone {
	background: #FFFFFF url(../CXimage/nav-01.png) no-repeat bottom right;
}

.navbgtow {
	background: #FFFFFF url(../CXimage/nav-02.png) no-repeat bottom right;
}

.navbgthree {
	background: #FFFFFF url(../CXimage/nav-03.png) no-repeat bottom right;
}
.nav04 {
	background: #FFFFFF url(../CXimage/nav-04.png) no-repeat bottom right;
}
.nav05 {
  background: #FFFFFF url(../CXimage/nav-05.png) no-repeat bottom right;
}
.nav06 {
  background: #FFFFFF url(../CXimage/nav-06.png) no-repeat bottom right;
}
.nav07 {
  background: #FFFFFF url(../CXimage/nav-07.png) no-repeat bottom right;
}
.nav08 {
  background: #FFFFFF url(../CXimage/nav-08.png) no-repeat bottom right;
}
.nav09 {
  background: #FFFFFF url(../CXimage/nav-09.png) no-repeat bottom right;
}
.nav10 {
  background: #FFFFFF url(../CXimage/nav-10.png) no-repeat bottom right;
}

.sub .nav_xiao .xiao_four h2 {
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	height: 50px;
	line-height: 50px;
	margin-top: 10px;
}

.sub .nav_xiao .xiao_four .ulbox {
	width: 300px;
	overflow: hidden;
}
.navmore{color: #0069D9;float: right;font-size: 12px;font-weight: normal;}
.sub .nav_xiao .xiao_four .ulbox li {
	height: 34px;
	line-height: 34px;
	margin-right: 0px;
	width: 150px;
	overflow: hidden;
	float: left;
	display: inline;
	margin-left: 0px;
	position: inherit;
}

.sub .nav_xiao .xiao_four .ulbox li a {
	padding: 0;
	width: 150px;
	text-align: left;
	transition: 0.5s;
	white-space: nowrap;
}

.sub .nav_xiao .xiao_four .ulbox li:hover a {
	transition: 0.5s;
	padding-left: 25px;
	color: #e1251b;
}

@media screen and (max-width: 1366px) {
	.main-navigation>nav>.main-menu>.menu-item>a {
		font-weight: 500;
		font-size: 12px;
		padding: 0px 3px;
		text-transform: uppercase;
	}
}

/*------------------------------搜索按钮----------------------------*/
.input-group-btn {
	position: relative;
	font-size: 0;
	white-space: nowrap;
	vertical-align: middle;
	display: table-cell;
	outline: 0;
}

.input-group-btn:last-child>.btn {
	z-index: 2;
	margin-left: -1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group-btn>.btn {
	outline: 0;
	position: relative;
}

.btn-default {
	outline: 0;
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

.theme-btn {
	display: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.theme-btn i {
	position: relative;
	display: inline-block;
	font-size: 14px;
	margin-left: 3px;
}

.theme-btn:hover {
	color: #e1251b;
}

/*------------------乐动体育官方在线入口-乐动（中国）公用标题栏------------------*/

.title {
	margin-bottom: 60px;
	text-align: center;
}

.title h4 {
	font-size: 34px;
	font-weight: normal;
}

.title p {
	font-size: 16px;
	color: #CCCCCC;
}

/*------------------乐动体育官方在线入口-乐动（中国）公用更多------------------*/
.btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	text-decoration: none;
	position: relative;
	color: #333;
}

.btn3 {
	border: 1px solid #d0d0d0;
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.btn3:hover {
	color: #fff;
	border-color: #e1251b;
}

.btn3 .btnbg-x {
	position: absolute;
	background: #e1251b;
	left: 50%;
	width: 0;
	top: 0px;
	bottom: 0px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.btn3:hover .btnbg-x {
	width: 100%;
	left: 0px;
}

.btn3 span {
	position: relative;
	z-index: 1;
}

/*---------------------------新闻（乐动体育官方在线入口-乐动（中国））----------------------------*/

.auto-container {
	position: static;
	max-width: 1240px;
	padding: 0px 15px;
	margin: 0 auto;
}

.news-section {
	position: relative;
	overflow: hidden;
	padding: 80px 0px 0px 0;

}

/*---新闻---*/
.clearfix::after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

.slide-links {
	margin-top: 0;
	text-align: center;
}

.slide-links a {
	display: inline-block;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.428571429;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	outline: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	background-color: transparent;
	color: #666666;
	border: 1px solid #E5E5E5;
	padding: 15px 30px;
	border-radius: 2px;
}

/* .slide-links a:hover {
    background: #188a57;
    color: #fff;
} */

.slide-item-body ul li {
	width: 33.333%;
	float: left;
	display: block;
	padding-top: 42px;
	margin-bottom: 30px;
	border: none;
	border-radius: 8px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	height: 380px;
	padding-top: 0;
	border-radius: 0;
	color: #000;
	z-index: 0;
}

.slide-item-body ul li a {
	display: block;
	box-shadow: 0 5px 15px 1px rgba(49, 49, 49, 0.1);
	border: 1px solid #f2f2f2;
}

.new-img img {
	width: 100%;
	/* height: 200px; */
	border: none;
	display: block;
}

.slide-item {
	position: relative;
	margin: 50px auto;
	/* overflow: hidden; */
}


.new-body {
	padding: 10px 20px 0px 20px;
}

.new-body-title {
	height: 48px;
	line-height: 24px;
	font-size: 16px;
	overflow: hidden;
	color: #616161;
	letter-spacing: 1px;
}

.new-body-text {
	padding-top: 10px;
	height: 40px;
	line-height: 18px;
	font-size: 14px;
	color: #999999;
	overflow: hidden;
	margin-bottom: 0px;
}

.new-body-text span {
	margin: 0 5px;
}

.slide-item-body {
	/* padding-top:20px; */
	/* margin-left: -70px; */
}

.slide-item-body ul li {
	margin-left: 15px;
	margin-right: 15px;
	padding-top: 20px;
}


.slide-item-body ul {
	padding-top: 10px;
	overflow: visible;
	height: 430px;
}

.slide-item-body ul li:hover {
	-ms-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
	z-index: 0;
	position: relative;
	left: 0;
}

.next {
	color: #f5f5f5;
	font-size: 30px;
	position: absolute;
	top: 49%;
	z-index: 0;
	cursor: pointer;
	-moz-background-size: 60px;
	-webkit-background-size: 60px;
	background-size: 60px;
	background-position: center;
	background-repeat: no-repeat;
	right: auto;
	left: -70px;
	height: 60px;
	width: 60px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.next-bg {
	background-image: url("/HtmlPage/szxc/images/btn-fl1.png");
}

.next:hover {
	background-image: url("/HtmlPage/szxc/images/btn-fl2.png");
}

.prev {
	color: #f5f5f5;
	font-size: 30px;
	position: absolute;
	top: 49%;
	z-index: 0;
	cursor: pointer;
	-moz-background-size: 60px;
	-webkit-background-size: 60px;
	background-size: 60px;
	background-position: center;
	background-repeat: no-repeat;
	right: -180px;
	height: 60px;
	width: 60px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hd a:hover {
	color: #E5E5E5;
}

/*---------------------------核心乐动体育官方在线入口-乐动（中国）（乐动体育官方在线入口-乐动（中国））----------------------------*/
.product-section {
	overflow: hidden;
	background: url(/HtmlPage/szxc/CXimage/pro-bg_.jpg) no-repeat center;
	background-size: cover;
	padding: 80px 0px 80px 0;
}

.lsbs {
	height: 500px;
	margin: 60px 0;
}

.lsbs-container>div:first-child,
.lsbs-container>div:first-child a {
	border-radius: 4px 0 0 4px
}

.lsbs-container>div:last-child,
.lsbs-container>div:last-child a {
	border-radius: 0 4px 4px 0
}

.lsb-background {
	width: 14.2857%;
	height: 500px;
	float: left
}

.productimg01 {
	background: url(/HtmlPage/szxc/CXimage/pro_001.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.productimg02 {
	background: url(/HtmlPage/szxc/CXimage/pro_002.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.productimg03 {
	background: url(/HtmlPage/szxc/CXimage/pro_003.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.productimg04 {
	background: url(/HtmlPage/szxc/CXimage/pro_004.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.productimg05 {
	background: url(/HtmlPage/szxc/CXimage/pro_005.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.productimg06 {
	background: url(/HtmlPage/szxc/CXimage/pro_006.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.productimg07 {
	background: url(/HtmlPage/szxc/CXimage/pro_007.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.lsb {
	width: 100%;
	height: 100%;
	padding: 0 60px;
	background: url(/HtmlPage/szxc/CXimage/p-bg.png) repeat;
	text-align: center;
	position: relative;
	transition: all .7s;
	display: block;
	overflow: hidden
}

.lsb:hover {
	cursor: pointer;
	background: url(/HtmlPage/szxc/CXimage/p-bgaf.png) repeat
}

.lsb:hover .lsb-icon {
	margin-top: -44px
}

.lsb:hover .lsb-name {
	margin-top: 106px
}

.lsb:hover .lsb-span {
	margin-top: 28px
}

.lsb:hover .lsb-introduce {
	margin-top: 60px
}

.lsb:hover .lsb-href {
	margin-top: 32px
}

.lsb-icon {
	width: 44px;
	height: 44px;
	margin: auto;
	margin-top: 135px;
	transition: all .5s
}

.lsb-icon img {
	width: 100%;
	height: 100%
}

.lsb-name {
	font-size: 24px;
	color: #fff;
	margin-top: 24px;
	line-height: 33px;
	transition: all .5s
}

.lsb-span {
	width: 24px;
	height: 4px;
	background: #fff;
	transition: all .5s;
	margin: auto;
	margin-top: 24px
}

.lsb-introduce {
	font-size: 14px;
	color: #fff;
	display: -webkit-box;
	transition: all .5s;
	margin-top: 260px;
	height: 130px;
	overflow: hidden;
}

.lsb-href {
	width: 100px;
	height: 40px;
	padding: 9px 18px;
	border: 1px solid #fff;
	border-radius: 2px;
	text-decoration: none;
	transition: all .5s;
	margin: auto;
	margin-top: 32px;
	color: #fff
}

.lsb-href>div {
	width: 108px;
}

.lsb-href span {
	font-size: 16px;
	line-height: 22px;
	float: left
}

/* .lsb-href .icon-jinru{width:8px;height:22px;line-height:22px;font-family:iconfont!important;font-style:normal;float:right;color:"#fff";font-size:16px} */
.lsb-href:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
	font-size: 0
}

.lsb-href:hover {
	background: #fff;
	color: #b71c22
}

.lsb-href:hover .icon-jinru {
	color: #108ee9
}


/*---------------------------客户案例（乐动体育官方在线入口-乐动（中国））----------------------------*/
.case-section {
	overflow: hidden;
	background: url(/HtmlPage/szxc/CXimage/case_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 80px 0px 80px 0;
}

.case-section .title h4 {
	color: #FFFFFF;
}

.casebox {
	width: 1220px;
	margin: 0 auto 40px;
}

.casebox li {
	position: relative;
	width: 400px;
	height: 260px;
	text-align: center;
	margin: 10px 10px 10px 0;
	float: left;
	overflow: hidden;
}

.casebox li p {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: -100%;
	color: #ffffff;
	z-index: 2;

	display: table;
	_position: relative;
}

.casebox li .img {
	width: 400px;
	height: 260px;
	display: block;
	-moz-transition: .5s ease-in;
	-webkit-transition: .5s ease-in;
	-o-transition: .5s ease-in;
	-ms-transition: .5s ease-in;
	transition: .5s ease-in;
}

.casebox li:hover .img {
	transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1)
}

.casebox li p i {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background: #000000;
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
}

.casebox li p span {
	display: block;
	line-height: 24px;
	font-size: 14px;
	padding: 20px;
	color: #999;
	box-sizing: border-box;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	_position: absolute;
	_top: 50%;
	_left: 50%;
}

.case-links a {
	border: 1px solid #544545;
}


/*---------------------------重点客户（乐动体育官方在线入口-乐动（中国））----------------------------*/
.customerbox {
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
	height:370px ;
	overflow: hidden;
}
.scroll li{overflow: hidden;}
.customerbox div {
	margin: 20px 0;
}

.customerbox div>a>img {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.customerbox div>a>img:hover {
	transform: translateY(-10px);
}

.service-animation-bg {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -960px;
	width: 1920px;
	z-index: 1;
	opacity: .02;
	font-size: 0;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-animation: bgScroll 24s infinite linear;
	animation: bgScroll 24s infinite linear;
	will-change: transform;
}

.service-animation-group {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 30px;
	min-height: 280px;
}

.service-item {
	height: 80px;
	margin: 0 50px 50px;
	display: inline-block;
	vertical-align: middle;
	line-height: 80px;
	-webkit-filter: grayscale(100%);
	-webkit-filter: gray;
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}

.service-item.item001 {
	width: 300px;
	height: 57px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px -232px
}

.service-item.item002 {
	width: 300px;
	height: 81px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px 0px;
}

.service-item.item003 {
	width: 150px;
	height: 57px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -96px -291px;
}

.service-item.item004 {
	width: 300px;
	height: 79px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px -83px;
}

.service-item.item005 {
	width: 94px;
	height: 94px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px -291px;
}

.service-item.item006 {
	width: 103px;
	height: 55px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px -387px;
}

.service-item.item007 {
	width: 220px;
	height: 81px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -302px 0px;
}

.service-item.item008 {
	width: 72px;
	height: 72px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px -444px;
}

.service-item.item009 {
	width: 300px;
	height: 66px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: 0px -164px;
}

.service-item.item010 {
	width: 216px;
	height: 35px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -248px -291px;
}

.service-item.item011 {
	width: 177px;
	height: 32px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -96px -350px;
}

.service-item.item012 {
	width: 178px;
	height: 53px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -302px -232px;
}

.service-item.item013 {
	width: 200px;
	height: 58px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -302px -170px;
}

.service-item.item014 {
	width: 190px;
	height: 85px;
	background-image: url(/HtmlPage/szxc/CXimage/logo-bj.png);
	background-position: -302px -83px;
}

@-webkit-keyframes bgScroll {
	from {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	to {
		-webkit-transform: translateY(-33.333%);
		transform: translateY(-33.333%)
	}
}

@keyframes bgScroll {
	from {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	to {
		-webkit-transform: translateY(-33.333%);
		transform: translateY(-33.333%)
	}
}

/*-------------------------------------------- 跳动数据  -----------------------------------------------*/

.product-number-info {
	overflow: hidden;
	position: relative;
	padding: 63px 0px;
	background: url(/HtmlPage/szxc/CXimage/numbg.jpg) no-repeat center;
	background-size: cover;
}

.product-number-info li {
	float: left;
	/* border-left: 1px solid #DDDDDD; */
}

.product-number-info li:first-child {
	border: none;
}

.product-number-info li b {
	display: inline-block;
	position: relative;
	margin: 15px 0 10px;
	font-weight: 600;
	font-size: 36px;
	line-height: 1;
	font-family: 'Quicksand', sans-serif;
	color: #FFFFFF;
}

.product-number-info li p {
	font-size: 14px;
	padding: 0 5em;
	color: #FFFFFF;
	text-align: center;
}

.product-number-info li b i {
	font-style: normal;
}

.product-number-info li b sup {
	position: absolute;
	right: -25px;
	top: 5px;
	font-size: 15px;
	color: #cbdbf0;
}

.product-number-info li b em {
	position: relative;
	top: -4px;
	padding-left: 2px;
	font-style: normal;
	font-size: 28px;
}

@media screen and (max-width: 414px) {
	.product-number-info li p {
		font-size: 14px;
		padding: 0 1em;
	}

	.product-number-info li {
		border-right: 0;
		border-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.product-number-info li p {
		font-size: 14px;
		padding: 0 1em;
	}

	.product-number-info li {
		border-right: 0;
		border-left: 0;
	}
}


/*-------------------------------------------------底部--------------------------------------------------------*/
.custom-container {
	padding-left: 10%;
	padding-right: 10%;
}

.footer {
	width: 100%;
	padding: 65px 0px;
	color: #fff;
	background: #1f2333 url(../CXimage/footer-bg.png) no-repeat top left;
}

.footer li a {
	font-size: 14px;
	line-height: 2em;
	opacity: 0.7;
	color: #fff;
}

.footer li a:hover {
	color: #e1251b;
	opacity: 1;
}


/*上*/

.footer-top {
	padding-bottom: 45px;
	font-family: arial;
	font-size: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .logo {
	width: 150px;
}

.footer-top .tell {
	text-align: right;
	color: #e1251b;
	font-family: 'Quicksand', sans-serif;
}

.footer-top i {
	margin-right: 5px;
	font-size: 26px;
}


/*下*/

.footer-bottom {
	padding-top: 70px;
}

.footer-bottom .widget-title {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.footer-bottom .widget-title h4 {
	position: relative;
	display: inline-block;
	margin: 0;
	line-height: 1.3em;
	font-size: 16px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 400;
}

.footer-bottom .widget-title:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom .rit-title {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
	text-align: right;
}

.footer-bottom .rit-title ul li {
	float: right;
	margin-left: 15px;
	text-align: center;
	/*opacity: .8;*/
}

.footer-bottom .rit-title ul li img {
	width: 114px;
	height: 114px;
	margin-bottom: 5px;
	padding: 5px;
	/* border: 1px solid rgba(255, 255, 255, 0.50); */
}

.footer-bottom .rit-title h4 {
	position: relative;
	display: inline-block;
	margin: 0 0 30px 0;
	line-height: 1.3em;
	font-size: 16px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 400;
}

.footer-copyright {
	margin-top: 50px;
	padding: 10px 0px;
	line-height: 2em;
	opacity: .8;
}

@media screen and (max-width: 414px) {

	/*-------------轮播图点的位置---------------*/
	.carousel-indicators {
		bottom: 20px;
		z-index: 0;
	}

	/*-------------底部-------------*/
	.footer-top .logo {
		display: none;
	}

	.footer-top .tell {
		text-align: left;
		color: #e1251b;
		font-family: arial;
	}

	.footer-bottom .rit-title {
		margin-top: 35px;
		text-align: left;
	}

	.footer-bottom .widget-title h4 {
		font-size: 16px;
		font-weight: 400;
	}

	.footer-bottom .rit-title h4 {
		font-size: 16px;
		font-weight: 400;
	}

	.footer-bottom .rit-title ul li {
		float: left;
		margin: 0 15px 0 0;
		text-align: left;
	}

	.footer-bottom .rit-title ul li img {
		width: 100px;
		height: 100px;
		margin-bottom: 8px;
		padding: 5px;
		border: 1px solid rgba(255, 255, 255, 0.50);
	}

	.footer-bottom .rit-title h4 {
		margin: 0 0 20px 0;
	}

	.footer-copyright {
		padding-left: 5px;
	}
}

/*-------------------------------------------------左侧留言--------------------------------------------------------*/
.guanggao-dbbox {
	width: 240px;
	min-height: 320px;
	padding-bottom: 10px;
	background-color: #ededed;
	position: fixed;
	z-index: 4444;
	bottom: 0px;
	left: 0px;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

/* .changedw{left: 50%; bottom:50% !important; z-index: 99999; margin-left:-120px; margin-bottom:-160px;} */
#nb-show,
#nb-gb {
	display: none;
}

.nb-nodeboard-top {
	background: url(/HtmlPage/szxc/CXimage/boardTop5.png) no-repeat;
	height: 36px;
	line-height: 36px;
	color: #fff;
	font-size: 15px;
}

.nb-nodeboard-top .fl {
	margin-left: 8px;
}

.nb-nodeboard-top .fr {
	float: right;
}

.nb-nodeboard-top .fr img {
	vertical-align: middle;
}

#nb_nodeboard_form {
	width: 94%;
	margin: 0 auto;
	display: block;
}

#nb-nodeboard-set-content-js {
	width: 100%;
	height: 79px;
	margin: 10px auto 0px;
	padding: 4px;
	resize: none;
	overflow: hidden;
	border: 1px solid #d5d5d5;
	background-color: #fff;
	text-align: left;
	font-size: 12px;
}

.nb-nodeboard-tips,
.nb-nodeboardphone-tips {
	display: none;
	color: #f00;
	font-size: 12px;
}

.nb-nodeboard-inputbox {
	height: 30px;
	width: 100%;
	line-height: 30px;
	margin: 7px auto 0;
	border: 1px solid #d5d5d5;
	position: relative;
	background-color: #fff;
	overflow: hidden;
}

.nb-nodeboard-inputbox input {
	width: 195px;
	border: none;
	font-size: 12px;
}

.nb-nodeboard-icon {
	width: 24px;
	height: 28px;
	display: inline-block;
	text-align: center;
	background-color: #fff;
	vertical-align: top;
	border-right: 1px solid #fff;
}

.nodeName {
	background: #fff url(../CXimage/user.png) no-repeat 9px center;
}

.nodePhone {
	background: #fff url(../CXimage/nodephone.png) no-repeat 9px center;
}

.nb-nodeboard-send-btn {
	height: 35px;
	width: 50%;
	line-height: 35px;
	text-align: center;
	border-radius: 2px;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	background-color: #edb518;
	margin-top: 8px;
}

.nb-nodeboard-send-btn:hover {
	background-color: #F49C11;
}

/*-------------------------------------------------弹出浮动客服窗口--------------------------------------------------------*/
.nb-dingwei {
	display: none;
}

.nb-dingwei .container {
	z-index: 9999;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -200px;
	margin-top: -81px;
	width: 400px;
	height: 162px;
	background: url("/HtmlPage/szxc/CXimage/inviteColorBack0.png");
}

.nb-fd-close {
	position: absolute;
	right: 10px;
	bottom: 118px;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}

.nb-fd-close:hover {
	cursor: pointer;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.nb-fd-content {
	position: absolute;
	bottom: 15px;
	right: 0;
	color: #fff;
	width: 222px;
	height: 108px;
}

.nb-fd-content p {
	color: #fff;
	font-size: 16px;
}

.anniubox {
	margin-top: 15px;
}

.anniubox span {
	border: #fff solid 1px;
	color: #fff;
	height: 34px;
	line-height: 34px;
	width: 80px;
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	cursor: pointer;
}

.anniubox .nb-dk {
	margin-left: 10px;
	background-color: #fff;
	color: #329fd7;
}

/*-------------------------------------------------右侧客服--------------------------------------------------------*/
.suspension {
	position: fixed;
	z-index: 55;
	right: 0;
	bottom: 85px;
	width: 70px;
	height: 240px;
}

.suspension-box {
	position: relative;
	float: right;
}

.suspension .a {
	display: block;
	width: 60px;
	height: 60px;
	background-color: #f5f6fa;
	margin-bottom: 4px;
	cursor: pointer;
	outline: none;
	color: #FFFFFF;
	text-align: center;
	line-height: 60px;
}

.suspension .a i {
	font-size: 30px;
}

.suspension .a.active,
.suspension .a:hover {
	background: #ede3e3;
}

.suspension .a-service .i {
	width: 20px;
	height: 20px;
	margin-top: 12px;
	margin-left: 12px;
	background-image: url(/HtmlPage/szxc/CXimage/suspension-bg.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

.suspension .a-service-phone .i {
	width: 20px;
	height: 20px;
	margin-top: 12px;
	margin-left: 12px;
	background-image: url(/HtmlPage/szxc/CXimage/suspension-bg.png);
	background-repeat: no-repeat;
	background-position: -27px 0;
}

.suspension .a-qrcode .i {
	background-position: -44px 0;
}

.suspension .a-cart .i {
	background-position: -88px 0;
}

.suspension .a-top .i {
	background-position: -132px 0;
}

.suspension .a-top {
	background: #f5f6fa;
	display: none;
}

.suspension .a-top:hover {
	background: #ede3e3;
}

.suspension .d {
	display: none;
	width: 223px;
	background: #fff;
	position: absolute;
	right: 67px;
	min-height: 90px;
	border: 1px solid #E0E1E5;
	border-radius: 3px;
	box-shadow: 0px 2px 5px 0px rgba(161, 163, 175, 0.11);
}

.suspension .d .arrow {
	position: absolute;
	width: 8px;
	height: 12px;
	background: url(/HtmlPage/szxc/CXimage/side_bg_arrow.png) no-repeat;
	right: -8px;
	top: 31px;
}

.suspension .d-service {
	top: 0;
}

.suspension .d-service-phone {
	top: 60px;
}
.suspension .rzphone{width: 260px;}
.suspension .d.rzphone .inner-box{padding: 8px 15px 12px;overflow: hidden;}
.suspension .rzphone .d-service-item{padding-top:15px;}
.suspension .rzphone .d-service-item .text{width: 170px;}
.suspension .rzphone .d-service-item .text .number{font-size: 12px;}
.suspension .rzphone .number li span{width: 48px;float: left;color: #333333;display: inline-block;}
.suspension .rzphone .number li .rznumber{width: 122px;float: left;}
.suspension .rzphone .number li .rznumber P{margin-bottom: 0px;}
.suspension .d-qrcode {
	top: 120px;
}

.suspension .d .inner-box {
	padding: 8px 22px 12px;
}

.suspension .d-service-item {
	padding-top: 15px;
}

.suspension .d-service .d-service-item {
	border-bottom: none;
}

.suspension .d-service-item .circle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #e4efff;
	display: block;
	float: left;
}

.suspension .d-service-item .i-qq {
	width: 44px;
	height: 44px;
	background: url(/HtmlPage/szxc/CXimage/side_con_icon03.png) no-repeat center 15px;
	display: block;
	transition: all .2s;
	border-radius: 50%;
	overflow: hidden;
}

.suspension .d-service-item:hover .i-qq {
	background-position: center 3px;
}

.suspension .d-service-item:hover a {
	color: #e1251b;
}

.suspension .d-service-item .i-tel {
	width: 44px;
	height: 44px;
	background: url(/HtmlPage/szxc/CXimage/side_con_icon02.png) no-repeat center center;
	display: block;
}

.suspension .d-service-item h3 {
	float: left;
	width: 112px;
	line-height: 44px;
	font-size: 15px;
	margin-left: 12px;
	margin-top: 0px;
}

.suspension .d-service-item .text {
	float: left;
	width: 112px;
	line-height: 22px;
	font-size: 15px;
	margin-left: 12px;
}

.suspension .d-service-item .text .number {
	color: #e1251b;
	font-size: 16px;
}

.suspension .d-qrcode {
	text-align: center;
}

.suspension .d-qrcode .inner-box {
	padding: 20px 0;
}

.suspension .d-qrcode p {
	font-size: 16px;
	color: #93959c;
}

/*------------------------- 智能翻模（banner） ----------------------------------*/
.inbannerbox {
	background: url(/HtmlPage/szxc/CXimage/Rolling_bg.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.bg-light {
	background: #f8f9fa;
}

.inbannercont {
	position: static;
	max-width: 1240px;
	padding: 46px 0;
	margin: 0 auto;
	margin-top: 60px;
}

.inbannercontmess {
	width: 550px;
	color: #666666;
	margin: 20px 0 40px;
}

.inbannercont a {
	width: 100px;
	text-align: center;
	z-index: 0;
}

.inbannercont a.in-b-aone {
	background: #b81d23;
	color: #FFFFFF;
	font-size: 14px;
	border: none;
}

.inbannercont a.in-b-atow {
	color: #b81d23;
	border: 1px solid #b81d23;
	font-size: 14px;
}

.inbannercont a.in-b-atow:hover {
	color: #FFFFFF;
}

/* .inheader{position: static;} */
.inheader.sticky {
	display: none;
}

/*------------------------- 智能翻模（价值） ----------------------------------*/
.value {
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto;
	padding: 30px 0;
}

.valuelist {
	display: flex;
}

.valuelist img {
	width: 42px;
	height: 48px;
	float: left;
}

.valuetext h6 {
	font-weight: bold;
	font-size: 14px;
}

.valuetext p {
	color: #999999;
}

/*------------------------- 智能翻模（吸附二级导航） ----------------------------------*/
.section-content {
	min-height: 500px;
	width: 1200px;
	margin: auto;
	text-align: center;
}

.nav-height {
	position: relative;
	height: 50px;
}

.nav-box {
	width: 100%;
	height: 50px;
	margin: 0 auto;
	background: #f2f3f5;
}

.nav-box.navFix {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid #e3e3e3\9;
	z-index: 99999;
}

.nav-box ul {
	padding: 0;
	margin: 0 auto;
	width: 65%;
	display: block;
	/*border-bottom: 2px solid #eee;*/
}

.nav-box.navFix ul {
	border-bottom: 0;
}

.nav-box li {
	display: inline-block;
	text-align: left;
	height: 50px;
	line-height: 50px;
	float: left;
	text-align: center;
	position: relative;
}

.nav-box li a {
	display: block;
	padding: 0 20px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
}

.nav-box li a:before {
	content: " ";
	width: 1px;
	height: 24px;
	position: absolute;
	top: 16px;
	left: -2px;
}

.nav-box li a.active:before {
	content: " ";
	width: 0px;
	border: none;
}

.nav-box li:first-child a:before {
	content: " ";
	width: 0px;
	border: none;
}

.nav-box li a:hover {
	color: #e1251b;
	/*border:1px solid #ee8800;*/
}

.nav-box li a.active {
	color: #fff;
	background: #e1251b;
}

.nav-mobile {
	display: none;
	font-weight: bold;
	width: 100%;
}

.click-me {
	width: 150px;
	height: 30px;
	background: #4680d1;
	color: white;
	text-align: center;
	line-height: 30px;
}

.click-me a {
	display: block;
	color: white;
}

/**/
.product-box {
	width: 100%;
	height: auto;
	background-color: #fff;
}

.product-list {
	width: 100%;
	margin-top: 10px;
}

.product-tit {
	width: 100%;
	border-bottom: 2px solid #39b54a;
	text-align: left;
	margin-top: 10px;
}

.product-tit i {
	width: 3px;
	height: 16px;
	display: inline-block;
	background: #39b54a;
}

.product-tit h3 {
	display: inline-block;
	font-size: 20px;
	color: #2c2c2c;
	text-align: left;
}


.et-hero-tabs {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #eee;
	text-align: center;
	margin-top: 50px;
}

/* .et-slide{min-height: 540px;} */
.mainbox {
	max-width: 1240px;
	margin: 0 auto;
	padding: 60px 0;
	overflow: hidden;
	clear: both;
}

.et-hero-tabs-container {
	/* display: flex; */
	/* flex-direction: row; */
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;
	/* box-shadow: 0 5px 10px  rgba(128, 128, 128, 0.1); */
	background: #f2f3f5;
	z-index: 10;
	padding: 0 17%;
	line-height: 50px;
}

.et-hero-tabs-container--top {
	position: fixed;
	top: 0;
	background: #FFFFFF;
	box-shadow: 0 0 0 1px rgb(0 0 0 / 1%), 0 1px 8px 0 rgb(0 0 0 / 25%);
}

.et-hero-tab {
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
	/* flex: 1; */
	color: #000;
	letter-spacing: 0.1rem;
	transition: all 0.5s ease;
	font-size: 14px;
	float: left;
	padding: 0 20px
}

.et-hero-tab:hover {
	color: white;
	background: #e1251b;
	transition: all 0.5s ease;
}

.et-hero-tab-slider {
	position: absolute;
	bottom: 0;
	width: 0;
	height: 4px;
	background: #b81d23;
	transition: left 0.3s ease;
}

.et-sl-titi {
	text-align: center;
	margin-bottom: 50px;
}

.et-sl-jj {
	text-align: center;
	width: 820px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.videobox {
	width: 960px;
	height: 400px;
	margin: 50px auto;
}

.gn-jslist {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 70px;
	overflow: hidden;
	clear: both;
	align-items: center;
}

.gn-jslist-cont {
	width: 600px;
	margin: 100px 40px;
	float: left;
}

.imgbox {
	float: left;
	overflow: hidden;
}

.gn-jslist-cont h4 {
	margin-bottom: 30px;
}

.productdownbox {
	padding: 0 20px;
	float: right;
}

.productdown {
	width: 80px;
	background: #e1251b;
	color: #FFFFFF;
	padding: 5px 10px;
	font-size: 14px;
}

.productdown:hover {
	background: #b81d23;
	color: #FFFFFF;
}

.clearfix .nav-last {
	float: right;
	height: 34px;
	line-height: 24px;
	margin-top: 7px;
}

/*-------------------------图片预览 ----------------------------------*/
.bigimg {
	width: 1240px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	display: none;
	z-index: 9999;
	border: 10px solid #fff;
}

.mask {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.5;
	filter: Alpha(opacity=50);
	z-index: 98;
	transition: all 1s;
	display: none
}

.imgbox:hover {
	cursor: zoom-in
}

.mask:hover {
	cursor: zoom-out
}

.mask>img {
	position: fixed;
	right: 10px;
	top: 10px;
	width: 20px;
}

.mask>img:hover {
	cursor: pointer
}

/* 软件特点 */
.charlist {
	text-align: center;
	margin-bottom: 40px;
}

.charlist h5 {
	margin: 20px 0 30px;
}

.charlist p {
	line-height: 28px;
}

/* 解决方案 */
.planlist {
	background: #FFFFFF;
	padding-bottom: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px 1px rgb(49 49 49 / 10%);
	display: inline-block;
	overflow: hidden;
}

.planlist img {
	transition: transform 0.2s;
	width: 100%;
}

.planlist h6 {
	padding: 20px 15px;
	color: #333333;
}

.planlist p {
	color: #999999;
	padding: 0 15px;
	line-height: 28px;
}

.seedetal {
	padding: 0 15px;
	color: #b81d23;
}

.planlist:hover {
	transform: translateY(-10px);
}

.planlist:hover img {
	transform: scale(1.05);
}

/* 项目案例 */
/* 3 */
.item3 {
	position: relative;
	float: left;
	cursor: pointer;
	overflow: hidden;
}

.item3 h2 {
	position: absolute;
	bottom: -10px;
	height: 40px;
	width: 93%;
	background: url(/HtmlPage/szxc/CXimage/demo02.png) repeat;
	font-size: 14px;
	padding: 0 10px;
	line-height: 40px;
	color: #FFFFFF;
}

.item3 h2 p {
	height: 40px;
}

.item3 div {
	position: absolute;
	width: 0;
	height: 0;
	background: url(/HtmlPage/szxc/CXimage/demo02.png) repeat;
	overflow: hidden;
	_zoom: 1;
}

.item3 .cornerTL {
	left: 15px;
	top: 0;
}

.item3 .cornerTR {
	right: 15px;
	top: 0;
}

.item3 .cornerBL {
	left: 15px;
	bottom: 0;
}

.item3 .cornerBR {
	right: 15px;
	bottom: 0;
}

.item3 dl {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.item3 dt {
	height: 40px;
	width: 100%;
	line-height: 40px;
	color: #FFF;
	padding: 0 30px;
	font-weight: bold;
}

.item3 dt h3 {
	height: 40px;
	font-size: 16px;
}

.item3 dd {
	padding: 0 30px;
	line-height: 20px;
	color: #FFF;
	font-size: 12px;
}

/* 视频教程 */
.myscroll {
	display: block;
	width: 100%;
	position: relative;
	height: 240px;
	overflow: hidden;
}

.myscroll .myscrollbox {
	display: block;
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	width: 1000000px;
}

.myscroll ul {
	display: block;
	float: left;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.myscroll ul li {
	display: block;
	float: left;
	padding: 0;
	width: 317px;
}

.myscroll ul li a {
	display: block;
	float: left;
	width: 310px;
	padding: 0;
	position: relative;
	height: 240px;
	color: #333;
}

.myscroll a .intro {
	position: absolute;
	left: 0;
	z-index: 10;
	background-color: #10304d;
	filter: alpha(opacity=80);
	width: 290px;
	color: #fff;
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
	text-align: center;
}

.myscroll a .intro h5 {
	padding: 0;
	margin: 0;
	font-size: 16px;
	height: 40px;
	width: 290px;
	line-height: 30px;
	border-bottom: 1px solid #214d73;
	font-weight: 100;
}

.myscroll a .intro p {
	font-size: 14px;
	/* line-height: 20px; */
	margin: 10px 20px;
	height: 80px;
	overflow: hidden;
	text-align: left;
}

.myscroll a .intro {
	bottom: -101px;
}

.myscroll a:hover .intro {
	bottom: -20px;
}

.mybtns {
	margin: 10px 0;
	display: block;
	height: 42px;
}

.mybtns a {
	width: 42px;
	height: 42px;
	display: block;
	float: right;
	margin-right: 1px;
	background-color: #c1c1c1;
	margin-left: 10px;
}

.mybtns a:hover {
	background-color: #347fdc;
}

.mybtns a:hover,
.myscroll,
.mybtns a,
.myscroll a:hover .intro,
.myscroll a .intro,
.myscroll .myscrollbox {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.mybtns .vi-left {
	background-image: url(/HtmlPage/szxc/CXimage/jt_l.png);
}

.mybtns .vi-right {
	background-image: url(/HtmlPage/szxc/CXimage/jt_r.png);
}


/* 文档与工具 */
.toolbox {
	display: flex;
	justify-content: space-between;
}

.toolboxlist {
	background: #FFFFFF;
	padding: 20px 40px;
	border: 1px solid #E5E5E5;
	transition: all 0.3s ease;
}

.toolboxlist p {
	color: #999999;
	margin-top: 10px;
	margin-bottom: 0px;
}

.toolboxlist:hover {
	box-shadow: 0 5px 15px 1px rgb(49 49 49 / 10%);
}

/* 全资详情页 */
.quanzibanner {
	background: url(/HtmlPage/szxc/CXimage/quanzbanner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.col-white {
	color: #FFFFFF;
}

.class-list {
	background: #FFFFFF;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 15px 1px rgb(49 49 49 / 10%);
	transition: all 0.3s ease;
	height: 387px;
}

.class-list:hover {
	transform: translateY(-10px);
}

.class-list h6 {
	margin: 30px 0px;
	font-size: 16px;
}

.class-list p {
	color: #999999;
	text-align: left;
	line-height: 28px;
}

.po-titi {
	text-align: center;
	margin-bottom: 20px;
}

.posi-sev-box {
	border-top: 1px solid #E5E5E5;
	margin-top: 40px;
	padding: 40px 0;
}

.po-mess-sev-box {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.po-mess-sev-lef {
	width: 460px;
	padding: 40px;
	float: left;
}

.po-mess-sev-inti {
	background: #e1251b;
	color: #FFFFFF;
	text-align: center;
	width: 260px;
	padding: 10px;
	font-size: 16px;
}

.po-mess-sev-lef-li li {
	display: flex;
	align-items: center;
	margin-top: 30px;
	overflow: hidden;
}

.po-mess-sev-lef-li li img {
	width: 32px;
	height: 32px;
	float: left;
}

.po-mess-sev-lef-li-tex {
	margin-left: 20px;
	float: left;
}

.po-mess-sev-lef-li-tex p {
	margin-bottom: 0px;
}

.po-mess-sev-lef-li-tex span {
	color: #999999;
}

.po-mess-sev-rig {
	width: 780px;
	padding: 40px 20px;
	float: left;
}

/* .po-mess-sev-rig-li{display: flex;} */
.po-mess-sev-rig-li li {
	float: left;
	width: 338px;
	margin-right: 30px;
}

.va-list {
	text-align: center;
	margin-top: 40px;
}

.va-list p {
	margin-top: 10px;
}

/* OA乐动体育官方在线入口-乐动（中国）情页 */
.oabanner {
	background: url(/HtmlPage/szxc/CXimage/oabanner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.colfff {
	color: #FFFFFF;
}

.bg-blue {
	background: #f5f9ff;
}

.tab-mainbody .class-list img {
	width: 120px;
}

/* 算量乐动体育官方在线入口-乐动（中国）情页 */
.slbanner {
	background: url(/HtmlPage/szxc/CXimage/sunlbanner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.clear {
	clear: both
}

.new_con {
	max-width: 1240px;
	margin: 0 auto;
	margin-top: 50px;
}

.newtel {
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 10px;
	font-size: 16px;
	color: #666
}

.new_telst {
	width: 1240px;
	margin: 0 auto;
	position: relative;
	top: 6px;
	text-align: center
}

.new_telst li {
	width: 130px;
	line-height: 30px;
	text-align: center;
	float: left;
	display: inline;
	font-family: "微软雅黑";
	cursor: pointer;
}

.new_telst li.newon {
	color: #217af0;
	font-weight: bold;
}

.new_telst p {
	position: absolute;
	top: 34px;
	left: 0px;
	width: 130px;
	height: 7px;
	border-top: 1px solid #217af0;
	overflow: hidden;
	text-align: center;
}

.new_telst b {
	display: inline-block;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid dashed dashed dashed;
	border-width: 9px;
	border-color: #217af0 #fff #fff #fff;
	overflow: hidden;
	zoom: 1;
	font-size: 0;
}

.new_lst {
	position: relative;
	overflow: hidden;
	display: none;
}

.new-wrap {
	margin-top: 30px;
}

.new-wrap .show {
	display: block;
}

.new_lst .gn-jslist {
	margin: 0;
}

.new_lst .gn-jslist-cont {
	margin: 30px 0;
}

/* 平法出图乐动体育官方在线入口-乐动（中国）情页 */
.pf_banner {
	background: url(/HtmlPage/szxc/CXimage/pf-banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 钢筋出图乐动体育官方在线入口-乐动（中国）情页 */
.gj_banner {
	background: url(/HtmlPage/szxc/CXimage/gj_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 房地产清单解决方案乐动体育官方在线入口-乐动（中国）情页 */
.fdc_banner {
	background: url(/HtmlPage/szxc/CXimage/fdc_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 工民建BIM造价解决方案乐动体育官方在线入口-乐动（中国）情页 */
.mg_banner {
	background: url(/HtmlPage/szxc/CXimage/mg_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 企业数字化解决方案乐动体育官方在线入口-乐动（中国）情页 */
.qy_banner {
	background: url(/HtmlPage/szxc/CXimage/qy_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 电子投标解决方案乐动体育官方在线入口-乐动（中国）情页 */
.dz_banner {
	background: url(/HtmlPage/szxc/CXimage/dz_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 20KV配网全过程造价解决方案乐动体育官方在线入口-乐动（中国）情页 */
.pw_banner {
	background: url(/HtmlPage/szxc/CXimage/pw_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 公路建造管理解决方案乐动体育官方在线入口-乐动（中国）情页 */
.gl_banner {
	background: url(/HtmlPage/szxc/CXimage/gl_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 智慧水利水电解决方案乐动体育官方在线入口-乐动（中国）情页 */
.zl_banner {
	background: url(/HtmlPage/szxc/CXimage/zl_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 施工成本乐动体育官方在线入口-乐动（中国）情页 */
.sg_banner {
	background: url(/HtmlPage/szxc/CXimage/sg_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}
/* 造价大数据平台 */
.zj_banner {
	background: url(/HtmlPage/szxc/CXimage/zj_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}
/* 智慧通信计价解决方案 */
.txjj_banner {
	background: url(/HtmlPage/szxc/CXimage/txjj_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}
/* BIMBase算量 */
.binbase {
	background: url(/HtmlPage/szxc/CXimage/binbase.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

/* 资讯动态*/
.new_banner {
	background: url(/HtmlPage/szxc/CXimage/gup-banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	height: 260px;
}

.lrbox {
	display: flex;
	width: 1240px;
	margin: 30px auto;
	justify-content: space-between;
	overflow: hidden;
}

.lfbox {
	width: 210px;
	float: left;
	height: calc(100%);
	background: url(/HtmlPage/szxc/CXimage/lf-bg.png) repeat-y;
	border: 1px solid #e6ecf5;
}

.lfbox li a {
	line-height: 56px;
	text-align: center;
	border-bottom: 1px solid #cddcf3;
	display: block;
}

.lfbox li:hover a,
.lfbox li.active a {
	color: #b81d23;
	font-weight: bold;
	border-right: 6px solid #b81d23;
	/* background: #ddecff; */
}
.downleft .lfbox li:hover a,
.downleft  .lfbox li.active a {
	font-weight: bold;
	background: #ddecff;
	border-right:none;
	color: #333333;
}
.dowlistbox{overflow: hidden;}
.ribox {
	width: 1010px;
	width: calc(100% - 230px);
	float: right;
}

.newtiti {
	font-size: 22px;
	border-bottom: 1px solid #E5E5E5;
	line-height: 56px;
	margin: 0px;
}
.downewtiti{background: #ecf4ff;padding: 0 15px;border-bottom:1px solid #e6ecf5}
.news-content-list {
	display: flex;
	padding: 20px 0px;
	border-bottom: 1px solid #e5e5e5;
	justify-content: space-between;
	transition: 0.5s;
	overflow: hidden;
}

.news-content-list:hover {
	border-bottom: 1px solid #e1251b;
}

.news-content-list .content-list-img img {
	transition: 0.5s;
}

.news-content-list:hover .tra {
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	filter: scale(1.15);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor: pointer;
}

.news-content-list .content-list-txt {
	width: 780px;
	width: calc(100% - 230px);
	float: right;
}

.news-content-list .content-list-img {
	width: 210px;
	height: 124px;
	overflow: hidden;
	float: left;
	transition: 0.5s;
}

.news-content-list .content-list-txt dd a {
	display: inline-block;
	width: 100%;
	margin: 5px 0;
	font-size: 18px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.news-content-list .content-list-txt dd a:hover {
	color: #b81d23;
}

.news-content-list .content-list-txt p a {
	display: inline-block;
	display: -webkit-box;
	height: 45px;
	line-height: 22px;
	color: #999;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.newtime {
	color: #999999;
	font-size: 12px;
}

.mypagination {
	display: block;
	margin: 0 auto;
	text-align: center;
}


/* 成长历程 */
.gup-banner {
	background: url(/HtmlPage/szxc/CXimage/gup-banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	height: 240px;
}

.bigtitih5 {
	text-align: center;
	color: #FFFFFF;
	font-size: 34px;
	margin-top: 120px;
}

.einglish {
	font-size: 16px;
	color: #FFFFFF;
}

/*--------------------------------------------详情页---------------------------------------------------*/
.xianqing {
	position: relative;
	min-height: 600px;
	padding: 0px 0 20px 0;
	width: 100%;
}


.xianqing h1 {
	text-align: center;
	font-size: 25px;
}

.xianqing h5 {
	margin: 20px 0 50px 0;
	padding-bottom: 30px;
	letter-spacing: 1px;
	font-size: 14px;
	color: #686868;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.xianqing p {
	margin-bottom: 20px;
	text-indent: 2em;
}

.xianqing img {
	margin-bottom: 10px;
}

/*上一篇下一篇*/
.page {

	margin: 60px 0 40px 0;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.page ul {
	float: left;
}

.page ul li {
	overflow: hidden;
	margin-bottom: 10px;
}

.page ul li a:hover {
	color: #b81d23;
	font-weight: bold;
}

.page ul li:nth-child(2n) {
	margin-bottom: 0;
}


.page ul li .next {
	display: block;
	clear: both;
	float: left;
	font-size: 14px;
}

.page .ret {
	float: right;
	margin-top: 6px;
	padding: 10px 25px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
}

.page .ret:hover {
	color: #fff;
	background: #e1251b;
	border: 1px solid #e1251b;

}

.page a:hover span {
	color: #e1251b;
	transition: ease .3s;
}

@media (max-width: 500px) {
	.page ul {
		float: none;
	}

	.page ul li {
		width: 100%;
		padding: 10px 25px;
		border: solid #e1251b 1px;
	}

	.page ul li:nth-child(2n) {
		margin-bottom: 20px;
	}

	.page ul li a {
		overflow: hidden;
		height: 1.5em;
		line-height: 24px;
	}

	.page ul li .prev {
		display: inline-block;
		float: none;
		width: 100%;
	}

	.page ul li .next {
		display: inline-block;
		float: none;
		width: 100%;
	}

	.page .ret {
		display: inline-block;
		float: none;
		width: 100%;
		margin-top: 0;
		text-align: center;
		color: #fff;
		background: #e1251b;
		border: 1px solid #e1251b 1;
	}
}

/* 党建工会*/
.djlfbox {}

.dj_banner {
	background: url(/HtmlPage/szxc/CXimage/dj_banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	height: 300px;
}

.djlfbox {
	border-right: 1px solid #e0d9c7;
	background: url(/HtmlPage/szxc/CXimage/djlf-bg.png) no-repeat;
}

.lfbox.djlfbox li a {
	border-bottom: 1px solid #efede6;
}

.djfoot {
	background: #b71c22 url(../CXimage/footer-bg.png) no-repeat top left;
}

.djfoot .footer-top .tell {
	color: #f0c666;
}

.djtiti {
	position: absolute;
	width: 210px;
	background: #8b191d;
	text-align: center;
	color: #fffa9b;
	top: 240px;
}

.djtiti h2 {
	margin-bottom: 0px;
}

.djtiti p {
	font-size: 12px;
	color: #e0db7f;
}

.djtitih4 {
	background: #fce8e8;
	padding: 20px;
}

.djtitih4 span {
	margin-right: 10px;
}

.djcontbox img {
	margin: 0 auto;
}

.djcontbox p {
	text-indent: 2em;
	line-height: 28px;
}


/****************************** 联系我们左右 ****************************************/
.about_xq h3 {
	margin-bottom: 1em;
	padding: 0 0 15px 0;
	border-bottom: 1px dotted #aaa;
	font-size: 22px;
	font-weight: 400;
	text-align: center;
	line-height: 1.5em;


}

.lxwm-l {
	height: 100%;
	background: #f2f2f2;
	padding: 10px;
}

.lxwm-l hr {
	margin: 8px 0;
	border-top: 1px solid #dddddd;
}

.lxwm-l h3 {
	font-size: 17px;
	text-align: left;
}

.lxwm-l h4 {
	font-size: 15px;
	text-align: left;
	color: #555;
	margin: 7px 0;
}

.lxwnst ul {
	margin: 0;
	padding: 0;
}

.lxwnst li {
	margin: 0 0 7px -4px;
	padding: 0 9px;
	border-right: 1px solid #dddddd;
	display: inline-block;
	font-size: 15px;
	line-height: 18px;
}

.lxwnst li:hover {
	background: #dddddd;
}

.lxwnst li:last-child {
	border: none;
}

.lxwnst li.yswezhi {
	line-height: 1.5em;
	color: #fff !important;
	background: #e1343a;
}

.lxwnst>li {
	cursor: pointer;
}

.addrList {
	display: inline-block;
	width: 60%;

}

/*--加入我们--*/

#filters {
	margin: 0 0 1em 0;
	padding: 0;
	list-style: none;

}

#filters li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 10px;
}

#filters li span {
	font-size: 1em;
	display: block;
	width: 80px;
	padding: 5px 0;
	text-align: center;
	text-decoration: none;
	color: #313840;
	cursor: pointer;
	text-transform: uppercase;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 4px;
}

#filters li span.active,
#filters li span:hover {
	color: #c52d2f;
	border: 1px solid #c52d2f;
}

.about_xq h5 {
	line-height: 2em;
	font-size: 1.2em;
	font-weight: 600;

}

/* 小按钮*/
.hvr-shutter-out-horizontal {
	display: inline-block;
	vertical-align: middle;
	border-radius: 5px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	background: #e84c3d;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	color: #fff;
	font-size: 1.1em;
	padding: 6px 20px;
}

.hvr-shutter-out-horizontal:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #E42313;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	border-radius: 0;
}

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
	color: white;
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

/**************QQ客服****************/

.qqan {
	width: 150px;
	height: 35px;
	background: url(/HtmlPage/szxc/CXimage/qqrx.jpg) no-repeat;
	line-height: 35px;
	float: left;
	margin: 8px 20px 20px 0;
	text-indent: 2.5em;
	color: #fff;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
}

.qqan:hover {
	font-weight: 700;
}

/************************新闻列表********************************/


.news-bottom-left {
	text-align: center;

}

.news-bottom-left h6 {
	font-size: 2em;
	margin: 0px;
	font-weight: 300;
	border: none;
	line-height: 1.5em;
	color: #4cc0a9;
	font-family: Arial, Helvetica, sans-serif;
}

.news-bottom-left p {
	font-size: 1em;
	color: #959798;
	font-family: Arial, Helvetica, sans-serif;

}

.news-bottom-right h1 {
	font-size: 1.2em;
	text-align: left;
	margin-top: 7px;
	color: #3d464d;
	line-height: 1.3em;
}

.news-bottom-right p {
	font-size: 1em;
	text-align: left;
	margin-bottom: 1em;
}

.news-bottom-right {
	border-bottom: 1px solid #EDF2F6;
}

.bn {
	text-align: right;
	margin: 0px 0px 0.3em 0px;
}

.news-bottom-one {
	margin-top: 1%;
}

.bn a {
	color: #e84c3d;
	font-size: 1em;
}

.bn a:hover {
	color: #3F4244;
	text-decoration: none;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.ex_box {
	margin: 3% 0 5% 0;
}

/************************重点客户********************************/
.keylist img {
	height: 90px;
	display: block;
}

.keylist .customerbox div div {
	text-align: center;
	padding: 10px 0;
	border: 1px solid #E5E5E5;
}

.keylist p {
	text-align: center;
}


/************************乐动体育官方在线入口-乐动（中国）下载********************************/
.down-banner {
	background: url(/HtmlPage/szxc/CXimage/down-banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	height: 240px;
}

.subNav {
	border-bottom: solid 1px #cddcf3;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	color: #333;
	padding: 17px;
	text-align: center;
}
.subNav span{color: #d9534f;}
.subNav a:hover,
.subNav a:focus {
	color: #333333;
}

.currentDd {
	color: #b81d23
}


.navContent {
	display: none;
	border-bottom: solid 1px #e6ecf5;
	background: #FFFFFF;
}

.navContent li a {
	display: block;
	text-align: center;
	font-size: 14px;
	color: #333;
	padding: 8px 0;
	line-height: 28px;
	border-bottom: none;
}
.dowribox{border: 1px solid #e6ecf5;}
.downbox {
	display: block;
	border-bottom: 1px solid #e6ecf5;
	padding: 20px;
	margin-bottom: 4px;
	transition: all 0.3s ease;
	/* box-shadow: 0 5px 5px 1px rgb(49 49 49 / 5%); */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.downbox:hover {
	transform: translateY(4px);
}

.downboxtop {
	display: flex;
}
.dimg{width: 70px;}
.dowrig {
	margin-left: 20px;
	width: 400px;
}

.dowrig h3 {
	margin-top: 0px;
	font-size: 20px;
}
.dowrig p,.timecol{color: #999999;}
.dowrig p span{display: inline-block;margin-right: 20px;}
.dounbut{color: #FFFFFF;}

/* 技能认证页面 */
.w1240{width: 1240px;margin: 0 auto;}
.rzbannerbox{height: 885px;background: url(/HtmlPage/szxc/CXimage/rzbanerbg.png) center top no-repeat;}
.rzbanner{padding-top: 120px;text-align: center;}
.rzbanerlist{display: flex;justify-content: space-between;}
.rzbanerlist li{height: 184px;background: url(/HtmlPage/szxc/CXimage/rzbanerlist.png) no-repeat;
width: 250px;margin: 60px 32px;text-align: center;color: #FFFFFF;float: left;}
.rzbanerlist p{padding: 27px;font-size: 16px;line-height: 34px;margin-bottom: 0px;}
.onestepbox{height: 2340px;background: url(/HtmlPage/szxc/CXimage/rz1-bg.png) no-repeat;margin-bottom: 40px;}
.rztiti{text-align: center;margin-bottom: 40px;}
.onesteplist{display: flex;padding: 50px 0;}
.onesteplistleft{height: 452px;background: url(/HtmlPage/szxc/CXimage/rz1-imgbg.png) no-repeat;width: 452px;margin: 0 auto;padding:100px 60px;text-align: center;}
.steplfttiti{margin: 20px 0;}
.steplfttiti h2{font-weight: normal;color: #f60710;}
.steplfttiti p{background: #c9dbff;height: 15px;margin-top: -22px;}
.lrfp{line-height: 30px;text-align: center;font-size: 16px;} 
.onesteplistrig{text-align: center;display: flex;align-items: center;justify-content: center;}
.towstepbox{overflow: hidden;margin: 80px 0}
.towstep{height: 685px;background: url(/HtmlPage/szxc/CXimage/rz2-bg.png) no-repeat center center;}
.towstepcount{display: flex;}
.towleft{width: 620px;float: left;background: url(/HtmlPage/szxc/CXimage/rzred.gif) no-repeat center center;height: 620px;text-align: center;}
.towright{width: 620px;float: left;background: url(/HtmlPage/szxc/CXimage/rzbule.gif) no-repeat center center;height: 620px;text-align: center;}
.vsbox{width: 170px;height: 170px;background: #ffffff;position: relative; bottom: 400px;
border-radius: 50%;left: 46%;text-align: center;padding-top: 15px;box-shadow: 0 0px 20px 10px rgb(49 49 49 / 5%);}
.bkq{font-weight: normal;
    width: 100px;
    margin: 40px auto 120px;
    background: #ff3e36;
    border-radius: 20px;color: #fff000;}
.threestepbox{background: url(/HtmlPage/szxc/CXimage/rz3-bg.png) no-repeat center center;height: 463px;}
.threestep{display: flex;align-items: center;justify-content: center;}
.threestep h3{color: #FFFFFF;margin-left: 10px;}
.rzgood{position: relative;bottom: 270px;left: 45%;width: 211px;
    height: 117px;}
	.rzfive{display: flex;align-items: center;justify-content: space-around;}
.rzfiveleft,.rzfiveleft,.rzfivemid{width: 390px;height: 244px;text-align: center;}
.rzfiveleft h3,.rzfiveleft h3,.rzfivemid h3{color: #0031ff;padding-top: 120px;}
.rzfiveleft p,.rzfiveleft p,.rzfivemid p{font-size: 16px;}
.rzfive1{background: url(/HtmlPage/szxc/CXimage/rz5-bg1.png) no-repeat;}
.rzfive2{background: url(/HtmlPage/szxc/CXimage/rz5-bg2.png) no-repeat;}
.rzfive3{background: url(/HtmlPage/szxc/CXimage/rz5-bg3.png) no-repeat;}
.rzfive4{background: url(/HtmlPage/szxc/CXimage/rz5-bg4.png) no-repeat;}
.rzfive5{background: url(/HtmlPage/szxc/CXimage/rz5-bg5.png) no-repeat;}
.rzfivebut{width: 290px;height: 154px;background: url(/HtmlPage/szxc/CXimage/rz5-but.png) no-repeat;margin: 0 auto;
padding-top: 50px;text-align: center;font-size: 18px;}
.rzfivebut a{color: #FFFFFF;}
.rzfivebut a:hover{color: #fff000;}





/* 数字乡村新增样式 */
.szxcbanner {
	background: url(/HtmlPage/szxc/CXimage/szxc/banner.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	height: 610px;
}
.szxcbanner .inbannercont{text-align: center;}
.szxcbanner .inbannercontmess{width: auto;}
.szxcbicon{text-align: center;overflow: hidden;margin: 0 auto;max-width: 995px;}
.szxcbicon>ul>li{width: 168px;height: 190px;background: url(/HtmlPage/szxc/CXimage/szxc/b_bg.png) no-repeat center;padding-top: 10px;float: left;
margin: 0 40px;
}
.szxcvideobox{height: 530px;}
.szxc_dd{display: flex;text-align: center;justify-content: center;margin: 40px 0;}

.szxcinbannercont{text-align: center;}
.szxcinbannercont a.in-b-aone{height: 44px;width: 360px;font-size: 16px;}