/* 创网云 */
.chuangwang{
	font-size: 12px;
	color: #666;
	margin-top: 50px;
  }
  .chuangwang img{
	width: 18px;
	height: 18px;
	margin-right: 3px;
  }
  .chuangwang .cw1{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
  }

  /* 购物车 */
  .cart1{
	position: fixed;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	bottom: 150px;
	right: 5px;
	background-color: #ffb138;
	text-align: center;
	line-height: 45px;
  }
  .cart1 img{
	width: 23px;
	height: 23px;
	/* border-radius: 50%; */
  }

  .cart1 .number{
	color: #fff;
	position: absolute;
	line-height: 0;
	top: 10px;
	left: 45%;
	font-size: 10px;
  }


/* 电话 */
  .phones{
	position: fixed;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	bottom: 100px;
	right: 5px;
	background-color: #ffb138;
	text-align: center;
	line-height: 45px;
  }
  .phones img{
	width: 30px;
	height: 30px;
	margin: auto;
	/* border-radius: 50%; */
  }


/* 音乐 */
.sing{
	position: fixed;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	top: 55px;
    right: 15px;
	right: 5px;
	text-align: center;
	line-height: 45px;   
	animation: rotate 6s linear infinite;
	background-color: #ffb138;
	border-radius: 50%;
  }
  
  @keyframes rotate {/* 这里从来没接触过 直接抄的。。。 */
	0% {
		transform: rotateZ(0deg);
		/*从0度开始*/
	}
	100% {
		transform: rotateZ(360deg);
		/*360度结束*/
	}
}
.sing:hover{     
	animation-play-state:paused;   
  }   

  .sing img{
	width: 45px;
	height: 45px;
	background-color: #ffb138;
	border-radius: 50%;
  }

.footer{
	position: fixed !important;
	bottom: 0;
	width: 100%;
    max-width: 420px !important;
	height: 52px;
	border-top: 1px solid #f1f1f1;
	padding-top: 5px;
	font-size: 10px;
	background-color: #fff;
}
.footer_fs14{
	font-size: 14px;
  color: #d8d8d8;
}
.footer_fs12{
	font-size: 12px;
  color: #d8d8d8;
}