* {
    margin: 0;
    padding: 0;
}
.flowChart {
    /*background-color: rgb(245, 245, 245);*/
    /* padding: 12px; */
    height: 460px;
    margin-left: -50px;
    width: max-content;
}
.flowChart .solid {
    width: 305px;
    border-top-style: solid;
    border-top-color: #DCDCDC;
    border-top-width: 3px;
    position: absolute;

}
.flowChart .oneNode {
    display: flex;
    position: relative;
    height: 230px;
    width: 160px;
    float: left;
}
.flowChart .check {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    line-height: 40px;
    color: white;
    font-size: 12px;
    text-align: center;
    position: absolute;
    left: 75px;
    flex-shrink: 0;
    background-color: rgb(125, 122, 117);
    border: 4px solid rgb(173,168,163);
}
.tag-boder {
    /* width: 2px;
    height: 30px;
    background: gainsboro; */
    position: absolute;
    left: 85px;
}
.flowChart .NodeDetail {
    background-color: white;
    width: 255px;
    height: 155px;
    flex-grow: 1;
    display: flex;
    position: absolute;
    left: 20px;
    background: #F4F4F4
}


.NodeDetail-content {
    /* width: 124px;
    height: 124px; */
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #636465;
    padding: 20px;
    text-align: left;
}
.BadgeGray {
    background-color: rgb(104, 108, 104);
}

.upNode{
    top: 25px;
}
.bottomNode{
    top: 205px;
}
.upNode .NodeDetail{
    top: 0;
}
.upNode .check{
    top:205px;
    background: transparent!important;
    border-color:transparent!important;
    font-size: 16px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #636465;
}
.upNode .check::before {
    display: block;
    content:"";  
    width:16px;
    height: 16px;
    font-size: 12px;
    border-radius:50%;
    background: #DCDCDC;
    position: absolute;
    top: -12px;
    left: 12px;
    z-index: 999;
}
.upNode .tag-boder{
    top: 152px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #F4F4F4;;
}
.upNode .solid{
    top: 205px;
}

.bottomNode .NodeDetail{
    top: 90px;
}
.bottomNode .check{
    top:25px;
    background: transparent!important;
    border-color:transparent!important;
    font-size: 16px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #636465;
}

.bottomNode .check::before {
    display: block;
    content:"";  
    width:16px;
    height: 16px;
    font-size: 12px;
    border-radius:50%;
    background: #DCDCDC;
    position: absolute;
    top: -12px;
    left: 12px;
    z-index: 999;
}

.bottomNode .tag-boder{
    top: 73px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 18px solid #F4F4F4;;

}
.bottomNode .solid{
    top: 25px;
}


.startNode{
    display:none;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    color: white;
    font-size: 12px;
    position: relative;
    right: 0;
    float: left;
    top: 224px;
    flex-shrink: 0;
    background-color: rgb(234, 234, 234);
    border: 2px solid rgb(220, 220, 220);
}
.endNode {
    display:none;
    width: 0;
    height: 0;
    border: 10px solid;
    border-style: dashed;
    border-color: transparent transparent transparent gainsboro;
    position: relative;
    float: left;
    top: 221px;
}

.NodeDetail:hover::before {
    display: none;
    content: attr(data-title);    /*取到data-title属性的值*/
    height: auto;
    width: 250px;
    padding: 10px 14px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #DEDEDE;
    position: absolute;
    top: -20px;
    left: -50px;
    z-index: 999;
}
/* 位置 */
div.Set.up.of.internal {
    left: -15px;
}
div.Foundation.of.Zaowoo.Intelligent{
    left: 10px;
}
div.Set.up.of.the.first{
    left: -20px;
}
div.Official.Launch.of.jewelry{
    left: -15px;
}

/* 移入 */
.flowChart .oneNode:hover .NodeDetail-content{
    color: #FFF;
}
.flowChart .oneNode:hover .NodeDetail{
    background-color: #E1AE93;
}
.flowChart .oneNode:hover .tag-boder{
    border-top: 18px solid #E1AE93;
}
.flowChart .Set:hover .tag-boder,
.flowChart .Aura:hover .tag-boder
{
    border-bottom: 18px solid #E1AE93;
    border-top: none;

}