* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    overflow-x: hidden
}

body {
    font-family: Arial, "Microsoft YaHei", sans-serif;
    color: #222;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: 1200px
}

.topline {
    font-size: 12px;
    background: #f6f6f6;
    color: #777;
    height: 38px;
    line-height: 38px
}

.navbar {
    box-shadow: 0 2px 18px rgba(0, 0, 0, .05)
}

.brand {
    width: 175px;
    max-height: 72px;
    object-fit: contain
}

.navbar-nav .nav-link {
    font-size: 15px;
    padding: 22px 11px;
    color: #222
}

/* ===== 分页样式 - 覆盖默认 ===== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 20px 0 10px 0;
}

.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    line-height: 1;
}

/* 悬停效果 */
.pagination-wrapper a:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}

/* 当前页激活状态 */
.pagination-wrapper .active,
.pagination-wrapper .on {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff !important;
    border-color: #c0392b;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
    transform: scale(1.05);
}

.style-item.active {
    color: #ff0000 !important;
    font-weight: bold;
}

/* 禁用状态 */
.pagination-wrapper .disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #eee;
    box-shadow: none;
}

.pagination-wrapper .disabled:hover {
    background: #f5f5f5;
    color: #ccc;
    transform: none;
    box-shadow: none;
}

/* 省略号 */
.pagination-wrapper .omit {
    border: none;
    background: transparent;
    color: #999;
    cursor: default;
    box-shadow: none;
    min-width: 30px;
}

.pagination-wrapper .omit:hover {
    background: transparent;
    color: #999;
    transform: none;
    box-shadow: none;
}

/* 上一页/下一页 */
.pagination-wrapper .prev,
.pagination-wrapper .next {
    font-weight: 600;
    min-width: 70px;
}

.pagination-wrapper .prev:hover,
.pagination-wrapper .next:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* 首页/尾页 */
.pagination-wrapper .first,
.pagination-wrapper .last {
    font-weight: 500;
    min-width: 50px;
}

.pagination-wrapper .first:hover,
.pagination-wrapper .last:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* 隐藏默认的文本信息（共X条 当前X/X页） */
.pagination-wrapper .pageinfo {
    display: none !important;
}

/* 响应式 */
@media (max-width: 576px) {
    .pagination-wrapper {
        gap: 4px;
        flex-wrap: wrap;
    }
    .pagination-wrapper a,
    .pagination-wrapper span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 10px;
    }
    .pagination-wrapper .prev,
    .pagination-wrapper .next {
        min-width: 54px;
        font-size: 12px;
    }
    .pagination-wrapper .first,
    .pagination-wrapper .last {
        min-width: 40px;
        font-size: 12px;
    }
}
/* ===== 分页样式 - 覆盖默认 ===== */


.navbar-nav .nav-link:hover, .navbar-nav .active {
    color: #cb0514 !important
}

.phone {
    font-weight: bold;
    font-size: 18px;
    color: #cb0514;
    white-space: nowrap
}

.hero {
    height: auto;
    min-height: 0;
    position: relative;
    overflow: hidden;
    background: #f4f4f4
}

.hero .carousel-item {
    background: #f4f4f4
}

.hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain
}

.hero .carousel-indicators button {
    width: 30px;
    height: 3px
}

.heading {
    text-align: center
}

.heading h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 0
}

.heading p {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    margin: 8px 0 12px
}

.heading i {
    display: block;
    width: 47px;
    height: 3px;
    background: #cb0514;
    margin: auto
}

.quote {
    background: url('assets/original/quote-bg.webp') center/cover
}

.quote-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 0 32px rgba(0, 0, 0, .12)
}

.quote-number {
    font-size: 95px;
    line-height: 1;
    color: #e24535;
    font-weight: bold;
    text-align: center
}

.quote-number small {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 8px
}

.form-control {
    height: 48px;
    border-radius: 0
}

.red-btn {
    background: #e24535;
    color: #fff;
    border-radius: 0;
    padding: 11px 26px
}

.red-btn:hover {
    background: #cb0514;
    color: #fff
}

.services {
    background: #fff
}

.service-item {
    display: block;
    height: 100%;
    padding: 34px 24px;
    border: 1px solid #eee;
    background: #fff;
    transition: .25s
}

.service-item:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
    transform: translateY(-4px)
}

.service-item b {
    display: block;
    color: #e24535;
    font-size: 34px;
    margin-bottom: 22px
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 14px
}

.service-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.8
}

.cases a {
    height: 230px;
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff;
    background: #111
}

.cases .main-case {
    height: 470px
}

.cases img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.cases a:hover img {
    transform: scale(1.03)
}

.cases span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .72));
    font-size: 17px
}

.about, .news, .faq, .communities {
    background: #fafafa
}

.about-card {
    background: #fff;
    box-shadow: 0 6px 57px rgba(0, 0, 0, .12)
}

.about-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 370px;
    object-fit: cover;
    background: #f6f6f6
}

