@import "../../assets/stylus/colorConfig.styl"
.persnal_top{
  width 100%
  min-width 1200px
  height 260px
  background url("../../assets/images/pc/user_bg.png") no-repeat center
}
.c_title{
  padding-left 310px
  margin-bottom 16px
  color subheadColor
  a{
    position relative
    margin-right 42px
    padding-bottom 6px
    font-size 14px
    color contentColor
    &:after{
      content ''
      position absolute
      width 0
      height 2px
      bottom -4px
      border-radius 10px
      left 50%
      transform translate(-50%)
      transition all .5s
    }
  }
}
.content {
  min-height calc(100vh - 310px);
  .ifram_wrap{
    display inline-block
    width 100%
    margin-bottom 50px
    .c_right{
      float right
      width 890px
      box-sizing: border-box;
      background #fff
    }
  }
}

.no-data{
  margin-top 50px
  text-align center
  img{
    width 100px
    margin 0 auto 10px
  }
  p{
    font-size 14px
    color contentColor
  }
}

@-webkit-keyframes borderIn{
  0%{
    height 0px
  }
  to{
    height 100%
  }
}
@keyframes borderIn{
  0%{
    height 0px
  }
  to{
    height 100%
  }
}
