
/* CSS 执行文件 */

/*此处设置是无限循环*/
.animated .action_d, .animated .part-show .web-layer, .part02.animated .com-part-show, .animated .part-show .show-left, .animated .part-show .show-right, .part04.animated .part-show li, .part05.animated .part-show .comp-layer, .h-part2.animated .part-show {
	visibility: visible;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated .scroll-up {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated .scroll-left {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
.animated .scroll-right {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
.animated .scroll-down {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}


/*新增*/
.animated .scroll-outright {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}





/*此处是消失作用*/
.scroll-up, .scroll-left, .scroll-right {
	visibility: hidden;
}

/*header*/

.headerdiv{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
.headerdiv .logo{
	display: flex;
	align-items: center;
}
.header_right{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.header_right .nav_currency{
	margin-right: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	line-height: 27px;
	margin-top: 15px;
	position: relative;
}
.header_right .code{margin: 0px 5px 0px 6px}
.header_right .arrow-down{
	margin-top: 7px;
}
.arrow-down {
	display: inline-block;
	border-top: 1px solid;
	border-right: 1px solid;
	width: 8px;
	height: 8px;
	border-color: #000;
	transform: rotate(-225deg);
}


.nav_currency_list{
	background-color:#f6a41d;
	position: absolute;
	top: 33px;
	border-radius: 5px;
	padding: 10px;
	z-index: 100;
	display: none;
}

.nav_currency_list::before{
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	background:#f6a41d;
	width: 15px;
	height: 15px;
	transform: rotate(45deg);
}
.nav_currency_list .list {
	line-height: 30px;
}

.nav_currency_list .list a{
	color: #fff;
	font-size: 11px;
	display: flex;
	flex-direction: row;
}
.nav_currency_list .list a span{
	padding-right: 5px;
	padding-left: 5px;

}

.nav_currency .img{
	display: flex;
	align-items: center;
}

.headerdiv .logo,.headerdiv .logo a{
	height: 65px;
}

.nav_currency_list .sm{
	position: absolute;
	width: 0px;
	height: 0px;
	/*
     做出小箭头主要靠border的transparent属性,它的作用是使背景色隐藏。
     因为我们上面定义小正方形的宽高都是0
     下面设置了四面的边框为10px，所以只有边框占有小正方形的面积
     由于transparent隐藏背景色，如果不给某一边添加颜色时，就不会有小三角形。
     如果给四面的边框都设置颜色后,可以看到此小正方形会分成了四个小三角形，此处我们隐藏其他三边，得到一个小三角形。
     top和left为设置小三角形的位置
     */
	border:10px solid transparent;
	border-right-color:#f30;
	/*border-bottom-color: blue;
    border-left-color: green;
    border-top-color: yellow;*/
	top:20px;
	left:-20%;
}


.header_right .searchinput{
	width: 320px;
	height: 46px;
	border: none;
	border-radius: 2px;
	background: #f5f5f5;
	text-indent: 10px;
	font-size: 12px;
}

.header_right .header_icon_search{
	position: absolute;
	top: 13px;
	right: 15px;
}

.headerdiv .user{
	width: 26px;
	height: 29px;
	background: url(/static/index/image/user_icon.png) no-repeat center center;
	position: relative;
	margin: 0px 30px;
	cursor: pointer;
}

.headerdiv .user-account-menu {
	background-color: #fff;
	border: 1px solid #e4e4e4;
	box-shadow: 0 0 5px #ccc;
	 display: none;
	line-height: 24px;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
	/*width: 113px;*/
	z-index: 99999;
	top: 30px;
	left: -86px;
	margin: 0px;
	padding: 20px;
}

.headerdiv .user-account-menu li{
	white-space: nowrap;
}

.headerdiv .cart{
	width: 29px;
	height: 29px;
	background: url("/static/index/image/cart_icon.png") no-repeat center center;
	position: relative;
	display: flex;
	cursor: pointer;
}
.headerdiv .tips{
	color: #fff;
	font-size: 12px;
	text-align: center;
	background: #e33057;
	border-radius: 15px;
	display: inline-block;
	padding: 0 2px;
	margin-left: 2px;
	margin-right: 35px;
}
.navdiv{
	display: flex;
	flex-direction: row;
	justify-content:left;
	align-items: center;
	height: 60px;
	border-top: #969696 solid 1px;
}

.navdiv .line{
	height: 10px;
	border: none;
	/* border-bottom: 1px dashed #e6e6e6; */
	font-size: 0;
	margin: 8px 0;
	overflow: hidden;
	background: #505050;
	width: 1px;
	margin: 0px 13px;
}
.navdiv .line:last-child{display: none;}
.navdiv .item a{
	font-weight: bolder;
	color: #434343;
	text-transform: uppercase;
	font-size: 14px;
}

.navdiv .item.active a{
	color:red;
}

.navdiv .item a:hover{
	color: red;
}

.publicwidth{
	width: 1280px;
	margin: 0px auto;
}

.index_button_bg{
	background: #f2f2f2;
}

.index_button{
	height: 124px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 1280px;
	margin: 30px auto 0px;
}

.index_button .list{
	text-align: center;
	width: 18%;
	font-size: 12px;
	text-transform: uppercase;
}


.public_footer_link {
	border-top: solid 5px #f5a41d;
	display: flex;
	flex-direction: row;
	justify-content: center;
	background: #000;
	color: #fff;
}
.public_footer_link .linklist {
	width: 232px;
	margin: 50px 23px;
}
.public_footer_link .linklist .line{
	height: 2px;
	overflow: hidden;
}
.public_footer_link .linklist .line img{
	margin:0px;
	padding: 0px;
	float: none;
}
.public_footer_link .linklist .item a{
	font-size: 13px;
	line-height: 27px;
	color: #fff;
}
.public_footer_link .linklist .title {
	font-weight: bolder;
	font-size: 14px;
	text-transform: uppercase;
}

.public_footer_link .linklist .line{
	background: url(/static/index/image/footer_line.png) no-repeat left top;
	height: 3px;
	overflow: hidden;
	margin: 6px 0px;
	border: none;
}


.public_footer_bottom{
	background: #000000;

	padding-top: 25px;
}

.public_footer_bottom>.publicwidth{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.public_footer_bottom .list.first{
	margin-left: 98px;
	width: 418px;
	/* background: red;*/
}
.public_footer_bottom .list{
	width: 327px;
}

.public_footer_bottom .list.service .img{

}
.public_footer_domain a{
	color: #fff;
}

.public_footer_bottom .list .title{
color: #fff;
font-size: 12px;
text-transform: uppercase;
height: 25px;
}
.public_footer_bottom .list .img {
display: flex;
flex-wrap: wrap;
width: 80%;
}
.public_footer_bottom .list .img .item{
	margin-right: 8px;
	margin-bottom: 4px;
}

.list .share .share_title {
color: #fff;
height: 25px;
font-size: 12px;
font-weight: bolder;
}

.list .share .items_list{
display: flex;
align-items: center;
justify-content: space-between;
width: 94px;
}
.public_footer_domain{
line-height: 35px;
font-size: 13px;
color: #fff;
background: #000000;
text-align: center;
padding-top: 25px;
}
