section {
    min-width: 1200px;
    max-width: 100%;
    width: 100%;
}

.lj-header {
    position: fixed;
}

body {}

.about-head {
    height: 960px;
    background-repeat: no-repeat;
    background-image: url(../image/about-head-bg.png);
    background-size: 100% 100%;
    color: var(--text-white);
    box-sizing: border-box;
    padding-top: 238px;

}

.about-head .textbox {
    max-width: 1200px;
    margin-left: 360px;
    width: 100%;
}

.title {
    font-size: 60px;
    line-height: 80px;
    font-weight: 400;
}

.title+p {
    font-size: 24px;
    line-height: 32px;
    font-weight: lighter;
    border-top: 1px solid rgba(74, 158, 255, 1);
    width: fit-content;

}

.about-head .textbox h2 {
    font-size: 40px;
    line-height: 52px;
    margin: 68px 0;

}

.about-head .textbox h2+p {
    display: block;
    max-width: 410px;
    line-height: 30px;
}

.business-box {
    height: 960px;

    background-repeat: no-repeat;
    background-image: url(../image/about-bg-2.png);
    background-size: 100% 100%;
    color: rgb(32, 124, 230);
    box-sizing: border-box;
}

.business-box .textbox {
    max-width: 1200px;
    margin: auto;
    padding-top: 180px;
    box-sizing: border-box;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tab-list {
    width: 1200px;
    margin: auto;
    margin-top: 60px;
}

.tab-list img {
    width: 1200px;
    height: 192px;
    object-fit: cover;
    /* box-shadow: 3px 3px 10px 2px rgba(0,0,0,0.1); */
    border-radius: var(--sm-border-radius);
}

.tab-list img+img {
    margin-top: 40px;
}

.services-box {
    height: 960px;
    background-repeat: no-repeat;
    background-image: url(../image/about-bg-3.png);
    background-size: 100% 100%;
    color: var(--text-white);
    box-sizing: border-box;
}

.services-box .textbox {
    max-width: 1200px;
    margin: auto;
    padding-top: 284px;
    box-sizing: border-box;
}

.services-box .title+p {
    border-top: 1px solid var(--text-white);
}

.services-box .textbox h2 {
    margin: 60px 0;
    font-size: 40px;
}

.services-box .textbox p {
    max-width: 512px;
    line-height: 30px;
    font-size: 16px;
}

.pic-box {
    position: absolute;
    top: 0;
    right: 0;
}

.pic-box img {
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.pic-box img:nth-child(1) {
    width: 285px;
    height: 285px;
    right: 700px;
    top: 145px;
}

.pic-box img:nth-child(2) {
    width: 443px;
    height: 443px;
    right: 410px;
    top: 240px;
    z-index: 2;
}

.pic-box img:nth-child(3) {
    width: 390px;
    height: 390px;
    right: 178px;
    top: 263px;
}

.pic-box img:nth-child(4) {
    width: 346px;
    height: 346px;
    right: 637px;
    top: 540px;
}





.map-box {
    max-width: 1200px;
    
    position: relative;
    margin: auto;
    padding: 140px 0 100px;
}

.map-box-title {
    font-size: 40px;
    color: rgba(32, 124, 230, 1);
    margin-bottom: 30px;
}

#mapContainer {
    width: 100%;
    max-height: calc(100vh - 80px);
    height:890px;
    margin: 50px 0;
}

#mapContainer * {
    cursor: unset !important;
}

.map-jigou-list {
    position: absolute;
    top: 0;
    left: 20px;
    width: 388px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    
}

.jigou-card .title {
    font-weight: 700;
    font-size: 18px;
}

.jigou-card {
    display: none;
    width: 388px;
    /* max-height: 266px; */
    border-radius: var(--sm-border-radius);
    background-color: var(--bg-white);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    padding: 20px;
    box-sizing: border-box;
}
.jigou-card:hover{
    color: var(--text-black);
}
.jigou-card:hover .jigou-title{
    color: var(--theme-color-s1);
}

.jigou-card.active {
    display: block;
}

.jigou-card .iconfont {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.jigou-card>div {
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.jigou-card .short-title-pic {
    width: 160px;
    height: 106px;
    box-sizing: border-box;
    padding: 0 50px;
    line-height: 45px;
    margin: 0;
}

.jigou-card img {
    width: 160px;
    min-height: 90px;
    object-fit: cover;
    
}
.jigou-card>div>p {
    padding-top: 20px;
    line-height: 30px;
    font-size: 18px;
}
.jigou-card .addr {
   line-height: 30px;
    
}
.jigou-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.justify-between{
    justify-content: space-between;
}