.pix-banner {
  overflow: hidden;
  color: #fff;
  font-size: 24px;
  padding: 0 12px;
  height: 70px;
  max-width: 400px;
  display: flex;
  margin: 5px auto;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #538E55;
  background: -moz-linear-gradient(to bottom, #B0D298, #58A15A 50%, #538E55);
  background: -webkit-linear-gradient(to bottom, #B0D298, #58A15A 50%, #538E55);
  background: linear-gradient(to bottom, #B0D298, #58A15A 50%, #538E55);
  position: relative; }
  @media screen and (max-width: 415px) {
    .pix-banner {
      font-size: 17px;
      height: 51px;
      padding: 0 8px;
      width: 290px;
      margin: 0 auto;
    }
  }
  .pix-banner > .main-text-box {
    margin-top: 0 !important;
  }
  .pix-banner > .main-text-box p {
    margin: 0;
    text-shadow: 2px 2px 0 #538E55; }
  @media screen and (max-width: 415px) {
    .pix-banner > .main-text-box p {
      font-size: 15px;
    }
  }
  .pix-banner::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: #fff;
    /* animation: shiny-btn 3s ease-in-out infinite; */
    /* -webkit-animation: shiny-btn 3s ease-in-out infinite; */
  }
  .pix-banner > .box {
    background-color: #fff;
    color: #5CAC5C;
    font-size: 17px;
    width: 50px;
    height: 48px;
    line-height: 22px;
    padding: 2px 0 2px 0;
    text-align: center;
    box-shadow: 1px 1px 0px 0 #538E55;
    position: relative; }
    @media screen and (max-width: 415px) {
      .pix-banner > .box {
        font-size: 13px;
        width: 40px;
        height: 38px;
        line-height: 17px;
        padding: 2px 0 2px 0; } }
    .pix-banner > .box > p {
      margin: 0; }
  .pix-banner > .right-icon-box {
    margin-top: 0 !important;
    background-color: #fff;
    color: #5CAC5C;
    font-size: 12px;
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 1px 1px 0px 0 #538E55;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center; }
  .pix-banner > .right-icon-box > .arrow-right {
    position: absolute;
    top: 6px;
    left: 5px;
    vertical-align:middle;
    border-top: solid 3px #58a05a;
    border-right: solid 3px #58a05a;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
  }

@keyframes shiny-btn {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

@-webkit-keyframes shiny-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