.about-card h2 {
    font-size: 28px;
    margin-bottom: 18px
}

.about-card p {
    line-height: 2;
    color: #666
}

.article-list a {
    display: flex;
    gap: 18px;
    padding: 16px 5px;
    border-bottom: 1px solid #eee
}

.article-list a:last-child {
    border-bottom: 0
}

.article-list b {
    color: #cb0514;
    font-size: 25px;
    line-height: 1
}

.article-list h3 {
    font-size: 17px;
    margin: 0;
    color: #222
}

.article-list p {
    font-size: 13px;
    color: #999;
    margin: 7px 0 0;
    line-height: 1.7
}

.news-list a {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #eee
}

.news-list a:last-child {
    border-bottom: 0
}

.news-date {
    width: 86px;
    min-width: 86px;
    text-align: center;
    color: #cb0514
}

.news-date b {
    display: block;
    font-size: 34px;
    line-height: 1
}

.news-date em {
    font-style: normal;
    color: #999;
    font-size: 13px
}

.news-list h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: #222
}

.news-list p {
    margin: 0;
    color: #777;
    line-height: 1.8
}

.article-detail h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 14px
}

.article-meta {
    text-align: center;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-bottom: 22px;
    margin-bottom: 28px
}

.article-detail p {
    font-size: 16px;
    line-height: 2.1;
    color: #555;
    text-indent: 2em
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #eee;
    margin-top: 34px;
    padding-top: 22px
}

.article-nav a, .article-nav span {
    color: #666
}

.article-nav a:hover {
    color: #cb0514
}

.side-box {
    padding: 26px
}

.side-box h3 {
    font-size: 22px;
    border-bottom: 2px solid #cb0514;
    padding-bottom: 12px;
    margin-bottom: 12px
}

.side-list a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6
}

.side-list a:last-child {
    border-bottom: 0
}

.side-list a:hover, .side-list a.active {
    color: #cb0514
}

.faq-box {
    background: #fff;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .06)
}

.faq-box > div {
    padding: 13px 0;
    border-bottom: 1px solid #dde5ef
}

.faq-box > div:last-child {
    border-bottom: 0
}

.faq-box h3 {
    font-size: 17px;
    margin: 0 0 9px
}

.faq-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.8
}

.faq-box b {
    display: inline-block;
    background: #e24535;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    margin-right: 10px;
    font-size: 14px
}

.brands {
    background: #171717 url('assets/photos/brand-showroom.jpg') center/cover;
    position: relative
}

.brands:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42)
}

.brands .container {
    position: relative
}

.brands .heading h2, .brands .heading p {
    color: #fff
}

.brand-item {
    height: 78px;
    background: rgba(255, 255, 255, .92);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #333
}

.info-card, .team-card {
    display: block;
    height: 100%;
    background: #fff;
    padding: 28px;
    border: 1px solid #eee
}

.info-card h3, .team-card h3 {
    font-size: 19px;
    margin-bottom: 12px
}

.info-card p, .team-card p {
    color: #777;
    line-height: 1.8;
    margin: 0
}

.community-list {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 12px
}

.community-list a {
    background: #fff;
    border: 1px solid #eee;
    padding: 18px;
    text-align: center;
    color: #333
}

.contact-band {
    background: #fff
}

.contact-qr {
    width: 132px
}

.inner-banner {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('assets/original/banner-1.webp') center/cover;
    color: #fff;
    display: grid;
    place-items: center
}

.inner-banner h1 {
    font-size: 40px;
    font-weight: 400
}

.page-card {
    box-shadow: 0 2px 18px rgba(0, 0, 0, .12);
    background: #fff
}

.page-main {
    min-height: 420px
}

.footer {
    background: #252525;
    color: #ddd
}

.footer strong {
    display: block;
    font-size: 32px;
    color: #fff;
    margin: 8px 0 18px
}

.footer p {
    color: #aaa;
    margin-bottom: 8px;
    line-height: 1.8
}

.qr {
    width: 112px;
    background: #fff;
    padding: 4px
}

.copyright {
    background: #171717;
    color: #aaa;
    text-align: center;
    font-size: 12px;
    padding: 16px
}

.float-phone {
    position: fixed;
    right: 20px;
    bottom: 70px;
    background: #cb0514;
    color: #fff;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    font-size: 23px;
    z-index: 20
}

