body {
    margin: 0 auto 0 auto;
    width: 1200px;
    border: 1px solid black;
}

.none {
    display: none;
}

.flex-h {
    display: flex;
}

.flex-v {
    display: flex;
    flex-direction: column;
}

.wrap {
    flex-wrap: wrap;
}

.jcb {
    justify-content: space-between;
}

.jca {
    justify-content: space-around;
}

.jcc {
    justify-content: center;
}

.aic {
    align-items: center;
}

.asc {
    align-self: center;
}

.ass {
    align-self: flex-start;
}

.gap {
    gap: 5px;
}

.fg_1 {
    flex-grow: 1;
}

.fg_3 {
    flex-grow: 3;
}

.fg_5 {
    flex-grow: 5;
}

.fg_7 {
    flex-grow: 7;
}

.fg_9 {
    flex-grow: 9;
}

.grid {
    display: grid;
}

.g_8_2 {
    grid: 30px 30px 30px 30px 30px 30px 30px 30px/ 50% 50%;
    gap: 5px;
}

.g_4_2 {
    grid: 30px 30px 30px 30px / 50% 50%;
    gap: 5px;
}

.g_6_5 {
    grid: auto auto auto auto auto auto / 20% 20% 20% 20% 20%;
}

.g_2_5 {
    grid: auto auto / 20% 20% 20% 20% 20%;
}

.g_7_6 {
    grid: auto auto auto auto auto auto auto / 17% 16% 17% 17% 16% 17%;
}

.g_2_6 {
    grid: auto auto / 17% 16% 17% 17% 16% 17%;
}

.g_5_3 {
    grid: auto auto auto auto auto / 33% 33% 34%;
}

.g-auto_2_3 {
    grid: auto auto / auto auto auto;
}

.g-com_4_4 {
    grid: auto auto auto auto / 7% 13% 20% 60%;
}

.g_4_4 {
    grid: auto auto auto auto / 25% 25% 25% 25%;
}

.g_6_4 {
    grid: auto auto auto auto auto auto / 25% 25% 25% 25%;
}

.g_5_2 {
    grid: auto auto auto auto auto / 50% 50%;
}

.g_2_2 {
    grid: auto auto / 50% 50%;
}

.pic {
    place-items: center;
}

.col_2 {
    grid-column: span 2;
}

.border {
    border: 1px solid black;
}

.border-lr {
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.border-b {
    border-bottom: 1px solid black;
}

.border-bg {
    border-bottom: 1px solid grey;
}

.banner_468 {
    width: 468px;
    height: 60px;
}

.h_25 {
    height: 25px;
}

.h_50 {
    height: 50px;
}

.h_100 {
    height: 100px;
}

.h_150 {
    height: 150px;
}

.h_200 {
    height: 200px;
}

.h_300 {
    height: 300px;
}

.h-max {
    height: 100%;
}

.min-h_100 {
    min-height: 100px;
}

.w_20 {
    width: 20px;
}

.w_50 {
    width: 50px;
}

.w_75 {
    width: 75px;
}

.w_100 {
    width: 100px;
}

.w_150 {
    width: 150px;
}

.w_200 {
    width: 200px;
}

.w_250 {
    width: 250px;
}

.w_300 {
    width: 300px;
}

.w_350 {
    width: 350px;
}

.w_400 {
    width: 400px;
}

.w_500 {
    width: 500px;
}

.w_600 {
    width: 600px;
}

.w_700 {
    width: 700px;
}

.w_790 {
    width: 790px;
}

.w_800 {
    width: 800px;
}

.w_1200 {
    width: 1200px;
}

.max-w_1200 {
    max-width: 1200px;
}

.min-w_500 {
    min-width: 500px;
}

.w-max {
    width: 100%;
}

.w-half {
    width: 50%;
}

.p_5 {
    padding: 5px;
}

.m_5 {
    margin: 5px;
}

.fr {
    float: right;
}

.fl {
    float: left;
}

.cb {
    clear: both;
}

.ye {
    background: #FFFF99;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    border: 1px solid black;
    border-radius: 5px;
}

.fixed {
    position: fixed;
}

.bottom {
    bottom: 0;
}

.font-h {
    font-weight: 800;
}
