/* *** 五福&五行 */
.bgFix,.bgFix li{display:block;position:absolute;border-radius:50%;}
.bgFix{
 width:500px;height:500px;border-radius:50%;
 top:-300px;right:-200px;z-index:1;
 /* background:rgba(0,0,0,.05) url(imgs/5Roud.svg) no-repeat center center;background-size:cover;   */opacity:0.8;
animation:spin 20s linear infinite;
}
.bgFix_5Xin{width:300px;height:300px;top:auto;right:auto;bottom:-200px;left:-150px;}
.bgFix::before{
 content:"";display:block;width:95%;height:95%;border-radius:50%;background:rgba(210,155,130,1);
 position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
}
.bgFix li{
 width:20%;height:20%;overflow:hidden;border-radius:50%;
 display:flex;text-align:center;justify-content:center;align-items:center;font-size:2em;color:#FFF;font-weight:bold;
 /* background:url(imgs/aim.svg) 50% 50% no-repeat; */
 box-shadow:0 0 1px 0 rgba(0,0,0,0.5);
}
.bgFix li:nth-child(1){
 left:40%;top:-10%;transform:rotate(0deg);
 background-image:linear-gradient(rgba(98,98,98,.5),rgba(168,168,168,.5));
 color:#666;
}
.bgFix li:nth-child(2){
 left:87.5%;top:24.5%;transform:rotate(72deg);
 background-image:linear-gradient(rgba(64,218,64,.5),rgba(8,168,8,.5));
}
.bgFix li:nth-child(3){
 left:69.45%;top:80.45%;transform:rotate(144deg);
 background-image:linear-gradient(rgba(64,64,64,.5),rgba(8,8,8,.5));
}
.bgFix li:nth-child(4){
 left:10.5%;top:80.5%;transform:rotate(216deg);
 background-image:linear-gradient(rgba(225,64,64,.5),rgba(128,8,8,.5));
}
.bgFix li:nth-child(5){
 left:-7.5%;top:24.5%;transform:rotate(288deg);
 background-image:linear-gradient(rgba(225,128,64,.5),rgba(128,64,8,.5));
}

/* 540P+ */ /* Surface Duo */
@media screen and (min-width:540px){
}
/* 752P+ */
@media screen and (min-width:752px){
 .bgFix{width:750px;height:750px;top:-400px;right:-375px;}
.bgFix_5Xin{width:500px;height:500px;top:auto;right:auto;bottom:-300px;left:-250px;}
}
/* 1024P+ */
@media screen and (min-width:1024px){
 .bgFix{width:1000px;height:1000px;}
.bgFix_5Xin{width:750px;height:750px;}
}

/* *** 动画集 *** */
@keyframes spin{  
  from{transform:rotate(360deg);}  
  to{transform:rotate(0deg);} 
}