html,
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.slider {
    width:100%;
    margin: 0px auto;
}

.slick-slide {
    margin: 0px 5px;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black !important;
}


.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

/*ÈÕÀú²¿·Ö*/
.Calendar {
    background: #fff;
    overflow: hidden;
    clear: both;
}

.monthTxt {
    max-width: 240px;
    height: 26px;
    line-height: 26px;
    margin: 20px auto;
    position: relative;
    text-align: center;
}

.monthTxt span {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}

.monthTxt a {
    display: unset !important;
    width: 26px;
    height: 26px;
}

.monthTxt .monthTxtArrowleft {
    background: url(/images/arrowleft.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 0;
}

.monthTxt .monthTxtArrowright {
    background: url(/images/arrowright.png) no-repeat center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.calendarDayDiv {
    margin: 1px 1px;
    height: 30px;
    background: #ededed;
    line-height: 30px;
    text-align: center;
}

.calendarDayDiv a {
    display: block;
    border-right: #fff 1px solid;
    padding: 0 11px;
    font-size: 14px;
    font-family: "Arial";
    transition: all 0.3s ease-in-out;
}

.calendarDayDiv a.red {
    color: #a4242a;
}

/* .calendarDayDiv a.black{ color: #333;} */
.calendarDayDiv a:hover {
    background: #a4242a;
    color: #fff;
}