
body{
    margin: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Microsoft YaHei";
    background-color: #f5f5f5;
    font-size: 14px;
}
*{
    box-sizing: border-box;
}



.crumbs{
    width: 1200px;
    margin:auto;
    margin-top: 20px;
    color: #444;
    cursor: pointer;
    font-size: 12px;
}
.crumbs a{
    color: #444;
}
.crumbs a:hover{
    color: #68a4f8;
}

.main_part{
    flex: 1;
    /* background-color: pink; */
    margin: auto;
    margin-top: 20px;
    width: 1200px;
    display: flex;
    justify-content: space-between;
}
/* 左边 */
.main_part .left_content{
    width: 876px;


}



/* 每个月份的信息模块 */
.month_info_box{
    min-height: 200px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 37px;
    border-radius: 8px;
    padding-bottom: 6px;
}

.month_info_box .month_name{
    color: white;
    position: relative;
    height: 66px;
    background: linear-gradient(90deg,#6CAEFF,#6895FF);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 6px 6px 0 #699dff59;
    text-align: center;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;

}
.month_info_box .month_name span{
    line-height: 66px;
    font-weight: 600;
}
.month_info_box .month_name .number{
    font-size: 38px;
    margin-bottom: 6px;
    margin-right: 6px;
}
.month_info_box .month_name .label{
    position: absolute;
    width: 22px;
    height: 46px;
}
.month_info_box .month_name .label.circle1{
    top: -11px;
    left: 24px;
}
.month_info_box .month_name .label.circle2{
    top: -11px;
    left: 86px;
}
.month_info_box .month_name .label.circle3{
    top: -11px;
    right: 86px;
}
.month_info_box .month_name .label.circle4{
    top: -11px;
    right: 24px;
}

.month_info_box .table_outer{
    margin-bottom: 20px;
    margin: 0 24px 20px;

    /* background-color: pink; */
}

.month_info_box .table_outer .table_type_name{
    position: relative;
    height: 32px;
    width: 120px;
    font-size: 16px;
    font-weight: Bold;
    color: #fff;
    z-index: 1;
    text-align: center;
    line-height: 32px;
    margin-bottom: -1px;
    /* margin-left: 1px; */
}
.month_info_box .table_outer .table_type_name img{
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 32px;
}
.month_info_box .table_outer .table_type_name span{
    z-index: 1;
    position: relative;
}

.month_info_box .table_outer .table_box{
    width: 100%;
    background-color: white;
}

/* 表格 */
.my_table{
    border-color: #fff;
    border-collapse:collapse
}

.my_table td{
    border-color: #E3E3E3;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.my_table tr:hover{
    background-color: #f6f9ff;

}

.my_table tr{
    height: 38px;
    font-size: 14px;
    color: #444;
    border-color: #E3E3E3;
    cursor: default;
}
.my_table tr.table_head{
    background-color: #f7f7f7;
    font-weight: 600;
}

.my_table  td{
    text-align: center;
}

.myblue{
    color: #69a4f9;
}
.my_table tr td a:hover{
    color: #69a4f9;
}


/* end--每个月份的信息模块------------- */






/* 、右边 */
.main_part .right_content{
    width: 300px;
    /* background-color: skyblue; */
}















.nav_box{
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    padding-bottom: 10px;
    margin-top: 40px;
}
.nav_tilte{
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 16px;
    border-bottom: 2px solid #68a4f8;
    margin-bottom: 20px;
}

.nav_box_outer{
    /* display: flex; */
    /* flex-wrap: wrap; */
}
.nav_part{
    width: 100%;
    /* margin-right: 16px; */
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #f5f5f5;

}
.nav_box_outer .nav_part:nth-child(4n){
    /* margin-right: 0; */
}
.part_title{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
}
.nav_part ul{
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    padding-right: 10px;
}
.nav_part ul li{
    margin-left: 12px;
    margin-bottom: 10px;
}
.nav_part ul li a:hover{
    color: #6895FF !important;
}


.news_box{
    padding: 18px 24px;
    background-color: #fff;
    border-radius: 8px;
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.news_box .news_title{
    font-size: 16px;
    padding-bottom: 12px;
    font-weight: bold;
}
.news_box li{
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}
.news_box li a{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}
.news_box li a:hover{
    color: #6895FF;
}
.news_box li .dot{
    width: 8px;
    height: 6px;
    margin-right: 5px;
}



/* 城市的 */
.city_kaoshi{
    display: flex;
    flex-wrap: wrap;
}
.city_kaoshi li{
    width: 110px;
    margin-right: 30px;
}
.city_kaoshi li:nth-child(2n){
    margin-right: 0;
}

.header .header-content{
    width: 1200px;
}
.header-content ul li a{
    font-size: 16px !important;
}
.header-content a{
    font-size: 16px !important;
}

.bot-about {
    margin: auto;
    text-align: center;
    color: #999;
    margin-top: 20px;
    padding: 20px 50px;
    text-align: center;
    color: #666;
    font-size: 14px;
    width: 1200px;
}

.wenzi {
    padding: 12px 0px 12px 0px;
    text-align: center;
    border-top: 1px solid #000000;
    border-top: 0px !important;
    line-height: normal;
    font-size: 14px !important;
}

.footer .notice {
    text-align: center;
    display: block;
    margin-top: 15px;
    font-size: 14px !important;
}

.footer {
    margin-top: 0px !important;
    width: 100%;
    background-color: #666666;
    color: #999;
}

.footer a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.top_back{
    margin: auto;
    background-image: url("https://imgbdb4.bendibao.com/xcxbdb/20243/12/2024312111844_58796.png");
    background-position: center;
    background-size: 1920px auto;
    /* background-size: 100% 250px ; */
    height: 250px;
    background-repeat: no-repeat;
    width: 100%;
}

.top_back .top_info{
    width: 1200px;
    margin: auto;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}
.top_back .top_info .title .time{
    color: #ffe641;
}
.top_back .top_info .title{
    width: fit-content;
    max-width: 860px;
    margin: 0;
    border: none;
    color: #ffffff;
    text-shadow: 0 4px 8px #085edf99;
    font-family: "Microsoft YaHei";
    font-size: 58px;
    font-style: normal;
    font-weight: Bold;
    line-height: normal;
    letter-spacing: 2.6px;
}

.top_back .top_info .tips{
    width: fit-content;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #4587F8;
    border-radius: 6px;
    background: #FFF;
    padding: 0px 17px;
    margin-top: 12px;
}
