/* 原站全站公共内联样式(所有页面一致的块): 基础reset+transparent系列 + container/corner
   各页面专属样式块已移入对应模板内联, 与原站逐页加载行为一致 */
body, html {
            padding: 0px;
            margin: 0px;
            width: 100%;
            font-family: 微软雅黑;
 
        }
        a {
            text-decoration: none;
        }

        img {
            border: 0px;
        }
        .transparent {
            filter: alpha(opacity=50);
            -moz-opacity: 0.5;
            -khtml-opacity: 0.5;
            opacity: 0.5;
        }
       .transparent30 {
            filter: alpha(opacity=30);
            -moz-opacity: 0.3;
            -khtml-opacity: 0.3;
            opacity: 0.3;
        }
       .transparent75 {
            filter: alpha(opacity=75);
            -moz-opacity: 0.75;
            -khtml-opacity: 0.75;
            opacity: 0.75;
        }
        .transparent80 {
            filter: alpha(opacity=80);
            -moz-opacity: 0.8;
            -khtml-opacity: 0.8;
            opacity: 0.8;
        }

         .transparent95 {
            filter: alpha(opacity=95);
            -moz-opacity: 0.95;
            -khtml-opacity: 0.95;
            opacity: 0.95;
        }
        .inner {
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -50px;
            margin-top: -50px;
            width: 100px;
            height: 100px;
            line-height: 100px;
            text-align: center;
        }

       body,html{
           position:relative;

       }
        .Height100{height:100%;overflow:hidden;-webkit-overflow-scrolling: touch;}
        .btn-animate:before,
.btn-animate:after {
 
    content: '';
    z-index: -1;
    background: -webkit-linear-gradient(350deg, #07acef, #0f95fd);
    background: linear-gradient(100deg, #07acef, #0f95fd);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
     .btn-animate-in {
        -webkit-transform: translateZ(0);
         transform: translateZ(0);
     }
.container {
				width: 100px;
				margin: 20px auto;
			}
			
 
			.corner {
				width: 0px;                 /*  宽高设置为0，很重要，否则达不到效果 */
				height: 0px;
				border: 10px solid #0f95fd;
				border-bottom-color: transparent;    /* 设置透明背景色 */
				border-left-color: transparent;
				border-right-color: transparent;
			}
