.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

li {
    list-style: none;
}

.business-box {
    margin: 100px auto;
    margin-bottom: 120px;
    width: 1190px;
}

.business-box .left {
    float: left;
    width: 190px;
    height: 1100px;
}

.business-box .right {
    float: left;
    width: 890px;
    margin-left: 110px;
}

.business-list {
    margin: 20px 0 50px 0;
}

.business-list h3 {
    font: 28px 'Noto Sans SC';
    color: #333;
    margin-bottom: 50px;
}

.business-list ul {
    border-left: 2px solid #005da2;
    padding: 0px 28px;
    margin-top: 40px;
    margin-bottom: 0;
}

.business-list ul li:nth-child(2n-1) {
  /* margin-bottom: 20px; */
  font: 14px 'Noto Sans SC';
  color: #999;
  line-height: 36px;
}
.business-list ul li:nth-child(2n) {
  /* margin-bottom: 20px; */
  font: 18px 'Noto Sans SC';
  color: #333;
  line-height: 36px;
}

.business-list ul li table tr th {
    text-align: center;
    width: 445px;
    height: 47px;
    background-color: #f7f8f8;
    border-width: 1px;
    border-color: #ebebeb;
    border-style: solid;
    font: 16px 'Noto Sans SC';
    color: #333;
    line-height: 16px;
}
.text-title {
  font: 14px 'Noto Sans SC';
  color: #999;
}
.middle-text {
  font: 18px 'Noto Sans SC';
  color: #333;
}
.big-text {
  font: 24px 'Noto Sans SC';
  color: #333;
}
.fadeInUp1 {
    animation-name: business-move;
    animation-duration: 1s;
    -webkit-animation-name: business-move;
    -webkit-animation-duration: 1s;
}

@keyframes business-move {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-webkit-keyframes business-move {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}