@charset "UTF-8";
/*
* set color variable
*/
/*
* set img variable
*/
* {
  padding: 0;
  margin: 0; }

a {
  text-decoration: none;
  color: #333; }

ul,
li {
  list-style: none; }

img {
  display: block; }

input {
  outline: none; }

.clearfix:after {
  content: "";
  display: block;
  clear: both; }

.fl {
  float: left; }

.fr {
  float: right; }

.w1400 {
  width: 1400px;
  margin: 0 auto; }

.mt20 {
  margin-top: 20px; }

.mt30 {
  margin-top: 30px; }

.pr {
  position: relative; }

/*超出一行省略号*/
.ellipsis-one {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

/*超出两行省略号*/
.ellipsis-two {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 2;
  word-break: break-all !important; }

/*超出三行省略号*/
.ellipsis-three {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
  word-break: break-all !important; }

body {
  font-family: "Onest", Arial, sans-seriff;
  font-size: 14px;
  color: #333; }

.header {
  padding: 16px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100px; }
  .header .header-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .header .header-box .logo {
      height: 67px;
      margin-right: 100px; }
    .header .header-box .menu {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      .header .header-box .menu .item {
        margin-right: 30px;
        font-size: 18px;
        font-weight: 600;
        color: #222; }
        .header .header-box .menu .item:hover {
          color: #11aa2b; }
        .header .header-box .menu .item:last-child {
          margin-right: 0; }
      .header .header-box .menu .current {
        color: #11aa2b; }
    .header .header-box .constant-style {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      margin-right: 30px; }
      .header .header-box .constant-style .item {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center; }
        .header .header-box .constant-style .item .iconfont {
          font-size: 34px;
          color: #222; }
        .header .header-box .constant-style .item .name {
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s;
          font-size: 14px;
          font-weight: 500;
          color: #222; }
      .header .header-box .constant-style .item01 {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .header .header-box .constant-style .item01:hover .name {
          color: #11aa2b;
          -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          transform: scale(1.1); }
    .header .header-box .select-station {
      /* 下拉头部 */
      /* 下拉箭头 */
      /* 下拉选项列表 */
      /* 下拉选项 */ }
      .header .header-box .select-station .custom-select {
        position: relative;
        margin: 20px; }
        .header .header-box .select-station .custom-select .select-header {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
          justify-content: space-between;
          padding: 8px 12px 8px 5px;
          border: 1px solid #d8d8d8;
          -webkit-border-radius: 1px;
          border-radius: 1px;
          cursor: pointer;
          background-color: white; }
        .header .header-box .select-station .custom-select .header-open {
          -webkit-border-bottom-left-radius: 0;
          border-bottom-left-radius: 0;
          -webkit-border-bottom-right-radius: 0;
          border-bottom-right-radius: 0; }
        .header .header-box .select-station .custom-select .open {
          display: block; }
      .header .header-box .select-station .select-header .iconfont {
        margin-right: 8px;
        font-size: 16px;
        color: #666; }
      .header .header-box .select-station .selected-value {
        padding-right: 5px;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: left; }
      .header .header-box .select-station .arrow {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #666;
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        -o-transition: -o-transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease, -o-transform 0.2s ease; }
        .header .header-box .select-station .arrow.active {
          -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          -o-transform: rotate(180deg);
          transform: rotate(180deg); }
      .header .header-box .select-station .select-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        background-color: #fff;
        border: 1px solid #e5e5e5;
        border-top: none;
        -webkit-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
        -webkit-transition: max-height 0.2s ease;
        -o-transition: max-height 0.2s ease;
        transition: max-height 0.2s ease;
        z-index: 2;
        cursor: pointer; }
        .header .header-box .select-station .select-options.show {
          display: block;
          max-height: 200px; }
      .header .header-box .select-station .select-option {
        padding: 8px 12px;
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s; }
        .header .header-box .select-station .select-option:hover {
          background-color: #f3f3f3; }
        .header .header-box .select-station .select-option:active {
          background-color: #e9e9e9; }

.search-wrap {
  width: 100%;
  height: 120px;
  padding-top: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url("https://img9.aijiuku.com/minorities/public/images/common/search_bg.jpg") no-repeat center top; }
  .search-wrap .search-box {
    width: 800px;
    margin: 0 auto;
    height: 54px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    background: #fff;
    padding: 2px 2px 2px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #11aa2b;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .search-wrap .search-box .search-label {
      position: relative;
      font-size: 14px;
      color: #222;
      padding-right: 10px;
      margin-right: 10px; }
      .search-wrap .search-box .search-label::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1px;
        height: 14px;
        background: #afb6c2; }
    .search-wrap .search-box .search-input {
      border: 0;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
      height: 40px; }
    .search-wrap .search-box .search-btn {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 98px;
      height: 44px;
      line-height: 44px;
      -webkit-border-radius: 60px;
      border-radius: 60px;
      background: -webkit-gradient(linear, right top, left top, from(#11aa2b), to(#009ae1));
      background: -webkit-linear-gradient(right, #11aa2b 0%, #009ae1 100%);
      background: -o-linear-gradient(right, #11aa2b 0%, #009ae1 100%);
      background: linear-gradient(270deg, #11aa2b 0%, #009ae1 100%);
      font-size: 14px;
      color: #fff;
      text-align: center;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      cursor: pointer; }
      .search-wrap .search-box .search-btn:hover {
        width: 120px; }

.el-input__inner {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  border-top-color: #dcdfe6;
  border-right-color: #dcdfe6;
  border-bottom-color: #dcdfe6;
  border-left-color: #dcdfe6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 10px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%; }

.el-input__inner:hover {
  border-color: #c0c4cc; }

.el-input__inner:focus {
  border-color: #409eff;
  outline: 0; }

.el-input__inner::-webkit-input-placeholder {
  color: #c0c4cc; }

.el-input__inner::-moz-placeholder {
  color: #c0c4cc; }

.el-input__inner:-ms-input-placeholder {
  color: #c0c4cc; }

.el-input__inner::-ms-input-placeholder {
  color: #c0c4cc; }

.el-input__inner::placeholder {
  color: #c0c4cc; }

.el-input {
  position: relative;
  width: 100%; }

.el-input__inner.is-error {
  border-color: #f56c6c; }

.el-input__error {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0; }

.el-radio__inner,
.el-radio__input {
  position: relative;
  display: inline-block;
  color: #606266; }

.el-radio__input.is-checked .el-radio__inner {
  border-color: #409eff;
  background: #409eff; }

.el-radio__input.is-checked label {
  color: #409eff; }

.el-radio__input {
  line-height: 1;
  white-space: nowrap;
  outline: 0; }

.el-radio__inner {
  vertical-align: -2px;
  border: 1px solid #dcdfe6;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.el-radio__inner::after {
  width: 4px;
  height: 4px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.15s ease-in;
  transition: -webkit-transform 0.15s ease-in;
  -o-transition: transform 0.15s ease-in;
  -o-transition: -o-transform 0.15s ease-in;
  transition: transform 0.15s ease-in;
  transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in, -o-transform 0.15s ease-in;
  transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in; }

.el-radio__input.is-checked .el-radio__inner::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1); }

.el-radio__original {
  opacity: 0;
  outline: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0; }

select {
  -webkit-appearance: none;
  　-moz-appearance: none;
  background-color: #fff;
  background-image: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* color: #606266; */
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 10px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  background-position-x: -webkit-calc(100% - 10px);
  background-position-x: calc(100% - 10px);
  -webkit-background-size: 20px 20px;
  background-size: 20px; }

select:focus {
  border-color: #409eff;
  outline: 0; }

select::-ms-expand {
  display: none; }

option {
  font-size: 14px;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 40px;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: #fff;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari 和 Chrome */
  appearance: none; }

#searchTips {
  scrollbar-color: rgba(144, 147, 153, 0.5) #ffffff;
  /* 第一个方块色彩，第二个轨道色彩(用于更改火狐浏览器款式) */
  scrollbar-width: thin;
  /* 火狐滚动条无奈自定义宽度，只能通过此属性使滚动条宽度变细 */
  -ms-overflow-style: none;
  /* 暗藏滚动条（在IE和Edge两个浏览器中很难更改款式，固采取暗藏形式） */ }

/* 以下是chrome浏览器自定义滚动条款式形式 */
#searchTips::-webkit-scrollbar {
  /*滚动条整体款式*/
  width: 4px;
  /*高宽别离对应横竖滚动条的尺寸*/
  height: 1px; }

#searchTips::-webkit-scrollbar-thumb {
  /*滚动条外面小方块*/
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  background: #dfdfdf; }

#searchTips::-moz-scrollbar {
  width: 15px; }

#searchTips::-webkit-scrollbar-track {
  /*滚动条外面轨道*/
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #fff; }

.footer {
  width: 100%;
  height: 340px;
  background: #222;
  padding-top: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .footer .footer-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto; }
    .footer .footer-box .footer-item {
      width: 320px; }
      .footer .footer-box .footer-item .logo {
        margin-bottom: 30px; }
      .footer .footer-box .footer-item .info {
        font-size: 14px;
        font-weight: 600;
        line-height: 32px;
        color: rgba(255, 255, 255, 0.6); }
      .footer .footer-box .footer-item dl dt {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 600;
        line-height: 26px;
        color: #fff; }
      .footer .footer-box .footer-item dl dd {
        font-size: 14px;
        font-weight: 600;
        line-height: 32px;
        color: rgba(255, 255, 255, 0.6); }
        .footer .footer-box .footer-item dl dd a {
          color: rgba(255, 255, 255, 0.6); }
          .footer .footer-box .footer-item dl dd a:hover {
            color: #11aa2b; }
      .footer .footer-box .footer-item .tit {
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: 600;
        line-height: 26px;
        color: #fff; }
      .footer .footer-box .footer-item .desc {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6); }
      .footer .footer-box .footer-item .input-box {
        margin-bottom: 10px; }
        .footer .footer-box .footer-item .input-box .input-txt {
          padding: 0 10px;
          width: 260px;
          height: 40px;
          border: 0;
          -webkit-box-sizing: border-box;
          box-sizing: border-box; }
        .footer .footer-box .footer-item .input-box .is-error {
          border: 1px solid #11aa2b; }
      .footer .footer-box .footer-item .btn {
        width: 260px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: #11aa2b;
        cursor: pointer; }
        .footer .footer-box .footer-item .btn:hover {
          opacity: 0.8; }
    .footer .footer-box .footer-item2 {
      width: 350px; }

.help-wrap {
  height: 190px;
  background: url("https://img9.aijiuku.com/minorities/public/images/common/help_bg.jpg") no-repeat center top; }
  .help-wrap .help-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 190px; }
    .help-wrap .help-box .help-left {
      width: 700px;
      color: #fff; }
      .help-wrap .help-box .help-left .tit {
        margin-bottom: 20px;
        font-size: 30px;
        font-weight: 600; }
      .help-wrap .help-box .help-left .desc {
        line-height: 24px;
        font-size: 16px;
        font-weight: 600; }
    .help-wrap .help-box .help-right {
      width: 270px;
      height: 54px;
      line-height: 54px;
      text-align: center;
      -webkit-border-radius: 60px;
      border-radius: 60px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      background: -webkit-gradient(linear, right top, left top, from(#11aa2b), to(#009ae1));
      background: -webkit-linear-gradient(right, #11aa2b 0%, #009ae1 100%);
      background: -o-linear-gradient(right, #11aa2b 0%, #009ae1 100%);
      background: linear-gradient(270deg, #11aa2b 0%, #009ae1 100%);
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .help-wrap .help-box .help-right:hover {
        width: 300px; }

.consult_model {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10; }

.consult_model .model_box {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -275px;
  margin-left: -240px;
  width: 480px;
  background: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.consult_model .model_box .close_img {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  color: rgba(0, 26, 52, 0.6);
  background: rgba(0, 26, 52, 0.2);
  cursor: pointer;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .consult_model .model_box .close_img:hover {
    background: rgba(0, 26, 52, 0.4); }

.consult_model .model_box .success_box .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #222; }

.consult_model .model_box .success_box .form {
  margin-left: 40px;
  margin-right: 40px; }

.consult_model .model_box .success_box .form .label {
  font-size: 16px;
  margin-bottom: 10px; }

.consult_model .model_box .success_box .form .label span {
  color: red; }

.consult_model .model_box .success_box .form .el-input {
  margin-bottom: 22px; }

.consult_model .model_box .success_box .form .textarea {
  height: 134px; }

.consult_model .model_box .success_box .form .submit_btn {
  width: 200px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin: auto;
  background: -webkit-gradient(linear, right top, left top, from(#11aa2b), to(#009ae1));
  background: -webkit-linear-gradient(right, #11aa2b 0%, #009ae1 100%);
  background: -o-linear-gradient(right, #11aa2b 0%, #009ae1 100%);
  background: linear-gradient(270deg, #11aa2b 0%, #009ae1 100%);
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .consult_model .model_box .success_box .form .submit_btn:hover {
    opacity: 0.8; }

a.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background: #ff9900;
  color: #fff; }

a.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ed9005;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

a.hvr-shutter-out-horizontal:hover,
a.hvr-shutter-out-horizontal:focus,
a.hvr-shutter-out-horizontal:active {
  color: white; }

a.hvr-shutter-out-horizontal:hover:before,
a.hvr-shutter-out-horizontal:focus:before,
a.hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1); }

.fixed-right-side {
  position: fixed;
  right: 0;
  bottom: 180px;
  z-index: 2;
  width: 70px;
  height: 205px;
  padding: 4px 0 0 0;
  -webkit-border-radius: 35px;
  border-radius: 35px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b5d7fc), to(#bbd1ff));
  background: -webkit-linear-gradient(top, #b5d7fc 0%, #bbd1ff 100%);
  background: -o-linear-gradient(top, #b5d7fc 0%, #bbd1ff 100%);
  background: linear-gradient(180deg, #b5d7fc 0%, #bbd1ff 100%); }
  .fixed-right-side .item {
    display: block;
    position: relative;
    margin: 5px auto;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer; }
    .fixed-right-side .item .iconfont {
      font-size: 30px;
      color: #0d3070; }
    .fixed-right-side .item .info {
      display: none;
      position: absolute;
      right: 80px;
      top: 0;
      width: 200px;
      padding: 10px;
      height: 30px;
      line-height: 30px;
      background: #fff;
      border: 1px solid #bbd1ff;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      font-size: 18px;
      font-weight: bold; }
    .fixed-right-side .item:hover {
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -o-transform: scale(0.9);
      transform: scale(0.9); }
      .fixed-right-side .item:hover .info {
        display: inline-block; }
