.detail-content {
    position: relative;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}

.detail-content img {
    border-radius: 10px;
}

.direct-content {
    margin: 80px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.direct-content h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.direct-content h4 span {
    color: rgba(0, 0, 0, 0.8);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
}

.traffic {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 640px;
}

.traffic div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.di-desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
}



.traffic span {
    color: #00317C;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    width: 180px;
}



.traffic p {
    color: #19284E;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.traffic .line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

@media(max-width:900px) {
    .detail-content {padding:20px;flex-wrap:wrap;box-sizing:border-box;}
    .detail-content img {width:100%;}
    .direct-content {flex-wrap:wrap;margin:40px 0;gap:30px}
    .direct-content h4 {font-size:24px;}
    .direct-content h4 span {font-size:20px;}
    .di-desc {font-size:16px;}
    .traffic div {flex-wrap:wrap;}
    .traffic img {max-width:40px;}

}