@charset "utf-8";
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
* {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
img {
  border: none;
}
input,
select,
textarea {
  outline: none;
  border: none;
  background: none;
}
#animationTipBox textarea {
  resize: none;
}
#animationTipBox a {
  text-decoration: none;
}

#animationTipBox .btn-container {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
}
#animationTipBox .btn-container input[type='button'] {
  width: 20%;
  padding: 0.357rem;
  color: #fff;
  border-radius: 3px;
  -webkit-radius: 3px;
  -moz-radius: 3px;
  background-color: #88B9FF
}
#animationTipBox .btn-container input[type='button']:active {
  background-color: #88B9FF;
}
/*重置盒模型 */
#animationTipBox .boxContent * {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}
/*animation start*/
#animationTipBox {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  /* margin-left: -90px;
  margin-top: -75px; */
  /* transform: translate(-50%, -50%); */
  z-index: 1001;
  -webkit-animation: alertAnimation 0.3s ease-in-out 0s 1;
  -moz-animation: alertAnimation 0.3s ease-in-out 0s 1;
  animation: alertAnimation 0.3s ease-in-out 0s 1;
  /*padding: 25px 0;*/

}
#animationTipBox.sq-en {
  /* background-color: #A1E0FF; */
}
#animationTipBox.sq-cn {
  background-color: #DFF0F2;
}
#animationTipBox.sq-math {
  background-color: #D5F1AC;
}
#animationTipBox * {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}
#animationTipBox .icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border: 4px solid #66cc33;
  margin: 15px auto 5px auto;
}
#animationTipBox .icon_box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#animationTipBox .lose .icon {
  border-color: #FF9090;
}
#animationTipBox .lose .icon_box {
  -webkit-animation: lose_Animation 0.5s ease 0s 1;
  -moz-animation: lose_Animation 0.5s ease 0s 1;
  animation: lose_Animation 0.5s ease 0s 1;
}
#animationTipBox .close{
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 20px;
  cursor: pointer;
  color: #ccc;
}
.close::before {
  content: "\2716";
}
#animationTipBox .dec_txt {
  font-size: 16px;
  text-align: center;
  color: #666;
  line-height: 26px;
  padding: 10px 0 30px 0;
}
#animationTipBox .tip .icon {
  width: 80px;
  height: 80px;
  background-color: #66cc33;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  color: #fff;
  font-size: 80px;
  text-align: center;
  line-height: 80px;
}
#animationTipBox .success .line_short {
  width: 25px;
  height: 5px;
  position: absolute;
  left: 14px;
  top: 46px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: #66cc33;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-animation: success_short_Animation 0.65s ease 0s 1;
  -moz-animation: success_short_Animation 0.65s ease 0s 1;
  animation: success_short_Animation 0.65s ease 0s 1;
}
#animationTipBox .success .line_long {
  width: 47px;
  height: 5px;
  position: absolute;
  right: 8px;
  top: 38px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: #66cc33;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-animation: success_long_Animation 0.65s ease 0s 1;
  -moz-animation: success_long_Animation 0.65s ease 0s 1;
  animation: success_long_Animation 0.65s ease 0s 1;
}
#animationTipBox .btns{

  width:400px;
  margin: auto;
  text-align: center;
  font-size: 0;
  /*position: absolute;*/
  /*bottom: 20px;*/
  /*left: 0;*/
  /*width: 100%;*/
}
#animationTipBox .btns a{
  width: 180px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  font-family: PingFangSC-Regular;
  font-size: 20px;
  /* color: #302D27; */
}
#animationTipBox .btns a.ok-btn{
  background-color: #88B9FF;
}


#animationTipBox.sq-en .btns a.cancel-btn {
  background-color: #7BCAFF;
}
#animationTipBox.sq-cn .btns a.cancel-btn {
  background-color: #7CC3A4;
}
#animationTipBox.sq-math .btns a.cancel-btn {
  background-color: #ABE17F;
}

/**.btns a:nth-child(1){
  float: left;

}
.btns a:nth-child(2){
  float: right;
}**/


#animationTipBox .lose .line_left,
#animationTipBox .lose .line_right {
  width: 47px;
  height: 5px;
  position: absolute;
  left: 17px;
  top: 37px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: #FF9090;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}
