/* 公共 */
.common .flex-center{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.common .flex-item{
    flex: 1;
}
.common .pd-rg32px{
    padding-right: 32px;
}
.common .text-right{
    text-align: right;
}
.common .border-radius14{
    border-radius: 14px;
}
.common .text-ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-clamp: 2;
}
.common .padding-Y24{
    display: inline-block;
    padding: 24px 0;
}
.common .padding-Y2414{
    display: inline-block;
    padding-top: 24px;
    padding-bottom: 14px;
}
.common .padding-top14{
    display: inline-block;
    padding-top: 14px;
}
.common .width100{
    width: 100% !important;
}
/* banner */
.common .banner{
    min-height: 800px;
}
.common .banner-box  {
    overflow: hidden;
    background: linear-gradient(180deg, #ebeafb, #fff);
    border-bottom: 1px solid rgba(15, 15, 16, .1);
}
.common .banner-box .container{
    margin-top: 74px;
    padding-top: 40px;
}
.common .banner-box .container .banner-info{
    transform: translateY(-20px);
}
.common .banner .pm-btn[mode=button].svelte-idovfm.svelte-idovfm{
    display: none;
}

.common .module-title{
    width: 100%;
    color: var(--color-text-primary);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    font-weight: 700;
}
.common .pmv-section-title.svelte-1bj7wbv .module-desc.svelte-1bj7wbv {
    width: 100%;
    color: var(--color-text-secondary);
    font-size: var(--font-size-primary);
    line-height: var(--line-height-primary);
    font-weight: 330;
}
.common .banner-image img{
    width: 380px;
    height: 340px;
}

/* contact-pre contact-pre */
.common .contact-pre {
    padding: 40px 0;
}
.common .contact-pre .flex-item .contact-link {
    display: block;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid #ebeafb;
    color: #151516;
    text-decoration: none;
    
}
.common .contact-pre .flex-item .contact-link h1{
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 20px;
}
.common .contact-pre .flex-item .contact-link p{
    color: #ccc;
}

.common .title-box{
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
}
.common .title-box .module-title{
    padding: 14px 0 ;
}
.common .title-box a{
    text-decoration: none;
    font-size: 20px;
    color: #3e3d3d;
    font-weight: normal;
}
.common .title-box a:hover{
    color: var(--color-link);
}
.common .content-box *{
    font-size: 18px;
    line-height: 1.5;
}
.common .content-box .img-style{
    width: 80%;
    max-height: 500px;
    object-fit: contain;

}
.common .content-box em{
   font-size: 16px;
   color: #a4a1a1;

}

@media (max-width: 768px) {
    .common .banner-box .container{
        margin-top: 50px;
        padding-top: 40px;
    }
    .common .banner-box .container .banner-info{
        transform: translateY(0);
    }
    .common .flex-center {
        display: block;
        height: 100%;
        flex-direction: column;
        padding-top: 24px;
        padding-bottom: 34px;
        gap: 32px;
    }
    .common .banner-image{
        display: none;
    }
}
/* 动画 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    animation: fadeInDown 0.8s ease-out both;
}