@media (max-width: 991px) {
    .brand {
        width: 145px
    }

    .navbar-nav {
        padding: 10px 0
    }

    .navbar-nav .nav-link {
        padding: 9px 0;
        border-bottom: 1px solid #f1f1f1
    }

    .phone {
        display: inline-block;
        margin: 10px 0
    }

    .cases .main-case {
        height: 280px
    }

    .cases a {
        height: 170px
    }

    .about-card img {
        min-height: 230px
    }

    .inner-banner {
        height: 190px
    }

    .inner-banner h1 {
        font-size: 28px
    }

    .heading h2 {
        font-size: 24px
    }

    .quote-number {
        font-size: 70px
    }

    .community-list {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 575px) {
    .quote-card {
        border-radius: 14px
    }

    .service-item {
        padding: 24px 16px
    }

    .service-item h3 {
        font-size: 17px
    }

    .cases .main-case, .cases a {
        height: 190px
    }

    .community-list {
        grid-template-columns:repeat(2, 1fr)
    }

    .news-list a {
        gap: 14px
    }

    .news-date {
        width: 62px;
        min-width: 62px
    }

    .article-detail h2 {
        font-size: 24px
    }

    .article-nav {
        flex-direction: column
    }

    .footer {
        text-align: center
    }
}

.service-topic {
    margin-bottom: 10px
}

.topic-img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover
}

.topic-eyebrow {
    display: inline-block;
    color: #cb0514;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.service-topic h2 {
    font-size: 32px;
    margin-bottom: 18px
}

.service-topic p {
    color: #666;
    line-height: 2
}

.service-anchor a {
    display: block;
    background: #cb0514;
    color: #fff;
    text-align: center;
    padding: 18px 10px;
    font-size: 18px
}

.service-anchor a:hover {
    background: #a90411
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 34px;
    background: #fff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .1);
    height: 410px;
    overflow: hidden;
}

.service-block > div {
    padding: 35px 40px;
    overflow: hidden;
    position: relative;
}

/* 标题单行省略 */
.service-block h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 10px 0 15px;
    font-size: 22px;
}

/* 描述多行省略 */
.service-block > div {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 但需要保留标题和编号不被裁剪，使用flex布局 */
.service-block > div {
    display: flex;
    flex-direction: column;
}

.service-block > div b {
    flex-shrink: 0; /* 不压缩 */
}

.service-block > div h2 {
    flex-shrink: 0; /* 不压缩 */
}

.service-block > div .description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex: 1;
}

.service-block:nth-child(even) > div {
    order: 2; /* 文字放到右边 */
}

.service-block:nth-child(even) > img {
    order: 1; /* 图片放到左边 */
}

.service-block > div {
    padding: 44px 50px
}

.service-block b {
    display: block;
    color: #cb0514;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 16px
}

.service-block h2 {
    font-size: 28px;
    margin-bottom: 16px
}

.service-block p {
    color: #666;
    line-height: 2
}

.service-block ul {
    padding-left: 18px;
    color: #555;
    line-height: 2;
    margin: 18px 0 0
}

.service-block img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover
}

.process-section {
    background: #fafafa;
    margin: 20px 0
}

.process-grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 12px
}

.process-grid div {
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    padding: 28px 10px
}

.process-grid b {
    display: block;
    color: #cb0514;
    font-size: 28px
}

.process-grid span {
    display: block;
    margin-top: 8px;
    color: #333
}

.service-cta {
    margin-top: 30px
}

.service-cta p {
    color: #666;
    line-height: 1.8
}

@media (max-width: 991px) {
    .topic-img {
        height: 280px
    }

    .service-block, .service-block.reverse {
        grid-template-columns:1fr
    }

    .service-block.reverse > div, .service-block.reverse > img {
        order: initial
    }

    .service-block > div {
        padding: 30px 24px
    }

    .service-block img {
        min-height: 240px
    }

    .process-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 575px) {
    .service-topic h2 {
        font-size: 24px
    }

    .service-anchor a {
        font-size: 15px;
        padding: 14px 6px
    }

    .service-block h2 {
        font-size: 23px
    }

    .process-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

.side-phone {
    display: block;
    color: #cb0514;
    font-size: 24px;
    line-height: 1.3
}

.news-layout .side-box {
    position: relative
}

.news-layout .news-list {
    background: transparent;
    box-shadow: none;
    padding: 0 !important
}

.news-layout .news-list a {
    background: #fff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .1);
    border-bottom: 0;
    margin-bottom: 18px;
    padding: 24px 26px;
    transition: .25s
}

.news-layout .news-list a:last-child {
    margin-bottom: 0
}

.news-layout .news-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .14)
}

.news-layout .news-date {
    background: #cb0514;
    color: #fff;
    padding: 12px 8px
}

.news-layout .news-date em {
    color: #fff
}

.news-layout .news-list h3 {
    font-size: 21px
}

.news-layout .news-list p {
    font-size: 14px
}

.news-layout .news-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .08);
    margin-bottom: 22px;
    padding: 0;
    transition: .25s;
    overflow: hidden
}

.news-layout .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .14);
    border-color: #e6e6e6
}

.news-layout .news-date {
    width: 118px;
    min-width: 118px;
    background: #f7f7f7;
    color: #cb0514;
    padding: 0;
    text-align: center;
    border-right: 1px solid #eee
}

.news-layout .news-date b {
    display: block;
    background: #cb0514;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    padding: 22px 0 18px
}

