* {
    margin: 0;
    padding: 0;
}
body {
    background-color: white;
    min-width: 678px;
    opacity: 0;
    animation: page-fade-in 1s forwards;
}
@keyframes page-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
a {
    text-decoration: none;
}
div {
    box-sizing: border-box;
}

li {
    list-style: none;
}
input {
    outline: none;
    border: 0;
}
/*清除浮动*/
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1;
}
/*圆角样式*/
.bor_radius {
    border-radius: 8px;
}
.bor_radius_top {
    border-radius: 8px 8px 0 0;
}
.bor_radius_button {
    border-radius: 0 0 8px 8px;
}
.left {
    float: left;
}
.right {
    float: right;
}
@font-face {
    font-family: 'beita';
    src:  url('../font/icomoon.eot?mv1pmd');
    src:  url('../font/icomoon.eot?mv1pmd#iefix') format('embedded-opentype'),
    url('../font/icomoon.ttf?mv1pmd') format('truetype'),
    url('../font/icomoon.woff?mv1pmd') format('woff'),
    url('../font/icomoon.svg?mv1pmd#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}