* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    background-image: url('../images/page-head-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: calc(3rem + 60px) 2rem 3rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
.header-decorate{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-86%, 3rem);
    width: 16rem;
    height: 17rem;
    background-image: url('../images/panda.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
}

.header-content {
    width: 892px;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-head-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 1rem;
    line-height: 1;
}
.page-head-span{
    color: rgba(248, 210,112, 1);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.page-head-subspan{
    color: rgba(248, 210,112, 1);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.page-head-sub-title{
    max-width: 600px;
    font-size: 1.1rem;
    color: #fff;
    vertical-align: bottom;
    text-align: left;
    margin-top: 2rem;
    max-width: 540px;
}
.page-head-sub-span{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(248, 210,112, 1);
    white-space: nowrap;
}

.page-head-pop{
    background-color: rgba(94, 169, 248, 1);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: max-content;
}
.page-head-pop::before{
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    border-right-color: rgba(94, 169, 248, 1);
    
}

.page-head-pop-title{
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1rem;
}
.page-head-pop-content{
    font-size: 0.8rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

.page-head-bottom-title{
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    margin-top: 4rem;
    text-align: left;
}

.page-nav {
    background-color: rgba(74, 148, 227, 0.9);
    padding: 1rem !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
}
.page-nav .li{
    line-height: 1.6 !important;
}
.nav-logo{
    width: 170px;
    height: 50px;
    background-image: url('../images/page-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 2rem;
}
.nav-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3b82f6;
    text-decoration: none;
}
.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #2563eb;
}
.logout-btn,
.logon-btn{
    line-height: 32px!important;
    color: #3b82f6;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 0 16px;
    font-size: 0.8rem;
    user-select: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    cursor: pointer;
    white-space: nowrap;
}
nav ul .active{
    position: relative;
}
nav ul .active::before{
    content: '';
    width: 30px;
    height: 4px;
    background-color: rgba(248, 210,112, 1);
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}
nav a {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #3b82f6;
}

main {
    margin: 0 auto;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

footer {
    background-color: rgba(52, 60,81, 1);
    text-align: center;
    padding: 0;
    margin-top: 4rem;
}

@media (max-width: 800px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    nav ul {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
    }
    nav a{
        color: #333;
    }
    nav.active ul {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 3rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: left;
    position: relative;
}
.footer-logo{
    background-image: url('../images/bottom-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    margin-left: 5rem;
}
.footer-section h3::before{
    content: '';
    width: 2rem;
    height: 0.1rem;
    background-color: rgba(92, 151,241, 1);
    position: absolute;
    bottom: -0.5rem;
    left: 0;
}

.footer-section ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-section ul li {
    line-height: 1.5rem;
    white-space: nowrap;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid rgba(79, 86, 106, 0.8);
    padding: 1rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom span,
.footer-bottom a {
    margin: 0 0.2rem;
    color: rgba(162,162,179, 1);

}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }
    .footer-section2{
        display: none;
    }
}
.login-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}
/* 修改登录模块样式 */
.login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
}
.login-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.login-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    background: #f8f9fa;
}

.login-tab.active {
    color: #3b82f6;
    background: white;
    border-bottom: 2px solid #3b82f6;
}

.login-content {
    padding: 1.5rem;
}

.login-form {
    display: none;
}

.login-form.active {
    display: block;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

.qr-expired {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.qr-expired button {
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.qr-expired button:hover {
    background: #2563eb;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.login-toggle {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-toggle:hover {
    background: #2563eb;
}

/* 添加图片展示行样式 */
.image-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.image-row {
    position: relative;
    max-width: 1000px;
    margin: -30px auto 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

.image-item {
    flex: 1;
    max-width: 280px;
    aspect-ratio: 1.28;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-item:hover {
    transform: translateY(-5px);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.part-title{
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2.5rem;
    vertical-align: bottom;
    line-height: 1;
}
.part-title-span{
    color: rgba(92, 151,241, 1);
    line-height: 1;
    font-size: 2rem;
}
/* 添加视频模块样式 */
.video-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.video-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.video-wrapper {
    flex: 2;
    width: 50rem;
    aspect-ratio: 16/9;
    background: rgba(184, 216, 250, 1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 14px 12px rgba(187, 205, 227, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper video {
    width: 96%;
    height: 95%;
    object-fit: cover;
    border-radius: 8px;
}
.video-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video-left-top{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    width: 270px;
    padding-left: 1rem;
}
.video-left-top-item{
    width: 33.33%;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.video-left-top-item-decorate{
    width: 10px;
    height: 10px;
    background-color: rgba(92, 151,241, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}
.video-left-top-item-decorate::before{
    content: '';
    width: 5px;
    height: 5px;
    background-color: rgba(92, 151,241, 1);
    border-radius: 50%;
}
.video-left-top-item-text{
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}
.video-left-title{
    font-size: 1rem;
    font-weight: 600;
    color: rgba(92, 151,241, 1);
    text-align: center;
    margin-top: 1rem;
}

.video-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding-left: 0;
    padding-bottom: 1.5rem;
    box-sizing: border-box;
}
.video-right-line{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    padding-left: 1rem;    
}
.video-right-decorate{
    width: 10px;
    height: 10px;
    background-color: rgba(92, 151,241, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    
}

.video-right-decorate::before{
    content: '';
    width: 5px;
    height: 5px;
    background-color: rgba(92, 151,241, 1);
    border-radius: 50%;
}

.video-right-text{
    font-size: 0.7rem;
    color: #333;
    text-align: left;
    line-height: 1.8;
}

/* 
@media (max-width: 1024px) {
    .video-container {
        flex-direction: column;
        text-align: center;
    }

    .video-wrapper {
        width: 100%;
    }
} */

.decorate-title{
    position: relative;
    margin: 5rem auto 0;
    width: max-content;
}
.decorate-title-decorate{
    width: 90px;
    height: 96px;
    background-image: url('../images/panda.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}
.decorate-title-main{
    background-image: linear-gradient(to right, rgba(75, 135,231, 1), rgba(114, 185 , 250, 1));
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    vertical-align: bottom;
    border-radius: 16px 0 16px 0;
    width: max-content;
    padding: 14px 20px 14px 90px;
    box-shadow: 8px 8px 1px rgba(114, 185 , 250, 0.3);
}
.decorate-title-main-span{
    font-size: 1.3rem;
    line-height: 1;
}
/* 添加图文展示模块样式 */
.image-text-section {
    padding: 2rem 0 0;
}

.image-text-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
}

.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: auto;
    display: block;
}
.image-side-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.title-side{
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    vertical-align: bottom;
    margin-bottom: 1rem;
}
.title-side-span{
    color: rgba(92, 151,241, 1);
    font-size: 2.2rem;
}
.content-side{
    font-size: 0.9rem;
    color: #333;
    text-align: left;
    line-height: 2rem;
}

/* AI模型展示区域样式 */
.ai-models-section {
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 2rem 3rem;
    background-image: url('../images/section-4-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.ai-models-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ai-models-title {
    text-align: center;
    color: #333;
}

.ai-models-title h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.ai-models-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-model-card {
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0 14px;
}
.ai-model-card img{
    width: 122px;
    height: 40px;
    object-fit: contain;
}
.ai-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: white;
}


/* 添加客服悬浮按钮样式 */
.customer-service {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 1000;
}

.customer-service:hover {
    transform: translateY(-5px);
}

.customer-service img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.customer-service span {
    font-size: 12px;
    color: #666;
}

/* 添加底部列表样式 */
.bottom-lists {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    gap: 2rem;
}

.bottom-list {
    flex: 1;
}
.bottom-list-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    width: max-content;
}
.bottom-list-title::before{
    content: '';
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-image: linear-gradient(to right, rgba(92, 151,241, 1), rgba(114, 185 , 250, 0));
}

.bottom-list .list-items {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    box-sizing: border-box;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed #eee;
}

.list-item-logo {
    width: 3rem;
    height: 3rem;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-item-time{
    position: relative;
    width: 40px;
    height: 36px;
    margin-right: 0.5rem;
    background-color: rgba(90, 154,246, 1);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    box-sizing: border-box;
}

.list-item-time::before,
.list-item-time::after{
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50% 50% 0 0;
    transform: translateY(-100%);
    background-color: rgba(90, 154,246, 1);
}
.list-item-time::after{
    left: unset;
    right: 6px;
}
.list-item-time-month{
    line-height: 12px;
    font-size: 8px;
    color: #fff;
    white-space: nowrap;
}
.list-item-time-day{
    line-height: 21px;
    width: 36px;
    background-color: #fff;
    font-size: 1rem;
    color: rgba(90, 154,246, 1);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 2px;
    text-align: center;
}
.list-item-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-content {
    flex: 1;
}

.list-item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.list-item-subtitle {
    font-size: 0.6rem;
    color: #666;
}
.min-width {
    min-width: 1200px;
}


@media (max-width: 768px) {
    .image-text-container {
        flex-direction: column;
        gap: 2rem;
    }

    .text-side {
        padding: 0;
    }

    .ai-models-section {
        padding: 4rem 1rem;
    }

    .ai-models-grid {
        gap: 0.75rem;
    }

    .ai-model-card {
        width: 160px;
    }

    .ai-model-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .image-item {
        min-width: 
        max-width: 400px;
    }
    .ai-models-grid{
        padding: 0;
    }
    .header-content{
        width: 100%;
    }
    .decorate-title{
        width: 100%;
    }
    .decorate-title-main{
        width: 100%;
    }
    .page-head-pop{
        display: none;
    }
    .video-container{
        flex-direction: column;
    }
    .video-wrapper{
        width: 100%;
    }
    .footer-section ul{
        display: none;
    }
} 

@media (max-width: 768px) {
    .min-width {
        min-width: 100%;
    }
    .bottom-lists {
        flex-direction: column;
        gap: 2rem;
    }

    .customer-service {
        bottom: 20px;
        right: 20px;
    }
    header{
        flex-direction: column;
    }
    .login-container {
        position: relative;
        margin-top: -40px;
        transform: translateY(0);
        top: 0;
        right: 0;
    }
}
.fixed-box {
    position: fixed;
    top: 60%;
    z-index: 1000;
    right: 0;
    max-width: 100px;
}
.navBtn {
    background: #fff;
    padding: 9px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 6px 0px 0px 6px;
    width: 58px;
    height: 58px;
    text-align: center;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0px 0px 4px 0px #d3d3d3;
  }
  .quanwei:hover,
  .waiwen:hover,
  .dinggao:hover,
  .qita:hover {
    color: #fff;
  }
  .navBtn.QQ,
  .navBtn.WX {
    position: relative;
    padding: 15px;
  }
  .navBtn.QQ:hover .qq,
  .navBtn.QQ:hover:after {
    display: block;
  }
  .navBtn.WX:hover .wxKF,
  .navBtn.WX:hover:after {
    display: block;
  }
  .navBtn.WX:hover {
    box-shadow: 0px 0px 4px 0px #006cff;
  }
  .navBtn.QQ:after,
  .navBtn.WX:after {
    content: '';
    position: absolute;
    left: -14px;
    width: 14px;
    height: 54px;
    top: 4px;
  }
  .qq {
    background: #fff;
    position: absolute;
    left: -274px;
    width: 260px;
    height: 54px;
    line-height: 54px;
    color: #333333;
    font-size: 14px;
    top: 4px;
    box-shadow: 0px 0px 4px 0px #e1dfdf;
    display: none;
  }
  .wxKF {
    position: absolute;
    left: -228px;
    bottom: 0;
    display: none;
  }
  .wxKF .customerBox {
    width: 218px;
    background-image: linear-gradient(180deg, #e4f3ff 0%, white 60%);
    box-shadow: 0 0 5px 0px #d7d7d7;
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .wxKF .customerBox .head {
    height: 48px;
    line-height: 48px;
    color: #303133;
    font-size: 14px;
    border-bottom: 1px solid #ffffff;
    background: transparent !important;
    text-align: left;
  }
  .wxKF .customerBox .head .customer-title {
    width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
  }
  .wxKF .customerBox .head img {
    vertical-align: middle;
    margin-top: -1px;
    margin-left: 20px;
    margin-right: 4px;
  }
  .wxKF .customerBox .customerCode {
    text-align: center;
    padding: 20px 0 16px 0;
    line-height: normal;
    position: relative;
    display: none;
  }
  .wxKF .customerBox .customerCode img {
    width: 150px;
    height: 150px;
  }
  .wxKF .customerBox .segmentation-line {
    width: 168px;
    height: 1px;
    background: #e7e7e7;
    margin: 0 auto;
  }
  .wxKF .customerBox .customerWay {
    padding-left: 20px;
    padding-top: 16px;
    padding-bottom: 20px;
    text-align: left;
  }
  .wxKF .customerBox .customerWay p {
    line-height: 2;
    color: #666666;
    font-size: 12px;
    margin: 0;
    display: none;
  }
  .wxKF .customerBox .customerWay p .s0 {
    width: 30px;
    display: inline-block;
    font-size: 12px;
  }
  .wxKF .customerBox .customerWay p .s1 {
    color: #333333;
    margin-left: 4px;
    font-size: 12px;
  }
  .wxKF .customerBox .noCustomer {
    line-height: 2;
    margin: 0;
    font-size: 14px;
    color: #303133;
    padding: 15px 20px;
    display: none;
  }
  .wxKF .customerBox .customBg {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .wx-c span {
    color: #666;
  }
  .wx-c > p {
    display: none;
  }
  .navBtn.WX {
    padding: 12px 10px;
  }