* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

input {
    outline: 0;
    border: none
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

button {
    border: none;
    background: none;
}

.de_iv_adv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.postionFixed {
    width: 100%;
    min-height: 60px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

footer {
    width: 100%;
    height: 60px;
    text-align: center;
    background-color: #000000;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 0 10px 0;
    margin-bottom: 60px;
}

footer a {
    display: inline;
    color: white;
}

.img-box {
    position: relative;
}

.img-box::before {
    content: '';
    display: block;
}

.img-box>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}

:root {
    --all-width: 1300px;
    --button: 40px;
    --logo: 240px;
    --searchBar: 500px;
    --grid-height: 125px;
    --ban-big-size: 28px;
    --ban-sm-size: 28px;
}

@media (min-width:1000px) and (max-width:1299px) {
    :root {
        --all-width: 1000px;
        --grid-height: 120px;
    }
}

@media (min-width:800px) and (max-width:999px) {
    :root {
        --all-width: 800px;
        --grid-height: 110px;
    }
}

@media (max-width:799px) {
    :root {
        --all-width: 100%;
        --logo: 50%;
        --searchBar: 100%;
        --grid-height: 100px;
        --ban-big-size: 24px;
        --ban-sm-size: 12px;
    }
}