*{
    margin:0;
    padding:0;
    font-family: 微软雅黑;
    font-size: 1em;
}
ul{list-style: none;}
a{text-decoration: none;}
/*html{*/
    /*min-width: 320px;*/
    /*max-width: 540px;*/
/*}*/
body{
    width:100%;
    /*height:100%;*/
    margin: 0 auto;
    min-width: 320px;
    /*max-width: 640px;*/
    /*max-width: 1000px;*/
    /*overflow: scroll;*/
    /*overflow-x: hidden;*/
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
}


/*nav-fix固定在最底部*/
.nav-fix{
    position: fixed;
    bottom:0;
    width:100%;
    height:55px;
    line-height:20px;
    background-color: #FFF;
    border-top:1px solid #E1E1E1;
    /*max-width: 640px;*/
    /*max-width: 1000px;*/
    z-index: 1000;
}
.row{
    margin:0;
    display: flex;
    justify-content: space-around;
    height:100%;
}
.row span{
    font-size: 0.6em;
    line-height:10px;
}
.row div{
    display: inline-block;
    width: 32%;
    flex:1;
    height:100%;
    text-align: center;
}
.nav-fix div a{
    text-decoration: none;
    display: inline-block;
    width: 100px;
    height: 100%;
    margin:0;
    text-align: center;
}
.row div a p{
    margin:0;
    font-size: 0.8em;
    line-height:12px;
    color: #7b808f;
}
.row div b{
    margin:6px 0 0 0;
    display: inline-block;
    width:28px;
    height:25px;
    font-size: 1.7em;
    color: #7b808f;
}


.web_name{
    padding: 5px 0;
	font-size: 22px;
    color: #9b43e2;
    font-weight: 800;
	font-style: italic;
    text-align: center;
    width: 100%;
    /* 投影效果 */
    -webkit-box-reflect:below 1px linear-gradient(transparent, rgba(0,0,0,0.2));
}
.web_name span{
    /* 字间距 */
    letter-spacing: 
    /* 转大写 */
    text-transform: uppercase;
    text-align: center;
    line-height: 45px;
    outline: none;
    /* 自定义属性 --c,可通过 var 函数对其调用 */
    --c:lightseagreen;
    /* 调用自定义属性--c，设置文字阴影（发光效果） */
    text-shadow: 0 0 10px var(--c),
    0 0 20px var(--c),
    0 0 40px var(--c),
    0 0 80px var(--c),
    0 0 160px var(--c);
    /* 执行动画：动画名 时长 线性的 无限次播放 */
    animation: animate 5s linear infinite;
}
/* 定义动画 */
@keyframes animate{
    to{
        /* 色相旋转过滤镜（设置度数可改变颜色） */
        filter: hue-rotate(360deg);
    }
}