.news-layout .news-date em {
    display: block;
    color: #777;
    font-size: 13px;
    font-style: normal;
    padding: 13px 0
}

.news-card-body {
    padding: 24px 28px;
    flex: 1
}

.news-tag {
    display: inline-block;
    color: #cb0514;
    border: 1px solid #f0c3c7;
    font-size: 12px;
    padding: 3px 10px;
    margin-bottom: 10px
}

.news-layout .news-list h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #222;
    font-weight: 500
}

.news-layout .news-list p {
    font-size: 14px;
    color: #777;
    line-height: 1.9;
    margin: 0
}

.news-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: 18px;
    padding-top: 14px;
    color: #999;
    font-size: 13px
}

.news-card-foot strong {
    color: #cb0514;
    font-weight: 400
}

.news-layout .news-card {
    align-items: center;
    min-height: 176px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .08);
    padding: 16px;
    margin-bottom: 18px;
    transform: none
}

.news-layout .news-card:hover {
    transform: none;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .12)
}

.news-thumb {
    width: 200px;
    height: 116px;
    object-fit: cover;
    flex: 0 0 200px;
    margin-right: 20px
}

.news-card-body {
    padding: 0;
    min-width: 0
}

.news-layout .news-list h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.news-layout .news-list p {
    font-size: 15px;
    line-height: 1.85;
    color: #4e5560;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-card-foot {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #8a8f98;
    font-size: 14px
}

.news-pill {
    background: #f3f3f3;
    color: #333;
    border-radius: 18px;
    padding: 7px 18px;
    line-height: 1
}

.news-card-foot strong {
    margin-left: auto;
    border: 1px solid #ef3f34;
    color: #ef3f34;
    border-radius: 18px;
    padding: 8px 24px;
    font-weight: 400;
    white-space: nowrap
}

@media (max-width: 767px) {
    .news-layout .news-card {
        display: block
    }

    .news-thumb {
        width: 100%;
        height: 170px;
        margin: 0 0 14px
    }

    .news-layout .news-list h3 {
        white-space: normal
    }

    .news-card-foot {
        flex-wrap: wrap;
        gap: 10px
    }

    .news-card-foot strong {
        margin-left: 0
    }
}

.topic-banner {
    height: 215px;
    background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .48)), url('assets/original/banner-2.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center
}

.topic-banner h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .35)
}

.topic-banner i {
    display: block;
    width: 44px;
    height: 5px;
    background: #d20012;
    margin-top: 10px
}

@media (max-width: 767px) {
    .topic-banner {
        height: 150px
    }

    .topic-banner h1 {
        font-size: 26px
    }

    .topic-banner i {
        width: 38px;
        height: 4px
    }
}

.case-page {
    background: #f6f6f6;
    padding: 0 0 10px
}

.case-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px
}

.case-crumb {
    font-size: 14px;
    color: #111
}

.case-crumb a:hover {
    color: #cb0514
}

.case-search {
    width: 198px;
    height: 32px;
    border: 1px solid #777;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden
}

.case-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 10px 0 12px;
    font-size: 13px;
    background: transparent
}

.case-search button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #c80012;
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    display: grid;
    place-items: center
}

.case-filter {
    background: #fff;
    border: 1px solid #dcdcdc;
    margin-bottom: 16px
}

.filter-row {
    display: grid;
    grid-template-columns:122px 1fr;
    min-height: 66px;
    border-bottom: 1px solid #e5e5e5
}

.filter-row:last-child {
    border-bottom: 0
}

.filter-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-right: 1px solid #e5e5e5;
    color: #444;
    font-size: 14px
}

.filter-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 27px;
    padding: 12px 26px
}

.filter-items a {
    font-size: 13px;
    color: #111;
    white-space: nowrap
}

.filter-items a:hover {
    color: #cb0514
}

.case-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 26px 12px;
    padding: 0 6px
}

.case-card {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
    transition: .2s
}

.case-card:hover {
    color: #cb0514;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
    transform: translateY(-2px)
}

.case-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #eee
}

.case-info {
    padding: 11px 13px 12px
}

.case-info h3 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.case-info p {
    font-size: 13px;
    color: #8a8f98;
    margin: 0;
    line-height: 1.6
}

@media (max-width: 991px) {
    .case-toolbar {
        display: block;
        margin-bottom: 22px
    }

    .case-search {
        width: 100%;
        margin-top: 14px
    }

    .filter-row {
        grid-template-columns:86px 1fr
    }

    .filter-items {
        gap: 12px 18px;
        padding: 13px 16px
    }

    .case-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 18px 12px;
        padding: 0
    }

    .case-card img {
        height: 190px
    }
}

@media (max-width: 575px) {
    .case-filter {
        margin-bottom: 18px
    }

    .filter-row {
        grid-template-columns:68px 1fr
    }

    .filter-items {
        gap: 10px 13px;
        padding: 10px
    }

    .filter-items a {
        font-size: 12px
    }

    .case-grid {
        grid-template-columns:1fr
    }

    .case-card img {
        height: 210px
    }

    .case-info h3 {
        font-size: 16px
    }
}

