.page_container {
    margin: 0 auto;
    color: #333333;
    padding: 30px 10px;
}

.product_classification_container {
    background: #FFFFFF;
    box-shadow: 0px 6px 16px 0px rgb(172 173 185 / 30%);   
    margin: 1rem auto;
}

.product_item {
    display: flex; 
    border-bottom: 1px solid #f8f8f8;
}

.product_title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background: #f8f8f8;
    font-size: 15px;
    width: 5rem;
    flex: none;
}

.product_title.active {
    background: #dd2828;
    color: #FFFFFF;
}


.industry_classification {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.industry_classification > ul {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
}

.classification_name {
    list-style: none;
    width: 6rem;
    border: 1px solid #C2C2C2;
    border-radius: 4px;
    margin: 0.2rem;
    font-size: 15px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    line-height: 15px;
}

.classification_name:hover {
    border-color: #dd2828;
    color: #dd2828;

}
.classification_name.selected {
    color: #FFFFFF !important;
    background: #dd2828;
    border-color: #dd2828;
}

.classification_name a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
}

.classification_name:hover > a {
    color: #dd2828;
}

.classification_name.selected > a {
    color: #FFFFFF;
}

.industry_title {
    font-size: 20px;
    padding-top: 20px;
    text-align: center;
}

.section_title {
    font-size: 16px;
    margin: 1.25rem 0;
    font-weight: bold;
    position: relative;
    padding-left: 0.8rem;
}

.section_title::after {
    position: absolute;
    top: 1px;
    width: 0.3rem;
    height: 1.6rem;
    content: "";
    background: #dd2828;
    left: 0;
}

.industry_demand {
    display: block;
}

.industry_demand > img {
    margin-top: 1.5rem;
}

.industry_demand > ul {
    margin: 0;
}

.industry_demand_desc {
    font-size: 15px;
    line-height: 2em;
}

.solution_detail {
    line-height: 2em;
    font-size: 15px;
}

.display_large_screen {
    display: none;
}

.display_mobile {
    display: block;
}