.user-login {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
    background-image: url("../img/loginbg.png");
    background-repeat: no-repeat;
}

.user-login .wrap {
    width: 500px;
    min-width: 500px;
    padding: 20px 60px 50px;
    background-color: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    border-radius: 12px;
    overflow: hidden;
}

.user-login-logo {
    width: 200px;
    height: 60px;
    margin: 20px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-login-logo img {
    max-width: 100%;
    max-height: 100%;
}

.user-login-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.user-login-header a {
    color: #333;
    font-size: 24px;
    width: 120px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.user-login-header a.hover {
    color: #fff;
    background-color: #ff5722;
    background-image: linear-gradient(to right, #ff9800 , #ff5722);
}

.user-login-header a:hover {
    background-color: #ffe8de;
    color: #ff5722;
}

.user-login-header a.hover:hover {
    color: #fff;
}

.login-form {
    margin-top: 40px;
}

.login-input-block {
    width: 100%;
    margin-bottom: 22px;
}

.login-input-block .login-input {
    width: 100%;
    height: 40px;
    background-color: #f7f7f7;
    color: #333;
    border: 0;
    border-radius: 8px;
    text-indent: 15px;
    transition: .3s;
}

.login-input-block .login-input:hover {
    background-color: #fff6f3;
}

.login-input-block .login-input:focus {
    background-color: #fff6f3;
}

.login-input-block.imgcode {
    display: flex;
    justify-content: space-between;
}

.login-input-block.imgcode .login-input {
    width: calc(100% - 140px);
}

.login-input-block.imgcode img {
    width: 120px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
}

.login-input-block .login-btn {
    width: 100%;
    height: 40px;
    color: #fff;
    background-color: #ff5722;
    background-image: linear-gradient(to right, #ff9800 , #ff5722);
    border: 0;
    border-radius: 8px;
    transition: .3s;
}

.login-input-block .login-btn:hover {
    background: #ff9800;
}

.login-input-otherlogin {
    margin-top: 30px;
}

.login-input-otherlogin-title {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.login-input-otherlogin-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-input-otherlogin-wrap a {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: 4px;
    background-image: url('../img/loginicon.png');
    background-size: 114px;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
    border: 1px solid #efefef;
    cursor: pointer;
    transition: .3s;
}

.login-input-otherlogin-wrap a:nth-child(2) {
    background-position: -38px;
}

.login-input-otherlogin-wrap a:nth-child(3) {
    background-position: -76px;
}

.login-input-otherlogin-wrap a + a {
    margin-left: 10px;
}

.login-input-otherlogin-wrap a:hover {
    background-color: #efefef;
}

.user-menu {
    margin-top: 20px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
    overflow: hidden;
}

.user-menu-user {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.user-menu-user .pic {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    overflow: hidden;
}

.user-menu-user .pic img {
    width: 100%;
    height: 100%;
}

.user-menu-user .name {
    margin-top: 16px;
    font-size: 16px;
    color: #333;
}

.user-menu-user .money {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.user-menu-user .money-btn {
    margin-top: 10px;
    display: flex;
    padding: 0 10px;
    align-items: center;
    height: 26px;
    color: #fff;
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    border-radius: 4px;
    transition: background-color .3s;
}

.user-menu-user .money-btn:hover {
    background: #ff9800;
}

.user-menu-list {
    width: 100%;
}

.user-menu-list .title {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    padding: 0 20px;
    color: #666;
    font-size: 15px;
}

.user-menu-list .item {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 0 30px;
    align-items: center;
}

.user-menu-list .item i {
    margin-right: 10px;
}

.user-menu-list .item.hover {
    color: #ff5722;
    background: #fff5f4;
}

.user-title {
    font-size: 18px;
    color: #333;
    line-height: 26px;
    margin-bottom: 20px;
}

.user-title a.more {
    float: right;
    color: #999;
}

.user-title a.more:hover {
    color: #ff5722;
}

.user-wrap-full {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
}

.user-home-info {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
}

.user-home-info .item {
    display: flex;
    flex-direction: column;
}

.user-home-info .item span {
    width: 100%;
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.user-home-info .item em {
    width: 100%;
    font-size: 22px;
    color: #333;
}

.user-home-info .item em.primary {
    color: #669ceb;
}

.user-home-info .item em.success {
    color: #92f5c8;
}

.user-home-tips {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
    color: #ff5722;
}

.user-home-order {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
}

.user-home-order-card .item {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: background-color .3s;
}

.user-home-order-card .item:hover {
    background-color: rgb(0 0 0 / 3%);
}

.user-home-order-card .item span {
    color: #666;
    font-size: 14px;
}

.user-home-order-card .item em {
    margin-top: 6px;
    color: #ff5722;
    font-size: 18px;
}

.user-home-link {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
}

.user-home-link a.item {
    display: flex;
    width: 100%;
    height: 36px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #f7f7f7;
    border-radius: 4px;
}

.user-home-link a.item:hover {
    background-color: rgb(0 0 0 / 5%);
}

.user-home-doc {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
}

.user-home-doc-list {
    width: 100%;
}

.user-home-doc-list .item {
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    justify-content: space-between;
}

.user-home-doc-list .item em {
    width: calc(100% - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-home-doc-list .item span {
    color: #999;
    width: 150px;
    text-align: right;
}

.user-home-order-list {
    margin-top: 20px;
}

.user-home-order-list .item {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-home-order-list .item .pic {
    width: 75px;
    height: 75px;
    border-radius: 4px;
    overflow: hidden;
}

.user-home-order-list .item .pic img {
    width: 100%;
    height: 100%;
}

.user-home-order-list .item .info {
    width: calc(100% - 90px);
}

.user-home-order-list .item .info .title {
    width: 100%;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 6px;
}

.user-home-order-list .item .info .taga,
.user-home-order-list .item .info .tagb {
    display: flex;
}

.user-home-order-list .item .info .taga .money {
    display: flex;
    padding: 0 6px;
    align-items: center;
    height: 20px;
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    border-radius: 4px;
    color: #fff;
}

.user-home-order-list .item .info .taga span {
    display: flex;
    padding: 0 6px;
    align-items: center;
    height: 20px;
    margin-left: 6px;
    border-radius: 4px;
    color: #fff;
}

.user-home-order-list .item .info .taga span.o1 {
    background-color: #35353c;
}

.user-home-order-list .item .info .taga span.o2 {
    background-color: #009688;
}

.user-home-order-list .item .info .taga span.o3 {
    background-color: #b90d00;
}

.user-home-order-list .item .info .tagb {
    margin-top: 10px;
}

.user-home-order-list .item .info .tagb span {
    display: flex;
    padding: 0 6px;
    align-items: center;
    height: 20px;
    margin-right: 6px;
    border-radius: 4px;
    color: #666;
    background-color: #f7f7f7;
}

.user-form {
    /*margin-right: 200px;*/
}

.user-form-item {
    margin-bottom: 15px;
    display: flex;
    width: 100%;
}

.user-form-label {
    font-size: 14px;
    display: block;
    padding: 9px 15px;
    width: 90px;
    font-weight: 400;
    line-height: 20px;
    text-align: right;
    box-sizing: unset;
    color: #333;
}

.user-input-block {
    min-height: 36px;
    width: calc(100% - 110px);
}

.user-input-inline {
    width: 240px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.user-input-max {
    width: 100%;
}

.user-input, .user-select, .user-textarea, .user-control {
    height: 38px;
    font-size: 14px;
    line-height: 1.3;
    line-height: 38px\9;
    border: 1px solid rgb(0 0 0 / 10%);
    background-color: #fff;
    color: #333;
    border-radius: 2px;
}

.user-input:focus, .user-select:focus, .user-textarea:focus, .user-control:focus {
    border-color: rgb(0 0 0 / 20%);
}

.user-input, .user-textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
}

.user-textarea {
    outline: none;
    min-height: 120px;
}

.user-input[disabled] {
    cursor: not-allowed;
    color: #999;
}

.user-select {
    width: 100%;
}

.user-control {
    width: 100%;
    min-height: 100px;
}

.user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border: 1px solid transparent;
    padding: 0 18px;
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    color: #fff;
    white-space: nowrap;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
}

.user-btn:hover {
    background: #ff5722;
}

.user-btn.ml {
    margin-left: 120px;
}

.user-btn.fixed {
    width: 240px;
}

.user-btn.full {
    width: 100%;
}

.user-btn, .user-input, .user-select, .user-textarea, .user-control {
    transition: .3s;
}

.user-form-mid {
    position: relative;
    float: left;
    display: block;
    color: #333;
    padding: 9px 0!important;
    line-height: 20px;
    margin-right: 10px;
}

.user-input-ed {
    border: 1px solid rgb(0 0 0 / 10%);
}

.user-type {
    display: flex;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    margin-bottom: 20px;
}

.user-type .item {
    display: flex;
    height: 38px;
    color: #333;
    padding: 0 18px;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.user-type .item.ing {
    color: #ff5722;
}

.user-type-wrap {
    display: none;
}

.user-type-wrap.ing {
    display: block;
}

.user-mylevel,
.user-mylevel-tips {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
}

.user-mylevel-tips .item {
    width: 100%;
}

.user-mylevel-tips .item + .item {
    margin-top: 20px;
}

.user-mylevel-tips .item .name {
    width: 100%;
    color: #333;
    line-height: 26px;
}

.user-mylevel-tips .item .name span {
    display: inline-flex;
    padding: 0 8px;
    height: 26px;
    align-items: center;
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    color: #fff;
    border-radius: 4px;
    margin-right: 6px;
}

.user-mylevel-tips .item p {
    margin-top: 8px;
    color: #333;
}

.user-table .table {
    border: 1px solid rgb(0 0 0 / 5%);
}

.user-table > tbody {
    border-top: none!important;
}

.user-table th,
.user-table td {
    color: #333;
    padding: 10px 20px;
    border-color: rgb(0 0 0 / 10%);
}

.user-table .pic {
    width: 50px;
    height: 50px;
}

.user-table .btn {
    color: #fff;
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    border: none;
    transition: .3s;
}

.user-table .btn:hover {
    background: #ff9800;
}

.user-money-way {
    display: flex;
    flex-wrap: wrap;
}

.user-money-way .card {
    display: flex;
    height: 38px;
    align-items: center;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 2px;
    background-color: #fff;
    color: #333;
    margin-right: 15px;
    cursor: pointer;
    transition: .3s;
    justify-content: center;
    flex-direction: row;
}

.user-money-way .card i {
    margin-right: 5px;
}

.user-money-way .card:hover {
    color: #ff5722;
}

.user-money-way .card.ing {
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    color: #fff;
    border-color: #ff5722;
}

.user-orderdeta .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    margin-bottom: 20px;
}

.user-orderdeta .item .title {
    width: 120px;
    color: #666;
}

.user-orderdeta .item .com {
    width: calc(100% - 140px);
    color: #333;
    word-wrap: break-word;
}

.user-orderdeta .item .com .formcami {
    display: inline-flex;
    height: 26px;
    padding: 0 8px;
    align-items: center;
    color: #fff;
    background-color: #ff5722;
    background-image: linear-gradient(135deg,#ff9800,#ff5722);
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
}

.user-orderdeta .item .com .formcami:hover {
    background: #ff9800;
}