/* 金融行业解决方案页 */

.finance-page {
    color: #122339;
    overflow-x: hidden;
}

.finance-page *,
.finance-page *::before,
.finance-page *::after {
    box-sizing: border-box;
}

.finance-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(1425 / 2880 * 100vw);
    min-height: 650px;
    max-height: 950px;
    background-color: #fff;
}

.finance-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.finance-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.5;
}

.finance-banner-text {
    max-width: 748px;
}

.finance-banner-text h1 {
    margin: 0 0 68px;
    font-size: 72px;
}

.finance-banner-desc {
    margin: 0 0 48px;
    line-height: 1.5;
    font-size: 34px;
    font-weight: 500;
}

.finance-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.finance-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 174px;
    height: 62px;
    padding: 0 28px;
    border-radius: 32px;
    font-size: 30px;
    color: #fff !important;
    text-decoration: none;
    box-sizing: border-box;
    background: linear-gradient( 90deg, #1D8BE8 0%, #1661DB 100%);
}

.finance-banner-btn:hover,
.finance-banner-btn:focus {
    color: #fff !important;
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.finance-banner-btn:active {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.finance-banner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
    margin-top: 56px;
}

.finance-stat strong {
    display: block;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    color: #122339;
}

.finance-stat span {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #122339;
}

.finance-main {
    scroll-margin-top: 95px;
}

.finance-challenge {
    padding: 110px 20px 80px;
}

.finance-challenge-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.finance-challenge-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    padding: 0 20px;
    border-radius: 32px;
    background: linear-gradient( 180deg, #4390E4 0%, #1661DB 100%);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.finance-challenge h2 {
    margin: 48px 0;
    font-size: 48px;
    line-height: 1.5;
}

.finance-challenge-intro {
    max-width: 660px;
    margin: 0 auto 94px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.finance-challenge-grid {
    display: grid;
    grid-template-columns: 570px 570px;
    column-gap: 16px;
    row-gap: 32px;
    justify-content: center;
}

.finance-challenge-card {
    position: relative;
    width: 570px;
    height: 226px;
}

.finance-challenge-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.finance-challenge-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.finance-challenge-card-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 33%;
    padding: 0 20px;
    box-sizing: border-box;
    color: #fff;
}

.finance-challenge-card-head img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.finance-challenge-card-head h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
}

.finance-challenge-card-content p {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 16px 40px 24px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #122339;
}

.finance-connotation {
    position: relative;
    padding: 110px 20px 280px;
    background-color: #f3f3f3;
}

.finance-connotation-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.finance-connotation h2 {
    margin: 0 0 110px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.5;
}

.finance-connotation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 316px));
    justify-content: center;
    gap: 46px;
}

.finance-connotation-item {
    position: relative;
    border-radius: 20px;
    max-width: 316px;
}

.finance-connotation-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(23,100,220,0.17);
    box-shadow: 0px 2px 30px 0px rgba(0,0,0,0.17);
    backdrop-filter: blur(2px);
    transform: translate(10px, 10px);
    pointer-events: none;
}

.finance-connotation-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    min-height: 280px;
    padding: 60px 24px 82px;
    border-radius: 20px;
    background: #fff;
    backdrop-filter: blur(2px);
    box-shadow: 0px 2px 30px 0px rgba(0,0,0,0.17);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.finance-connotation-item:hover {
    z-index: 1;
}

.finance-connotation-item:hover .finance-connotation-card {
    transform: translate(-6px, -6px);
    box-shadow: 0px 2px 30px 0px rgba(0,0,0,0.17);
}

