#reactor{
    color: #898989;
}
.reactor{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.sub-title-text{
    margin: 0px;
    color: #fff;
    font-weight: 300;
    text-align: right;
    line-height: 35px;
}
.sub-title-text span{
    font-weight: 700;
}
dl{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
dt,dd{
    color: #ccc;
}
dt{
    margin-top: 5px;
    font-size: 8px;
}
dd{
    font-size: 18px;
    font-weight: 300;
}

.reactor-img{
    max-width: 500px;
}
.imgbox{
    width: 150px;
}
.dd-flex{
    display: flex;
    align-items: end;
}
.text-flex{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}
.reactor-more{
    width: 100%;
    background-color: #666;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
    margin-top: 50px;
}
@media screen and (max-width:1280px) {
    .text-flex .sub-title-text:last-child{
        font-size: 25px;
    }
}
@media screen and (max-width:1024px) {
    .text-flex .sub-title-text:last-child{
        font-size: 22px;
    }
}
@media screen and (max-width:860px) {
    .text-flex{
        flex-direction: column;
    }
    .text-flex .sub-title-text:last-child{
        font-size: 20px;
    }
}
@media screen and (max-width:550px) {
    .text-flex .sub-title-text:last-child{
        display: flex;
        flex-direction: column;
        font-size: 18px;
        line-height: 20px;
    }
    .reactor-more{
        padding: 40px 20px;
    }
    .dd-flex{
        flex-direction: column;
        align-items: center;
    }
    
    .sub-title-text {
        line-height: 23px !important;
    }
}