#animationTipBox .lose .line_right {
  right: 11px;
  top: 37px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

#animationTipBox .sq-dialog-title p {
  font-size: 22px;
  color: #333333;
  text-align: center;
  font-weight: 500;
  line-height:30px;
  padding-top: 58px;
}
#animationTipBox .sq-dialog-times {
  margin: 15px auto 0 auto;
  text-align: left;
}
#animationTipBox .sq-dialog-times-h1 {
  color: #333333;
  font-size:22px;
  font-weight:500;
  line-height:30px;
  text-align: center;
}
#animationTipBox .sq-dialog-times-title {
  margin: 0 auto;
  font-size: 16px;
  color: #666666;
  text-align: center;
}

#animationTipBox .sq-dialog-times-list {
  margin-top: 55px;
  font-size: 0;
  list-style: none;
  min-height: 228px;
  padding: 0 120px 58px 120px;
}

#animationTipBox .sq-dialog-times-list li {
  display: inline-block;
  width: 200px;
  margin: 15px 10px;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0.04px;
  text-align: left;
  line-height: 28px;
  border-radius:24px;
}

#animationTipBox .sq-dialog-times-list li label {
  display: block;
  padding: 8px 0;
  cursor: pointer;
  border: 1px solid #88B9FF;
  font-size: 16px;
  color: #3993FF;
  letter-spacing: 0.04px;
  text-align: center;
  line-height: 28px;
  font-weight: normal;
  border-radius:24px;
}

#animationTipBox .sq-dialog-times-list li:nth-child(1),
#animationTipBox .sq-dialog-times-list li:nth-child(4),
#animationTipBox .sq-dialog-times-list li:nth-child(7) {
  margin-left: 0
}

#animationTipBox .sq-dialog-times-list li:nth-child(3),
#animationTipBox .sq-dialog-times-list li:nth-child(6),
#animationTipBox .sq-dialog-times-list li:nth-child(9) {
  margin-right: 0
}

#animationTipBox .sq-dialog-times-list li input[type="radio"] {
  display: none;
}

#animationTipBox .sq-dialog-times-list li input[type="radio"]:hover + label {
  color: #A1E0FF;
}

#animationTipBox .sq-dialog-times-list li input[type="radio"]:checked + label {
  color: #ffffff;
  background: #88B9FF;
}

#animationTipBox .dialog-wrap {
  background: #FFFFFF;
  border-radius: 10px;
}
#animationTipBox .dialog-title {
  position: relative;
  padding: 21px 34px 21px 68px;
  background: #ffffff;
  font-size: 24px;
  color: #333333;
  border-radius: 10px;
  font-weight: 500;
  line-height:33px;
}
#animationTipBox .dialog-title::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  top: 24px;
  left: 34px;
  background: url('/static/vendor/dialog/img/ic_star.png') no-repeat;
  background-size: 100% auto;
}
#animationTipBox .dialog-content {
  /* width: 336px; */
  /* padding: 58px 0; */
  margin: 0 34px 40px 34px;
  background: rgba(212,223,225, .2);
}

#animationTipBox {
  background: #FFFFFF;
}

#animationTipBox .pkg-icon {
  display: block;
  position: absolute;
  width: 150px;
  /* height: 199px; */
}

#animationTipBox .pkg-icon img {
  width: 100%;
}

#animationTipBox .pkg-icon-right {
  right: -55px;
  bottom: 10px;
}

#animationTipBox .pkg-icon-left {
  left: 50px;
  bottom: 105px;
}

