/* CSS Global */

body {
    width: 100%;
    overflow-x: hidden;
}

.redfont {
    color: #F00;
}

.warp {
    width: 1000px;
    margin: 0 auto;
}

.dis {
    display: block;
}

.mdis {
    display: none;
}

.clear {
    clear: both;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.img {
    display: block;
}

.ov {
    overflow: hidden;
}

a {
    text-decoration: none;
}

a:link {
    color: #222
}

a:visited {
    color: #222
}

a:hover {
    color: #0081ff
}

a:active {
    color: #0081ff
}


/*scrollbar*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #cccccc;
}