.banner {
  width: 100%;
  height: 620px;
  margin: 0 auto;
  position: relative;
  display: flex;
  z-index: 1;
  overflow-x: clip; }
  .banner .backgroundImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    /*height: 100%;*/
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: -1; }
  .banner .search {
    position: absolute;
    width: 956px;
    height: 60px;
    display: flex;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    .banner .search .left {
      width: 230px;
      height: 60px;
      background: #165dff;
      border-radius: 100px 0px 0px 100px;
      display: flex;
      align-items: center;
      padding: 0 40px;
      justify-content: space-between;
      position: relative;
      cursor: pointer; }
      .banner .search .left:hover .eject {
        display: block; }
      .banner .search .left:hover .icon {
        transform: rotateZ(180deg); }
      .banner .search .left .text {
        font-size: 14px;
        color: #ffffff;
        line-height: 20px; }
      .banner .search .left .icon {
        color: #fff;
        transition: 0.5s; }
      .banner .search .left .eject {
        width: 230px;
        background: #ffffff;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        border: 1px solid #dcdcdc;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 16px 16px 5px;
        display: none;
        z-index: 9; }
        .banner .search .left .eject p {
          font-size: 16px;
          color: #1d2129;
          line-height: 23px;
          margin-bottom: 11px; }
    .banner .search .right {
      width: 726px;
      height: 60px;
      background: #ffffff;
      border-radius: 0px 100px 100px 0px;
      border: 1px solid #cccccc;
      display: flex;
      padding: 0 40px;
      align-items: center;
      justify-content: space-between; }
      .banner .search .right .input {
        flex: 1;
        margin-right: 24px;
        font-size: 14px;
        line-height: 20px;
        border: 0; }
        .banner .search .right .input::placeholder {
          color: #4e5b66; }
      .banner .search .right .icon {
        color: #000;
        font-size: 26px;
        cursor: pointer; }

.nav {
  width: 100%;
  height: 70px;
  background: #3a3f4a; }
  .nav .box {
    margin: 0 auto;
    width: 1200px;
    display: flex;
    position: relative; }
    .nav .box .item {
      display: flex;
      align-items: center;
      width: auto;
      height: 70px;
      margin-right: 12px;
      padding: 0 10px; }
      .nav .box .item:last-child {
        margin-right: 0; }
      .nav .box .item .img {
        width: 50px;
        height: 50px;
        background: #979ba1;
        border-radius: 8px; }
      .nav .box .item .name {
        font-size: 14px;
        color: #ffffff;
        margin-left: 10px; }
    .nav .box .item-select {
      display: flex;
      align-items: center;
      width: auto;
      height: 70px;
      margin-right: 12px;
      position: relative; }
      .nav .box .item-select:last-child {
        margin-right: 0; }
      .nav .box .item-select::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: 4px;
        background: #4080ff;
        border-radius: 8px 8px 0px 0px; }
      .nav .box .item-select .img {
        width: 50px;
        height: 50px;
        background: #4080ff;
        border-radius: 8px;
        margin: 0 10px; }
      .nav .box .item-select .name {
        font-size: 14px;
        color: #4080ff; }

.root-userCenterNav {
  width: 100%;
  height: 53px;
  background: #1d2129; }
  .root-userCenterNav__main {
    display: flex;
    align-items: center;
    width: 1200px;
    margin: 0 auto; }
    .root-userCenterNav__main__item {
      min-width: 133px;
      height: 53px;
      padding: 0 4px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      color: #c9cdd4; }
      .root-userCenterNav__main__item--select {
        color: #fff; }
        .root-userCenterNav__main__item--select::before {
          content: "";
          width: 100%;
          height: 2px;
          background: #e5e6eb;
          position: absolute;
          bottom: 0; }
      .root-userCenterNav__main__item:hover {
        color: #fff; }
      .root-userCenterNav__main__item:hover .root-userCenterNav__main__item__pop {
        display: flex; }
      .root-userCenterNav__main__item__icon {
        font-size: 18px;
        font-weight: 500; }
      .root-userCenterNav__main__item .icon-xia4 {
        margin-left: 5px; }
      .root-userCenterNav__main__item .icon-fuhao-shouye {
        margin-right: 10px; }
      .root-userCenterNav__main__item__name {
        display: block;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer; }
      .root-userCenterNav__main__item__pop {
        min-width: 133px;
        background: #1d2129;
        box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        position: absolute;
        top: 52px;
        z-index: 9;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 8px 0; }
        .root-userCenterNav__main__item__pop__span {
          font-size: 16px;
          color: #c9cdd4;
          line-height: 23px;
          display: inline-block;
          padding: 5px 10px;
          text-align: center; }
          .root-userCenterNav__main__item__pop__span--select {
            color: #ffffff; }
          .root-userCenterNav__main__item__pop__span:hover {
            color: #ffffff; }
.root-userCenterInfo {
  width: 100%;
  height: 187px;
  background: #4e5969; }
  .root-userCenterInfo__main {
    display: flex;
    align-items: center;
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center; }
    .root-userCenterInfo__main__userInfo {
      width: 345px;
      display: flex;
      align-items: center; }
      .root-userCenterInfo__main__userInfo__avatar {
        width: 107px;
        height: 107px;
        margin-right: 32px;
        border-radius: 100%; }
      .root-userCenterInfo__main__userInfo__content__name {
        font-size: 21px;
        font-weight: 500;
        color: #ffffff;
        line-height: 29px; }
      .root-userCenterInfo__main__userInfo__content__text {
        font-size: 16px;
        color: #ffffff;
        line-height: 23px;
        margin-top: 5px; }
    .root-userCenterInfo__main__line {
      width: 1px;
      height: 107px;
      background: #e5e6eb; }
    .root-userCenterInfo__main__container {
      width: 280px;
      height: 187px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-left: auto; }
      .root-userCenterInfo__main__container__number {
        font-size: 27px;
        font-weight: 500;
        color: #ffffff;
        line-height: 37px; }
      .root-userCenterInfo__main__container__name {
        font-size: 16px;
        color: #ffffff;
        line-height: 23px;
        margin-top: 3px;
        text-align: center; }
      .root-userCenterInfo__main__container__btns {
        margin-top: 20px;
        display: flex; }
        .root-userCenterInfo__main__container__btns button {
          margin: 0 5px; }
        .root-userCenterInfo__main__container__btns__purple {
          background: #722ed1;
          border-radius: 4px;
          padding: 6px 20px;
          font-size: 19px;
          color: rgba(255, 255, 255, 0.9);
          line-height: 29px; }
        .root-userCenterInfo__main__container__btns__blue {
          background: #165dff;
          border-radius: 4px;
          padding: 6px 20px;
          font-size: 19px;
          color: rgba(255, 255, 255, 0.9);
          line-height: 29px; }
.root-webShow {
  display: none !important; }
