﻿.main_content {
    padding: 20px 0;
}

.main_content .search {
    text-align: center;
    padding-bottom: 1.5vw;
}

.main_content .search .form {
    position: relative;
    width: 485px;
    max-width: 100%;
    height: 45px;
    margin: 0 auto;
    border: 2px solid #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
}

.main_content .search input {
    width: 100%;
    height: 100%;
    text-indent: 2em;
    background-color: White;
}

.main_content .search button {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    outline: none;
    width: 120px;
    height: 100%;
    border: none;
    background-color: #ff2864;
    color: #fff;
    font-size: 16px;
}

.main_content .search button::after {
    position: absolute;
    right: 25px;
    top: 50%;
    margin-top: -7px;
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.main_content .search button::before {
    position: absolute;
    right: 25px;
    top: 50%;
    margin-top: 3px;
    content: "";
    width: 4px;
    height: 6px;
    background-color: #fff;
    transform: rotate(-45deg);
}

.main_content .list_items_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px;
}

.main_content .list_items .title {
    font-size: 14px;
    line-height: 25px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.main_content .list_items .item {
    position: relative;
    padding: 15px;
    width: calc(100% / 3);
}

.main_content .list_items .item::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    margin: 5px;
    border: 1px solid #ccc;
    z-index: -1;
}

.main_content .list_items .image img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

.main_content .list_items .options {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-left: 1px;
    margin-right: -1px;
}

.main_content .list_items .option {
    width: calc(100% / 2);
    text-align: center;
    border: 1px solid #ccc;
    margin-bottom: -1px;
    margin-left: -1px;
}


.main_content .list_items .option a {
    font-size: 12px;
    color: #585858;
    padding: 10px 15px;
    display: block;
}

@media (max-width: 1220px) {
    .main_content .list_items.container {
        width: 100%;
    }
}

@media (min-width: 993px) {
    .main_content {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .main_content .list_items .option,
    .main_content .list_items .item {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .main_content .list_items .option {
        width: calc(100% / 3);
    }
    .main_content .list_items .item {
        width: 100%;
    }
}