
.maxWidth {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

#think_page_trace_open {
  display: none !important;
}

header {
  position: relative;
  width: 100%;

  .header-item {
    //position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #081118;
    display: flex;
    align-items: center;
  }

  .header-card {
    max-width: 1400px;
    margin: auto;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;

    .menu-top {
      padding-left: 15px;
      display: flex;
      align-items: center;
      height: 50px;
      flex-shrink: 0;

      .menu-btn {
        font-size: 20px;
      }

      >a {
        cursor: pointer;
        color: var(--color) !important;
      }
    }
  }


  .user-controller {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: auto;

    .navigation {
      flex-shrink: 0;
      display: flex;
      gap: 50px;
      margin-right: 100px;

      >a {
        font-size: 16px !important;
        padding: 5px 10px;
      }
    }
  }

}

.headerMore{
  display: none;
}

@media (max-width:1024px) {
  .navigation {
    display: none !important;
  }

  .headerMore {
    display: block;
  }
}

.scrollUp {
  height: 100%;
  width: 100%;
  background-color: #f2f5f6;
  box-shadow: 0 0 6px rgba(0, 0, 0, .12);
  text-align: center;
  line-height: 40px;
  color: #1989fa;
}

#headCover {
  margin-top: 4px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 40px;
  object-fit: cover;
  transform: translateY(-2px);
}


.menuLeft {
  position: fixed;
  left: 0;
  top: 50px;
  width: var(--leftMenuWidth);
  background: var(--background);
  box-shadow: 0 1px 5px var(--boxShadow);
  height: calc(~"100vh - 50px");
}


#mobileLeft {
  position: absolute;
  z-index: 999;
  top: 0;
  transition: all .5s;
  transform: translateX(calc(~"var(--leftMenuWidth) * -1"));
}

img {
  border-style: none !important;
}

.user-login {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layui-layer-dialog,
.layui-layer-page {
  border-radius: 15px;
  padding: 0 !important;
  box-shadow: none !important;
  color:#000;
}

.layui-layer-content {
  padding: 0px !important;
}

.user-crad {
  position: relative;
  width: 500px;
  background: var(--background);
  padding: 30px;
  margin: auto;
  transform: translateY(-100px);
  border-radius: 15px;
}

@media (max-width: 500px) {
  .user-crad {
    padding: 50px 15px;
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    border-radius: 0;
  }
}

.loginBtn {
  height: 40px !important;
}

.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
}

.user-input {
  width: 100%;
  height: 50px;
  line-height: 28px;
  padding: 0 1rem 0 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  color: var(--color);
  background-color: var(--transBackground);
  transition: .3s ease;
}

.user-input::placeholder {
  color: #9e9ea7;
  font-size: 14px;
}

.user-input:focus,
.user-input:hover {
  outline: none;
  border-color: rgba(64, 158, 255, 0.4);
  background-color: var(--transBackground);
  box-shadow: ~'0 0 0 4px rgba(57, 95, 131, 0.1)';
}

.icon {
  position: absolute;
  left: 1rem;
  color: #9e9ea7;
  width: 1rem;
  height: 1rem;
}



.container-input {
  position: relative;

  >.input {
    width: 300px;
    padding: 10px 0px 10px 40px;
    border-radius: 9999px;
    border: solid 1px var(--hover);
    transition: all .2s ease-in-out;
    outline: none;
    opacity: 0.8;
    color: var(--color);
    background-color: var(--transBackground);
  }

  >svg {
    position: absolute;
    top: 50%;
    left: 10px;
    fill: #8f8f8f;
    transform: translate(0, -50%);
  }

  >.input:focus {
    opacity: 1;
    width: 350px;
  }
}




.headerMore {
  >span {
    font-size: 23px !important;
  }
}

.mobileNav {
  position: fixed;
  width: 100%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  background-color: rgb(0, 0, 0, .5);
  padding: 15px;
  transition: all .6s;

  >a {
    padding: 5px 10px;
    font-size: 15px;
    margin: 3px 0;
  }
}

.op {
  box-shadow: 0px 10px 10px #0f0f0f48;
  transform: translateY(var(--headHeight));
}

:root {
  --globalHeight: 80px;
}

//全局通知横幅
.globalNotify {
  height: var(--globalHeight);

  >.globalNotify-item {
    position: absolute;
    left: 0px;
    height: var(--globalHeight);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #393873, #2f7248);
    text-align: center;

    >.globalNotify-item-box {
      position: relative;

      >.globalNotify-content {
        width: 100%;
        padding: 0px 15px;
      }
    }
  }
}

@media (max-width:1000px) {
  :root {
    --globalHeight: 50px;
  }
}

@media (max-width:500px) {
  :root {
    --globalHeight: 35px;
  }

  .globalNotify-item-box {
    width: 100vw;
    height: 100%;
    overflow: hidden;

    >.globalNotify-content {
      padding: 0px 15px;
    }
  }
}




