.home-carousel {
    width: 600px;
    height: 410px;
}

.home-carousel .slide {
    position: relative;
}

.home-carousel .slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.home-carousel .slider-dots {
    position: absolute;
    bottom: 15px;
    left: auto;
    right: 10px;
    transform: translateX(0);
    display: flex;
}

.home-carousel .slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray2);
    margin: 0 5px;
    cursor: pointer;
}

.home-carousel .slider-dots span.active {
    background: var(--white);
}

.home-banner {
    width: 100%;
    height: 460px;
    margin-bottom: 20px;
    /* padding-top: 80px;
    background-color: var(--blue); */
}

.home-headline {
    flex: 1;
}

.home-headline-top {
    justify-content: space-between;
}

.home-headline-title {
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    background-color: var(--blue);
    color: var(--white);
    display: inline-block;
    margin-bottom: 10px;
}

.home-headline-more a {
    color: var(--blue);
    font-size: 16px;
    line-height: 40px;
}

.home-headline-list {}

.home-headline-list ul {
    list-style: none;
}

.home-headline-list li {
    display: flex;
    line-height: 45px;
}

.home-headline-list li .home-headline-list-title {
    width: 450px;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.home-headline-list li .home-headline-list-title a {
    color: var(--black2);
    font-size: 16px;
}

.home-headline-list li .home-headline-list-title a:hover {
    color: var(--blue);
}

.home-headline-list li .home-headline-list-time {
    color: var(--gray2);
    flex: 1;
    text-align: right;
}

.home-activity-list {
    width: 780px;
    background-color: var(--bluebg);
    padding: 10px 20px;
    box-sizing: border-box;
}

.home-activity-list-category {
    width: 200px;
}

.home-activity-list-category ul {
    list-style: none;
    padding: 10px 0;
}

.home-activity-list-category li {
    cursor: pointer;
    padding: 6px 20px;
    line-height: 30px;
    border-radius: 5px;
    height: 30px;
    overflow: hidden;
}

.home-activity-list-category li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: text-top;
}

.home-activity-list-category li span {
    font-size: 16px;
    color: var(--black2);
}

.home-activity-list-category li.active {
    background-color: var(--blue);
}

.home-activity-list-category li.active img {
    filter: brightness(0) invert(1);
}

.home-activity-list-category li.active span {
    color: var(--white);
}

.home-activity-list-body {
    flex: 1;
}

.home-activity-list-list {
    background-color: #fff;
    width: 100%;
    padding: 10px;
    height: 340px;
    overflow: auto;
    box-sizing: border-box;
}

.home-activity-list-list ul {
    list-style: none;
}

.home-activity-list-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--borderColor);
    display: flex;
    gap: 10px;
}

.home-activity-list-list-img {
    width: 80px;
    height: 80px;
}

.home-activity-list-list-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.home-activity-list-list li a {
    color: var(--black2);
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.home-activity-list-list li a:hover {
    color: var(--blue);
}

.home-activity-list-list-time {
    color: var(--gray2);

}

.home-activity-calendar {
    flex: 1;
    background-color: var(--bluebg);
    padding: 10px;
    position: relative;
    z-index: 1;
}

.home-activity-calendar-body .el-calendar-table .el-calendar-day {
    height: 40px;
}

.home-activity-calendar-body .el-calendar__body {
    padding: 20px;
}

.home-activity-calendar-body .el-calendar-day {
    padding: 0 !important;
}

.home-activity-calendar-list {
    position: absolute;
    right: 393px;
    top: 0;
    bottom: 0;
    width: 510px;
    padding: 10px 20px;
    background-color: var(--bluebg);
    border-left: 20px solid #fff;
}

.home-providers {
    background-color: inherit;
    width: 780px;
}

.home-enterprises {
    flex: 1;
    background-color: var(--bluebg);
    padding: 10px;
}

.home-providers-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-providers-list-item {}

.home-providers-list-item-img {
    width: 100%;
    overflow: hidden;
}

.home-providers-list-item-img img {
    width: 100%;
    aspect-ratio: 1/.8;
    object-fit: scale-down;
    transition: transform 0.6s ease;
}

.home-providers-list-item-img:hover img {
    transform: scale(1.1);
}

.home-providers-list-item-text {}

.home-providers-list-item-text-name {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
    height: 20px;
    overflow: hidden;
}

.home-providers-list-item-text-attr {
    margin-bottom: 10px;
}

.home-providers-list-item-text-attr span {
    display: inline-block;
    padding: 0 10px;
    border-radius: 2px;
    background-color: var(--gray2);
    color: var(--white);
    font-size: 12px;
    line-height: 25px;
}

.home-providers-list-item-text-name a {
    color: var(--black2);
}

.home-providers-list-item-text-name a:hover {
    color: var(--blue);
}

.home-enterprises-list {}

.home-enterprises-list-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--borderColor);
}

.home-enterprises-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.home-enterprises-list-item-img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.home-enterprises-list-item-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.home-enterprises-list-item-text {
    flex: 1;
}

.home-enterprises-list-item-text-name {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
    height: 20px;
    overflow: hidden;
}

.home-enterprises-list-item-text-name a {
    color: var(--black2);
}

.home-enterprises-list-item-text-name a:hover {
    color: var(--blue);
}

.home-enterprises-list-item-text-attr {
    color: var(--gray2);
    font-size: 12px;
}

.home-enterprises-list-item-text-attr span {
    display: inline-block;
    margin-right: 10px;
}

.home-services-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.home-services-list-item {}

.home-services-list-item-img {
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

.home-services-list-item-img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: scale-down;
    transition: transform 0.6s ease;
}

.home-services-list-item-img:hover img {
    transform: scale(1.1);
}

.home-services-list-item-text {
    text-align: center;
}

.home-services-list-item-text-name {
    font-size: 16px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
}

.home-services-list-item-text-attr {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
}

.home-services-list-item-text-attr a {
    color: var(--gray2);
}

.home-services-list-item-text-name a {
    color: var(--black2);
}

.home-services-list-item-text-name a:hover {
    color: var(--blue);
}

.home-flex-box {
    flex: 1;
    background-color: var(--bluebg);
    padding: 10px 20px;
}

.home-flex-box-list {}

.home-flex-box-list ul {
    list-style: none;
}

.home-flex-box-list ul li {
    border-bottom: dotted 1px var(--borderColor);
    padding: 10px 0;
}

.home-flex-box-list-title {
    line-height: 20px;
    font-size: 16px;
    height: 20px;
    overflow: hidden;
}

.home-flex-box-list-title a {
    color: var(--black2);
}

.home-flex-box-list-title a:hover {
    color: var(--blue);
}

.home-flex-box-list-attr {
    color: var(--gray2);
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
}

.home-flex-box-list-attr a {
    color: var(--gray2);
}