<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.honor {
            width: 100%;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            align-items: center;
        }

        .honor .honor_box {
            width: 890px;
            height: 240px;
            background-color: #fff;
            border: 1px solid #fff;
            box-shadow: 0px 0px 10px rgba(163, 166, 171, 0.25);
            border-radius: 6px;
            box-sizing: border-box;
            padding: 20px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            transition: 0.5s ease;
            margin-bottom: 30px;
        }

        .honor .honor_box .honor_image {
            width: 285px;
            height: 190px;
        }

        .honor .honor_box .center_info {
            width: 100px;
            height: 150px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
        }

        .honor .honor_box .center_info .date {
            text-align: center;
            color: #0066ba;
            font-weight: 700;
            position: relative;
        }

        .honor .honor_box .center_info .date .month {
            font-size: 20px;
        }

        .honor .honor_box .center_info .date .year {
            font-size: 14px;
            text-align: left;
        }

        .honor .honor_box .center_info .date .decorative_line {
            position: absolute;
            width: 50px;
            height: 1px;
            background-color: #767A81;
            right: -60px;
            top: 12px;
        }

        .honor .honor_box .center_info .arrow {
            width: 49px;
            height: 40px;
        }

        .honor .honor_box .center_info .arrow .line .right_triangle {
            width: 0;
            height: 0;
            border-top: 5px solid transparent;
            border-left: 11px solid #8B9097;
            border-bottom: 5px solid transparent;
            position: absolute;
            right: -10px;
            top: -4px;
            transition: 0.5s ease;
        }

        .honor .honor_box .center_info .arrow .line {
            position: relative;
            width: 30px;
            height: 2px;
            background-color: #8B9097;
            transition: 0.5s ease;
        }

        .honor .honor_box .right_info {
            width: 400px;
            height: 145px;
            margin-left: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            text-align: left;
        }

        .honor .honor_box .right_info .right_info_title {
            width: 400px;
            font-size: 16px;
            color: #062137;
            transition: 0.5s ease;
            font-family:"SourceHanSansCN", sans-serif;
        }

        .honor .honor_box .right_info .right_info_content {
            width: 400px;
            font-size: 14px;
            color: #8B9097;
            font-family:"SourceHanSansCN", sans-serif;
        }

        .honor .honor_box:hover {
            border: 1px solid #0066ba !important;
        }

        .honor .honor_box:hover .center_info .arrow .line .right_triangle {
            border-left: 11px solid #0066ba !important;
        }

        .honor .honor_box:hover .center_info .arrow .line {
            background-color: #0066ba !important;
        }

        .honor .honor_box:hover .right_info .right_info_title {
            color: #0066BA !important;
        }</pre></body></html>