﻿
.header_search {
}

.header_search_tool {
    position: relative;
    width: 60%;
    min-width: 300px;
}

    .header_search_tool * {
        font-size: 1rem;
    }

    .header_search_tool .input-group {
        height: 60px;
        border: 1px solid #1079E4;
        border-radius: 15px;
    }

        .header_search_tool .input-group .search_type {
            border-color: white;
            background-color: white;
            max-width: 200px;
            text-align: center;
            border-radius: 15px;
        }

            .header_search_tool .input-group .search_type :hover {
                font-weight: bold;
            }

            .header_search_tool .input-group .search_type:focus {
                box-shadow: none;
            }

        .header_search_tool .input-group .search_keyword {
            border-radius: 15px;
            border: none;
        }

            .header_search_tool .input-group .search_keyword:focus {
                box-shadow: none;
            }

    .header_search_tool .search_btn {
        top: 11px;
        right: 12px;
        background-color: #1079E4;
        color: white;
        border-radius: 10px;
        z-index: 10;
    }

.header_search_logo {
    height: 64px;
}

.header_search_title {
    color: white;
    font-weight: bold;
    font-size: 44px;
    color: #FFFFFF;
    font-style: italic;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 3px;
    line-height: 64px;
    margin: 0;
}

.subcategorylist {
    width: 240px;
}

.categoryname,
.subcatname {
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    cursor: pointer;
    color: black;
}


    .subcatname.active {
        color: #1079E4;
        font-weight: bold;
    }

    .subcatname:hover {
        /*font-weight: bold;*/
        text-shadow: #1079E4 0 0 10px;
        /*color:white;*/
    }

.categoryname {
    font-size: 18px;
    position: relative;
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
}
/*
    .categoryname:before {
        content: '';
        z-index: 0;
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 1px;
        background: #1079E4;
        opacity: 0.6;
        -transform: skewX(45deg); 
        -filter: blur(3px);
        -box-shadow: #1079E4 0 0 2px; 
     } */

.articlelist {
    min-height: 800px;
    flex: 0;
    width: 80%;
}

.articlelist_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.article {
    width: 32%;
    display: flex;
    flex-direction: column;
    padding: 20px 5px;
    align-items: center;
    height: 420px;
    font-size: 12px;
    position: relative;
    background-color: white;
    margin-bottom: 20px;
    cursor: pointer;
}

    .article * {
        font-size: 14px;
    }

.article_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width:100%; 
}

.article_areas {
    display: flex;
    margin: 5px 5px;
    flex-wrap: wrap;
}

.article_area {
    font-size: 12px;
    background-color: lightskyblue;
    padding: 3px 5px;
    color: white;
    margin: 1px 1px;
}

.article_title {
    text-decoration: none;
    color: #444;
    font-weight: bold;
}

.article:hover {
    background-color: #eff7ff;
}

.article_address {
    width:100%;
    text-wrap: nowrap;
    overflow:hidden;
    text-align:center;
}

.article_title:hover {
    color: #1079E4;
}

.article_image {
    height: 150px;
    width: 95%;
    object-fit: contain;
    object-position: center;
    border: 1px solid #ddd;
    background-color: #eee; 
}

.article_desc {
    width: 90%;
    color: #777;
    height: 60px;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}

.article_keyword {
    color: red;
}

.article_desc, .article_category, .article_date {
    font-size: 14px;
}

.article_category {
    color: orange;
    opacity: 0.7;
    margin-bottom: 5px;
}

.article_link {
    position: absolute;
    width: 90%;
    bottom: 15px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: white;
    text-decoration: none;
    color: #777;
}

    .article_link:hover {
        background-color: #1079E4;
        color: white;
    }

.article_date {
    margin-top: 5px;
    color: #bbb;
}

.article_new {
    font-size: 12px;
    padding: 1px 2px 1px 2px;
}

.article_pager .page-item .page-link {
    color: #333;
    cursor: pointer;
}

    .article_pager .page-item .page-link:hover {
        color: #1079E4;
    }

    .article_pager .page-item .page-link.disabled {
        cursor: default;
    }

    .article_pager .page-item .page-link.active {
        color: white;
        font-weight: bold;
    }
