.tips-box {
  position: relative;
  padding: 30px 40px;
  background-color: #f9f9f9;
  background: linear-gradient(to bottom, #dbeaff, #f9fbfe);
  border-radius: 12px;
  margin-right: 100px;
}

.tips {
  margin: 0;
  font-size: 18px;
  color: #2c3091;
  line-height: 1.8;
  text-align: left;
}

.tips.one {
  font-weight: bold;
  margin-bottom: 10px;
}

.tips-image {
  position: absolute;
  right: -55px;
  width: 250px;
  top: 82%;
}

.tips-box-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%,-50%);
  background: linear-gradient(to bottom, #0655c2, #f9fbfe);
  z-index: -1;
  padding: 4px;
  border-radius: 12px;
}
@media screen and (max-width: 900px) {
  .tips-box{
    padding: 20px;
  }
  .tips-image {
    display: none;
  }
}