#animationTipBox .dialog-custom-text {
  min-height: 164px;
  padding-top: 30px;
  padding-left: 34px;
  text-align: left;
  font-size: 22px;
  color: #444444;
  line-height: 30px;
  font-weight: 500;
  box-sizing: border-box;
}
/* 总体动画  函数 */
/*all animate*/
@-webkit-keyframes alertAnimation {
  0% {
    -webkit-transform: scale(0.5);
  }
  45% {
    -webkit-transform: scale(1.25);
  }
  80% {
    -webkit-transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes alertAnimation {
  0% {
    -webkit-transform: scale(0.5);
  }
  45% {
    -webkit-transform: scale(1.25);
  }
  80% {
    -webkit-transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes alertAnimation {
  0% {
    -webkit-transform: scale(0.5);
  }
  45% {
    -webkit-transform: scale(1.25);
  }
  80% {
    -webkit-transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*all animate*/
/*success short animate*/
@-webkit-keyframes success_short_Animation {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -4px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-moz-keyframes success_short_Animation {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -4px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes success_short_Animation {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -4px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
/*success short animate*/
/*success long animate*/
@-webkit-keyframes success_long_Animation {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-moz-keyframes success_long_Animation {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes success_long_Animation {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
/*success long animate*/
/*load_Animation*/
@-webkit-keyframes load_Animation {
  0% {
    -webkit-transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1.0;
  }
}
@-moz-keyframes load_Animation {
  0% {
    -webkit-transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1.0;
  }
}
@-webkit-keyframes load_Animation {
  0% {
    -webkit-transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1.0;
  }
}
/*load_Animation*/
/*lose_Animation*/
@-webkit-keyframes lose_Animation {
  0% {
    -webkit-transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1.0;
  }
}
@-moz-keyframes lose_Animation {
  0% {
    -webkit-transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1.0;
  }
}
@-webkit-keyframes lose_Animation {
  0% {
    -webkit-transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1.0;
  }
}
/*lose_Animation*/
#animationTipBox .load {
  position: relative;
  width: 60px;
  height: 80px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border: 4px solid #fff;
  margin: 15px auto 5px auto;
  top: 10px;
}
#animationTipBox .load .icon_box {
  margin: 10px auto;
  width: 60px;
  height: 60px;
}
#animationTipBox .load .cirBox1,
#animationTipBox .load .cirBox2,
#animationTipBox .load .cirBox3 {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
}
#animationTipBox .load .cirBox1 > div,
#animationTipBox .load .cirBox2 > div,
#animationTipBox .load .cirBox3 > div {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background-color: #ccc;
  position: absolute;
}
#animationTipBox .load .cirBox1 {
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
}
#animationTipBox .load .cirBox2 {
  transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
}
#animationTipBox .load .cirBox3 {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}
#animationTipBox .load .cir1 {
  left: 0;
  top: 0;
}
#animationTipBox .load .cir2 {
  right: 0;
  top: 0;
}
#animationTipBox .load .cir3 {
  right: 0;
  bottom: 0;
}
#animationTipBox .load .cir4 {
  left: 0;
  bottom: 0;
}
#animationTipBox .load .cir1,
#animationTipBox .load .cir2,
#animationTipBox .load .cir3,
#animationTipBox .load .cir4 {
  -webkit-animation: cir_Animation 1.2s ease 0s infinite;
  -moz-animation: cir_Animation 1.2s ease 0s infinite;
  animation: cir_Animation 1.2s ease 0s infinite;
}
#animationTipBox .cirBox1 .cir2 {
  -webkit-animation-delay: -1.1s;
  -moz-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
#animationTipBox .cirBox1 .cir3 {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
#animationTipBox .cirBox1 .cir4 {
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
#animationTipBox .cirBox2 .cir2 {
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  animation-delay: -1s;
}
#animationTipBox .cirBox2 .cir3 {
  -webkit-animation-delay: -0.7s;
  -moz-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
#animationTipBox .cirBox2 .cir4 {
  -webkit-animation-delay: -0.4s;
  -moz-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
#animationTipBox .cirBox3 .cir2 {
  -webkit-animation-delay: -0.9s;
  -moz-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
#animationTipBox .cirBox3 .cir3 {
  -webkit-animation-delay: -0.6s;
  -moz-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
#animationTipBox .cirBox3 .cir4 {
  -webkit-animation-delay: -0.3s;
  -moz-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
