   .newslist {
            width: 810px;
            padding: 20px;
            box-sizing: border-box;
        }

        .newsitem {
            display: flex;
            flex-direction: column;
            position: relative;
            padding-bottom: 40px;

        }

        .newsitem::after {
            content: '';
            width: 1px;
            height: 100%;
            background-color: #e5e5e5;
            position: absolute;
            top: 14px;
        }

        .newsitem-date {
            margin-left: 29px;
            margin-top: 4px;
            line-height: 24px;
            font-size: 18px;
            color: #333;
            background-color: #f5f5f5;
            width: 200px;
            text-align: center;
            position: relative;
            font-weight: bold;
        }

        .newsitem-date::after {
            content: '';
            width: 9px;
            height: 9px;
            background-color: #ea4b35;
            border-radius: 50%;
            z-index: 2;
            position: absolute;
            top: 9px;
            left: -33px;
        }

        .newsitem-title {
            font-size: 18px;
            color: #333;
            margin-left: 29px;
            margin-top: 23px;
            font-family: MicrosoftYaHei-Bold;
            position: relative;
            font-weight: 900;
        }

        .newsitem-title::after {
            content: '';
            width: 14px;
            height: 1px;
            background-color: #e5e5e5;
            position: absolute;
            left: -29px;
            top: 10px;

        }

        .news-content {
            padding-bottom: 21px;
            border-bottom: 1px solid #ddd;
            margin-left: 29px;
            margin-top: 20px;

        }

        .news-content-title {
            font-family: MicrosoftYaHei;
            font-size: 18px;
        }

        .news-content-text {
            font-family: MicrosoftYaHei;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0px;
            color: #999999;
            margin-top: 16px;
        }