.justify-content {
    text-align: justify;       /* 左右對齊 */
    text-justify: inter-word;  /* 調整方式：單字間距 */
    word-break: break-word;    /* 需要時斷字 */
    overflow-wrap: break-word; /* 保證長字可換行 */

}

.justify-content2 {
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}