.quotation-right ul,
.quotation-right ul ul {
  list-style: none;
  margin: 0;
}
.quotation-right .text-primary {
  color: #00a870;
}
.quotation-right ul.before-dot li::before {
  content: ' ';
  display: inline-block;
  width: 4px;
  height: 4px;
  transform: translateY(-2px);
  border-radius: 2px;
  margin: 0 8px;
  background-color: #68747F;
}

.quotation-main {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  margin-bottom: 60px;
}
.quotation-left {
  width: 217px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quotation-left a {
  color: #3E464C;
  padding-left: 11px;
  font-size: 14px;
  line-height: 38px;
  border: 1px solid transparent;
  width: 160px;
  font-weight: 400;
}
.quotation-left a:hover {
  color: #00a870;
}
.quotation-left a.active {
  color: #00a870;
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  font-weight: 500;
}
.quotation-left a.active::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('../image/chevron-right.png');
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .quotation-main {
    flex-direction: column;
  }
  .quotation-left {
    margin-bottom: 10px;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
  .quotation-left a {
    word-break: keep-all;
    white-space: nowrap;
    padding-right: 11px;
    width: auto;
  }
  .quotation-left a::after {
    display: none !important;
  }
}

.quotation-right {
  flex: 1;
  position: relative;
  background-color: #fff;
  padding: 38px 40px 30px;
}
.quotation-right .right-top-bg {
  position: absolute;
  top: 0;
  right: 30px;
  width: 120px;
  height: 150px;
  background: url('../image/right-logo.svg') no-repeat;
}
.quotation-right .one-content {
  margin-bottom: 30px;
}
.quotation-right .one-content .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 8px;
  color: #3F464D;
}
.quotation-right .one-content .content,
.quotation-right .one-content .content p,
.quotation-right .one-content .content li {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 0;
  color: #68747F;
}

.step-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}
.step-box .one-step {
  display: flex;
  flex-direction: column;
  padding-right: 22px;
  margin-top: 16px;
}
.step-box .one-step .step-title {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  padding: 8px 20px;
  word-break: keep-all;
  white-space: nowrap;
  background: #E8F3F5;
  color: #433D4D;
}
.step-box .one-step:not(:last-child) .step-title::before {
  content: ' ';
  display: inline-block;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%); 
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 10px solid #00A971;
  border-bottom: 6px solid transparent;
}
.step-box.not-arrow .one-step .step-title::before {
  display: none;
}
.step-box .one-step .step-content {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #E8F3F5;
  padding: 10px 20px;
}
.step-box .one-step .step-content p {
  line-height: 30px;
  font-weight: normal;
  font-size: 14px;
  color: #68747F;
}
.step-box .one-step ul li {
  line-height: 30px;
  font-weight: normal;
  word-break: keep-all;
  white-space: nowrap;
  font-size: 14px;
  color: #68747F;
}