/* 资讯详情 */
.article-warp {
    padding: 0 26.875rem;
}

.localtion-warp {
    display: flex;
    padding-top: 2rem;
    line-height: 1;
}

.localtion-warp a {
    color: black;
    font-size: 0.75rem;
}

.localtion-warp>span {
    margin: 0 0.5rem;
    font-size: 0.75rem;
}

.article-layout {
    display: flex;
}

.article-layout .article-content {
    width: calc(100% - 16.875rem);
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
    padding-bottom: 7.5rem;
}

.article-layout .article-side {
    width: 16.875rem;
}

.article-content h1 {
    margin-top: 3rem;

}

.article-content .article-head {
    margin-top: 2.375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-content .article-head>a {
    display: inline-flex;
    width: 6rem;
    height: 1.875rem;
    border-radius: 0.25rem;
    border: 1px solid #e3e3e3;
    font-size: 0.75rem;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none
}

.article-content .article-head>div span {
    font-size: 0.75rem;
    color: #959595;
    margin-right: 3rem;
}

.article-text {
    margin-top: 2.5rem;
}

.article-text p {
    font-size: 1.125rem;
}

.article-text .indent {
    text-indent: 2em;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.article-text .img-warp {
    margin: 1.25rem auto;
    text-align: center;
}

.article-text .img-warp img {
    width: 80%;
}

.article-sort-warp {
    height: 2.375rem;
    background-color: #F9F9F9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 2.1875rem;
    line-height: 2.375rem;
}

.article-sort-warp a {
    text-decoration: none;
    color: #212529;
    font-size: 0.75rem;
    /* 单行超出显示省略号 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-side {
    display: flex;
    flex-direction: column;
}

.article-side .customer-service {
    height: 17.75rem;
    border: 1px solid #E3E3E3;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customer-service .img-warp {
    margin-top: 2.1875rem;
    width: 5.625rem;
    height: 5.625rem;
}

.customer-service .img-warp img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.customer-service a {
    align-items: center;
    background-color: #fdfcfc;
    border: 1px solid #c51030;
    border-radius: .375rem;
    color: #c51030;
    display: flex;
    height: 2.125rem;
    justify-content: center;
    margin-top: 1.5625rem;
    overflow: hidden;
    position: relative;
    transition: transform .3s;
    width: 12.75rem;
}

.customer-service a:before {
    background-color: #c51030;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
}

.customer-service a:hover {
    text-decoration: none;
    color: #c51030;
}

.customer-service a:hover:before {
    animation: slideRight .5s linear;
    width: 100%;
    z-index: 0;
}

.customer-service a:after {
    align-items: center;
    content: "在线咨询";
    display: none;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}

.customer-service a:hover:after {
    color: #fff;
    display: inline-flex;
    z-index: 1;
}

.article-list {
    margin-top: 2.1875rem;
    padding-top: 2rem;
    padding-left: 1.25rem;
    border: 1px solid #E3E3E3;
    background: #FFFFFF;
}

.article-list ul li {
    border-bottom: 1px dashed #e1e1e1;
    margin-bottom: 1.25rem;
    margin-right: 1rem;
    padding-bottom: 1rem;
}

.article-list ul li a {
    display: inline-flex;
}

.article-list ul li a:hover {
    color: #c51030;
}

.article-list ul li a img {
    width: 6.25rem;
    height: 3.75rem;
}

@keyframes slideRight {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


@media screen and (max-width: 640px) {
    .article-warp {
        padding: 0 2rem;
    }

    .localtion-warp a,
    .localtion-warp span {
        font-size: 1.2rem;
    }

    .article-layout {
        display: flex;
        flex-direction: column;
    }

    .article-layout .article-content {
        width: 100%;
    }

    .article-layout .article-side {
        width: 100%;
    }

    .article-side .customer-service {
        flex-direction: row;
        width: 100%;
        height: 10rem;
    }





    .article-content .article-head>div span {
        margin-right: 0.8rem;
    }

    .customer-service .img-warp {
        margin: auto 4rem;
    }

    .article-sort-warp {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        height: auto;
        background-color: #fff;
    }

    .article-sort-warp a {
        padding: 2rem;
        background-color: #f9f9f9;
        width: 100%;
        margin-top: 2rem;
        font-size: 1.2rem;
    }

    .article-list {
        margin-bottom: 4rem;
    }

    .article-list ul li a img {
        width: 35%;
        height: auto;
    }

    .article-list ul li a p {
        font-size: 1.2rem;
    }

}