﻿.lightPointContainer {
    width: 100%;
    /*height: 320px;*/
    display: flex;
}

.lightPointContainer > .item {
    border: 1px solid #BBD5D0;
    border-right: 1px solid transparent;
    box-sizing: border-box;
    padding: 35px;
    flex: 1;
    flex-grow: 1;
    cursor: pointer;
    background-color: white;
    transition: 0.3s all ease;
    position: relative;
    z-index: 0;
    overflow-y: hidden;
}

.lightPointContainer > .item:last-child {
    border-right: 1px solid #BBD5D0;
}

.lightPointContainer > .item > .icon {
    width: 40px;
    height: 40px;
    /*background-color: #19C2C4;*/
    background-size: cover;
    opacity: 1;
    transition: 0.3s all ease;
    border-radius: 3px 3px;
}

.lightPointContainer > .item > .title {
    width: 100%; /*calc(100% - 70px);*/
    font-size: 17px;
    font-weight: bold;
    background-color: white;
    transition: 0.3s all ease;
    border-bottom: 1px solid #BBD5D0;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
/*added by zengbo,2023-03-15*/
.subhead {
    font-size: 16px;
    font-weight: 500;
    color: #7AA1A6;
    line-height: 30px;
    margin-bottom: -10px;
    margin-left: -10px;
}
/*end*/

.lightPointContainer > .item > .desc {
    color: var(--textGrayColor);
    font-size: 14px;
    font-weight: normal;
    line-height: 25px;
    margin-top: 5px;
}

/*诊断分析*/
.sectionTitle {
    font-size: 18px;
    font-weight: bold;
    color: var(--textNormalColor);
    margin-bottom: 10px;
    margin-top: 40px;
}

.analyContainer {
    display: flex;
    margin-bottom: 20px;
}

.analyContainer:last-child {
    margin-bottom: 0px;
}

.analyContainer > .item {
    flex: 1;
    flex-grow: 1;
    color: var(--textGreenColor);
}

.analyContainer > .item.orangle {
    color: rgb(243,153,49);
}

.analyContainer > .item > .title1 {
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: solid 2px #DAE8E8;
    width: 422px;
}

.analyContainer > .item > .number {
    font-family: akrobat-extrabold;
    font-size: 80px;
}

.analyContainer > .item > .number > .unit {
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
}

.analyContainer > .item > .desc {
    color: var(--textGrayColor);
}

.analyContainer > .item > .detail {
    margin-top: 20px;
}

.analyContainer > .item > .detail > .item {
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    color: var(--textNormalColor);
    padding-right: 50px;
    margin-bottom: 15px;/*added by zengbo,2023-03-15*/
}

.analyContainer > .item > .detail > .item > .number {
    float: right;
    color: rgb(243,153,49);
}

.mainBanner {
    position: relative;
}

.mainBanner.banner2:before {
    content: ' ';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(/images/sd-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

/*added by zengbo,2023-03-15*/
.exampleContainer {
    padding-left: 97px;
    padding-top: 48px;
    background-color: #F8FBFB;
}