@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-callout: none;
}

body {
    color: #333;
    font-size: 12px;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

select,
input {
    font-size: 12px;
    vertical-align: middle;
}

img {
    border: 0;
    vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #f00;
    text-decoration: none;
}


/* bootstrap reset */

h1,
p,
dl {
    margin: 0;
    padding: 0;
}

.clear {
    width: 0;
    height: 0;
    border: 0;
    margin: 0;
    padding: 0;
    clear: both;
    font-size: 0;
    overflow: hidden
}

.self_clear:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    font-size: 0;
    overflow: hidden;
    clear: both;
}

.ovh1 {
    overflow: hidden;
    white-space: initial;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.ovh4 {
    overflow: hidden;
    white-space: initial;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}


.link {
    cursor: pointer;
}