.page-automotive {
    background: #ffffff
}

.automotive-fabrication .fabrication__box {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0px 20px 20px;
    box-sizing: border-box
}

.automotive-fabrication .fabrication__box .fabrication__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch
}

.automotive-fabrication .fabrication__box .fabrication__item {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #FAFAFA
}

.automotive-fabrication .fabrication__box .fabrication__item-top {
    width: 100%;
    min-height: 80px;
    padding: 20px 30px;
    box-sizing: border-box;
    color: #333333;
    background: #FAFAFA;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease
}

.automotive-fabrication .fabrication__box .fabrication__item-title {
    flex: 1;
    font-weight: 500;
    font-size: 32px;
    text-align: left
}

.automotive-fabrication .fabrication__box .fabrication__item-arrow {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    box-sizing: border-box;
    font-weight: 400;
    color: #666666;
    font-size: 16px;
    line-height: 28px;
    position: relative;
    cursor: pointer
}

.automotive-fabrication .fabrication__box .fabrication__item-arrow::after {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 2px solid #666666;
    border-bottom: 2px solid #666666;
    position: absolute;
    top: 55%;
    right: 10px;
    transform: translateY(-50%) rotate(-46deg);
    transition: all 0.3s ease
}

.automotive-fabrication .fabrication__box .fabrication__item-description {
    width: 100%;
    padding: 45px 30px;
    box-sizing: border-box;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
    display: none
}

.automotive-fabrication .fabrication__box .fabrication__item-description.active {
    display: block
}

.automotive-fabrication .fabrication__box .fabrication__item-top.active {
    background: #EB6100;
    color: #ffffff
}

.automotive-fabrication .fabrication__box .fabrication__item-top.active .fabrication__item-arrow.fabrication__item-arrow::after {
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    top: 50%;
    transform: translateY(-50%) rotate(46deg)
}

@media screen and (max-width:760px) {
    .automotive-fabrication .fabrication__box .fabrication__item-top {
        padding: 20px 20px
    }

    .automotive-fabrication .fabrication__box .fabrication__item-title {
        font-size: 18px
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .automotive-fabrication .fabrication__box .fabrication__item-top {
        padding: 20px 20px
    }

    .automotive-fabrication .fabrication__box .fabrication__item-title {
        font-size: 25px
    }
}