/* 奥慧资讯 */
.news-content-warp {
    padding: 7.875rem 0;
}

.news-content-warp .news-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.75rem;
}

.news-content-warp .news-nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 6.25rem;
    width: 25%;
    border: 0.01rem solid #e3e3e3;
    background: #F9F9F9;
    font-size: 1.875rem;
    cursor: pointer;
}

.news-content-warp .news-nav a:hover {
    color: #C51030;
}

.news-content-warp .news-nav a:not(:last-child) {
    border-right: none;
}

.news-content-warp .news-nav .active {
    background: #C51030;
    border-color: #C51030;
    color: #fff;
}

.news-content-warp .news-nav .active:hover {
    color: #fff;
}


.article-layout {
    display: flex;
    margin-top: 8.125rem;
}

.article-layout .article-content {
    width: calc(100% - 16.875rem);
    display: none;
    flex-direction: column;
}

.article-layout .article-content.active {
    display: flex;
}

.article-layout .article-side {
    width: 16.875rem;
}


.article-content .article-panel {
    display: flex;
    border-bottom: dashed 1px #E3E3E3;
    padding: 3.125rem 0;
    margin-right: 5.3125rem;
}


.article-content .article-panel:first-of-type {
    padding-top: 0;
}

.article-content .article-panel .img-warp {
    width: 22.8125rem;
    height: 14.0625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    flex-shrink: 0;
}

.article-content .article-panel .img-warp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}


.article-content .article-panel:hover .img-warp img {
    transform: scale(1.1);
}

.article-content .article-panel:hover a {
    color: #C51030;
}

.article-content .article-panel .article-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 2.5rem;
}

.article-content .article-panel a {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.article-content .article-panel p {
    padding-top: 1.5rem;
}



.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:hover a {
    color: #C51030;
}

.article-list ul li a {
    display: inline-flex;
}

.article-list ul li a img {
    width: 6.25rem;
    height: 3.75rem;
}

@keyframes slideRight {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}



/* 媒体查询屏幕小于640 触发移动端样式 */
@media screen and (max-width: 640px) {

    .news-content-warp .news-nav {
        margin-top: 4rem;
    }

    .news-content-warp .news-nav a {
        height: 3.5rem;
        font-size: 1.5rem;
        border-width: 1px;
    }

    .article-content .article-panel {
        margin-right: 2rem;
    }

    .article-content .article-panel img {
        width: 40%;
        height: auto;
        object-fit: cover;
    }

    .article-content .article-panel a {
        margin-bottom: 1rem;
        font-size: 1.125rem;
    }

    .article-content .article-panel p {
        font-size: 1rem;
        padding-top: 0.5rem;
    }

    .article-layout {
        flex-direction: column;
    }

    .article-layout .article-content {
        width: 100%
    }

    .article-layout .article-side {
        width: 100%;
    }

    .article-list {
        display: none;
    }

    .contact-content-warp {
        padding-bottom: 4rem;
    }

    .contact-content-warp .title-warp {
        padding-top: 4rem;
    }

    .contact-content-warp .contact-content {
        margin-top: 3rem;
        padding: 0;
    }

    .contact-content-warp .contact-form .form-row-input {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }

    .contact-content-warp .contact-form .form-input-item .form-control {
        width: 100%;
    }

    .contact-content-warp .contact-form .form-row-radio {
        flex-direction: column;
    }

    .contact-content-warp .contact-form .form-row-radio span {
        margin-bottom: 2rem;
    }

    .contact-content-warp .contact-form .form-radio-list {
        grid-template-columns: repeat(3, 1fr)
    }

}