
.prop-string2 .prop-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 15px 0;
    color: #333;
    font-size: 14px;
	font-weight: bold;
    list-style: none;
    position: relative;
    padding: 0 10px 10px;
    border-bottom: 1px solid var(--border-color);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 500px) {
    .prop-string2 .prop-item {
        padding: 0 10px 5px;
    }
}

.prop-string2 .prop-name {
    max-width: 35%;
    padding-right: 5px;
    display: inline-block;
}

.prop-string2 {
    padding: 0;
    padding: 10px 0 0;
}

.prop-string2 .prop-spec {
    float: left;
    text-align: left;
    width: 55%;
    padding-left: 5px;
    z-index: 1;
}

.prop-string2 .prop-spec,
.prop-string2 .prop-name,
.prop-string2 .prop-unit {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    margin-bottom: -6px;
    color: #333;
}

.prop-string2 .name-group {
    position: relative;
    margin: 25px 0 5px;
    padding: 10px;
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    background: #f5f5f5;
}

.prop-string2 li:first-of-type {
    margin-top: 0;
}

.prop-string2 .prop-item {
    cursor: text;
}

.prop-name__inner,
.prop-spec__inner {
    background: var(--light-color);
}

@media (max-width: 425px) {
    .prop-string2 .prop-item {
        font-size: 12px;
    }
}