.finance-connotation-card img {
    display: block;
    width: auto;
    height: 52px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.finance-connotation-item:hover .finance-connotation-card img {
    transform: scale(1.08);
}

.finance-connotation-card h3 {
    margin: 24px 0 40px;
    font-size: 30px;
    line-height: 1.5;
}

.finance-connotation-card p {
    max-width: 150px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.finance-idc {
    position: relative;
    overflow: hidden;
    padding: 110px 20px 180px;
    color: #fff;
    background-color: #0b2d6b;
}

.finance-idc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.finance-idc-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.finance-idc-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    margin: 0 auto 102px;
    padding: 0 28px;
    border-radius: 32px;
    background: #fff;
    color: #1661DB;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

.finance-idc-body {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}

.finance-idc-copy {
    flex: 1;
    min-width: 0;
    max-width: 780px;
}

.finance-idc-copy h2 {
    margin: 0 0 40px;
    font-size: 48px;
    line-height: 1.5;
    color: #fff;
}

.finance-idc-copy p {
    margin: 0 0 46px;
    max-width: 696px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.finance-idc-stats {
    display: grid;
    grid-template-columns: 201px 201px;
    gap: 40px 68px;
}

.finance-idc-stat {
    position: relative;
    width: 201px;
    height: 117px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.finance-idc-stat img {
    display: block;
    width: 201px;
    height: 117px;
    object-fit: none;
    object-position: left top;
    pointer-events: none;
}

.finance-idc-stat span {
    position: absolute;
    left: 24px;
    right: 12px;
    top: 66px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

.finance-idc-stat:hover {
    z-index: 1;
    transform: translateY(-6px);
    filter: drop-shadow(0 10px 18px rgba(80, 180, 255, 0.4));
}

.finance-idc-cert {
    flex: 0 1 390px;
    max-width: 390px;
}

.finance-idc-cert img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.finance-scenes {
    padding: 110px 20px;
    background: #fff;
}

.finance-scenes-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.finance-scenes-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    padding: 0 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, #4390E4 0%, #1661DB 100%);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

.finance-scenes h2 {
    margin: 48px 0 42px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.5;
}

.finance-scenes-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #5c6b7a;
}

.finance-scenes-list {
    text-align: left;
}

.finance-scenes-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 120px;
}

.finance-scenes-row.is-reverse {
    flex-direction: row-reverse;
}

.finance-scenes-media {
    width: 100%;
    max-width: 730px;
}

.finance-scenes-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.finance-scenes-copy {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.finance-scenes-copy h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.5;
}

.finance-scenes-copy p {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 2;
}

.finance-scenes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 32px;
    margin-top: 26px;
    padding: 0 20px;
    border-radius: 20px;
    background: #fea971;
    color: #fff !important;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
}

.finance-scenes-btn:hover,
.finance-scenes-btn:focus {
    color: #fff !important;
    filter: brightness(0.95);
}

.finance-scenes-copy ul {
    display: flex;
    flex-direction: column;
    gap: 44px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.finance-scenes-copy li {
    position: relative;
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #5c6b7a;
}

.finance-scenes-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffa972;
}

.finance-products {
    position: relative;
    overflow: hidden;
    padding: 160px 20px 210px;
}

.finance-products-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.finance-products-inner {
    position: relative;
    z-index: 1;
    max-width: 1012px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.finance-products-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    padding: 0 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, #4390E4 0%, #1661DB 100%);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

.finance-products-inner > h2 {
    margin: 48px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.finance-products-intro {
    margin: 0 0 88px;
    max-width: 800px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #5c6b7a;
}

.finance-products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.finance-products-card,
.finance-products-bar {
    box-sizing: border-box;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 36px rgba(22, 97, 219, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: left;
}

.finance-products-card {
    padding: 36px 40px 40px;
}

.finance-products-head,
.finance-products-bar-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.finance-products-head img,
.finance-products-bar-head img {
    display: block;
    width: auto;
    height: 74px;
    object-fit: contain;
}

.finance-products-head h3,
.finance-products-bar-head h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.5;
    color: #1661db;
}

.finance-products-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 42px;
}

.finance-products-list li,
.finance-products-bar-items li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.finance-products-list a,
.finance-products-bar-items a {
    color: #1661db;
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
}

.finance-products-list a:hover,
.finance-products-bar-items a:hover {
    text-decoration: underline;
}

.finance-products-list span,
.finance-products-bar-items span {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.finance-products-bar {
    width: 100%;
    margin-top: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.finance-products-bar-head {
    margin-bottom: 0;
    flex: 0 0 auto;
    min-width: 168px;
}

.finance-products-bar-items {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 24px;
}

.finance-products-bar-items.is-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finance-products-bar-items.is-services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.finance-products-bar-items.is-services a {
    font-size: 18px;
}

.finance-service {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 245px;
}

.finance-service-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.finance-service-inner {
    position: relative;
    z-index: 1;
    max-width: 1304px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.finance-service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    padding: 0 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, #4390E4 0%, #1661DB 100%);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

.finance-service-inner > h2 {
    margin: 48px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.finance-service-intro {
    margin: 0 0 56px;
    max-width: 800px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #5c6b7a;
}

.finance-service-grid {
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(0, 380px));
    gap: 24px;
    align-items: stretch;
    padding-top: 28px;
}

.finance-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 52px 42px 36px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.finance-service-card > h3 {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 71%;
    height: 60px;
    margin: 0;
    padding: 0 32px;
    border-radius: 12px;
    background: #1768DD;
    color: #fff;
    opacity: 0.9;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
}

.finance-service-body {
    flex: 1;
}

.finance-service-group + .finance-service-group {
    margin-top: 28px;
}

.finance-service-group h4 {
    margin: 0 0 6px;
    color: #006BFF;
    font-size: 16px;
    line-height: 1.5;
}

.finance-service-group ol {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.finance-service-group li + li {
    margin-top: 12px;
}

.finance-clients {
    background: #f0f2f5;
    padding-bottom: 56px;
}

.finance-clients-hero {
    position: relative;
    padding: 120px 0 336px;
}

.finance-clients-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.finance-clients-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.finance-clients-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    padding: 0 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, #4390E4 0%, #1661DB 100%);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

.finance-clients-inner > h2 {
    margin: 48px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.finance-clients-intro {
    margin: 0 0 56px;
    max-width: 790px;
    font-size: 16px;
    line-height: 1.5;
}

.finance-clients-partners {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
}

.finance-clients-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 16px 12px;
    border-radius: 8px;
    background: #fff;
    font-size: 24px;
    line-height: 1.5;
    text-decoration: none;
    box-sizing: border-box;
}

a.finance-clients-partner {
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
    z-index: 0;
    transition: color 0.35s ease;
}

a.finance-clients-partner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #1661db;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

a.finance-clients-partner:hover,
a.finance-clients-partner:focus-visible {
    color: #fff;
}

a.finance-clients-partner:hover::before,
a.finance-clients-partner:focus-visible::before {
    transform: scaleX(1);
}

.finance-clients-cases {
    width: 100%;
    max-width: 1304px;
    margin-top: -276px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    text-align: left;
}

.finance-clients-case {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 16px 38px 40px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.finance-clients-case:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.finance-clients-case:hover h3 {
    color: #1661db;
}

.finance-clients-case-cat {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 28px;
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 20px;
    background: #e8f2ff;
    color: #2774DF;
    font-size: 16px;
    line-height: 1;
}

.finance-clients-case-media {
    display: block;
    width: 100%;
    max-height: 200px;
    aspect-ratio: 16 / 10;
    margin-bottom: 32px;
    overflow: hidden;
    border-radius: 10px;
    background: #e8f1fb;
}

.finance-clients-case-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finance-clients-case h3 {
    margin: 0 0 4px;
    color: #122339;
    font-size: 24px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.finance-clients-case p {
    color: #122339;
    flex: 1;
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.finance-clients-case-keys {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.finance-clients-case-keys span {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    background: #f2f2f3;
    color: #13243A;
    font-size: 16px;
    line-height: 1;
}

.finance-faq {
    background: #f0f2f5;
    padding: 0 20px 120px;
}

.finance-faq-inner {
    max-width: 1304px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.finance-faq-item {
    width: 100%;
    min-width: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.finance-faq-item:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.finance-faq-item[open] {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.finance-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
}

.finance-faq-item summary::-webkit-details-marker {
    display: none;
}

.finance-faq-item summary h3 {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: #122339;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.finance-faq-icon {
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1661db;
}

.finance-faq-icon::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.finance-faq-item[open] .finance-faq-icon::after {
    margin-top: 3px;
    transform: rotate(225deg);
}

.finance-faq-body {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease-out;
}

.finance-faq-item[open] .finance-faq-body {
    height: auto;
}

.finance-faq-body-inner {
    padding: 0 28px 24px;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}

.finance-faq-body p {
    margin: 0 0 12px;
}

.finance-faq-body ul {
    margin: 0 0 12px;
    padding-left: 1.2em;
    list-style: none;
}

.finance-faq-body li {
    position: relative;
    padding-left: 0.2em;
}

.finance-faq-body li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: -0.85em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.finance-faq-body li + li {
    margin-top: 6px;
}

.finance-faq-table-wrap {
    overflow-x: auto;
    max-width: 100%;
    margin: 0 0 12px;
    -webkit-overflow-scrolling: touch;
}

.finance-faq-table-wrap table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 14px;
}

.finance-faq-table-wrap th,
.finance-faq-table-wrap td {
    padding: 10px 12px;
    border: 1px solid #e6ebf2;
    text-align: left;
}

.finance-faq-table-wrap thead th {
    background: #f3f7fd;
    color: #1661db;
    font-weight: 600;
}

.finance-values {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 194px;
    background-color: #eef5fc;
}

.finance-values-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.finance-values-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.finance-values-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    padding: 0 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, #4390E4 0%, #1661DB 100%);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.finance-values-inner > h2 {
    margin: 48px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.finance-values-intro {
    margin: 0 0 72px;
    max-width: 800px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #5c6b7a;
}

.finance-values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 124px;
    row-gap: 56px;
    width: 100%;
    max-width: calc(266px * 3 + 124px * 2);
    padding-top: 12px;
}

.finance-values-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 266px;
    width: 100%;
    max-width: 266px;
    min-width: 0;
    padding: 44px 38px 36px;
    border-radius: 8px;
    background: #D8E7FA;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.finance-values-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: 76%;
    height: 9px;
    border-radius: 12px;
    background: linear-gradient( 180deg, #4390E4 0%, #1661DB 100%);
    opacity: 0.9;
    transform: translate(-50%, -50%);
}

.finance-values-card:hover {
    transform: translateY(-6px);
}

.finance-values-card img {
    display: block;
    width: auto;
    height: 44px;
    object-fit: contain;
}

.finance-values-card h3 {
    margin: 20px 0 4px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #122339;
}

.finance-values-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}
  .bottom-module-img {
    width: 100%;
    height: 100%;
  }
  .bottom-module-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .bottom-module-bg {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 44px 20px 92px;
  }
  .bottom-module-content {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .bottom-module-title {
    font-size: 48px;
    line-height: 1.5;
    color: #122339;
    margin: auto;
  }
  .bottom-module-desc {
    font-size: 18px;
    line-height: 22px;
    color: #122339;
    margin: 14px auto 0;
  }
  .bottom-module-content-right {
    display: flex;
    align-self: flex-end;
    gap: 38px;
  }
  .bottom-module .bottom-module-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    background: #1863DB;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    border-radius: 46px;
    transition: all 0.2s;
    cursor: pointer;
  }
  .bottom-module .bottom-module-btn:hover,
  .bottom-module .bottom-module-btn:focus {
    background: #2d6be6;
  }

@media (max-width: 1399px) {
    .finance-banner-text h1 {
        white-space: nowrap;
    }

    .finance-banner-text h1 br {
        display: none;
    }
    .bottom-module-content {
        flex-direction: column;
        text-align: center;
      }
      .bottom-module-title {
        font-size: 48px;
      }
      .bottom-module-desc {
        margin-top: 12px;
      }
      .bottom-module-content-right {
        align-self: auto;
      }
}

@media (max-width: 1239px) {
    .finance-challenge-grid {
        grid-template-columns: 1fr;
        row-gap: 38px;
    }

    .finance-challenge-card {
        width: 100%;
        max-width: 570px;
        height: auto;
        aspect-ratio: 570 / 226;
        margin: 0 auto;
    }

    .finance-connotation-grid {
        grid-template-columns: repeat(2, minmax(0, 316px));
        justify-content: center;
        gap: 32px 38px;
    }

    .finance-connotation-card {
        min-height: 0;
    }

    .finance-idc-body {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .finance-idc-copy {
        max-width: 100%;
        text-align: center;
    }

    .finance-idc-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .finance-idc-stats {
        justify-content: center;
        margin: 0 auto;
    }

    .finance-idc-cert {
        flex: none;
        width: 100%;
        max-width: 360px;
    }

    .finance-scenes-row,
    .finance-scenes-row.is-reverse {
        flex-direction: column;
        align-items: center;
        margin-top: 64px;
    }

    .finance-scenes-media {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 730px;
    }

    .finance-scenes-copy {
        flex: none;
        width: 100%;
        max-width: 560px;
        align-items: flex-start;
    }

    .finance-products-card {
        padding: 28px 28px 32px;
    }

    .finance-products-list {
        column-gap: 24px;
        row-gap: 20px;
    }

    .finance-products-bar {
        gap: 28px;
        padding: 24px 28px;
    }

    .finance-products-bar-head {
        min-width: 140px;
    }

    .finance-service-grid {
        gap: 32px;
    }

    .finance-service-card {
        padding: 44px 24px 28px;
    }

    .finance-service-card > h3 {
        height: 46px;
        padding: 0 22px;
        font-size: 18px;
    }

    .finance-clients-partners {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .finance-clients-partner {
        min-height: 64px;
        padding: 12px 8px;
        font-size: 16px;
    }

    .finance-clients-cases {
        gap: 20px;
    }

    .finance-clients-case {
        padding: 16px 24px 28px;
    }
}

@media (max-width: 992px) {
    .finance-banner {
        height: auto;
        min-height: 0;
        max-height: none;
        background-position: 72% center;
    }

    .finance-banner-inner {
        align-items: flex-start;
        height: auto;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .finance-banner-text h1 {
        font-size: 40px;
        margin-bottom: 28px;
        white-space: normal;
    }

    .finance-banner-text h1 br {
        display: block;
    }

    .finance-banner-desc {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .finance-banner-btn {
        min-width: 140px;
        height: 48px;
        font-size: 18px;
    }

    .finance-banner-stats {
        gap: 24px 32px;
        margin-top: 36px;
    }

    .finance-stat strong {
        font-size: 32px;
    }

    .finance-stat span {
        font-size: 14px;
    }

    .finance-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
            100deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(237, 246, 253, 0.92) 42%,
            rgba(237, 246, 253, 0.55) 68%,
            transparent 100%
        );
    }

    .finance-banner-bg {
        object-position: 72% center;
    }

    .finance-challenge {
        padding: 64px 20px 80px;
    }

    .finance-challenge h2 {
        font-size: 32px;
    }

    .finance-challenge-card-head h3 {
        font-size: 22px;
    }

    .finance-challenge-card-content p {
        padding: 12px 24px 20px;
    }

    .finance-idc {
        padding: 72px 20px 80px;
    }

    .finance-idc-tag {
        margin-bottom: 48px;
    }

    .finance-idc-copy h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .finance-idc-stats {
        grid-template-columns: repeat(2, minmax(0, 201px));
        gap: 28px 32px;
        width: 100%;
        max-width: 440px;
    }

    .finance-scenes {
        padding: 64px 20px;
    }

    .finance-scenes h2 {
        font-size: 32px;
    }

    .finance-scenes-copy h3 {
        font-size: 22px;
    }

    .finance-products {
        padding: 72px 20px 80px;
    }

    .finance-products-inner > h2 {
        font-size: 32px;
        margin: 32px 0 12px;
    }

    .finance-products-head h3,
    .finance-products-bar-head h3 {
        font-size: 24px;
    }

    .finance-products-list a,
    .finance-products-bar-items a {
        font-size: 16px;
    }

    .finance-products-bar-items.is-services a {
        font-size: 16px;
    }

    .finance-products-grid {
        gap: 16px;
    }

    .finance-products-bar {
        margin-top: 16px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .finance-products-bar-items.is-products,
    .finance-products-bar-items.is-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .finance-service {
        padding: 72px 20px 80px;
    }

    .finance-service-inner > h2 {
        font-size: 32px;
        margin: 32px 0 12px;
    }

    .finance-service-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 64px;
        margin: 0 auto;
    }

    .finance-clients-hero {
        padding: 72px 0 160px;
    }

    .finance-clients-inner > h2 {
        font-size: 32px;
        margin: 32px 0 12px;
    }

    .finance-clients-partners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .finance-clients-partner {
        min-height: 56px;
        font-size: 15px;
    }

    .finance-clients-cases {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-top: -120px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .finance-clients-case {
        padding: 16px 20px 28px;
    }

    .finance-clients-case-cat {
        width: auto;
        min-width: 80px;
        height: 26px;
        font-size: 13px;
    }

    .finance-clients-case-media {
        max-height: 180px;
        margin-bottom: 20px;
    }

    .finance-clients-case h3 {
        font-size: 20px;
    }

    .finance-service-card > h3 {
        white-space: normal;
        height: auto;
        min-height: 44px;
        padding: 8px 16px;
        line-height: 1.3;
    }

    .finance-faq {
        padding: 0 20px 80px;
    }

    .finance-faq-item summary {
        padding: 18px 20px;
        align-items: center;
    }

    .finance-faq-item summary h3 {
        font-size: 16px;
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        overflow: visible;
    }

    .finance-faq-body-inner {
        padding: 0 20px 20px;
        font-size: 15px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .finance-faq-table-wrap table {
        min-width: 0;
    }

    .finance-values {
        padding: 72px 20px 80px;
    }

    .finance-values-inner > h2 {
        font-size: 32px;
        margin: 32px 0 12px;
    }

    .finance-values-intro {
        margin-bottom: 40px;
    }

    .finance-values-card {
        flex-basis: 266px;
        padding: 32px 20px 28px;
    }

    .finance-values-card h3 {
        font-size: 22px;
    }
    .bottom-module-content {
        gap: 24px;
      }
      .bottom-module-title {
        font-size: 36px;
      }
      .bottom-module-desc {
        margin-top: 12px;
        font-size: 16px;
      }
      .bottom-module-content-right {
        align-self: auto;
        gap: 24px;
      }
}

@media (max-width: 768px) {
    .finance-banner {
        height: auto;
        min-height: auto;
    }

    .finance-banner::before {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(240, 247, 252, 0.94) 38%,
            rgba(240, 247, 252, 0.78) 62%,
            rgba(240, 247, 252, 0.45) 100%
        );
    }

    .finance-banner-bg {
        object-position: 85% 20%;
    }

    .finance-banner-inner {
        align-items: flex-start;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .finance-banner-text {
        max-width: 100%;
    }

    .finance-banner-text h1 {
        font-size: 24px;
        margin-bottom: 32px;
        white-space: normal;
    }

    .finance-banner-desc {
        font-size: 14px;
        line-height: 1.7;
        margin: 0 0 24px;
    }

    .finance-banner-actions {
        gap: 12px;
    }

    .finance-banner-btn {
        min-width: 120px;
        height: 40px;
        padding: 0 22px;
        font-size: 14px;
        border-radius: 20px;
    }

    .finance-banner-stats {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        margin-top: 32px;
    }

    .finance-stat {
        flex: 1;
        min-width: 0;
    }

    .finance-stat strong {
        font-size: 24px;
    }

    .finance-stat span {
        font-size: 12px;
        margin-top: 0;
        text-align: start;
    }

    .finance-challenge {
        padding: 48px 20px 64px;
    }

    .finance-challenge-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .finance-challenge-tag {
        width: 180px;
        height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .finance-challenge h2 {
        margin: 16px 0 12px;
        font-size: 24px;
    }

    .finance-challenge-intro {
        margin-bottom: 32px;
        font-size: 14px;
    }

    .finance-challenge-card {
        aspect-ratio: auto;
        height: auto;
    }

    .finance-challenge-card-head {
        flex: none;
        gap: 8px;
        padding: 12px 16px 8px;
    }

    .finance-challenge-card-head img {
        width: 22px;
        height: 22px;
    }

    .finance-challenge-card-head h3 {
        font-size: 16px;
    }

    .finance-challenge-card-content p {
        padding: 10px 20px 16px;
        font-size: 13px;
    }

    .finance-connotation {
        padding: 48px 20px 64px;
    }

    .finance-connotation h2 {
        margin-bottom: 32px;
        font-size: 24px;
    }

    .finance-connotation-grid {
        grid-template-columns: minmax(0, 1fr);
        justify-content: center;
        gap: 24px;
    }

    .finance-connotation-item {
        max-width: 316px;
        width: 100%;
        border-radius: 16px;
    }

    .finance-connotation-item::before {
        transform: translate(8px, 8px);
    }

    .finance-connotation-card {
        padding: 32px 20px 28px;
        border-radius: 16px;
    }

    .finance-connotation-item:hover .finance-connotation-card {
        transform: translate(-4px, -4px);
    }

    .finance-connotation-card img {
        height: 48px;
    }

    .finance-connotation-card h3 {
        margin: 20px 0 10px;
        font-size: 18px;
    }

    .finance-connotation-card p {
        font-size: 14px;
    }

    .finance-idc {
        padding: 48px 20px 56px;
    }

    .finance-idc-tag {
        width: 180px;
        height: 32px;
        margin-bottom: 28px;
        padding: 0 16px;
        font-size: 14px;
    }

    .finance-idc-body {
        gap: 28px;
    }

    .finance-idc-copy h2 {
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 1.5;
    }

    .finance-idc-copy p {
        margin: 0 auto 24px;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    .finance-idc-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
        width: 100%;
        max-width: 340px;
    }

    .finance-idc-stat {
        width: 100%;
        height: auto;
        aspect-ratio: 201 / 117;
        overflow: hidden;
    }

    .finance-idc-stat img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left top;
    }

    .finance-idc-stat span {
        left: 10%;
        right: 6%;
        top: 54%;
        font-size: 12px;
        line-height: 1.3;
    }

    .finance-idc-cert {
        width: 68%;
        max-width: 260px;
    }

    .finance-scenes-tag {
        width: 180px;
        height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .finance-scenes h2 {
        margin: 16px 0 12px;
        font-size: 24px;
    }

    .finance-scenes-intro {
        font-size: 14px;
    }

    .finance-scenes-row,
    .finance-scenes-row.is-reverse {
        margin-top: 40px;
        gap: 16px;
        width: 100%;
        min-width: 0;
    }

    .finance-scenes-media {
        max-width: 100%;
        min-width: 0;
    }

    .finance-scenes-media img {
        border-radius: 12px;
    }

    .finance-scenes-copy h3 {
        font-size: 18px;
        overflow-wrap: break-word;
    }

    .finance-scenes-copy {
        max-width: 100%;
        min-width: 0;
    }

    .finance-scenes-copy p,
    .finance-scenes-copy li {
        font-size: 14px;
    }

    .finance-scenes-copy p {
        margin-top: 12px;
    }

    .finance-scenes-btn {
        min-width: 96px;
        height: 32px;
        margin-top: 14px;
        font-size: 13px;
    }

    .finance-scenes-copy ul {
        margin-top: 16px;
        gap: 12px;
    }

    .finance-scenes-copy li {
        padding-left: 14px;
    }
    .finance-scenes-copy li::before {
        top: 5px;
        width: 8px;
        height: 8px;
    }

    .finance-products {
        padding: 48px 20px 64px;
    }

    .finance-products-tag {
        width: 180px;
        height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .finance-products-inner > h2 {
        margin: 16px 0 12px;
        font-size: 24px;
    }

    .finance-products-intro {
        margin-bottom: 32px;
        font-size: 14px;
    }

    .finance-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .finance-products-card {
        padding: 24px 20px 28px;
    }

    .finance-products-head,
    .finance-products-bar-head {
        margin-bottom: 20px;
        gap: 10px;
    }

    .finance-products-head img,
    .finance-products-bar-head img {
        height: 40px;
    }

    .finance-products-head h3,
    .finance-products-bar-head h3 {
        font-size: 20px;
    }

    .finance-products-list {
        grid-template-columns: 1fr;
        column-gap: 16px;
        row-gap: 16px;
    }

    .finance-products-list a,
    .finance-products-bar-items a,
    .finance-products-bar-items.is-services a {
        font-size: 15px;
    }

    .finance-products-list span,
    .finance-products-bar-items span {
        font-size: 12px;
    }

    .finance-products-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
    }

    .finance-products-bar-items.is-products,
    .finance-products-bar-items.is-services {
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
        width: 100%;
    }

    .finance-service {
        padding: 48px 20px 56px;
    }

    .finance-service-tag {
        width: 180px;
        height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .finance-service-inner > h2 {
        margin: 16px 0 12px;
        font-size: 24px;
    }

    .finance-service-intro {
        margin-bottom: 32px;
        font-size: 14px;
    }

    .finance-service-card {
        padding: 40px 20px 24px;
    }

    .finance-service-card > h3 {
        width: 84%;
        max-width: calc(100% - 24px);
        height: auto;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 15px;
        white-space: normal;
        line-height: 1.3;
    }

    .finance-service-group h4 {
        font-size: 14px;
    }

    .finance-service-group ol {
        font-size: 14px;
    }

    .finance-clients {
        padding-bottom: 36px;
    }

    .finance-clients-hero {
        padding: 48px 0 88px;
    }

    .finance-clients-tag {
        width: 180px;
        height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .finance-clients-inner > h2 {
        margin: 16px 0 12px;
        font-size: 24px;
    }

    .finance-clients-intro {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .finance-clients-partners {
        gap: 8px;
    }

    .finance-clients-partner {
        min-height: 44px;
        padding: 8px 4px;
        font-size: 13px;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .finance-clients-cases {
        margin-top: -64px;
        gap: 16px;
        max-width: 100%;
    }

    .finance-clients-case {
        padding: 14px 16px 24px;
    }

    .finance-clients-case-cat {
        width: auto;
        height: 26px;
        margin-bottom: 10px;
        padding: 0 10px;
        font-size: 14px;
    }

    .finance-clients-case-media {
        max-height: 160px;
        margin-bottom: 16px;
    }

    .finance-clients-case h3 {
        font-size: 18px;
    }

    .finance-clients-case p {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .finance-clients-case-keys {
        gap: 6px;
    }

    .finance-clients-case-keys span {
        padding: 6px 12px;
        font-size: 14px;
    }

    .finance-faq {
        padding: 0 16px 56px;
    }

    .finance-faq-inner {
        gap: 12px;
    }

    .finance-faq-item summary {
        padding: 14px 16px;
        gap: 10px;
        align-items: flex-start;
    }

    .finance-faq-item summary h3 {
        font-size: 14px;
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        overflow: visible;
    }

    .finance-faq-icon {
        flex: 0 0 18px;
        width: 18px;
        height: 18px;
    }

    .finance-faq-body-inner {
        padding: 0 16px 16px;
        font-size: 14px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .finance-faq-body ul {
        padding-left: 1em;
    }

    .finance-faq-table-wrap table {
        min-width: 0;
        font-size: 12px;
    }

    .finance-faq-table-wrap th,
    .finance-faq-table-wrap td {
        padding: 8px 6px;
        word-break: break-word;
    }

    .finance-values {
        padding: 48px 20px 64px;
    }

    .finance-values-tag {
        width: 180px;
        height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .finance-values-inner > h2 {
        margin: 16px 0 12px;
        font-size: 24px;
    }

    .finance-values-intro {
        margin-bottom: 32px;
        font-size: 14px;
    }

    .finance-values-grid {
        row-gap: 24px;
        padding-top: 10px;
        max-width: 266px;
    }

    .finance-values-card {
        flex-basis: 266px;
        max-width: 266px;
        padding: 28px 20px 24px;
    }

    .finance-values-card img {
        height: 36px;
    }

    .finance-values-card h3 {
        margin: 16px 0 12px;
        font-size: 20px;
    }

    .finance-values-card p {
        font-size: 14px;
    }
      .bottom-module-bg {
        padding: 10px 20px 60px;
      }
      .bottom-module-title {
        font-size: 24px;
      }
      .bottom-module-desc {
        margin-top: 6px;
        font-size: 14px;
      }
      .bottom-module .bottom-module-btn {
        padding: 9px 25px;
        font-size: 14px;
      }
}

@media (prefers-reduced-motion: reduce) {
    .finance-connotation-card,
    .finance-connotation-card img,
    .finance-idc-stat {
        transition: none;
    }

    .finance-connotation-item:hover .finance-connotation-card {
        transform: none;
        box-shadow: 0px 2px 30px 0px rgba(0,0,0,0.17);
    }

    .finance-connotation-item:hover .finance-connotation-card img {
        transform: none;
    }

    .finance-idc-stat:hover {
        transform: none;
        filter: none;
    }

    a.finance-clients-partner,
    a.finance-clients-partner::before,
    .finance-clients-case,
    .finance-faq-item,
    .finance-faq-icon::after,
    .finance-faq-body,
    .finance-values-card {
        transition: none;
    }

    .finance-values-card:hover {
        transform: none;
    }
}
