.sol-section {
    position: relative;
    height: 700px;
    width: 100%;
    background-color: #000;
}

.sol-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sol-content>h1 {
    z-index: 1;
    margin: 20px auto;
    margin-bottom: 20px;
}

.sol-content>p {
    margin: 20px auto;
    font-size: 16px;
    max-width: 800px;
    color: #eee;
    z-index: 1;
}

.lr-section {
    position: relative;
    height: 700px;
    width: 100%;
}

.lr-section:nth-of-type(even) {
    background-color: #fff;
}

.lr-section:nth-of-type(odd) {
    background-color: #fafafa;
}

.lr-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.lr-section:nth-of-type(even)>.lr-content {
    flex-direction: row;
}

.lr-section:nth-of-type(odd)>.lr-content {
    flex-direction: row-reverse;
}

.lr-content>.lr-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-text {
    width: 100%;
    padding: 60px;
}

.lr-section:nth-of-type(even)>.lr-content>.lr-item {
    align-items: flex-start;
}

.lr-section:nth-of-type(odd)>.lr-content>.lr-item {
    align-items: flex-end;
}

.lr-item img {
    width: 100%;
    flex-shrink: 0;
}

.lr-item h4 {
    font-size: 28px;
    color: #0b0b0b;
    font-weight: 200;
    margin-bottom: 20px;
}

.lr-item p {
    font-size: 16px;
    max-width: 800px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 2;
}

.sol-section {
    width: 100%;
    background-color: #F7F7F7;
}

.sol-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 100px 0;
}

.sol-line-item {
    display: block;
    background-color: #fff;
    margin-top: 20px;
}

.sol-line-item>.info {
    width: 100%;
    padding: 20px;
    position: relative;
}

.sol-line-item>.info>.date {
    position: absolute;
    top: -30px;
    left: 0;
    background-color: #fff;
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
}

.sol-line-item>.cover {
    position: relative;
    width: 100%;
    height: 240px;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee;
    overflow: hidden;
    background-image: url(../img/news_cover.png);
}

.sol-line-item>.cover>img {
    width: 100%;
    min-height: 100%;
}

.sol-line-item h4 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.sol-line-item p {
    color: #aaa;
}

.sol-line-item>.info>.title-border {
    position: relative;
    margin: 10px 0;
    width: 100%;
    height: 1px;
    display: block;
    background-color: #eee;
}

.sol-line-item>.info>.title-border::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: 500ms;
}

.sol-line-item:hover>.info>.title-border::before {
    width: 100%;
}

.eg-section .eg-content:nth-child(n+2) h2 {
    display: none;
}

.eg-section .eg-content:nth-child(n+2) {
    padding-top: 0;
}


/* .eg-section .eg-content:first-child {
    display: inline-block;
} */