
.cif-container {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto; }
  .cif-container::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both; }

.cif-section {
  position: relative;
  width: 100%; }
  .cif-section .cif-section__head {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    width: 100%;
    line-height: 56px;
    font-size: 14px;
    border-bottom: 1px solid #ebeced; }
    .cif-section .cif-section__head::after {
      content: "";
      display: block;
      width: 100%;
      height: 0;
      clear: both; }
    .cif-section .cif-section__head.is-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      display: table-cell\9; }
      .cif-section .cif-section__head.is-flex::after, .cif-section .cif-section__head.is-flex::before {
        display: none; }
      .cif-section .cif-section__head.is-flex .cif-navtab {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        height: 56px; }
      .cif-section .cif-section__head.is-flex .text {
        -ms-flex-negative: 0;
            flex-shrink: 0; }
    .cif-section .cif-section__head .text {
      float: left;
      font-size: 16px;
      color: #333;
      font-weight: bold; }
    .cif-section .cif-section__head .desc {
      float: left;
      margin-left: 17px;
      color: #999; }
    .cif-section .cif-section__head .more {
      float: right;
      color: #999;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .cif-section .cif-section__head .more .iconfont {
        font-size: 12px; }
    .cif-section .cif-section__head .opt {
      float: right;
      font-size: 14px;
      color: #999;
      font-weight: normal; }
      .cif-section .cif-section__head .opt .opt-item {
        position: relative;
        display: inline-block;
        margin-left: 16px;
        cursor: pointer; }
        .cif-section .cif-section__head .opt .opt-item.is-active {
          font-weight: bold;
          color: #333; }
          .cif-section .cif-section__head .opt .opt-item.is-active::after {
            content: "";
            position: absolute;
            bottom: 10px;
            left: 50%;
            margin-left: -15px;
            width: 30px;
            height: 2px;
            background: #3599e1; }
  .cif-section .cif-section__cont {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%; }
    .cif-section .cif-section__cont.is-padding {
      padding: 0 30px; }
  .cif-section--box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
    -webkit-box-shadow: 1px 2px 12px -5px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 2px 12px -5px rgba(0, 0, 0, 0.1); }
  .cif-section--solid {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
    border: 1px solid #EFF1F3; }
  .cif-section--s {
    width: 190px; }
  .cif-section--b {
    width: 990px; }
    .cif-section--b .cif-section--b {
      width: 690px; }
    .cif-section--b .cif-section--s {
      width: 280px; }
  .cif-section.is-normal .cif-section--b {
    width: 880px; }
  .cif-section.is-normal .cif-section--s {
    width: 300px; }
  .cif-section.is-informationFlow .cif-section__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 0;
    width: 100%; }
    .cif-section.is-informationFlow .cif-section__head .text {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      max-width: 100%; }
    .cif-section.is-informationFlow .cif-section__head .more {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .cif-section.is-informationFlow .cif-section__head .label {
      display: inline-block;
      font-weight: normal;
      height: 26px;
      line-height: 26px;
      -webkit-border-radius: 13px;
              border-radius: 13px;
      font-size: 12px;
      padding: 0 9px;
      color: #f60;
      background: #FFF6F1;
      border: 1px solid #F9CAB1;
      margin-left: 10px; }
      .cif-section.is-informationFlow .cif-section__head .label .iconfont {
        font-size: 12px; }
      .cif-section.is-informationFlow .cif-section__head .label:hover {
        background: #FF8739;
        color: #fff; }
    .cif-section.is-informationFlow .cif-section__head::after {
      display: none; }
  .cif-section.is-informationFlow .cif-section__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }

.cif-imgbox {
  display: block;
  position: relative;
  overflow: hidden; }
  .cif-imgbox img {
    position: absolute;
    max-width: 100%;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0); }
  .cif-imgbox--round {
    -webkit-border-radius: 50%;
            border-radius: 50%; }
  .cif-imgbox.is-auto img {
    max-width: none; }
  .cif-imgbox--hover img {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .cif-imgbox--hover:hover img {
    -webkit-transform: scale(1.2) translate3d(-42%, -42%, 0);
            transform: scale(1.2) translate3d(-42%, -42%, 0); }

.cif-btn {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 98px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  color: #fff;
  background-color: #f676a6;
  border: 1px solid #f676a6; }
  .cif-btn .cif-btn__icon {
    font-size: 12px; }
  .cif-btn .sd-btn__icon {
    font-size: 14px; }
  .cif-btn.is-round {
    -webkit-border-radius: 15px;
            border-radius: 15px; }
  .cif-btn.is-plain {
    color: #f676a6;
    background-color: transparent;
    border: 1px solid #f676a6; }
  .cif-btn:hover, .cif-btn:focus, .cif-btn:active, .cif-btn.is-plain:hover, .cif-btn.is-plain:focus, .cif-btn.is-plain:active {
    color: #fff;
    background-color: #ff8739;
    border: 1px solid #ff8739; }
  .cif-btn .cif-btn__text {
    display: inline-block; }
  .cif-btn .cif-btn__icon {
    display: inline-block; }
    .cif-btn .cif-btn__icon + .cif-btn__text {
      margin-left: 5px; }
  .cif-btn--normal {
    width: 138px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    -webkit-border-radius: 4px;
            border-radius: 4px; }
    .cif-btn--normal .cif-btn__icon {
      font-size: 14px; }
    .cif-btn--normal .sd-btn__icon {
      font-size: 16px; }
    .cif-btn--normal.is-round {
      -webkit-border-radius: 19px;
              border-radius: 19px; }
  .cif-btn--mini {
    width: 74px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    -webkit-border-radius: 4px;
            border-radius: 4px; }
    .cif-btn--mini .cif-btn__icon {
      font-size: 12px; }
    .cif-btn--mini .sd-btn__icon {
      font-size: 14px; }
    .cif-btn--mini.is-round {
      -webkit-border-radius: 15px;
              border-radius: 15px; }
  .cif-btn--text {
    color: #999;
    background-color: transparent;
    border: 1px solid transparent; }
    .cif-btn--text.is-plain {
      color: #999;
      background-color: transparent;
      border: 1px solid transparent; }
    .cif-btn--text:hover, .cif-btn--text:focus, .cif-btn--text:active, .cif-btn--text.is-plain:hover, .cif-btn--text.is-plain:focus, .cif-btn--text.is-plain:active {
      color: #999;
      background-color: transparent;
      border: 1px solid transparent; }
  .cif-btn--info {
    color: #999;
    background-color: #f2f4f6;
    border: 1px solid #f2f4f6; }
    .cif-btn--info.is-plain {
      color: #666;
      background-color: transparent;
      border: 1px solid #ebeced; }
    .cif-btn--info:hover, .cif-btn--info:focus, .cif-btn--info:active, .cif-btn--info.is-plain:hover, .cif-btn--info.is-plain:focus, .cif-btn--info.is-plain:active {
      color: #999;
      background-color: #ebeced;
      border: 1px solid #ebeced; }
  .cif-btn.is-round {
    -webkit-border-radius: 15px;
            border-radius: 15px; }
  .cif-btn.is-auto {
    width: auto;
    padding: 0 15px; }
  .cif-btn.is-forbid {
    cursor: not-allowed;
    color: #999;
    border: 1px solid #eaeaea;
    background: #eaeaea; }
    .cif-btn.is-forbid:hover {
      cursor: not-allowed;
      color: #999;
      border: 1px solid #eaeaea;
      background: #eaeaea; }
  .cif-btn.is-type1 {
    background-color: white;
    border: 1px solid #f676a6;
    color: #f676a6; }
    .cif-btn.is-type1:hover {
      background-color: #f676a6;
      border: 1px solid #f676a6;
      color: white; }
  .cif-header__topbox {
    width: 100%; }
  .cif-header__top {
    padding-top: 1px;
    background-color: #fff; }
    .cif-header__top::after {
      content: "";
      display: block;
      width: 100%;
      height: 0;
      clear: both; }
    .cif-header__top.is-fixed {
      position: fixed;
      width: 100%;
      height: 100px;
      left: 0;
      top: 0;
      z-index: 11;
      -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
              box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1); }
      .cif-header__top.is-fixed .cif-header__logo {
        margin-top: 13px; }
      .cif-header__top.is-fixed .cif-header__searchbox {
        margin-top: 31px; }
      .cif-header__top.is-fixed .cif-header__app {
        margin-top: 20px; }
      .cif-header__top.is-fixed .cif-header__word {
        display: none; }
  .cif-header__logo {
    margin-top: 24px;
    width: 200px;
    height: 68px;
    float: left; }
  .cif-header__searchbox {
    float: left;
    margin: 30px 0 0 98px;
    width: 580px; }
  .cif-header__word {
    margin-top: 10px;
    font-size: 12px;
    height: 18px;
    overflow: hidden;
    color: #999; }
    .cif-header__word a {
      display: inline-block;
      margin-right: 13px;
      margin-bottom: 10px; }
      .cif-header__word a.is-hot {
        color: red; }
  .cif-header__app {
    position: absolute;
	top: 25px;
	right: 56px;
    width: 220px;
    height: 66px;
    z-index: 4; }
    .cif-header__app > .cif-imgbox {
      width: 100%;
      height: 100%; }
    .cif-header__app .cif-hoverbox {
      width: 1px;
      height: 1px;
      opacity: 0;
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
    .cif-header__app .cif-header__hoverbox .cif-imgbox {
      width: 140px;
      height: 140px; }
    .cif-header__app .cif-header__hoverbox p {
      margin-top: 8px;
      font-size: 14px;
      color: #666;
      text-align: center; }
    .cif-header__app:hover .cif-header__hoverbox {
      position: absolute;
      width: 180px;
      padding: 20px 20px 17px;
      height: auto;
      overflow: initial;
      top: 66px;
      left: 50%;
      z-index: 2;
      opacity: 1; }
  .cif-header__bottom {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    margin-top: 20px;
    line-height: 42px;
    padding: 0px 0 0px 255px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .cif-header__list {
    position: relative;
    float: left;
    z-index: 3;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .cif-header__list > .item {
      position: relative;
      float: left;
      font-size: 16px;
      color: #333;
      padding: 0 15px; }
      .cif-header__list > .item.is-hover {
        margin-right: 10px; }
        .cif-header__list > .item.is-hover::after {
          content: "";
          position: absolute;
          right: 0;
          top: 50%;
          margin: -3px auto 0;
          border-right: 4px solid transparent;
          border-left: 4px solid transparent;
          border-top: 4px solid #aaaaaa;
          -webkit-transition: -webkit-transform 0.3s linear;
          transition: -webkit-transform 0.3s linear;
          -o-transition: transform 0.3s linear;
          transition: transform 0.3s linear;
          transition: transform 0.3s linear, -webkit-transform 0.3s linear; }
        .cif-header__list > .item.is-hover:hover {
          color: #f676a6; }
          .cif-header__list > .item.is-hover:hover::after {
            -webkit-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                    transform: rotate(180deg);
            border-top-color: #f676a6; }
          .cif-header__list > .item.is-hover:hover .cif-header__hoverbox {
            position: absolute;
            width: 320px;
            height: auto;
            overflow: initial;
            opacity: 1;
            top: 45px;
            left: 50%;
            z-index: 5; }
            .cif-header__list > .item.is-hover:hover .cif-header__hoverbox.is-baibao {
              width: 302px;
              padding-bottom: 10px; }
              .cif-header__list > .item.is-hover:hover .cif-header__hoverbox.is-baibao .sec-cont {
                padding-bottom: 0;
                border: 0; }
            .cif-header__list > .item.is-hover:hover .cif-header__hoverbox.is-yuke {
              width: 90px; }
      .cif-header__list > .item.is-hideIcon::after {
        display: none; }
    .cif-header__list .label img {
      display: inline-block;
      position: relative;
      top: 2px; }
    .cif-header__list .is-new,
    .cif-header__list .is-hot {
      position: absolute;
      width: 23px;
      height: 14px;
      right: -5px;
      top: 50%;
      margin-top: -20px;
      background: center no-repeat;
      -webkit-background-size: 100% 100%;
              background-size: 100% 100%; }
    .cif-header__list .is-new {
      background-image: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/new.png); }
    .cif-header__list .is-hot {
      background-image: url("http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/hot1.png"); }
  .cif-header__login {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 200px;
    float: right;
    color: #333; }
    .cif-header__login > .item {
      position: relative;
      display: inline-block;
      font-size: 14px;
      overflow: initial;
      cursor: pointer; }
      .cif-header__login > .item + .item::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -5px;
        height: 10px;
        width: 0;
        border-left: 1px solid #999; }
      .cif-header__login > .item:hover {
        position: relative; }
      .cif-header__login > .item .cif-header-hoverbox {
        position: absolute;
        width: 281px;
        height: auto;
        overflow: initial;
        opacity: 1;
        top: 42px;
        left: 50%;
        z-index: 2; }
        .cif-header__login > .item .cif-header-hoverbox.is-notlogin {
          width: 231px; }
    .cif-header__login.is-new {
      color: #fff;
      height: 26px;
      line-height: 26px;
      padding: 6px 0; }
      .cif-header__login.is-new > .item:hover .cif-header__hoverbox {
        top: 42px; }
        .cif-header__login.is-new > .item:hover .cif-header__hoverbox.is-notlogin {
          width: 231px; }

@-webkit-keyframes iconAnimation {
  0% {
    -webkit-background-size: 100% 100%;
            background-size: 100%; }
  50% {
    -webkit-background-size: 90% 90%;
            background-size: 90%; }
  100% {
    -webkit-background-size: 100% 100%;
            background-size: 100%; } }

@keyframes iconAnimation {
  0% {
    -webkit-background-size: 100% 100%;
            background-size: 100%; }
  50% {
    -webkit-background-size: 90% 90%;
            background-size: 90%; }
  100% {
    -webkit-background-size: 100% 100%;
            background-size: 100%; } }
      .cif-header__login.is-new .item_login {
        height: 26px;
        text-align: center;
        line-height: 26px;
        background-color: #fff;
        border: 1px solid #f676a6;
        color: #f60;
        -webkit-border-radius: 13px 13px 13px 0px;
                border-radius: 13px 13px 13px 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        z-index: 9; }
        .cif-header__login.is-new .item_login:hover {
          background-color: #f60;
          color: #fff; }
          .cif-header__login.is-new .item_login:hover::before {
            background-image: url("http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/29af91335e524d909e360fcccd0a102c.png"); }
      .cif-header__login.is-new.is-login > .item_login {
        color: #333;
        border-color: #e8e8e8; }
        .cif-header__login.is-new.is-login > .item_login::after {
          right: 10px !important; }
        .cif-header__login.is-new.is-login > .item_login::before {
          display: none; }
        .cif-header__login.is-new.is-login > .item_login:hover {
          background-color: #fff; }
  .cif-header__hoverbox {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-bottom: 0px;
    position: fixed;
    width: 1px;
    height: 1px;
    top: 100px;
    left: 0;
    line-height: 30px;
    opacity: 0;
    overflow: hidden;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: opacity 0.3s, top 0.3s;
    -o-transition: opacity 0.3s, top 0.3s;
    transition: opacity 0.3s, top 0.3s;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
    z-index: -1; }
    .cif-header__hoverbox::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 18px;
      top: -16px;
      left: 0; }
    .cif-header__hoverbox::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -9px;
      width: 13px;
      height: 13px;
      margin-left: -7px;
      border-top: 2px solid #ebeced;
      border-left: 2px solid #ebeced;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      background-color: #fff; }
    .cif-header__hoverbox:not(.is-user) .sec {
      width: 100%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 21px 20px 0; }
      .cif-header__hoverbox:not(.is-user) .sec:first-child {
        padding: 26px 20px 0; }
      .cif-header__hoverbox:not(.is-user) .sec::after {
        content: "";
        display: block;
        width: 100%;
        height: 0;
        clear: both; }
    .cif-header__hoverbox:not(.is-user) .sec-tit {
      text-indent: 5px;
      font-size: 14px;
      color: #333;
      font-weight: bold;
      line-height: 20px;
      margin-bottom: 15px; }
    .cif-header__hoverbox:not(.is-user) .sec-cont {
      border-bottom: 1px solid #ebeced;
      padding-bottom: 8px; }
      .cif-header__hoverbox:not(.is-user) .sec-cont::after {
        content: "";
        display: block;
        width: 100%;
        height: 0;
        clear: both; }
      .cif-header__hoverbox:not(.is-user) .sec-cont.is-column2 > .item {
        width: 50%; }
    .cif-header__hoverbox:not(.is-user) .item {
      text-indent: 5px;
      float: left;
      width: 33%;
      margin-bottom: 15px;
      line-height: 16px;
      font-size: 14px;
      color: #666; }
      .cif-header__hoverbox:not(.is-user) .item:nth-child(3n) {
        width: 34%; }
    .cif-header__hoverbox:not(.is-user) .sec-btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 20px 0; }
      .cif-header__hoverbox:not(.is-user) .sec-btn .cif-btn {
        width: 130px;
        height: 35px;
        -webkit-border-radius: 3px;
                border-radius: 3px;
        line-height: 33px; }
        .cif-header__hoverbox:not(.is-user) .sec-btn .cif-btn + .cif-btn {
          margin-left: 10px; }
    .cif-header__hoverbox:not(.is-user) > .cif-btn {
      display: block;
      margin: 20px auto;
      width: 140px;
      height: 35px;
      -webkit-border-radius: 3px;
              border-radius: 3px;
      line-height: 33px; }
    .cif-header__hoverbox:not(.is-user).is-baibao {
      padding: 0 20px; }
      .cif-header__hoverbox:not(.is-user).is-baibao .sec {
        padding: 20px 0 0; }
      .cif-header__hoverbox:not(.is-user).is-baibao .item {
        float: left;
        position: relative;
        width: 50%;
        height: 34px;
        padding: 11px 0 11px 44px;
        text-align: left;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        display: block;
        font-size: 14px;
        color: #666; }
      .cif-header__hoverbox:not(.is-user).is-baibao img {
        width: 34px;
        height: 34px;
        -webkit-border-radius: 4px;
                border-radius: 4px; }
    .cif-header__hoverbox:not(.is-user).is-yuke {
      width: 90px; }
      .cif-header__hoverbox:not(.is-user).is-yuke .sec {
        width: 100%;
        padding: 20px 0; }
      .cif-header__hoverbox:not(.is-user).is-yuke .item {
        width: 100%;
        height: 30px;
        line-height: 30px;
        text-align: center;
        margin: 0;
        overflow: hidden;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding: 0 10px; }
    .cif-header__hoverbox.is-user {
      border-top-color: #fbe1c2;
      margin-left: -100px; }
      .cif-header__hoverbox.is-user::after {
        left: 243px;
        border-bottom-color: #fbe1c2;
        background: #fbe1c2; }
      .cif-header__hoverbox.is-user .item {
        display: block;
        color: #666; }
        .cif-header__hoverbox.is-user .item.is-half {
          width: 50%; }
          .cif-header__hoverbox.is-user .item.is-half:nth-child(2n) {
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
            padding-left: 15px; }
      .cif-header__hoverbox.is-user .item-group {
        width: 234px;
        margin: 0 auto;
        padding: 12px 0; }
        .cif-header__hoverbox.is-user .item-group + .item-group {
          border-top: 1px solid #ebeced; }
    .cif-header__hoverbox.is-observer::after {
      background: #bbe5ff !important; }
    .cif-header__hoverbox.is-observer .cif-header__userinfo {
      position: relative;
      background: -webkit-gradient(linear, left top, left bottom, from(#bae5ff), to(#f3faff));
      background: -webkit-linear-gradient(top, #bae5ff, #f3faff);
      background: -o-linear-gradient(top, #bae5ff, #f3faff);
      background: linear-gradient(180deg, #bae5ff, #f3faff); }
    .cif-header__hoverbox.is-observer .vip-card {
      background: -webkit-linear-gradient(190deg, #127bc3, rgba(18, 128, 196, 0.6));
      background: -o-linear-gradient(190deg, #127bc3, rgba(18, 128, 196, 0.6));
      background: linear-gradient(260deg, #127bc3, rgba(18, 128, 196, 0.6)); }
      .cif-header__hoverbox.is-observer .vip-card .tit {
        font-size: 14px;
        color: #ffffff;
        position: relative; }
      .cif-header__hoverbox.is-observer .vip-card .desc {
        font-size: 12px;
        color: #ffffff; }
      .cif-header__hoverbox.is-observer .vip-card .cif-btn {
        background: #ffffff;
        border: none;
        color: #127bc3; }
    .cif-header__hoverbox.is-observer-identity .cif-header__userinfo {
      position: relative;
      background: -webkit-gradient(linear, left top, left bottom, from(#bae5ff), to(#f3faff));
      background: -webkit-linear-gradient(top, #bae5ff, #f3faff);
      background: -o-linear-gradient(top, #bae5ff, #f3faff);
      background: linear-gradient(180deg, #bae5ff, #f3faff); }
    .cif-header__hoverbox.is-observer-identity::before {
      content: "v";
      width: 16px;
      height: 16px;
      background: -webkit-gradient(linear, left bottom, left top, from(#ff940c), to(#ff7103));
      background: -webkit-linear-gradient(bottom, #ff940c, #ff7103);
      background: -o-linear-gradient(bottom, #ff940c, #ff7103);
      background: linear-gradient(0deg, #ff940c, #ff7103);
      -webkit-border-radius: 56%;
              border-radius: 56%;
      position: absolute;
      color: white;
      text-align: center;
      line-height: 13px;
      left: 36px;
      top: 52px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      font-size: 13px;
      border: 1px solid white;
      z-index: 6; }
    .cif-header__hoverbox.is-observer-identity::after {
      background: #bbe5ff !important; }
    .cif-header__hoverbox.is-observer-identity .vip-card {
      background: -webkit-linear-gradient(190deg, #127bc3, rgba(18, 128, 196, 0.6));
      background: -o-linear-gradient(190deg, #127bc3, rgba(18, 128, 196, 0.6));
      background: linear-gradient(260deg, #127bc3, rgba(18, 128, 196, 0.6)); }
      .cif-header__hoverbox.is-observer-identity .vip-card .tit {
        font-size: 14px;
        color: #ffffff;
        padding-left: 23px;
        position: relative; }
        .cif-header__hoverbox.is-observer-identity .vip-card .tit::before {
          content: "v";
          width: 16px;
          height: 16px;
          background: -webkit-gradient(linear, left bottom, left top, from(#ff940c), to(#ff7103));
          background: -webkit-linear-gradient(bottom, #ff940c, #ff7103);
          background: -o-linear-gradient(bottom, #ff940c, #ff7103);
          background: linear-gradient(0deg, #ff940c, #ff7103);
          -webkit-border-radius: 56%;
                  border-radius: 56%;
          position: absolute;
          color: white;
          text-align: center;
          line-height: 15px;
          left: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%);
          font-size: 13px; }
      .cif-header__hoverbox.is-observer-identity .vip-card .desc {
        font-size: 12px;
        color: #ffffff; }
      .cif-header__hoverbox.is-observer-identity .vip-card .cif-btn {
        background: #ffffff;
        border: none;
        color: #127bc3; }
  .cif-header__common {
    color: #333;
    padding: 26px 30px;
    line-height: normal; }
    .cif-header__common .tit {
      color: #999;
      font-size: 14px;
      text-align: center; }
    .cif-header__common .cont {
      margin-top: 16px;
      line-height: 24px; }
      .cif-header__common .cont .cont_item {
        margin-top: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .cif-header__common .cont .cont_item img {
          width: 20px;
          height: 20px;
          margin-right: 14px;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
        .cif-header__common .cont .cont_item .selectedIconPath {
          display: none; }
        .cif-header__common .cont .cont_item:hover .selectedIconPath {
          display: inline-block; }
        .cif-header__common .cont .cont_item:hover .iconPath {
          display: none; }
    .cif-header__common .btn {
      margin-top: 24px;
      position: relative; }
      .cif-header__common .btn::after {
        content: "";
        display: block;
        width: 164px;
        height: 56px;
        background-image: url("http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/3be06a13a42947679aa5ad8a713f9760.png");
        -webkit-background-size: 100% 100%;
                background-size: 100%;
        background-repeat: no-repeat;
        position: absolute;
        top: 10px;
        left: 3px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        opacity: 0; }
      .cif-header__common .btn:hover {
        -webkit-animation-play-state: paused;
                animation-play-state: paused; }
        .cif-header__common .btn:hover::after {
          opacity: 1; }
      .cif-header__common .btn .cif-btn {
        width: 100%;
        height: 40px;
        line-height: 40px;
        -webkit-border-radius: 20px;
                border-radius: 20px;
        background: -webkit-gradient(linear, left top, left bottom, from(#efdecb), to(#ecb896));
        background: -webkit-linear-gradient(top, #efdecb 0%, #ecb896 100%);
        background: -o-linear-gradient(top, #efdecb 0%, #ecb896 100%);
        background: linear-gradient(180deg, #efdecb 0%, #ecb896 100%);
        padding: 0;
        border: 0;
        position: relative;
        z-index: 1; }
  .cif-header__userinfo {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding: 20px 11px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fbe1c2), to(#fef6ed));
    background: -webkit-linear-gradient(top, #fbe1c2, #fef6ed);
    background: -o-linear-gradient(top, #fbe1c2, #fef6ed);
    background: linear-gradient(180deg, #fbe1c2, #fef6ed); }
    .cif-header__userinfo .cif-imgbox {
      float: left;
      width: 40px;
      height: 40px;
      -webkit-border-radius: 50%;
              border-radius: 50%; }
    .cif-header__userinfo .name {
      float: left;
      max-width: 120px;
      font-size: 14px;
      color: #333;
      font-weight: bold;
      margin-left: 13px; }
    .cif-header__userinfo .icon {
      width: 16px;
      height: 16px;
      display: inline-block;
      vertical-align: middle; }
    .cif-header__userinfo .vip-card {
      width: 260px;
      height: 56px;
      background: -webkit-gradient(linear, right top, left top, from(#464664), to(#1e1c36));
      background: -webkit-linear-gradient(right, #464664 0%, #1e1c36 100%);
      background: -o-linear-gradient(right, #464664 0%, #1e1c36 100%);
      background: linear-gradient(270deg, #464664 0%, #1e1c36 100%);
      -webkit-border-radius: 4px 4px 0px 0px;
              border-radius: 4px 4px 0px 0px;
      margin-top: 11px; }
      .cif-header__userinfo .vip-card .cont {
        margin-top: 6px;
        float: left;
        width: 166px;
        margin-left: 13px;
        line-height: 22px;
        text-align: left; }
      .cif-header__userinfo .vip-card .tit {
        font-size: 14px;
        color: #d69b76; }
      .cif-header__userinfo .vip-card .desc {
        font-size: 12px;
        color: #999; }
      .cif-header__userinfo .vip-card .cif-btn {
        float: right;
        width: 68px;
        height: 28px;
        line-height: 28px;
        -webkit-border-radius: 35px;
                border-radius: 35px;
        font-size: 14px;
        margin-top: 13px;
        margin-right: 10px;
        border: 1px solid rgba(0, 0, 0, 0);
        background: -webkit-gradient(linear, left top, left bottom, from(#efdecb), to(#ecb896));
        background: -webkit-linear-gradient(top, #efdecb 0%, #ecb896 100%);
        background: -o-linear-gradient(top, #efdecb 0%, #ecb896 100%);
        background: linear-gradient(180deg, #efdecb 0%, #ecb896 100%);
        color: #5f330d; }
    .cif-header__userinfo .logout {
      float: right;
      color: #666;
      font-size: 14px;
      line-height: 40px;
      cursor: pointer; }
  .cif-header.is-second {
    padding-top: 0; }
    .cif-header.is-second .cif-header__logo {
      margin: 17px 0 8px; }
    .cif-header.is-second .cif-header__searchbox {
      margin-top: 25px; }
    .cif-header.is-second .cif-header__app {
      margin-top: 11px; }

#notlogin.cif-header__login > .item {
  cursor: pointer; }

#islogin.cif-header__login > .item {
  cursor: default; }
  #islogin.cif-header__login > .item::after {
    display: none;
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    margin: -3px auto 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #aaaaaa;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear; }
  #islogin.cif-header__login > .item:hover {
    color: #f676a6; }
    #islogin.cif-header__login > .item:hover::after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }

.cif-search {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 42px;
  width: 580px;
  font-size: 0; }
  .cif-search > .cont {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 500px;
    height: 42px;
    margin: 0;
    border: 2px solid #f676a6;
    border-right: none;
    overflow: hidden; }
    .cif-search > .cont::after {
      content: "";
      display: block;
      width: 100%;
      height: 0;
      clear: both; }
  .cif-search .cif-search__lab {
    float: left;
    width: 40px;
    height: 38px;
    text-align: center;
    line-height: 40px; }
    .cif-search .cif-search__lab .iconfont {
      color: #ccc; }
  .cif-search .cif-search__input {
    float: left;
    padding: 0;
    width: 440px;
    height: 100%;
    outline: none;
    border: none;
    line-height: 40px;
    color: #333;
    font-size: 14px; }
    .cif-search .cif-search__input::-webkit-input-placeholder {
      color: #999; }
    .cif-search .cif-search__input::-moz-placeholder {
      color: #999; }
    .cif-search .cif-search__input::-ms-input-placeholder {
      color: #999; }
    .cif-search .cif-search__input::placeholder {
      color: #999; }
  .cif-search .cif-search__btn {
    display: inline-block;
    width: 80px;
    height: 42px;
    background: #f676a6;
    font-size: 14px;
    line-height: 42px;
    color: #fff;
    text-align: center;
    vertical-align: top;
    cursor: pointer; }
    .cif-search .cif-search__btn:hover {
      background-color: #ff8739; }
  .cif-search .cif-search__hover {
    display: none;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 40px;
    width: 498px;
    height: auto;
    border: 2px solid #f676a6;
    border-top: none;
    background: #fff;
    font-size: 14px;
    color: #333; }
    .cif-search .cif-search__hover.is-active {
      display: block; }
  .cif-search .cif-search__rankicon {
    position: absolute;
    right: 90px;
    background: url(../image/search_rank_icon.gif) center no-repeat;
    -webkit-transform-origin: top right;
        -ms-transform-origin: top right;
            transform-origin: top right;
    -webkit-animation: search-rank-icon 6.1s infinite both;
            animation: search-rank-icon 6.1s infinite both; }
  .cif-search .cif-search__rank {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    padding-left: 14px;
    width: 100%;
    font-size: 14px;
    line-height: 35px;
    color: #666; }
    .cif-search .cif-search__rank:last-child {
      margin-bottom: 10px; }
    .cif-search .cif-search__rank.is-tit {
      margin-bottom: 2px;
      line-height: 30px; }
      .cif-search .cif-search__rank.is-tit::after {
        content: "";
        display: block;
        width: 100%;
        height: 0;
        clear: both; }
      .cif-search .cif-search__rank.is-tit img {
        float: left;
        width: auto;
        margin-top: 2px;
        max-height: 30px;
        max-width: 300px; }
      .cif-search .cif-search__rank.is-tit .more {
        float: right;
        font-size: 12px;
        color: #f676a6; }
        .cif-search .cif-search__rank.is-tit .more .iconfont {
          display: inline-block;
          -webkit-transform: rotate(90deg) translate(0px, 8px);
              -ms-transform: rotate(90deg) translate(0px, 8px);
                  transform: rotate(90deg) translate(0px, 8px);
          font-size: 14px; }
    .cif-search .cif-search__rank.is-type1 span {
      position: relative; }
      .cif-search .cif-search__rank.is-type1 span::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 5px;
        background: url(../image/search_rank_type1.png) center no-repeat; }
    .cif-search .cif-search__rank.is-type2 span::after {
      content: "·Ð";
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-left: 5px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      background-color: #f676a6;
      -webkit-transform: scale(0.83);
          -ms-transform: scale(0.83);
              transform: scale(0.83);
      font-size: 12px;
      line-height: 16px;
      color: #fff;
      text-align: center; }
    .cif-search .cif-search__rank.is-type3 span::after {
      content: "ÈÈ";
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-left: 5px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      background-color: #ffa916;
      -webkit-transform: scale(0.83);
          -ms-transform: scale(0.83);
              transform: scale(0.83);
      font-size: 12px;
      line-height: 16px;
      color: #fff;
      text-align: center; }
    .cif-search .cif-search__rank.is-type4 span::after {
      content: "ÐÂ";
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-left: 5px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      background-color: #f63f3f;
      -webkit-transform: scale(0.83);
          -ms-transform: scale(0.83);
              transform: scale(0.83);
      font-size: 12px;
      line-height: 16px;
      color: #fff;
      text-align: center; }
  .cif-search .cif-search__sug {
    background-color: #f2f4f6; }
  .cif-search .cif-search__suggroup {
    display: block;
    background: #fff;
    line-height: 24px; }
    .cif-search .cif-search__suggroup.is-type1 {
      height: 65px;
      margin-bottom: 4px; }
      .cif-search .cif-search__suggroup.is-type1::after {
        content: "";
        display: block;
        width: 100%;
        height: 0;
        clear: both; }
      .cif-search .cif-search__suggroup.is-type1 .cif-imgbox {
        float: left;
        width: 88px;
        height: 38px;
        margin: 10px 0 0 38px;
        border: 1px solid #f2f4f6;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04);
                box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04); }
      .cif-search .cif-search__suggroup.is-type1 .cif-imgbox-no-guoyuan {
        width: 42px;
        height: 42px; }
      .cif-search .cif-search__suggroup.is-type1 .cont {
        float: left;
        width: 234px;
        margin: 8px 0 0 7px; }
      .cif-search .cif-search__suggroup.is-type1 .tit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; }
        .cif-search .cif-search__suggroup.is-type1 .tit em {
          font-style: normal; }
        .cif-search .cif-search__suggroup.is-type1 .tit .text {
          overflow: hidden;
          -o-text-overflow: ellipsis;
             text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1; }
        .cif-search .cif-search__suggroup.is-type1 .tit .tag {
          height: 21px;
          padding: 0 6px;
          border: 1px solid #ebeced;
          -webkit-border-radius: 2px;
                  border-radius: 2px;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          -webkit-transform: scale(0.66);
              -ms-transform: scale(0.66);
                  transform: scale(0.66);
          text-align: center;
          font-size: 12px;
          line-height: 21px;
          color: #999; }
      .cif-search .cif-search__suggroup.is-type1 .desc {
        font-size: 12px;
        color: #999;
        line-height: 18px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1; }
      .cif-search .cif-search__suggroup.is-type1 .btn {
        float: right;
        margin: 18px 28px 0 0;
        font-size: 12px;
        color: #f676a6; }
    .cif-search .cif-search__suggroup.is-type2 {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 100%;
      padding: 0 0 11px 38px;
      background: url(../image/search_sug_type2.png) #fff 12px 16px/20px 20px no-repeat; }
      .cif-search .cif-search__suggroup.is-type2:not(:last-child) {
        border-bottom: 1px solid #ebeced; }
      .cif-search .cif-search__suggroup.is-type2 > .tit {
        padding-top: 13px;
        line-height: 28px; }
      .cif-search .cif-search__suggroup.is-type2 em {
        color: #f676a6;
        font-style: normal; }
      .cif-search .cif-search__suggroup.is-type2 .item {
        display: block;
        font-size: 12px;
        color: #666; }
    .cif-search .cif-search__suggroup.is-type3 {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 100%;
      padding: 0 0 10px 38px;
      background: url(../image/search_sug_type3.png) #fff 12px 16px/20px 20px no-repeat; }
      .cif-search .cif-search__suggroup.is-type3:not(:last-child) {
        border-bottom: 1px solid #ebeced; }
      .cif-search .cif-search__suggroup.is-type3 > .tit {
        padding-top: 13px;
        padding-bottom: 2px;
        line-height: 28px; }
      .cif-search .cif-search__suggroup.is-type3 em {
        color: #f676a6;
        font-style: normal; }
      .cif-search .cif-search__suggroup.is-type3 .item {
        display: block;
        height: 60px; }
        .cif-search .cif-search__suggroup.is-type3 .item::after {
          content: "";
          display: block;
          width: 100%;
          height: 0;
          clear: both; }
        .cif-search .cif-search__suggroup.is-type3 .item .cif-imgbox {
          float: left;
          width: 42px;
          height: 42px;
          margin: 8px 0 0 0px;
          border: 1px solid #f2f4f6;
          -webkit-border-radius: 2px;
                  border-radius: 2px; }
        .cif-search .cif-search__suggroup.is-type3 .item .cont {
          float: left;
          width: 282px;
          margin: 8px 0 0 7px; }
        .cif-search .cif-search__suggroup.is-type3 .item .tit {
          font-size: 12px; }
        .cif-search .cif-search__suggroup.is-type3 .item .desc {
          font-size: 12px;
          color: #999;
          line-height: 18px;
          overflow: hidden;
          -o-text-overflow: ellipsis;
             text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1; }
        .cif-search .cif-search__suggroup.is-type3 .item .btn {
          float: right;
          margin: 18px 28px 0 0;
          font-size: 12px;
          color: #f676a6; }
    .cif-search .cif-search__suggroup.is-type4 {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 100%;
      padding: 0 0 11px 38px;
      background: url(../image/search_sug_type4.png) #fff 12px 16px/20px 20px no-repeat; }
      .cif-search .cif-search__suggroup.is-type4:not(:last-child) {
        border-bottom: 1px solid #ebeced; }
      .cif-search .cif-search__suggroup.is-type4 > .tit {
        padding-top: 13px;
        line-height: 28px; }
      .cif-search .cif-search__suggroup.is-type4 em {
        color: #f676a6;
        font-style: normal; }
      .cif-search .cif-search__suggroup.is-type4 .item {
        display: block;
        font-size: 12px;
        color: #666; }

.cif-navmenu {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  background: #ffffff;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  line-height: 1;
  z-index: 2; }
  .cif-navmenu .cif-navmenu__head {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    padding: 0 20px;
    width: 240px;
    height: 42px;
    font-size: 16px;
    line-height: 42px;
    color: #fff;
	border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #434343 0%, #231717 100%);
    cursor: pointer; }
    .cif-navmenu .cif-navmenu__head .icon-mulu {
      font-size: 14px;
      margin-right: 5px;
      display: inline-block;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
  .cif-navmenu .cif-navmenu__cont {
    position: absolute;
    width: 100%;
    -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-box-shadow: 0px 1px 11px 1px rgba(0, 0, 0, 0.07);
            box-shadow: 0px 1px 11px 1px rgba(0, 0, 0, 0.07);
    -webkit-animation: forwards 0.3s 1;
            animation: forwards 0.3s 1;
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    background: #fff; }
	  .cif-navmenu .cif-navmenu__cont2 {
    position: absolute;
    width: 100%;
    background: #fff; }
  .cif-navmenu .cif-navmenu__item {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 115px;
    width: 210px;
    margin: 0 auto;
    z-index: 1; }
	.cif-navmenu .cif-navmenu__item:last-child { height: 116px}
    .cif-navmenu .cif-navmenu__item:not(:first-child) {
      border-top: 1px solid #ebeced; }
    .cif-navmenu .cif-navmenu__item:hover {
      width: 100%;
      padding: 0 15px;
      -webkit-box-shadow: 0px 1px 11px 1px rgba(0, 0, 0, 0.07);
              box-shadow: 0px 1px 11px 1px rgba(0, 0, 0, 0.07); }
      .cif-navmenu .cif-navmenu__item:hover .cif-navmenu__item__tit {
        color: #f676a6; }
      .cif-navmenu .cif-navmenu__item:hover,
      .cif-navmenu .cif-navmenu__item:hover + .cif-navmenu__item {
        border-color: transparent; }
      .cif-navmenu .cif-navmenu__item:hover .cif-navmenu__hoverbox {
        display: block;
        z-index: 1; }
    .cif-navmenu .cif-navmenu__item .cif-navmenu__item__flex {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .cif-navmenu .cif-navmenu__item .cif-navmenu__item__flex .iconfont {
        font-size: 16px;
        color: #aaa; }
    .cif-navmenu .cif-navmenu__item .cif-navmenu__item__cont {
      width: 120px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      line-height: 24px;
      color: #999; }
    .cif-navmenu .cif-navmenu__item .cif-navmenu__item__tit {
      font-weight: 400;
      color: #333;
      font-size: 16px; }
    .cif-navmenu .cif-navmenu__item .cif-navmenu__item__desc {
      font-size: 12px; }
    .cif-navmenu .cif-navmenu__item .cif-navmenu__item__img {
      width: 60px;
      height: 80px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin: 0 12px 0 -6px; }
  .cif-navmenu .cif-navmenu__hoverbox {
    display: none;
    position: absolute;
    left: 240px;
    top: 0px;
    width: 646px;
    height: 346px;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 11px 1px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 1px 11px 1px rgba(0, 0, 0, 0.12);
    -webkit-border-radius: 3px;
            border-radius: 3px;
    z-index: -1; }
  .cif-navmenu.is-open .cif-navmenu__cont {
    display: block;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1); }
  .cif-navmenu:not(.is-open):hover .cif-navmenu__cont {
    display: block;
    -webkit-animation-name: expand-in-top;
            animation-name: expand-in-top; }
			  .cif-navmenu:not(.is-open):hover .cif-navmenu__cont2 {
    display: block;
    -webkit-animation-name: expand-in-top;
            animation-name: expand-in-top; }
			  .cif-navmenu:not(.is-open):hover .cif-navmenu__cont {
    display: block;
    -webkit-animation-name: expand-in-top;
            animation-name: expand-in-top; }
						  .cif-navmenu:not(.is-open):hover .cif-navmenu__cont2 {
    display: block;
    -webkit-animation-name: expand-in-top;
            animation-name: expand-in-top; }
  .cif-navmenu:not(.is-open):hover .cif-navmenu__head .icon-mulu {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }

.cif-nav-service .cif-nav-service__top {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  border-bottom: 1px solid #ebeced; }
  .cif-nav-service .cif-nav-service__top::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both; }
  .cif-nav-service .cif-nav-service__top .cont {
    float: left;
    max-width: 390px; }
  .cif-nav-service .cif-nav-service__top .tit {
    margin-top: 13px;
    font-size: 16px;
    color: #333;
    font-weight: bold; }
  .cif-nav-service .cif-nav-service__top .desc {
    margin-top: 2px;
    font-size: 14px;
    color: #999;
    line-height: 32px; }

.cif-nav-service .cif-nav-service__counselor {
  position: absolute;
  bottom: 0;
  right: 20px;
  cursor: pointer; }
  .cif-nav-service .cif-nav-service__counselor .cif-imgbox {
    width: 80px;
    height: 80px;
    margin: 0 auto; }
  .cif-nav-service .cif-nav-service__counselor:hover .btn {
    top: 25px; }
  .cif-nav-service .cif-nav-service__counselor .btn {
    position: absolute;
    top: 30px;
    right: 86px;
    padding: 0 13px;
    height: 28px;
    color: #fff;
    font-size: 12px;
    line-height: 28px;
    white-space: nowrap;
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#fe9c23), to(#ff810b));
    background: -webkit-linear-gradient(left, #fe9c23, #ff810b);
    background: -o-linear-gradient(left, #fe9c23, #ff810b);
    background: linear-gradient(90deg, #fe9c23, #ff810b);
    -webkit-box-shadow: 0px 2px 10px 0px rgba(254, 109, 0, 0.3);
            box-shadow: 0px 2px 10px 0px rgba(254, 109, 0, 0.3);
    -webkit-border-radius: 14px;
            border-radius: 14px;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .cif-nav-service .cif-nav-service__counselor .btn::after {
      content: "";
      position: absolute;
      right: -6px;
      width: 20px;
      height: 28px;
      background: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/5c012a107feb4c7ca65bdd554745cede.png) no-repeat;
      -webkit-background-size: 100% 100%;
              background-size: 100% 100%; }

.cif-nav-service .cif-nav-service__itembox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-left: 20px; }
  .cif-nav-service .cif-nav-service__itembox::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both; }

.cif-nav-service .cif-nav-service__item {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 175px;
  height: 50px;
  margin-top: 30px; }
  .cif-nav-service .cif-nav-service__item:not(:nth-child(3n)) {
    margin-right: 40px; }
  .cif-nav-service .cif-nav-service__item:hover .tit {
    color: #f676a6; }
  .cif-nav-service .cif-nav-service__item .cif-imgbox {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    border: 1px solid #ebeced;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .cif-nav-service .cif-nav-service__item .cont {
    line-height: 24px;
    min-width: 0; }
  .cif-nav-service .cif-nav-service__item .tit {
    font-size: 14px;
    font-weight: bold;
    color: #666; }
  .cif-nav-service .cif-nav-service__item .desc {
    font-size: 12px;
    color: #999; }

.cif-nav-service .cif-nav-service__more {
  float: left;
  width: 175px;
  height: 50px;
  margin-top: 30px;
  background: rgba(254, 109, 0, 0.1);
  -webkit-border-radius: 3px;
          border-radius: 3px;
  font-size: 12px;
  color: #f676a6;
  text-align: center;
  line-height: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .cif-nav-service .cif-nav-service__more .iconfont {
    position: relative;
    top: 2px;
    font-size: 18px; }
  .cif-nav-service .cif-nav-service__more:hover {
    background: rgba(254, 109, 0, 0.2); }

@-webkit-keyframes expand-in-top {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); } }

@keyframes expand-in-top {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); } }

@-webkit-keyframes search-rank-icon {
  0%,
  50% {
    right: 90px;
    opacity: 1;
    top: 3px;
    width: 96px;
    height: 96px;
    -webkit-transform: scale3d(0.35, 0.35, 1);
            transform: scale3d(0.35, 0.35, 1);
    background: url(../image/search_rank_icon.gif) center no-repeat; }
  50.9% {
    opacity: 0; }
  51%,
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    top: 8px;
    width: 57px;
    height: 26px;
    background: url(https://static1.cifnews.com/img/index/search/search_rank_text.png) center no-repeat; } }

@keyframes search-rank-icon {
  0%,
  50% {
    right: 90px;
    opacity: 1;
    top: 3px;
    width: 96px;
    height: 96px;
    -webkit-transform: scale3d(0.35, 0.35, 1);
            transform: scale3d(0.35, 0.35, 1);
    background: url(../image/search_rank_icon.gif) center no-repeat; }
  50.9% {
    opacity: 0; }
  51%,
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    top: 8px;
    width: 57px;
    height: 26px;
    background: url(https://static1.cifnews.com/img/index/search/search_rank_text.png) center no-repeat; } }

.clear {
  overflow: initial;
  height: auto; }

{
  position: relative;
  z-index: 5; }

.btn-member {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px; }

.btn-member__txt {
  color: #f676a6; }
  .btn-member__txt:hover {
    color: #ff8739; }
  .btn-member__txt:hover + .btn-member__icon {
    background: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/783e1b5ca7954301a1557325832ac531.png) no-repeat;
    -webkit-background-size: 100% 100%;
            background-size: 100% 100%; }

.btn-member__icon {
  position: relative;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 10px;
  background: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/aed87a09d88c49c6ae5acabbf0bb1d74.png) no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%; }

#islogin .cif-header__member--tips {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #f676a6;
  font-weight: normal;
  text-align: left;
  cursor: pointer; }
  #islogin .cif-header__member--tips:hover {
    color: #ff8739; }
  #islogin .cif-header__member--tips:hover > .cif-header__member--icon {
    background: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/783e1b5ca7954301a1557325832ac531.png) no-repeat;
    -webkit-background-size: 100% 100%;
            background-size: 100% 100%; }

.cif-header__name--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
  line-height: normal !important; }

.cif-header__member--icon {
  display: inline-block;
  position: relative;
  top: 1px;
  left: 6px;
  width: 4px;
  height: 10px;
  background: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/aed87a09d88c49c6ae5acabbf0bb1d74.png) no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%; }

.item-member__status--icon {
  position: absolute;
  top: -24px;
  right: -48px;
  width: 72px;
  height: 36px;
  background: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/ec84dccde42648928e7f8e7e5406cab4.png) no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  z-index: 10;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-animation: actionShake 2s ease-out;
  animation: actionShake 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

#islogin .userHeadImg-box {
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  top: -8px;
  border: 1px solid #ffb27f; }

#islogin .user-headimg__box--fixed {
  width: 38px;
  height: 38px;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin: auto; }

.cif-btn__status--hover:hover {
  opacity: 0.8; }

#islogin .header-fixed {
  position: relative; }

#notlogin .item-notlogin__box--fixed {
  padding: 0 13px; }

#notlogin .cif-header__hoverbox .btn .cif-btn__notlogin--fixed {
  background: -webkit-gradient(linear, left top, right top, from(#fe9c23), to(#ff810b));
  background: -webkit-linear-gradient(left, #fe9c23 0%, #ff810b 100%);
  background: -o-linear-gradient(left, #fe9c23 0%, #ff810b 100%);
  background: linear-gradient(90deg, #fe9c23 0%, #ff810b 100%); }

#islogin .cif-header__name--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

#islogin .cif-header__userinfo .cif-header__name--block img[class^="icon"] {
  margin-left: 4px; }

@-webkit-keyframes actionShake {
  0% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  25% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  75% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); } }

#notlogin:hover > .cif-header__hoverbox--notlogin {
  position: absolute;
  width: 231px;
  height: auto;
  overflow: initial;
  opacity: 1;
  top: 42px;
  left: 50%;
  z-index: 2;
  font-size: 14px; }

.member_login {
  position: absolute;
  left: 90%;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: left;
  top: -22%;
  margin-right: 8px;
  z-index: 3; }
  .member_login:hover .member_login_card {
    visibility: visible;
    z-index: 3; }
  .member_login .member_login--icon {
    position: relative;
    top: 8px;
    width: 18px;
    height: 16px;
    background-image: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/08aa5de1ee9543bc97794f3b1ed076cb.png);
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
            background-size: 100% 100%; }
  .member_login .member_login--title {
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #e39f39;
    margin-top: 2px; }
  .member_login .member_login_card_none {
    visibility: hidden;
    position: absolute;
    top: 60px;
    z-index: -3; }
  .member_login .member_login_card_opicty {
    opacity: 0; }
  .member_login .member_login_card {
    width: 200px;
    height: 285px;
    background: #ffffff;
    -webkit-box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1); }
    .member_login .member_login_card::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -9px;
      width: 13px;
      height: 13px;
      margin-left: -7px;
      border-top: 2px solid #ebeced;
      border-left: 2px solid #ebeced;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      background-color: #fff; }
    .member_login .member_login_card .member-card__cont {
      height: 179px;
      width: 100%;
      margin-top: 7px; }
    .member_login .member_login_card .member-card_slide {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .member_login .member_login_card .member-card__title {
      font-size: 14px;
      font-family: MicrosoftYaHei;
      color: #999999;
      margin-top: 4px;
      padding-top: 12px;
      text-align: center; }
    .member_login .member_login_card .member-card__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      line-height: 0;
      margin-bottom: 8px;
      width: 116px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      cursor: pointer; }
      .member_login .member_login_card .member-card__item:hover .member-card__item--desc {
        color: #e39f39; }
      .member_login .member_login_card .member-card__item .member-card__item--icon {
        width: 28px;
        height: 30px; }
      .member_login .member_login_card .member-card__item .member-card__item--desc {
        font-size: 14px;
        font-family: MicrosoftYaHei;
        color: #666666;
        margin-left: 18px;
        position: relative;
        right: 16px; }
    .member_login .member_login_card .member-card__item--left {
      position: relative !important;
      right: 2px !important; }
    .member_login .member_login_card .member-card__btn {
      position: relative;
      top: -15px;
      width: 124px;
      height: 40px;
      background: -webkit-gradient(linear, left top, right top, from(#fe9c23), to(#ff810b));
      background: -webkit-linear-gradient(left, #fe9c23 0%, #ff810b 100%);
      background: -o-linear-gradient(left, #fe9c23 0%, #ff810b 100%);
      background: linear-gradient(90deg, #fe9c23 0%, #ff810b 100%);
      -webkit-border-radius: 20px;
              border-radius: 20px;
      font-size: 14px;
      font-family: MicrosoftYaHei;
      line-height: 40px;
      text-align: center;
      color: #ffffff;
      margin: auto;
      cursor: pointer; }
    .member_login .member_login_card .swiper-contanier--member {
      height: 100%; }
    .member_login .member_login_card .swiper-pagination--member .swiper-pagination-bullet {
      width: 8px;
      height: 5px;
      background: #deb871;
      -webkit-border-radius: 3px;
              border-radius: 3px; }
    .member_login .member_login_card .swiper-pagination--member .swiper-pagination-bullet-active {
      width: 8px;
      height: 5px;
      background: #deb871;
      opacity: 0.4;
      -webkit-border-radius: 3px;
              border-radius: 3px; }

.member-status__icon--tips {
  width: 24px;
  height: 14px;
  background-image: url(http://elecdz.cn/elec/kuajingzhidao/template/elec_2023_kuajingzhidao1/common/slidedown/191ea25ee4064f73932d271f5b56ff77.png);
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  margin-left: 6px;
  margin-top: -6px; }

.swiper-user-service--member {
  width: 100%; }

.swiper-user-service--member .user-service_slide .serviceIcon img {
  width: 42px;
  height: 48px; }

.swiper-user-service--member .user-service_slide .tit {
  position: relative;
  top: 2px; }

.user-service_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.swiper-user-service--wrapper {
  padding-bottom: 25px; }

.swiper-pagination-userservice--member {
  position: absolute;
  top: 62px; }

.swiper-pagination-userservice--member .swiper-pagination-bullet {
  width: 8px;
  height: 5px;
  background: #deb871;
  -webkit-border-radius: 3px;
          border-radius: 3px; }

.swiper-pagination-userservice--member .swiper-pagination-bullet-active {
  width: 8px;
  height: 5px;
  background: #deb871;
  opacity: 0.4;
  -webkit-border-radius: 3px;
          border-radius: 3px; }

.cif-user__service--swiper {
  height: 100%; }

.cif-member-card-opacity {
  opacity: hidden; }