.plain-list-main {
    background: #f6f6f6
}

.team-page {
    padding: 0 0 12px
}

.team-crumb {
    font-size: 14px;
    color: #111;
    margin: 0 0 36px
}

.team-crumb a:hover {
    color: #cb0514
}

.team-grid {
    display: grid;
    /*grid-template-columns:289px 289px;*/
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-left: 6px
}

.designer-card {
    background: #fff;
    box-shadow: 24px 18px 36px rgba(0, 0, 0, .08);
    overflow: hidden
}

.designer-card img {
    display: block;
    width: 100%;
    height: 277px;
    object-fit: cover;
    background: #ddd
}

.designer-info {
    padding: 16px 16px 13px
}

.designer-info h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 4px;
    color: #111
}

.designer-info h3 span {
    font-size: 14px;
    margin-left: 8px;
    color: #111
}

.designer-info p {
    font-size: 14px;
    color: #7b8794;
    margin: 0
}

@media (max-width: 767px) {
    .team-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
        padding-left: 0
    }

    .designer-card img {
        height: 260px
    }

    .designer-info h3 {
        font-size: 17px
    }

    .designer-info h3 span {
        display: block;
        margin: 3px 0 0
    }
}

@media (max-width: 575px) {
    .team-crumb {
        margin-bottom: 22px
    }

    .team-grid {
        grid-template-columns:1fr
    }

    .designer-card img {
        height: auto;
        max-height: 360px
    }

    .designer-info {
        padding: 14px 16px 16px
    }
}

.estate-page {
    padding: 0 0 12px
}

.estate-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 28px
}

.estate-crumb {
    font-size: 14px;
    color: #111
}

.estate-crumb a:hover {
    color: #cb0514
}

.estate-search {
    width: 198px;
    height: 32px;
    border: 1px solid #777;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden
}

.estate-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 10px 0 12px;
    font-size: 13px;
    background: transparent
}

.estate-search button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #c80012;
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    display: grid;
    place-items: center
}

.estate-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.estate-card {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    color: #fff;
    background: #111
}

.estate-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.estate-card span {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .48);
    z-index: 1
}

.estate-card div {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px 30px
}

.estate-card h3 {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 22px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .4)
}

.estate-card p {
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .35)
}

.estate-card:hover {
    color: #fff
}

.estate-card:hover img {
    transform: scale(1.04)
}

@media (max-width: 991px) {
    .estate-grid {
        grid-template-columns:1fr 1fr;
        gap: 16px
    }

    .estate-card {
        height: 230px
    }

    .estate-card h3 {
        font-size: 23px
    }

    .estate-card p {
        font-size: 14px
    }
}

@media (max-width: 575px) {
    .estate-toolbar {
        display: block;
        margin-bottom: 18px
    }

    .estate-search {
        width: 100%;
        margin-top: 14px
    }

    .estate-grid {
        grid-template-columns:1fr
    }

    .estate-card {
        height: 210px
    }

    .estate-card h3 {
        font-size: 22px;
        margin-bottom: 14px
    }

    .estate-card p {
        font-size: 14px
    }
}

.qa-page {
    padding: 0 0 10px
}

.qa-crumb {
    font-size: 14px;
    color: #111;
    margin: 0 0 42px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 22px
}

.qa-crumb a:hover {
    color: #cb0514
}

.qa-list {
    background: #fff;
    border-radius: 28px;
    padding: 20px 20px 10px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .04)
}

.qa-item {
    position: relative;
    border-bottom: 1px solid #dbe4ef;
    padding: 4px 0 16px 38px;
    margin-bottom: 16px
}

.qa-item:last-child {
    border-bottom: 0;
    margin-bottom: 0
}

.qa-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: #00234a;
    line-height: 1.55;
    margin: 0 0 10px
}

.qa-item h3 b, .qa-item p b {
    position: absolute;
    left: 0;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ef473d;
    color: #fff;
    font-size: 18px;
    font-weight: 700
}

.qa-item p b {
    top: 48px;
    background: #ffe5e2;
    color: #ef473d
}

.qa-item p {
    position: relative;
    background: #f7fbff;
    border: 1px solid #d9e6f6;
    border-radius: 18px;
    color: #00234a;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    padding: 10px 16px
}

.hot-article-box {
    background: #fff;
    padding: 25px 26px 26px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .04)
}

.hot-article-box h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 22px;
    padding-left: 18px;
    border-left: 2px solid #e3453d
}

.hot-article-box ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: hot
}

.hot-article-box li {
    counter-increment: hot;
    display: flex;
    gap: 14px;
    border-top: 1px solid #eee;
    padding: 12px 0
}

.hot-article-box li:before {
    content: counter(hot);
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin-top: 3px;
    flex: 0 0 16px;
    text-align: center;
    border-radius: 50%;
    background: #e3453d;
    color: #fff;
    font-size: 12px
}

