*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
	text-decoration: none;
	color: #333;
}
ul,li{
	color: #333;
	list-style: none;
}
/*沙井坐标*/
.site-icon{
    position: absolute;
	left: 72.4vw;
    top: 37.4vh;
    z-index: 2;
}
.icon-css{
	/*position: absolute;
    z-index: 3;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 3px 8px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    display: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}
.icon-css:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    /*background: rgba(242,145,30, 0.3);*/
   	border: 3px solid #01913A;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    z-index: 3;
    opacity: 0;
    -webkit-animation: halos 2s .5s infinite ease;
    -moz-animation: halos 2s .5s infinite ease;
    animation: halos 2s .5s infinite ease;
}
.icon-css:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    /*background: rgba(242,145,30, 0.5);*/
   	border: 3px solid #01913A;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 4;
    opacity: 0;
    -webkit-animation: halo 2s .5s infinite ease;
    -moz-animation: halo 2s .5s infinite ease;
    animation: halo 2s .5s infinite ease;
}
/*背景颜色*/
.bg-pink{  /*粉色*/
	background-color: #EB5F9C;
}
.bg-purple{	 /*紫色*/
	background-color: #4C4298;
}
.bg-blue{	/*蓝色*/
	background-color: #008CD7;
}
.bg-yellow{	/*黄色*/
	background-color: #F2911E;
}
.bg-green{	/*绿色*/
	background-color: #01913A;
}
.bg-red{	/*红色*/
	background-color: #E83928;
}
.bg-grey{	/*灰色*/
	background-color: #707070;
}
/*圆点、五角星动画*/
.iconfont{
	margin-right: 5px;
}
.signal {
	position: absolute;
	top: 5px;
	left: 5px;
}
.signal:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    /*background: rgba(242,145,30, 0.5);*/
   	border: 3px solid rgba(255, 0, 0, 0.8);
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 4;
    opacity: 0;
    -webkit-animation: halo 2s .5s infinite ease;
    -moz-animation: halo 2s .5s infinite ease;
    animation: halo 2s .5s infinite ease;
}
.signal:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    /*background: rgba(242,145,30, 0.3);*/
   	border: 3px solid rgba(255, 0, 0, 0.5);
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    z-index: 3;
    opacity: 0;
    -webkit-animation: halos 2s .5s infinite ease;
    -moz-animation: halos 2s .5s infinite ease;
    animation: halos 2s .5s infinite ease;
}

@-webkit-keyframes halos {
    0% {opacity: 0;-webkit-transform: scale(0.3);}
    50% {opacity: 1;}
    100% {opacity: 0;-webkit-transform: scale(1.2);}
}
@-moz-keyframes halos {
    0% {opacity: 0;-moz-transform: scale(0.1);}
    50% {opacity: 1;}
    100% {opacity: 0;-moz-transform: scale(1.2);}
}
@-ms-keyframes halos{
    0%{opacity:0}
    50%{opacity:1}
    100%{opacity:0}
}
@-o-keyframes halos{
    0%{opacity:0;-o-transform:scale(0.1)}
    50%{opacity:1}
    100%{opacity:0;-o-transform:scale(1.2)}
}
@keyframes halos{
    0%{opacity:0;transform:scale(0.1)}
    50%{opacity:1}
    100%{opacity:0;transform:scale(1.2)}
}

@-webkit-keyframes halo {
    0% {opacity: 0;-webkit-transform: scale(0.1);}
    50% {opacity: 1;}
    100% {opacity: 0;-webkit-transform: scale(1.2);}
}
@-moz-keyframes halo {
    0% {opacity: 0;-moz-transform: scale(0.1);}
    50% {opacity: 1;}
    100% {opacity: 0;-moz-transform: scale(1.2);}
}
@-ms-keyframes halo{
    0%{opacity:0}
    50%{opacity:1}
    100%{opacity:0}
}
@-o-keyframes halo{
    0%{opacity:0;-o-transform:scale(0.1)}
    50%{opacity:1}
    100%{opacity:0;-o-transform:scale(1.2)}
}
@keyframes halo{
    0%{opacity:0;transform:scale(0.1)}
    50%{opacity:1}
    100%{opacity:0;transform:scale(1.2)}
}




























