html {
    background-color: #f9f9f9;
}

.mySwiper {
    height: 480px;
}

.mySwiper .swiper-slide {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px;
}

.split {
    display: flex;
}

.split-left, .split-right {
    flex: 1;
}

.split-left {
    padding-right: 30px;
}

.split-right {
    padding-left: 30px;
}

.news {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 0 30px;
    height: 100%;
}

.news-header {
    position: relative;
    font-size: 16px;
    padding: 15px 8px 15px 4px;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
}

.news-header:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #003eb3;
    border-radius: 2px;
}

.more {
    color: #666666;
    font-size: 12px;
    cursor: pointer;
}

.news ul {
    padding: 15px 8px 24px;
}

.news li {
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    cursor: pointer;
}

.news a {
    display: flex;
    text-decoration: none;
    color: #333333;
}

a:hover {
    color: #003eb3;
}

.news .title {
    flex: 1;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
}