.hot-article-box a {
    font-size: 16px;
    line-height: 1.75;
    color: #111
}

.hot-article-box a:hover {
    color: #cb0514
}

@media (max-width: 991px) {
    .qa-crumb {
        margin-bottom: 24px
    }

    .qa-list {
        border-radius: 18px
    }

    .hot-article-box {
        margin-top: 8px
    }

    .hot-article-box ol {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 0 20px
    }
}

@media (max-width: 575px) {
    .qa-list {
        padding: 16px 14px
    }

    .qa-item {
        padding-left: 34px
    }

    .qa-item h3 {
        font-size: 17px
    }

    .qa-item p {
        font-size: 14px;
        padding: 10px 13px
    }

    .qa-item h3 b, .qa-item p b {
        width: 28px;
        height: 28px;
        font-size: 16px
    }

    .qa-item p b {
        top: 44px
    }

    .hot-article-box ol {
        display: block
    }

    .hot-article-box a {
        font-size: 14px
    }
}

.qa-list {
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 8px;
    background: #fff
}

.qa-item {
    padding: 0 0 22px 41px;
    margin: 0 0 20px;
    border-bottom: 1px solid #dbe4ef
}

.qa-item h3 {
    position: relative;
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 10px;
    color: #00234a
}

.qa-item h3 b {
    left: -41px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #ef473d;
    color: #fff;
    font-size: 18px
}

.qa-item p {
    min-height: 76px;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid #dbe8f7;
    color: #00234a;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    padding: 11px 18px;
    display: flex;
    align-items: center
}

.qa-item p b {
    left: -41px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #ffe5e2;
    color: #ef473d;
    font-size: 18px
}

.qa-item:last-child {
    border-bottom: 0
}

@media (max-width: 575px) {
    .qa-item {
        padding-left: 35px
    }

    .qa-item h3 {
        font-size: 17px;
        line-height: 28px
    }

    .qa-item h3 b, .qa-item p b {
        left: -35px;
        width: 28px;
        height: 28px;
        font-size: 16px
    }

    .qa-item p {
        min-height: 64px;
        font-size: 14px;
        padding: 10px 13px
    }
}

.qa-layout {
    align-items: flex-start
}

.qa-list {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .04);
    padding: 21px 20px 8px
}

.qa-item {
    padding: 0 0 16px 39px;
    margin: 0 0 20px;
    border-bottom: 1px solid #d9e5f1
}

.qa-item h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 10px;
    color: #00234a
}

.qa-item h3 b {
    left: -39px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #ef473d;
    color: #fff
}

.qa-item p {
    min-height: 76px;
    margin: 0;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid #dbe8f7;
    padding: 11px 17px;
    color: #00234a;
    font-size: 16px;
    line-height: 1.75;
    display: flex;
    align-items: center
}

.qa-item p b {
    left: -39px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #ffe8e6;
    color: #ef473d
}

.hot-article-box {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    padding: 25px 26px
}

.hot-article-box h3 {
    font-size: 24px;
    line-height: 1;
    margin: 0 0 24px;
    padding-left: 18px;
    border-left: 2px solid #e3453d
}

@media (max-width: 575px) {
    .qa-list {
        border-radius: 18px;
        padding: 16px 14px 4px
    }

    .qa-item {
        padding-left: 35px
    }

    .qa-item h3 b, .qa-item p b {
        left: -35px
    }

    .qa-item p {
        min-height: 64px
    }
}

body, .page-main, .plain-list-main, .case-page, .estate-page, .team-page, .qa-page, .service-topic, .process-section {
    background: #fff
}

.quality-service {
    background: #fff
}

.quality-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 32px 24px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    transition: .25s
}

.quality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 38px rgba(0, 0, 0, .1)
}

.quality-card b {
    display: block;
    color: #cb0514;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 20px
}

.quality-card h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #111
}

.quality-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
    margin: 0
}

.ai-report {
    background: #111 url('assets/photos/brand-showroom.jpg') center/cover no-repeat;
    position: relative;
    color: #fff
}

.ai-report:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .68)
}

.ai-report .container {
    position: relative
}

.ai-panel {
    min-height: 360px
}

.ai-label {
    display: inline-block;
    color: #ff4b3f;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.ai-report h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 18px
}

.ai-report p {
    color: #ddd;
    line-height: 2;
    margin-bottom: 22px
}

.ai-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px
}

.ai-steps span {
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    padding: 9px 16px;
    color: #fff
}

.report-card {
    background: rgba(255, 255, 255, .96);
    color: #111;
    padding: 30px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .3)
}

.report-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 14px
}

.report-top strong {
    font-size: 22px
}

.report-top em {
    font-style: normal;
    color: #999;
    font-size: 12px;
    letter-spacing: 1px
}

.report-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    color: #666
}

.report-line b {
    color: #111;
    font-weight: 500;
    text-align: right
}