//帮助中心.
.help-list {
  >.help-card {
    >.help-items {
      background-color: #2b3137;
      border-radius: 14px;
      padding: 2vw;
      min-height: 300px;

      >h4 {
        font-size: 1.35vw;
      }

      >.help-content {
        color: #e1e1e1;
        font-size: 18px;
      }
    }
  }
}

@media (max-width:1024px) {
  .help-list {
    >.help-card {
      >.help-items {
        padding: 15px !important;
        min-height: 200px;

        >h4 {
          font-size: 16px !important;
        }

        >.help-content {
          color: #e1e1e1;
          font-size: 16px;
        }
      }
    }
  }
}

@media (max-width:600px) {
  .help-content {
    font-size: 14px !important;
  }
}


//帮助中心详情
.help-context {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;

  >.help-context-left {
    border-radius: 14px;
    background-color: #2b3137;
  }
}

@media (max-width:600px) {
  .help-context {
    padding: 15px;
    grid-template-columns: 1fr;
  }
}


//工单系统
.workOrderHeader{
  background-color: #2b3137;
  border-radius: 14px;

  >div {
    display: grid;
    grid-template-columns: 100px 100px;
    justify-content: center;

    >.workerMSg {
      >div {
        cursor: pointer;
        width: 100px;
        height: 100px;
        display: flex;
        border-radius: 80px;
        border: 1px solid #99999973;

        >img {
          position: relative;
          margin: auto;
          width: 40px;
          height: 40px;
        }
      }
    }

    >.workTYpe {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      >span:nth-child(1) {
        font-size: 30px;
      }

      >span:nth-child(2) {
        font-size: 16px;
        color: #8f8f8f;
      }
    }

    &:hover {
      .workTYpe>span:nth-child(2) {
        color: #00e36f;
      }
    }
  }
}

.createWorkOrder {
  margin-left: auto;
  display: flex;
  justify-content: center;
  padding: 8px 15px;
  background-color: #00e36f;
  border-radius: 30px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.searchWorkOrder {
  border-radius: 30px;
  background: transparent;
  border: 1px solid #68686888;
  padding: 0px 15px;
  color: #fff;
}

.workOrderList{
  display: grid;

  >div {
    background-color: #2b3137;
    border-radius: 14px;
    min-height: 200px;
    padding: 14px;

    >div {
      &:not(&:first-child) {
        margin-top: 10px;
      }

      display: flex;
      justify-content: space-between;
    }
  }
}

@media (max-width:1135px) {
  .workOrderHeader {
    >div {
      display: grid;
      grid-template-columns: 60px 100px;
      justify-content: center;

      >.workerMSg {
        >div {
          cursor: pointer;
          width: 60px;
          height: 60px;
          display: flex;
          border-radius: 60px;
          border: 1px solid #99999973;

          >img {
            position: relative;
            margin: auto;
            width: 30px;
            height: 30px;
          }
        }
      }
    }
  }
}


@media (max-width:800px) {
  .workOrderHeader {
    >div {
      display: grid;
      grid-template-columns: 1fr;
      justify-content: center;

      >.workerMSg {
        display: none;
      }
    }
  }

  .searchWorkOrder {
    max-width: 120px;
  }
}


//订单CSS
#orderPage {
  >.order-list {
    >.order-card {
      overflow: hidden;
      background-color: rgb(25, 29, 34);

      >.title-order {
        display: flex;
        padding: 20px 20px;
        justify-content: space-between;
        background-color: #141414;
        align-items: center;
      }

      >.order-info {
        min-height: 200px;

        >.order-info-items {
          padding: 10px 20px;
          display: flex;
          height: 50px;
          justify-content: space-between;
          border-bottom: 1px solid #252525;
        }

        >.order-info-user {
          position: relative;
          padding: 10px 20px;
          height: 170px;
          width: 100%;
          >.scrollX {
            position: absolute;
            top: 15px;
            left: 20px;
            right: 15px;
            height: 160px;
            overflow-x: scroll;

            &::-webkit-scrollbar {
             height: 3px;

            }
            &::-webkit-scrollbar-thumb{
              border-radius: 3px;
            }

            >.scrollBox {
              position: relative;
              display: flex;
              gap: 25px;

              >div {
                position: relative;
                flex-shrink: 0;
                width: 90px;
                height: 120px;
                height: 140px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                >.chewei {
                  position: absolute;
                  width: 20px;
                  height: 20px;
                  font-size: 12px;
                  background-color: #2b3137;
                  border-radius: 100px;
                  line-height: 20px;
                  text-align: center;
                  right: 8px;
                  top: 0px;
                  display: flex !important;
                  align-items: center !important;
                  justify-content: center !important;
                }

                >.chaochu {
                  text-overflow: ellipsis;
                  white-space: nowrap;
                  width: 100%;
                  overflow: hidden;
                }

                >img {
                  border-radius: 6px;
                  width: 70px;
                  height: 70px;
                  object-fit: cover;
                }
              }
            }
          }
        }
      }
    }
  }
}