@-webkit-keyframes cir_Animation {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.4);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cir_Animation {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.4);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes cir_Animation {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.4);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
.sq-mask {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

#animationTipBox .sq-apply-time {
  padding: 56px 130px 0 130px;
  text-align: center;
}
#animationTipBox .sq-apply-time .taks-time {
  width: 200px;
  font-family: PingFangSC-Medium;
  font-size: 16px;
  color: #FFFFFF;
  text-align: left;
  display: inline-block;
  margin-top: 14px;
}
#animationTipBox p.sq-apply-title {
  font-family: PingFangSC-Medium;
  font-size: 16px;
  color: #41403E;
  line-height: 28px;
}
#animationTipBox .sq-select-btn {
  width: 200px;
  height: 35px;
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 8px;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #41403E;
  text-align: left;
  margin-top: 17px;
  position: relative;
  cursor: pointer;
  z-index: 300;
}
#animationTipBox .sq-select-btn::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('img/icon_care_blue@2x.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 10px;
}
#animationTipBox .sq-select-btn>p {
  padding: 6px 0 0 11px;
}
#animationTipBox .sq-select-btn>ul {
  padding: 0;
  list-style-type: none;
  background-color: #fff;
  width: 100%;
  overflow-y: auto;
  position: absolute;
  top: 40px;
  left: 0;
  max-height: 0;
  transition: max-height .3s ease-out;
  cursor: pointer;
}
#animationTipBox .sq-select-btn.open>ul {
  max-height: 250px;
  -webkit-animation: slide-down .5s ease-in;
  transition: max-height .3s ease-in;
  transform-origin: 50% 0;
}
#animationTipBox .sq-select-btn>ul li {
  padding: 0 15px;
  line-height: 40px;
  cursor: pointer;
}
#animationTipBox .sq-select-btn>ul li:hover {
  background-color: #e0e0e0;
}
#animationTipBox .sq-select-btn>ul li.selected {
  background-color: #39f;
  color: #fff;
}
#animationTipBox .sq-apply-time .hand {
  width: 50px;
  height: 53px;
  background-image: url('img/hand@2x.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: -35px;
  top: 20px;
}
#animationTipBox .sq-apply-time .click-here {
  width: 53px;
  height: 45px;
  background-image: url('img/click_here@2x.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: -78px;
  top: -10px;
}

#animationTipBox .sq-course-time {
  font-size: 0;
  padding: 20px 0px 0 0px;
}
#animationTipBox .sq-course-time .sq-head-rat {
  display: inline-block;
  width: 120px;
  height: 109px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: -40px;
}
#animationTipBox .sq-course-time .sq-head-rat.happy-rat {
  background-image: url("img/happy_rat@2x.png");
}
#animationTipBox .sq-course-time .sq-head-rat.sad-rat {
  width: 144px;
  height: 110px;
  background-image: url("img/sad_rat@2x.png");
  top: -30px;
}
#animationTipBox .sq-course-time .sq-head-rat::after{
  content: '';
  width: 49px;
  height: 12px;
  border-radius: 100%;
  opacity: 0.3;
  background-color: #302D27;
  position: absolute;
  bottom: -20px;
  right: 15px;
}
#animationTipBox .sq-course-time .head-strong-tips {
  display: inline-block;
  width: 284px;
  height: 150px;
  margin-left: 10px;
  text-align: center;
  line-height: 68px;
  position: relative;
}
#animationTipBox.sq-en .sq-course-time .head-strong-tips.sq-right-tips {
  background-image: url("img/en_right_tips.png");
}
#animationTipBox.sq-cn .sq-course-time .head-strong-tips.sq-right-tips {
  background-image: url("img/cn_right_tips.png");
}
#animationTipBox.sq-math .sq-course-time .head-strong-tips.sq-right-tips {
  background-image: url("img/math_right_tips.png");
}
#animationTipBox.sq-en .sq-course-time .head-strong-tips.sq-left-tips {
  background-image: url("img/en_left_tips.png");
}
#animationTipBox.sq-cn .sq-course-time .head-strong-tips.sq-left-tips {
  background-image: url("img/cn_left_tips.png");
}
#animationTipBox.sq-math .sq-course-time .head-strong-tips.sq-left-tips {
  background-image: url("img/math_left_tips.png");
}
#animationTipBox .sq-course-time .sq-tips-content {
  position: absolute;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #302D27;
  line-height: 24px;
  width: 250px;
  margin-left: 28px;
  text-align: left;
  margin-top: 12px;
  height: 120px;
}
#animationTipBox .sq-course-time .sq-tips-content.sq-demo-flex {
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  flex-direction: column;
}
#animationTipBox .sq-course-time .sq-right-tips {
  margin-left: 10px;
}
#animationTipBox .sq-course-time .sq-left-tips {
  margin-right: 10px;
}