.report-progress {
    height: 8px;
    background: #eee;
    margin: 22px 0 14px;
    overflow: hidden
}

.report-progress i {
    display: block;
    height: 100%;
    background: #cb0514
}

.report-card p {
    color: #666;
    margin: 0;
    line-height: 1.8
}

@media (max-width: 767px) {
    .quality-card {
        padding: 24px 18px
    }

    .ai-report h2 {
        font-size: 28px
    }

    .report-card {
        padding: 22px
    }

    .report-top, .report-line {
        display: block
    }

    .report-line b {
        display: block;
        text-align: left;
        margin-top: 5px
    }

    .ai-steps span {
        font-size: 13px;
        padding: 8px 12px
    }
}

.home-accordion {
    background: #fff
}

.accordion-heading {
    margin-bottom: 38px
}

.accordion-showcase {
    height: 500px;
    display: flex;
    overflow: hidden;
    background: #eee
}

.accordion-showcase input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.acc-tab {
    width: 100px;
    min-width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-right: 1px solid #fff;
    cursor: pointer;
    transition: .25s
}

.acc-tab span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 6px;
    font-size: 20px;
    color: #1d2430;
    line-height: 1.5
}

.acc-panel {
    position: relative;
    flex: 0 0 0;
    min-width: 0;
    overflow: hidden;
    transition: flex-basis .35s ease, opacity .25s ease;
    opacity: 0;
    background: #111
}

.acc-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.acc-panel:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82))
}

.acc-panel div {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 28px;
    z-index: 2;
    color: #fff
}

.acc-panel i {
    display: block;
    width: 38px;
    height: 3px;
    background: #fff;
    margin-bottom: 15px
}

.acc-panel h3 {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 500
}

.acc-panel p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #fff
}

.accordion-showcase #acc-one:checked ~ .acc-panel-one, .accordion-showcase #acc-two:checked ~ .acc-panel-two, .accordion-showcase #acc-three:checked ~ .acc-panel-three, .accordion-showcase #acc-four:checked ~ .acc-panel-four {
    flex-basis: calc(100% - 400px);
    opacity: 1
}

.accordion-showcase #acc-one:checked ~ label[for="acc-one"], .accordion-showcase #acc-two:checked ~ label[for="acc-two"], .accordion-showcase #acc-three:checked ~ label[for="acc-three"], .accordion-showcase #acc-four:checked ~ label[for="acc-four"] {
    background: #b99d72
}

.accordion-showcase #acc-one:checked ~ label[for="acc-one"] span, .accordion-showcase #acc-two:checked ~ label[for="acc-two"] span, .accordion-showcase #acc-three:checked ~ label[for="acc-three"] span, .accordion-showcase #acc-four:checked ~ label[for="acc-four"] span {
    color: #fff;
    font-weight: 700
}

@media (min-width: 992px) {
    .acc-tab:hover {
        background: #c4ad88
    }

    .acc-tab:hover span {
        color: #fff
    }
}

@media (max-width: 991px) {
    .accordion-heading {
        margin-bottom: 24px
    }

    .accordion-showcase {
        height: auto;
        display: block;
        background: #fff
    }

    .acc-tab {
        width: 100%;
        height: 58px;
        min-width: 0;
        border: 1px solid #eee;
        border-bottom: 0;
        justify-content: flex-start;
        padding: 0 18px;
        background: #eee
    }

    .acc-tab span {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        letter-spacing: 2px;
        font-size: 17px
    }

    .acc-panel {
        height: 0;
        transition: height .3s ease, opacity .25s ease
    }

    .accordion-showcase #acc-one:checked ~ .acc-panel-one, .accordion-showcase #acc-two:checked ~ .acc-panel-two, .accordion-showcase #acc-three:checked ~ .acc-panel-three, .accordion-showcase #acc-four:checked ~ .acc-panel-four {
        height: 280px;
        flex-basis: auto;
        opacity: 1
    }

    .acc-panel div {
        left: 24px;
        right: 24px;
        bottom: 22px
    }

    .acc-panel h3 {
        font-size: 20px
    }

    .acc-panel p {
        font-size: 14px
    }
}

@media (max-width: 575px) {
    .home-accordion {
        padding-top: 28px !important;
        padding-bottom: 28px !important
    }

    .accordion-showcase #acc-one:checked ~ .acc-panel-one, .accordion-showcase #acc-two:checked ~ .acc-panel-two, .accordion-showcase #acc-three:checked ~ .acc-panel-three, .accordion-showcase #acc-four:checked ~ .acc-panel-four {
        height: 230px
    }

    .acc-tab {
        height: 52px
    }

    .acc-panel div {
        left: 18px;
        right: 18px
    }

    .acc-panel p {
        line-height: 1.6
    }
}

.ai-report {
    background: #f5f5f5 url('assets/photos/brand-showroom.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    position: relative
}

.ai-report:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .58))
}

