.main-wrapper {
    background-color: #F6F8FA;
}
.container {
    width: 1280px;
    padding: 0;
}
.banner {
    height: 420px;
    /*padding: 160px 0 0 320px;*/
    color: #F1F1F1;
    background: url('../images/banner.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner p {
    margin: 0;
    padding-bottom: 24px;
    font-size: 40px;
    font-weight: 600;
}
.banner span {
    font-size: 18px;
}
.banner a {
    width: 120px;
    height: 37px;
    margin-top: 32px;
    background-color: #1D78F4;
    border-radius: 6px;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    line-height: 37px;
    display: block;
}
.section-title {
    margin: 100px 0 60px;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #333333;
}
.section-title::after {
    content: '';
    width: 80px;
    height: 6px;
    margin: 8px auto 0;
    background-color: #1D78F4;
    display: block;
}
.section-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.section-box::after {
    content: '';
    width: 430px;
}
.section-programme-item {
    width: 416px;
    margin-top: 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 30px 1px rgba(29,120,244,0.06);
    overflow: hidden;
    cursor: pointer;
}
.section-programme-item:nth-child(-n+3) {
    margin-top: 0;
}
.section-programme-item:hover {
    box-shadow: 0 4px 30px 1px rgba(29, 120, 244, 0.2);
}
.programme-item-img {
    height: 244px;
}
.programme-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.programme-item-title {
    margin: 0;
    padding: 0 12px;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    line-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.section-case-item {
    width: 416px;
    height: 410px;
    padding: 24px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 30px 1px rgba(29,120,244,0.06);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.section-case-item:hover {
    box-shadow: 0 4px 30px 1px rgba(29,120,244,0.2);
}
.section-case-item:nth-child(-n+3) {
    margin-top: 0;
}
.case-item-logo > img {
    width: 100%;
    height: 156px;
    margin-bottom: 24px;
    object-fit: cover;
    flex: 0 0 auto;
}
.case-item-info {
    /*box-shadow: 0 -2px 30px 1px rgba(29,120,244,0.12);*/
    flex: 1 0 auto;
    border-radius: 16px;
}
.case-item-info h3 {
    margin: 0;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-item-info span {
    height: 53px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 28px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}
.case-item-info p {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #1D78F4;
}
.more {
    font-size: 16px;
    font-weight: 500;
    color: #1D78F4;
    flex: 0 0 auto;
}
.more:hover {
    color: #1D78F4;
}
.more img {
    width: 16px;
    height: 16px;
}