* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Cabin', Nunito, Microsoft YaHei, Arial, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei;
    line-height: 1.5;
    background-color: #0D1F4B;
    font-size: 14px;
    color: #fff;
    text-align: left;
}

body{
    position: relative;
}

a{
    text-decoration: none;
    color: #fff;
}

header{
    background-color: #0D1F4B !important;
    
}

.typeList{
    background-color: #0D1F4B !important;
}

footer{
    margin: 20px auto;
}

.type:hover{
    color: aqua;
}

.overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* background-color: rgba(0, 0, 0, 1); */
    z-index: 999999;
  }
  
  .loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
  }

  .cookies{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0F2B46;
    transform: translateY(0);
    transition: transform 500ms ease-in-out;
  }

  .hidden{
    transform: translateY(100%);
  }

  .cookies-btn{
    border-radius: 10px;
    background-color: #1844a7;
    padding: 10px 15px;
  }

@media screen and (min-width: 1200px) {
    .mo{
        display: none !important;
    }
    .header_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px auto;
    }
    #app {
        max-width: 1200px;
        margin: 10px auto;
    }

    

    .search_wrap{
        /* background-color:gray; */
        display: flex;
        align-items: center;
        border-bottom-left-radius: 6px;
        border: 1px solid #dfe1e5;
    }

    .search_iocn{
        width: 40px;
        text-align: center;
    }

    .search_input{
        width: 300px;
        height: 40px;
        line-height: 40px;
        border-bottom-left-radius: 5px;
        border: 1px solid #dfe1e5;
        padding-left: 5px;
        font-size: 18px;
    }

    .typeList {
        display: flex;
        align-items: center;
    }

    .typeList .type {
        padding: 5px 15px;
        font-size: 18px;
        font-weight: 600;
    }
    footer{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 768px) {
    footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    footer div{
        margin: 5px auto;
    }
    
}
