/* common animations {{{1 */
/* line 61, ../sass/_animate.scss */
.ui-animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 64, ../sass/_animate.scss */
.ui-speed-normal, .ui-speed-500 {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* line 67, ../sass/_animate.scss */
.ui-speed-fast, .ui-speed-200 {
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -ms-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/* line 70, ../sass/_animate.scss */
.ui-speed-slow, .ui-speed-1000 {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

/* line 73, ../sass/_animate.scss */
.ui-speed-slow, .ui-speed-1500 {
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/* line 76, ../sass/_animate.scss */
.ui-speed-slow, .ui-speed-3000 {
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -ms-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-duration: 3s;
}

/* line 79, ../sass/_animate.scss */
.ui-speed-2000 {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

/* bounceIn */
@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
/* line 89, ../sass/_animate.scss */
.ui-ani-bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -ms-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

/* bounceOut */
@-webkit-keyframes bounceOut {
  100% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes bounceOut {
  100% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes bounceOut {
  100% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes bounceOut {
  100% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceOut {
  100% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
/* line 100, ../sass/_animate.scss */
.ui-ani-bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -ms-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}

/* shake */
@-webkit-keyframes shake {
  0%,100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@-moz-keyframes shake {
  0%,100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@-ms-keyframes shake {
  0%,100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@-o-keyframes shake {
  0%,100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%,100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
/* line 110, ../sass/_animate.scss */
.ui-ani-shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -ms-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}

/* fadeIn */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 119, ../sass/_animate.scss */
.ui-ani-fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* fadeOut */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* line 128, ../sass/_animate.scss */
.ui-ani-fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -ms-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

/* fadeInUp */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-ms-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
/* line 137, ../sass/_animate.scss */
.ui-ani-fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* fadeOutDown */
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-moz-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-ms-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-o-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* line 146, ../sass/_animate.scss */
.ui-ani-fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -ms-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

/*rotate*/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 155, ../sass/_animate.scss */
.ui-ani-rotate {
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
}

/* upPop */
@-webkit-keyframes upPop {
  from {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes upPop {
  from {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-ms-keyframes upPop {
  from {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes upPop {
  from {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes upPop {
  from {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 164, ../sass/_animate.scss */
.ui-ani-upPop {
  -webkit-animation-name: upPop;
  -moz-animation-name: upPop;
  -ms-animation-name: upPop;
  -o-animation-name: upPop;
  animation-name: upPop;
}

/* downPop */
@-webkit-keyframes downPop {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-moz-keyframes downPop {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-ms-keyframes downPop {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-o-keyframes downPop {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes downPop {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* line 173, ../sass/_animate.scss */
.ui-ani-downPop {
  -webkit-animation-name: downPop;
  -moz-animation-name: downPop;
  -ms-animation-name: downPop;
  -o-animation-name: downPop;
  animation-name: downPop;
}

/* leftPop */
@-webkit-keyframes leftPop {
  from {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes leftPop {
  from {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-ms-keyframes leftPop {
  from {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes leftPop {
  from {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes leftPop {
  from {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 182, ../sass/_animate.scss */
.ui-ani-leftPop {
  -webkit-animation-name: leftPop;
  -moz-animation-name: leftPop;
  -ms-animation-name: leftPop;
  -o-animation-name: leftPop;
  animation-name: leftPop;
}

/* rightPop */
@-webkit-keyframes rightPop {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes rightPop {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-ms-keyframes rightPop {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes rightPop {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes rightPop {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* line 191, ../sass/_animate.scss */
.ui-ani-rightPop {
  -webkit-animation-name: rightPop;
  -moz-animation-name: rightPop;
  -ms-animation-name: rightPop;
  -o-animation-name: rightPop;
  animation-name: rightPop;
}

/* line 10, ../sass/index.scss */
html {
  color: #000;
  background: #FFF;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

/* line 11, ../sass/index.scss */
body {
  font: 12px/20px "Arial","Helvetica","Times New Roman","sans-serif";
}

/* line 12, ../sass/index.scss */
input, textarea, a, button, video {
  outline: 0;
}

/* line 13, ../sass/index.scss */
html, body, ul {
  margin: 0;
  padding: 0;
}

/* line 14, ../sass/index.scss */
li {
  list-style-type: none;
}

/* line 15, ../sass/index.scss */
p, ul, li, h2, h3, input {
  margin: 0;
  padding: 0;
}

/* line 16, ../sass/index.scss */
a {
  text-decoration: none;
}

/* line 17, ../sass/index.scss */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}

/* line 17, ../sass/index.scss */
.clearfix {
  zoom: 1;
}

/* line 19, ../sass/index.scss */
.f-l {
  float: left;
}

/* line 23, ../sass/index.scss */
.f-r {
  float: right;
}

/* line 1, ../sass/pc.scss */
.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* line 7, ../sass/pc.scss */
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* line 27, ../sass/pc.scss */
.swiper-button-prev, .swiper-button-next {
  width: 45px;
  height: 105px;
}

/* line 32, ../sass/pc.scss */
.swiper-pagination {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 90px;
}
/* line 37, ../sass/pc.scss */
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  width: 10px;
  height: 10px;
}

/* line 44, ../sass/pc.scss */
.swiper-button-prev {
  background-image: url("/bbg-2022/images/left-arrow.png");
  left: -60px;
}

/* line 49, ../sass/pc.scss */
.swiper-button-next {
  background-image: url("/bbg-2022/images/right-arrow.png");
  right: -60px;
}

/* line 54, ../sass/pc.scss */
.mod-header {
  height: 70px;
  line-height: 70px;
  background-color: #c20000;
  width: 100%;
  position: relative;
  text-align: center;
}
/* line 61, ../sass/pc.scss */
.mod-header .mod-logo {
  width: 107px;
  position: absolute;
  top: 50%;
  left: 74px;
  margin-top: -17px;
}
/* line 69, ../sass/pc.scss */
.mod-header .head-list .head-item {
  color: #fff;
  padding: 0 30px;
  border-right: 1px solid #fff;
  font-size: 22px;
  cursor: pointer;
}
/* line 75, ../sass/pc.scss */
.mod-header .head-list .head-item:last-child {
  border-right: none;
}

/* line 82, ../sass/pc.scss */
.mod-bn {
  width: 100%;
  text-align: center;
}
/* line 85, ../sass/pc.scss */
.mod-bn img {
  width: 100%;
  display: block;
}

/* line 92, ../sass/pc.scss */
.mod-news {
  width: 1000px;
  margin: 0 auto;
}

/* line 97, ../sass/pc.scss */
.contain {
  background: url("/bbg-2022/img/ctn-bj.png") no-repeat center -100px;
  background-size: contain;
}

/* line 102, ../sass/pc.scss */
.mod-banner {
  max-width: 1000px;
  position: relative;
  margin: 25px auto;
  padding-top: 30px;
}
/* line 107, ../sass/pc.scss */
.mod-banner .title {
  width: 661px;
  height: 156px;
  display: block;
  margin: 60px auto;
}
/* line 113, ../sass/pc.scss */
.mod-banner .swiper-slide {
  width: 100%;
}
/* line 115, ../sass/pc.scss */
.mod-banner .swiper-slide img {
  max-width: 100%;
  display: block;
}
/* line 119, ../sass/pc.scss */
.mod-banner .swiper-slide .desc {
  height: 80px;
  line-height: 80px;
  font-size: 28px;
  color: #fff;
  background-color: #e90000;
}

/* line 129, ../sass/pc.scss */
.mod-read {
  padding: 40px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 135, ../sass/pc.scss */
.mod-proposal {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 140, ../sass/pc.scss */
.mod-proposal .proposal-list {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* line 146, ../sass/pc.scss */
.mod-proposal .title {
  width: 847px;
  height: 156px;
  display: block;
  margin: 50px auto;
}
/* line 152, ../sass/pc.scss */
.mod-proposal .wrap {
  width: 1100px;
}
/* line 155, ../sass/pc.scss */
.mod-proposal .item {
  position: relative;
  width: 390px;
  height: 162px;
  float: left;
  margin: 0 19px 18px 0;
  padding: 80px 37px 0 62px;
  background-color: #ffd753;
}
/* line 163, ../sass/pc.scss */
.mod-proposal .item::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 13px;
  display: block;
  position: absolute;
  top: 86px;
  left: 30px;
  background: url("/bbg-2022/img/mark-1.png") no-repeat;
}
/* line 174, ../sass/pc.scss */
.mod-proposal .item::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 13px;
  display: block;
  position: absolute;
  bottom: 26px;
  right: 20px;
  background: url("/bbg-2022/img/mark-2.png") no-repeat;
}
/* line 185, ../sass/pc.scss */
.mod-proposal .item .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  line-height: 76px;
  background-color: #ff8819;
  font-size: 46px;
  color: #d50007;
  font-weight: 500;
  text-align: center;
}
/* line 198, ../sass/pc.scss */
.mod-proposal .item .text {
  font-size: 28px;
  color: #282828;
  line-height: 50px;
  position: relative;
}
/* line 206, ../sass/pc.scss */
.mod-proposal .item-1 {
  height: 132px;
}

/* line 211, ../sass/pc.scss */
.mod-focus {
  text-align: center;
  padding: 110px 110px 0;
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
/* line 217, ../sass/pc.scss */
.mod-focus .title {
  width: 450px;
  margin-bottom: 94px;
}
/* line 221, ../sass/pc.scss */
.mod-focus .swiper-container {
  max-width: 1000px;
}
/* line 224, ../sass/pc.scss */
.mod-focus .swiper-slide {
  width: 356px;
  height: 578px;
}
/* line 227, ../sass/pc.scss */
.mod-focus .swiper-slide img {
  width: 100%;
  max-height: 100%;
}
/* line 232, ../sass/pc.scss */
.mod-focus .swiper-button-prev, .mod-focus .swiper-button-next {
  margin-top: 30px;
}
/* line 235, ../sass/pc.scss */
.mod-focus .swiper-button-prev {
  left: 30px;
}
/* line 238, ../sass/pc.scss */
.mod-focus .swiper-button-next {
  right: 30px;
}
/* line 241, ../sass/pc.scss */
.mod-focus .lh19-box-title-2 {
  background: #e90000;
  font-size: 28px;
  display: none;
}
/* line 246, ../sass/pc.scss */
.mod-focus .lh19-box-title-2 a {
  color: #fff;
  display: block;
  padding: 0 10px;
  height: 80px;
  line-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 256, ../sass/pc.scss */
.mod-focus .js-banner-container-title-4 {
  width: 6.24rem;
  margin: 0 auto;
  position: relative;
  top: -2px;
  z-index: 2;
}
/* line 263, ../sass/pc.scss */
.mod-focus .lh19-box-title-2 {
  text-align: center;
}

/* line 268, ../sass/pc.scss */
.news-item {
  display: block;
  font-size: 22px;
  color: #282828;
  text-align: left;
  padding-left: 15px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 46px;
  cursor: pointer;
}
/* line 280, ../sass/pc.scss */
.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #282828;
  border-radius: 50%;
  display: inline-block;
  margin-right: 15px;
  top: 50%;
  margin-top: -2px;
}

/* line 295, ../sass/pc.scss */
.foot {
  text-align: right;
  margin-top: 20px;
}
/* line 298, ../sass/pc.scss */
.foot .more {
  font-size: 22px;
  color: #e90000;
  display: none;
}

/* line 305, ../sass/pc.scss */
.mod-epidemic {
  width: 1000px;
  margin: 0 auto;
  padding-top: 110px;
  text-align: center;
}
/* line 310, ../sass/pc.scss */
.mod-epidemic .title {
  width: 451px;
  display: block;
  margin: 0 auto 80px;
}
/* line 315, ../sass/pc.scss */
.mod-epidemic .video {
  width: 100%;
  height: 515px;
  object-fit: fill;
}
/* line 320, ../sass/pc.scss */
.mod-epidemic .desc {
  height: 80px;
  line-height: 80px;
  background-color: #e90000;
  color: #fff;
  font-size: 28px;
  text-align: center;
  margin: -6px 0 50px 0;
}

/* line 331, ../sass/pc.scss */
.mod-hot {
  margin: 0 auto;
  padding-top: 115px;
  width: 1000px;
}
/* line 335, ../sass/pc.scss */
.mod-hot .title {
  width: 661px;
  display: block;
  margin: 0 auto;
}
/* line 340, ../sass/pc.scss */
.mod-hot .news-list {
  margin-top: 60px;
}

/* line 345, ../sass/pc.scss */
.list-overflow {
  max-height: 462px;
  overflow: hidden;
}

/* line 350, ../sass/pc.scss */
.mod-vlog-title {
  margin: 0 auto;
  padding: 95px 0 50px;
  text-align: center;
}

/* line 356, ../sass/pc.scss */
.mod-vlog-list {
  background-color: #c20000;
  padding: 60px 0 30px;
}
/* line 359, ../sass/pc.scss */
.mod-vlog-list .vlog-list {
  width: 1000px;
  margin: 0 auto;
}
/* line 363, ../sass/pc.scss */
.mod-vlog-list .vlog-ctn {
  display: flex;
  display: -webkit-flex;
}
/* line 367, ../sass/pc.scss */
.mod-vlog-list .vlog-item {
  flex: 1;
  -webkit-flex: 1;
  float: left;
  margin: 0 5px 20px 0;
  position: relative;
}
/* line 374, ../sass/pc.scss */
.mod-vlog-list .vlog-item:nth-child(4n) {
  margin-right: 0;
}
/* line 377, ../sass/pc.scss */
.mod-vlog-list .vlog-item img {
  width: 100%;
}
/* line 381, ../sass/pc.scss */
.mod-vlog-list .vlog-item .player {
  width: auto;
  position: absolute;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -120%);
}
/* line 390, ../sass/pc.scss */
.mod-vlog-list .vlog-item p {
  font-size: 15px;
  color: #fff;
  padding: 0 10px;
  line-height: 26px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* line 406, ../sass/pc.scss */
.mod-media {
  width: 1000px;
  margin: 100px auto 0;
}
/* line 409, ../sass/pc.scss */
.mod-media .media-list {
  width: 105%;
}
/* line 412, ../sass/pc.scss */
.mod-media a {
  display: inline-block;
  width: 160px;
  text-align: center;
  margin: 0 0 35px 0;
}

/* line 420, ../sass/pc.scss */
.mod-footer {
  width: 1000px;
  text-align: center;
  margin: 65px auto;
}
/* line 424, ../sass/pc.scss */
.mod-footer .qrcode {
  width: 120px;
  vertical-align: top;
  margin-right: 20px;
}
/* line 429, ../sass/pc.scss */
.mod-footer .footer {
  display: inline-block;
  color: #282828;
  font-size: 16px;
  line-height: 36px;
  text-align: left;
  position: relative;
  top: 10px;
}

/* line 440, ../sass/pc.scss */
.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
}
/* line 449, ../sass/pc.scss */
.mask iframe, .mask video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 11;
}

/* line 460, ../sass/pc.scss */
.proposal-mask {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 21;
}

/* line 465, ../sass/pc.scss */
.close {
  color: #fff;
  position: absolute;
  right: 50px;
  top: 50px;
}
/* line 470, ../sass/pc.scss */
.close img {
  width: 50px;
  height: 50px;
}

/* line 476, ../sass/pc.scss */
.proposal-ctn {
  color: #fff;
  font-size: 28px;
  width: 1000px;
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -500px;
  transform: translateY(-50%);
  line-height: 50px;
}

/* line 488, ../sass/pc.scss */
.jVideo {
  display: none;
}

/* line 492, ../sass/pc.scss */
.overflow {
  overflow: hidden;
}

/* line 496, ../sass/pc.scss */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
/* line 504, ../sass/pc.scss */
.loading img {
  width: 0.96rem;
  height: 0.96rem;
}

/* line 510, ../sass/pc.scss */
.mod-float {
  position: fixed;
  width: 1000px;
  height: 0;
  left: 50%;
  top: 72%;
  margin-left: -500px;
  text-align: right;
  z-index: 20;
}
/* line 519, ../sass/pc.scss */
.mod-float img {
  width: 84px;
  position: relative;
  right: -84px;
}

/********************/
/* line 31, ../sass/index.scss */
.mobile {
  width: 100%;
}
/* line 33, ../sass/index.scss */
.mobile .swiper-button-prev, .mobile .swiper-button-next {
  width: 0.72rem;
  height: 1.68rem;
  display: none;
}
/* line 39, ../sass/index.scss */
.mobile .swiper-button-prev {
  background-image: url("/bbg-2022/images/left-arrow.png");
  left: -0.96rem;
}
/* line 44, ../sass/index.scss */
.mobile .swiper-button-next {
  background-image: url("/bbg-2022/images/right-arrow.png");
  right: -0.96rem;
}
/* line 49, ../sass/index.scss */
.mobile .swiper-pagination {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 1.92rem;
}
/* line 54, ../sass/index.scss */
.mobile .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.16rem;
  width: 0.32rem;
  height: 0.32rem;
}
/* line 61, ../sass/index.scss */
.mobile .mod-header {
  height: 1.6rem;
  line-height: 1.6rem;
  background-color: #c20000;
  width: 100%;
  position: relative;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 9;
}
/* line 71, ../sass/index.scss */
.mobile .mod-header .mod-logo {
  width: 2.72rem;
  position: static;
  top: auto;
  left: auto;
  margin: 0.32rem auto 0.32rem;
}
/* line 79, ../sass/index.scss */
.mobile .mod-header .head-list {
  overflow-x: scroll;
  white-space: nowrap;
}
/* line 82, ../sass/index.scss */
.mobile .mod-header .head-list::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
/* line 85, ../sass/index.scss */
.mobile .mod-header .head-list .head-item {
  color: #fff;
  padding: 0 0.48rem;
  border-right: 1px solid #fff;
  font-size: 0.64rem;
}
/* line 90, ../sass/index.scss */
.mobile .mod-header .head-list .head-item:last-child {
  border-right: none;
}
/* line 97, ../sass/index.scss */
.mobile .mod-bn {
  width: 100%;
  text-align: center;
  overflow: hidden;
}
/* line 101, ../sass/index.scss */
.mobile .mod-bn img {
  width: auto;
  height: 8rem;
  display: block;
  transform: translateX(-21%);
}
/* line 110, ../sass/index.scss */
.mobile .mod-news {
  width: 16rem;
  max-width: 16rem;
}
/* line 115, ../sass/index.scss */
.mobile .mod-banner {
  max-width: 16rem;
  position: relative;
  margin: 0.4rem auto;
  padding-top: 0.48rem;
}
/* line 120, ../sass/index.scss */
.mobile .mod-banner .title {
  width: 10.576rem;
  height: 2.496rem;
  display: block;
  margin: 0.96rem auto;
}
/* line 126, ../sass/index.scss */
.mobile .mod-banner .swiper-slide {
  width: 100%;
}
/* line 128, ../sass/index.scss */
.mobile .mod-banner .swiper-slide a {
  display: block;
  width: 100%;
}
/* line 132, ../sass/index.scss */
.mobile .mod-banner .swiper-slide img {
  max-width: 100%;
  display: block;
  width: 100%;
}
/* line 137, ../sass/index.scss */
.mobile .mod-banner .swiper-slide .desc {
  height: 1.28rem;
  line-height: 1.28rem;
  font-size: 0.512rem;
  color: #fff;
  background-color: #e90000;
}
/* line 147, ../sass/index.scss */
.mobile .mod-read {
  padding: 40px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 153, ../sass/index.scss */
.mobile .mod-proposal {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 158, ../sass/index.scss */
.mobile .mod-proposal .proposal-list {
  width: 16rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* line 164, ../sass/index.scss */
.mobile .mod-proposal .title {
  width: 13.552rem;
  height: 2.496rem;
  display: block;
  margin: 0.8rem auto;
}
/* line 170, ../sass/index.scss */
.mobile .mod-proposal .wrap {
  width: 17.6rem;
}
/* line 173, ../sass/index.scss */
.mobile .mod-proposal .item {
  position: relative;
  width: 6.24rem;
  height: 2.592rem;
  float: left;
  margin: 0 0.304rem 0.288rem 0;
  padding: 1.28rem 0.592rem 0 0.992rem;
  background-color: #ffd753;
}
/* line 181, ../sass/index.scss */
.mobile .mod-proposal .item::before {
  position: absolute;
  content: '';
  width: 0.32rem;
  height: 0.208rem;
  display: block;
  position: absolute;
  top: 1.376rem;
  left: 0.48rem;
  background: url("/bbg-2022/img/mark-1.png") no-repeat;
}
/* line 192, ../sass/index.scss */
.mobile .mod-proposal .item::after {
  position: absolute;
  content: '';
  width: 0.32rem;
  height: 0.208rem;
  display: block;
  position: absolute;
  bottom: 0.416rem;
  right: 0.32rem;
  background: url("/bbg-2022/img/mark-2.png") no-repeat;
}
/* line 203, ../sass/index.scss */
.mobile .mod-proposal .item .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.216rem;
  background-color: #ff8819;
  font-size: 0.736rem;
  color: #d50007;
  font-weight: 500;
  text-align: center;
}
/* line 216, ../sass/index.scss */
.mobile .mod-proposal .item .text {
  font-size: 0.448rem;
  color: #282828;
  line-height: 0.8rem;
  position: relative;
}
/* line 223, ../sass/index.scss */
.mobile .mod-proposal .item-1 {
  height: 2.112rem;
}
/* line 228, ../sass/index.scss */
.mobile .mod-focus {
  text-align: center;
  padding: 1.44rem 0 0;
  position: relative;
  width: 16rem;
  margin: 0 auto;
}
/* line 234, ../sass/index.scss */
.mobile .mod-focus .title {
  width: 7.2rem;
  margin-bottom: 1.504rem;
}
/* line 238, ../sass/index.scss */
.mobile .mod-focus .swiper-container {
  max-width: 16rem;
}
/* line 241, ../sass/index.scss */
.mobile .mod-focus .swiper-slide {
  width: 6.08rem;
  height: 9.952rem;
}
/* line 244, ../sass/index.scss */
.mobile .mod-focus .swiper-slide .aImg {
  display: block;
  width: 6.08rem;
  height: 9.952rem;
}
/* line 249, ../sass/index.scss */
.mobile .mod-focus .swiper-slide img {
  width: 100%;
}
/* line 254, ../sass/index.scss */
.mobile .mod-focus .swiper-button-prev, .mobile .mod-focus .swiper-button-next {
  margin-top: 0.48rem;
  display: none;
}
/* line 258, ../sass/index.scss */
.mobile .mod-focus .swiper-button-prev {
  left: 0.48rem;
}
/* line 261, ../sass/index.scss */
.mobile .mod-focus .swiper-button-next {
  right: 0.48rem;
}
/* line 264, ../sass/index.scss */
.mobile .mod-focus .lh19-box-title-2 {
  background: #e90000;
  font-size: 0.512rem;
  display: none;
}
/* line 269, ../sass/index.scss */
.mobile .mod-focus .lh19-box-title-2 a {
  color: #fff;
  display: block;
  padding: 0 0.16rem;
  height: 1.28rem;
  line-height: 1.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 278, ../sass/index.scss */
.mobile .mod-focus .js-banner-container-title-4 {
  width: 6.08rem;
  margin: 0 auto;
  position: relative;
  top: -0.096rem;
  z-index: 2;
}
/* line 285, ../sass/index.scss */
.mobile .mod-focus .lh19-box-title-2 {
  text-align: center;
}
/* line 290, ../sass/index.scss */
.mobile .news-list {
  padding: 0 0.64rem;
}
/* line 294, ../sass/index.scss */
.mobile .news-item {
  display: block;
  font-size: 0.576rem;
  color: #282828;
  text-align: left;
  line-height: 1.184rem;
  padding-left: 0.24rem;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 305, ../sass/index.scss */
.mobile .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.064rem;
  height: 0.064rem;
  background-color: #282828;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.24rem;
  top: 50%;
  margin-top: -0.032rem;
}
/* line 320, ../sass/index.scss */
.mobile .foot {
  text-align: right;
  margin: 0.32rem 0.64rem 0 0;
}
/* line 323, ../sass/index.scss */
.mobile .foot .more {
  font-size: 0.576rem;
  color: #e90000;
  display: none;
}
/* line 330, ../sass/index.scss */
.mobile .mod-epidemic {
  width: 16rem;
  margin: 0 auto;
  padding-top: 1.76rem;
  text-align: center;
}
/* line 335, ../sass/index.scss */
.mobile .mod-epidemic .title {
  width: 7.216rem;
  display: block;
  margin: 0 auto 1.28rem;
}
/* line 340, ../sass/index.scss */
.mobile .mod-epidemic .video {
  width: 100%;
  height: 8.24rem;
  object-fit: fill;
}
/* line 345, ../sass/index.scss */
.mobile .mod-epidemic .desc {
  height: 1.28rem;
  line-height: 1.28rem;
  background-color: #e90000;
  color: #fff;
  font-size: 0.512rem;
  text-align: center;
  margin: -0.064rem 0 0.8rem 0;
}
/* line 356, ../sass/index.scss */
.mobile .mod-hot {
  margin: 0 auto;
  padding-top: 1.84rem;
  width: 16rem;
}
/* line 360, ../sass/index.scss */
.mobile .mod-hot .title {
  width: 10.576rem;
  display: block;
  margin: 0 auto;
}
/* line 365, ../sass/index.scss */
.mobile .mod-hot .news-list {
  margin-top: 0.8rem;
}
/* line 370, ../sass/index.scss */
.mobile .list-overflow {
  max-height: 11.84rem;
  overflow: hidden;
}
/* line 375, ../sass/index.scss */
.mobile .mod-vlog-title {
  margin: 0 auto;
  padding: 1.52rem 0 0.8rem;
  text-align: center;
}
/* line 381, ../sass/index.scss */
.mobile .mod-vlog-list {
  background-color: #c20000;
  padding: 1.12rem 0 0.48rem;
  overflow: hidden;
}
/* line 385, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-list {
  width: 101%;
  margin: 0 auto;
}
/* line 389, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-ctn {
  display: block;
}
/* line 392, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-item {
  width: 49.5%;
  flex: initial;
  -webkit-flex: initial;
  float: left;
  margin: 0.16rem 0.5% 0.64rem 0;
  position: relative;
}
/* line 399, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-item:nth-child(4n) {
  margin-right: 0;
}
/* line 402, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-item img {
  width: 100%;
  height: auto;
}
/* line 406, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-item .player {
  width: auto;
  position: absolute;
  width: 1.28rem;
  height: 1.28rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -120%);
}
/* line 415, ../sass/index.scss */
.mobile .mod-vlog-list .vlog-item p {
  font-size: 0.576rem;
  color: #fff;
  padding: 0.16rem 0.32rem 0;
  line-height: 0.896rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* line 431, ../sass/index.scss */
.mobile .mod-media {
  width: 16rem;
  margin: 1.6rem auto 0;
  overflow: hidden;
}
/* line 435, ../sass/index.scss */
.mobile .mod-media .media-list {
  width: 105%;
  padding-left: 0.48rem;
}
/* line 439, ../sass/index.scss */
.mobile .mod-media a {
  display: inline-block;
  width: 2.88rem;
  text-align: center;
  margin: 0 0 0.56rem 0;
}
/* line 444, ../sass/index.scss */
.mobile .mod-media a img {
  max-width: 100%;
}
/* line 450, ../sass/index.scss */
.mobile .mod-footer {
  width: 16rem;
  text-align: center;
  margin: 1.04rem auto;
}
/* line 454, ../sass/index.scss */
.mobile .mod-footer .qrcode {
  width: 2.56rem;
  vertical-align: top;
  margin-right: 0.32rem;
}
/* line 459, ../sass/index.scss */
.mobile .mod-footer .footer {
  display: inline-block;
  color: #282828;
  font-size: 0.416rem;
  line-height: 0.672rem;
  text-align: center;
  position: relative;
  top: 0.16rem;
}
/* line 470, ../sass/index.scss */
.mobile .mod-float {
  width: 100%;
  left: 0;
  margin-left: 0;
}
/* line 474, ../sass/index.scss */
.mobile .mod-float img {
  right: 0.48rem;
  width: 2.672rem;
}
/* line 480, ../sass/index.scss */
.mobile .close {
  color: #fff;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
}
/* line 485, ../sass/index.scss */
.mobile .close img {
  width: 0.96rem;
  height: 0.96rem;
}
/* line 491, ../sass/index.scss */
.mobile .proposal-ctn {
  color: #fff;
  font-size: 0.512rem;
  width: 12.8rem;
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -6.4rem;
  transform: translateY(-50%);
  line-height: 0.896rem;
}
