
* {
    box-sizing: border-box;
    font-family: "lucida grande", "lucida sans unicode", lucida, helvetica, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, h6, span, label {
    cursor: default;
}

a {
    display:block;
    text-decoration:none;
}

.button {
    display: inline-block;
    color: white;
    background-color: #529eff;
    padding: 8px 20px;
    cursor: pointer;
    margin-right: 10px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-transition: box-shadow .2s linear;
    -moz-transition: box-shadow .2s linear;
    -ms-transition: box-shadow .2s linear;
    -o-transition: box-shadow .2s linear;
    transition: box-shadow .2s linear;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}
.button:hover, .button:visited, .button:link, .button:active {
    color: white;
}

.button:hover {
    -webkit-box-shadow: 1px 3px 8px rgba(78, 144, 236, 0.6);
    -moz-box-shadow: 1px 3px 8px rgba(78, 144, 236, 0.6);
    box-shadow: 1px 3px 8px rgba(78, 144, 236, 0.6);

    color: white;
    background-color: #71abff;
}

.button:active {
    color: white;
    background-color: #529eff;
}

.button.white {
    opacity: 0.9;
    background: white;
    color: #4a8bfc;
    border: 1px solid transparent;

    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.12);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.12);
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

.button.white:hover {
    opacity: 1;
}

.button.white:active {
    opacity: 0.7;
}