html {
max-width:1920px;
margin:0 auto;
}
@media (max-width: 1280px) {
html{
width: 1280px;
}
body{
width: 1280px;
}
}
body {
    font-size: 16px;
    background: url(../images/bg.png) top center no-repeat;
    background-size: 100% auto;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}
a{
    color: #000;
}
a:hover {
    color: #009A80;
    /* text-decoration: underline; */
}
.bgwhite{
    background-color: #fff;
}
.clear {
    clear: both;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.half {
    width: 50%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.left {
    float: left;
}

.right {
    float: right;
}

.flex {
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}
.line1{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overhidden{
    overflow: hidden;
}