.ai-report .container {
    position: relative;
    z-index: 1
}

.ai-wrap {
    display: grid;
    grid-template-columns:1fr 460px;
    gap: 58px;
    align-items: center
}

.ai-copy {
    padding: 12px 0
}

.ai-label {
    display: inline-block;
    color: #fff;
    border-left: 4px solid #d60012;
    padding-left: 12px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.ai-report h2 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
    color: #fff
}

.ai-report p {
    max-width: 560px;
    font-size: 17px;
    color: #eee;
    line-height: 2;
    margin: 0 0 30px
}

.ai-data {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 14px;
    max-width: 560px
}

.ai-data div {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 18px 12px;
    text-align: center
}

.ai-data b {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 9px
}

.ai-data span {
    display: block;
    color: #ddd;
    font-size: 13px
}

.ai-form-card {
    background: #fff;
    color: #111;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .24)
}

.ai-form-head {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 18px
}

.ai-form-head strong {
    display: block;
    font-size: 24px;
    line-height: 1.35;
    color: #111
}

.ai-form-head em {
    display: block;
    font-style: normal;
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 6px
}

.ai-form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.ai-form-grid label {
    display: block;
    margin: 0
}

.ai-form-grid span {
    display: block;
    color: #666;
    font-size: 13px;
    margin-bottom: 7px
}

.ai-form-grid input, .ai-form-grid select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 0 12px;
    color: #333;
    outline: none
}

.ai-result {
    background: #fafafa;
    border: 1px solid #eee;
    margin: 18px 0;
    padding: 18px
}

.ai-result h3 {
    font-size: 18px;
    margin: 0 0 10px
}

.ai-result ul {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px 16px;
    margin: 0;
    padding-left: 18px;
    color: #555;
    font-size: 14px
}

.ai-submit {
    display: block;
    background: #d60012;
    color: #fff;
    text-align: center;
    height: 48px;
    line-height: 48px;
    font-size: 16px
}

.ai-submit:hover {
    background: #b4000f;
    color: #fff
}

.report-progress {
    height: 6px;
    background: #e7e7e7;
    margin: 15px 0 0
}

.report-progress i {
    display: block;
    height: 100%;
    background: #d60012
}

@media (max-width: 991px) {
    .ai-wrap {
        grid-template-columns:1fr;
        gap: 30px
    }

    .ai-data {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 575px) {
    .ai-report {
        padding: 46px 0
    }

    .ai-report h2 {
        font-size: 30px
    }

    .ai-report p {
        font-size: 15px
    }

    .ai-form-card {
        padding: 22px
    }

    .ai-form-grid, .ai-result ul {
        grid-template-columns:1fr
    }

    .ai-data b {
        font-size: 24px
    }
}

.qr-box {
    width: 112px;
    text-align: center
}

.qr-box .qr {
    display: block;
    width: 112px;
    margin: 0 auto;
    padding: 4px;
    background: #fff
}

.qr-box p {
    width: 112px;
    text-align: center;
    margin: 8px 0 0;
    line-height: 1.4
}

.contact-band .qr-box {
    width: 132px
}

.contact-band .qr-box .qr {
    width: 132px
}

.contact-band .qr-box p {
    width: 132px;
    color: #555
}

.case-feature-section {
    background: #fff
}

.case-feature-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px;
    min-height: 520px
}

.case-feature-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    color: #fff
}

.case-feature-main {
    height: 520px
}

.case-feature-side {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.case-feature-side a {
    height: 253px
}

.case-feature-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease
}

.case-feature-grid a:hover img {
    transform: scale(1.04)
}

.case-feature-grid span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    font-size: 18px;
    color: #fff
}

.case-feature-main span {
    font-size: 22px;
    padding: 22px 26px
}

@media (max-width: 991px) {
    .case-feature-grid {
        grid-template-columns:1fr;
        min-height: 0
    }

    .case-feature-main {
        height: 340px
    }

    .case-feature-side a {
        height: 220px
    }
}

@media (max-width: 575px) {
    .case-feature-main {
        height: 240px
    }

    .case-feature-side {
        grid-template-columns:1fr 1fr;
        gap: 10px
    }

    .case-feature-grid {
        gap: 10px
    }

    .case-feature-side a {
        height: 150px
    }

    .case-feature-grid span {
        font-size: 14px;
        padding: 12px
    }

    .case-feature-main span {
        font-size: 18px;
        padding: 16px
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 8px 0
}

.brand {
    width: 225px;
    height: 62px;
    max-height: 62px;
    object-fit: contain;
    object-position: left center
}

@media (max-width: 991px) {
    .navbar-brand {
        padding: 6px 0
    }

    .brand {
        width: 178px;
        height: 50px;
        max-height: 50px
    }

    .navbar-nav .nav-link {
        padding: 9px 0
    }
}

@media (max-width: 380px) {
    .brand {
        width: 154px;
        height: 44px;
        max-height: 44px
    }
}
