.index-body {
    background-color: #fafbfc;
}

.index-body-main {
    width: 1200px;
    margin: auto;
    height: calc(300vh - 210px);
    /* display: flex;
    justify-content: flex-end; */
}

.index-body-left {
    flex-shrink: 0;
    width: 30%;
    box-sizing: border-box;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-body-left-list {
    display: none;
}

.index-body-right {
    width: 70%;
    float: right;
}

.index-body-right-list {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.index-body-right-img {
    width: 90%;
    height: auto;
}

.block {
    display: block !important;
    color: black !important;
}

.index-body-left-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
}

.index-body-left-brief {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 24px;
}

.index-body-right-span {
    width: 1px;
    height: 1px;
}

.index-company {
    padding: 50px 0;
}

.index-company-main {
    position: relative;
    width: 1200px;
    overflow: hidden;
    margin: 30px auto 0;
}

.index-company-line {
    width: 2400px;
    padding: 10px;
    white-space: nowrap;
    animation: 20s companyLoop linear infinite normal;
}

.index-company-list {
    width: 126px;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
    padding: 0 7px;
    border: 1px solid #ebedf0;
    box-shadow: 0 0 15px 0 rgb(219 219 219 / 50%);
}

.index-vague {
    position: absolute;
    z-index: 10;
    top: 0;
    width: 280px;
    height: 100%;
}

.index-number {
    padding-top: 50px;
}

.index-three-info {
    margin: 50px auto;
    width: 1200px;
    background: white;
    box-shadow: 0 0 25px 0 #e1e1e1;
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0;
}

.index-three-info-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 400px;
}

.index-three-num {
    font-size: 50px;
    color: #007aff;
}

.index-three-text {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.7;
}

.index-service {
    padding: 50px;
}

.index-service-body {
    position: relative;
    margin: 50px auto 0;
    width: 1200px;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.index-service-list {
    position: relative;
    z-index: 2;
    padding: 30px 10px;
    width: 280px;
    border-radius: 8px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-box-shadow: 0 4px 16px 0 rgb(8 30 80 / 8%);
    box-shadow: 0 4px 16px 0 rgb(8 30 80 / 8%);
    background-color: #fff;
}

.index-service-list:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 4px 16px 0 rgb(8 30 80 / 15%);
}

.index-service-title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 22px;
    color: #101010;
    font-weight: 700;
}

.index-service-brief {
    font-size: 16px;
    text-align: center;
    color: #6a7b8d;
}

.index-news {
    padding: 50px;
    background: #fafbfc;
}

.index-news-info {
    width: 1200px;
    margin: 50px auto 0;
}

.index-news-list {
    width: 1200px;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    transition: all .3s;
    cursor: pointer;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 16px 0 rgb(8 30 80 / 8%);
    transition: all .2s ease;
    margin-bottom: 20px;
}
.index-news-list:last-child{
    margin-bottom: 0;
}
.index-news-list:hover{
    /* transform: translateY(-10px); */
    box-shadow: 0 4px 16px 0 rgb(8 30 80 / 15%);
}

.index-news-img {
    width: 210px;
    height: 140px;
    margin-right: 15px;
    flex-shrink: 0;
}

.index-news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index-news-top {}

.index-news-title {
    color: #3E464C;
    font-size: 16px;
    font-weight: 500;
}

.index-news-brief {
    height: 35px;
    margin: 10px 0 54px;
    width: 100%;
    color: #68747F;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
}

.index-news-time {
    color: #A1A6AB;
    font-size: 12px;
}

@keyframes companyLoop {
    0% {
        transform: translate(0);
    }
    100% {
        transform: translate(-1200px);
    }
}