/*我要举报*/

@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;

        opacity: 0;
    }
}

@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;

        opacity: 0;
    }
}

a.hvr-ripple-out {
    font-weight: bold;
    line-height: 40px;

    position: relative;

    display: block;
    display: inline-block;

    width: 370px;
    height: 40px;

    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    text-align: center;
    vertical-align: middle;

    color: #eee;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: #c41411;
    background: #4b78cd;
    -webkit-box-shadow: #666 0 3px 3px;
       -moz-box-shadow: #666 0 3px 3px;
            box-shadow: #ddd 0 3px 3px;
            box-shadow: 0 0 1px rgba(0, 0, 0, 0);

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
a.hvr-ripple-out:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    content: '';
    -webkit-animation-duration: 1s;
            animation-duration: 1s;

    border: #4b78cd solid 6px;
}
a.hvr-ripple-out:hover:before,a.hvr-ripple-out:focus:before,a.hvr-ripple-out:active:before {
    -webkit-animation-name: hvr-ripple-out;
            animation-name: hvr-ripple-out;
}




/* Common button styles */
.button {
    position: relative;
    z-index: 1;

    display: block;
    float: left;

    min-width: 150px;
    margin: 1em;
    padding: 1em 2em;

    vertical-align: middle;

    color: inherit;
    border: none;
    background: none;

    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.button--rayen {
    overflow: hidden;

    width: 374px;
    height: 35px;
    padding: 0;
}

.button--rayen::before,
.button--rayen > span {
    -webkit-transition: -webkit-transform .3s;
            transition:         transform .3s;
    -webkit-transition-timing-function: cubic-bezier(.75, 0, .125, 1);
            transition-timing-function: cubic-bezier(.75, 0, .125, 1);
}

.button:focus {
    outline: none;
}
.button > span {
    vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */


/* Sizes */
.button--size-s {
    font-size: 14px;
}
.button--size-m {
    font-size: 16px;
}
.button--size-l {
    font-size: 18px;
}

/* Typography and Roundedness */
.button--text-upper {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.button--text-thin {
    font-weight: 300;
}
.button--text-medium {
    font-weight: 500;
}
.button--text-thick {
    font-weight: 600;
}
.button--round-s {
    border-radius: 5px;
}
.button--round-m {
    border-radius: 15px;
}
.button--round-l {
    border-radius: 40px;
}

/* Borders */
.button--border-thin {
    border: 1px solid;
}
.button--border-medium {
    border: 2px solid;
}
.button--border-thick {
    border: 3px solid;
}

/* Individual button styles */


/* Rayen */

.button--rayen.button--inverted {
    color: #fff;
}
.button--rayen::before {
    font-weight: bolder;
    line-height: 35px;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: attr(data-text);
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);

    color: #fff;
    background: #c41411;
}
.button--rayen.button--inverted::before {
    color: #37474f;
    background: #fff;
}
.button--rayen > span {
    display: block;
}

.button--rayen:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.button--rayen:hover > span {
    -webkit-transform: translate3d(0, 250%, 0);
            transform: translate3d(0, 250%, 0);
}
