.carouse_head .swiper-slide a{
    display: block;
    width: 100%;
}

.carouse_head .swiper-slide img {
    width:100%;
    height: auto;
    aspect-ratio: 4;
}

.carouse_footer {
    max-width: 1200px;
}

.carouse_footer .swiper-slide {
    max-width:200px ;
}

.carouse_footer .swiper-slide a{
    display: block;
    width: 100%;
}

.carouse_footer .swiper-slide img {
   max-width: 100%
}

.carouse_footer .swiper-wrapper {
   align-items: center;
}

.examinations {
    width: 100%;
    height: 120px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3c4e96;
    color: #fff;
}

.examinations span {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.examinations span i {
    font-style: normal;
    font-size: 16px;
}

.examinations span em {
    font-style: normal;
    font-size: 28px;
    font-weight: bold;
}

.meun_list {
    max-width: 1200px;
    margin: 20px auto;
}

.meun_item {
    margin: 10px;
    width: 100%;
}

.meun_item h2 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #ccc 2px outset;
}

.meun_item h2 a {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.meun_item_content {
    display: flex;
    flex-direction: column;
}

.meun_item_content li {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom:1px dashed #ccc;
}

.meun_item_content li .classify {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meun_item_content li .classify span {
    font-size: 12px;
    color: #333;
    padding: 5px 10px;
    background-color: #8ca3fc;
    border-radius: 5px;
    border: 1px solid #677dd3;
}

.meun_item_content li .time {
    font-size:12px;
    text-align: right;
}

.meun_item_content li:last-child {  
    border-bottom: none;
}

.meun_item_content img {
    max-width:200px;
}

.meun_item_content_div {
    flex: 1;
    padding-left:10px;
}

.meun_item_content_div h3 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.meun_item_content_div p {
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin: 10px 0;
}

@media (max-width:600px) { 
    .examinations span {
        width: 33.3%;
    }

    .meun_item_content img {
        width: 100px;
    }
    .meun_item_content_div p {
        -webkit-line-clamp: 3;
    }
}