﻿@charset "utf-8";
.history ul li{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0.4rem 0;
}
.history ul li .tit{
    font-family: Arial;
    font-size: 0.4rem;
    line-height: 0.34rem;
    font-weight: bold;
    text-align: right;
    width: 2rem;
    color: #862c88;
    white-space: nowrap;
}
.history ul li .hx{
    width: 1rem;
    height: 2px;
    background: #862c88;
    margin: 0.15rem 0.5rem;
}
.history ul li .con{
    width: calc(100% - 4rem);
}
.history ul li .con h2{
    font-size: 0.24rem;
    line-height: 0.34rem;
    color: #333;
    font-weight: normal;
    margin-bottom: 0.1rem;
}
@media only screen and (max-width: 1040px){
    .history ul li{
        margin: 30px 0;
    }
    .history ul li .tit{
        font-size: 30px;
        line-height: 1;
        width: 150px;
    }
    .history ul li .hx{
        width: 100px;
        height: 2px;
        margin: 14px 20px;
    }
    .history ul li .con{
        width: calc(100% - 290px);
    }
    .history ul li .con h2{
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 5px;
    }
}
@media only screen and (max-width: 768px){
    .history ul li{
        flex-wrap: wrap;
        margin: 20px 0;
    }
    .history ul li .tit{
        width: 100%;
        text-align: left;
        font-size: 24px;
        line-height: 1.5;
    }
    .history ul li .hx{
        display: none;
    }
    .history ul li .con{
        width: 100%;
    }
}
@media only screen and (max-width: 560px){
    .history ul li{
        margin: 10px 0;
    }
    .history ul li .con h2{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}