.group_title_line{
    width: 100%;
    height: 34px;
    line-height: 34px;
    background: rgb(204,204,204);
    background: linear-gradient(90deg, rgba(204,204,204,1) 0%, rgba(248,248,248,1) 100%);
    color: #555555;

    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
      
    box-sizing: border-box;
    padding: 0 10px 0 10px;

    display: grid;
    grid-template-columns: auto 80px;
    grid-template-rows: 34px;
}

.group_title{
    grid-column: 1;
    grid-row: 1;  
}

.group_title h1{
    text-align: left;
    font-size: 15px;
    font-weight: bold; 
    margin: 0;
    padding: 0;
}

.group_map{
    grid-column: 2;
    grid-row: 1;  
}

.group_content{
    margin-top: 10px;
    color: #666666;
    height: calc(100% - 54px);
}

.group_content_content{
    box-sizing: border-box;

    width: 100%;
    height: 100%;
    overflow: auto;

    text-align:left;
    line-height: 22px;
}

.group_overview {
    width: 100%;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.group_overview1{
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
}

.group_overview2{
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
}

.group_overview3{
    grid-column: 3;
    grid-row: 1;
    overflow: hidden;
}

.group_overview4{
    grid-column: 4;
    grid-row: 1;
    overflow: hidden;
}

.group_overview_item{
    width: 100%;
    height: 400px;
    border: 1px solid #CCCCCC;
    color: #666666;
}

.group_overview_item:hover{
    border: 1px solid #000000;
    background: #EFEFEF;
}

.group_overview_item_title{
    line-height: 40px;
    height: 40px;
    padding: 0 8px 0 8px;
    box-sizing: border-box;
    font-size: 18px;
    color: #FFFFFF;
    background-color: #bb0c19;
    text-align: center;
}

.group_overview_item_img img{
    max-width: 100%;
}

.group_overview_item_text{
    padding: 8px;
    box-sizing: border-box;
}