﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FCFDFF;
    min-height: 100vh;
    position: relative;
    min-width: 1200px;
    background-color: #f3f3f3;
}

.header, .section, .footer {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.header {
    width: 100%;
    height: 64px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.04);
    flex: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.section {
    flex: 1;
}

.footer {
    width: 100%;
    height: 170px;
    background: #DBE8FE;
    flex: none;
}

.content {
    width: 1200px;
}

.header > .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 64px;
}

    .header > .content > .logo-img {
        width: 190px;
        height: 44px;
    }


.menu-box {
    height: 64px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
}

.menu {
    margin: 0 23px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #45474D;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.04);
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

    .menu.active {
        font-weight: 600;
    }

        .menu.active::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: -2px;
            right: -2px;
            height: 4px;
            background: #2E5EA5;
        }

.footer .content {
    padding: 25px 0 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer .top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .logo-img {
    width: 190px;
    height: 44px;
}

.footer .bottom {
    flex: none;
    width: 100%;
    height: 48px;
    padding-top: 12px;
    text-align: center;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #6F778A;
    font-style: normal;
    border-top: 1px solid rgba(187, 187, 187, 0.31);
}

.contact-way {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #6F778A;
    line-height: 28px;
    text-align: left;
    font-style: normal;
}

.section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

    .section > .routes-breadcrumb {
        flex: none;
        height: 36px;
    }

    .section > .content {
        flex: 1;
        display: flex;
        flex-direction: row;
    }

.left-image {
    width: 260px;
    height: 415px;
    margin-right: 40px;
}

.card-box {
    border-radius: 6px;
    background-color: #fff;
    padding: 40px;
    flex: 1;
    width: 900px;
}

.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 24px;
    cursor: pointer;
}

.date {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #9ba5af;
    font-weight: 700;
    text-align: center;
    margin-right: 16px;
    width: 47px;
}

.day {
    font-size: 24px;
}

.year-month {
    font-size: 12px;
}

.affiche {
    width: 757px;
    flex: none;
    display: flex;
    flex-direction: column;
    padding-left: 17px;
    border-left: 1px solid #d9d9d9;
}

    .affiche .title {
        color: #45474d;
        font-size: 16px;
    }

    .affiche .text {
        color: #45474d;
        font-size: 14px;
        margin-top: 12px;
        color: #999;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
