.graph-title {
    text-align: center;
    margin: 48px 0;
}

.graph {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
}

.graph img {
    width: 100%;
}

.graph .graph-content {
    position: absolute;

}

.graph .graph-content-box {
    position: relative;
    width: 180px;
    height: 100px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph .graph-desc {
    position: relative;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph-c1 {
    top: 90px;
    left: 0;
}

.graph-c2 {
    top: -6px;
    right: 376px;
}

.graph-c3 {
    bottom: 50px;
    left: 390px;
}

.graph-c4 {
    top: 181px;
    right: -112px;
}
.graph-c5 {
    top: 129px;
    right: 203px;
}

.graph-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #8A0303;
    cursor:pointer;
}

.gd1 {
    top: 190px;
    right: 26px;
}

.gd2 {
    top: 50px;
    right: -102px;
}

.gd3 {
    top: 36px;
    left: -138px;
}

.gd4 {
    top: 14px;
    left: -109px;
}
.gd5{
    bottom: -54px;
    left: -42px;
}

.graph-line {
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.graph-line1 {
    bottom: -50px;
    left: 69px;
    width: 110px;
    height: 2px;
    background: #8A0303;
    transform: rotateZ(67deg);
}

.graph-line2 {
    top: 5px;
    right: -39px;
    width: 2px;
    height: 100px;
    background: #8A0303;
    transform: rotateZ(98deg);
}

.graph-line3 {
    top: 45px;
    left: -120px;
    width: 125px;
    height: 2px;
    background: #8A0303;
    transform: rotateZ(0);
}

.graph-line4 {
    top: -11px;
    left: -49px;
    width: 2px;
    height: 100px;
    background: #8A0303;
    transform: rotateZ(108deg);
}
.graph-line5 {
top: 74px;
    left: 5px;
    width: 2px;
    height: 100px;
    background: #8A0303;
    transform: rotateZ(60deg);
}
.graph:has(.gd1:hover) .graph-line1,
.graph:has(.gd1:hover) .cbox1 {
  opacity: 1;
  visibility: visible;
}
.graph:has(.gd2:hover) .graph-line2,
.graph:has(.gd2:hover) .cbox2 {
  opacity: 1;
  visibility: visible;
}
.graph:has(.gd3:hover) .graph-line3,
.graph:has(.gd3:hover) .cbox3 {
  opacity: 1;
  visibility: visible;
}
.graph:has(.gd4:hover) .graph-line4,
.graph:has(.gd4:hover) .cbox4 {
  opacity: 1;
  visibility: visible;
}
.graph:has(.gd5:hover) .graph-line5,
.graph:has(.gd5:hover) .cbox5 {
  opacity: 1;
  visibility: visible;
}