.title{
    padding: 35px 0 ;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.information_main{
    padding: 50px 0;
}

.information{
    padding: 10px 20px;
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.information:hover{
    -webkit-box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.information a{
    color: #333;
    text-decoration: none;
    display: block;
}

.information a:hover{
    color: #333;
}

.information a strong{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    /*display: block;*/
    font-weight: 600;
}

.information_content{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 12px;
    font-size: 14px;
    clear: both;
}

.information_content span{
    float: none !important;
    margin: 0 !important;
}

.information_dot{
    background-color: #000000;
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 10px;
}

@media screen and (max-width: 750px) {
    .hyg_banner, .w1200, .w1040 {
        width: 100%;
    }

    .information_main{
        padding: 30px 15px 10px;
        box-sizing: border-box;
    }

    .information{
        margin: 0 auto 20px;
        width: 100%;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .information a strong{
        font-size: 14px;
    }

    .information_content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
        font-size: 12px;
    }
    .information_content span {
        margin: 0;
    }
}

