.user {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.user-frame-l {
    width: 200px;
    height: calc(100% - 60px);
    overflow-y: overlay;
    border-radius: 12px;
}

.user-frame-r {
    width: calc(100% - 220px);
    height: 100%;
    overflow-y: overlay;
    border-radius: 12px;
}

.user-frame-l::-webkit-scrollbar,
.user-frame-r::-webkit-scrollbar {
    width: 4px;
}

.user-frame-l::-webkit-scrollbar-thumb,
.user-frame-r::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.user-frame-l.scroll::-webkit-scrollbar-thumb,
.user-frame-r.scroll::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 0.1);
}

.user-footer {
    margin: 20px 0;
    height: 20px;
    font-size: 12px;
    color: #999;
}

.menu {
    width: 100%;
    padding: 20px 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgb(0 0 0 / 3%);
}

.menu .list + .list {
    margin-top: 20px;
}

.menu .list span{
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 10px;
    border-top: 1px solid rgb(0 0 0 / 5%);
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.menu .list .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 14px;
}

.menu .list .item:hover,
.menu .list .item.hover  {
    background: #ecf4ff;
    color: #59f;
}

.user-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.user-wrap + .user-wrap {
    margin-top: 20px;
}

.user-home-info {
    display: flex;
    position: relative;
    margin: 10px 0 30px;
}

.user-home-info .fl {
    position: absolute;
    top: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    height: 230px;
    padding: 20px 0 0;
    background: url(../img/indexuserbg.png) no-repeat top center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
    z-index: 10;
}

.user-home-info .fl .pic {
    width: 80px;
    height: 80px;
    padding: 2px;
    border-radius: 40px;
    box-shadow: 0px 10px 20px rgb(85 153 255 / 30%);
    overflow: hidden;
    background: #fff;
}

.user-home-info .fl .pic img {
    width: 100%;
    height: 100%;
}

.user-home-info .fl .name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    height: 30px;
}

.user-home-info .fl .uid {
    font-size: 12px;
    margin-top: 5px;
    border-radius: 10px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
    color: #fff;
    padding: 10px;
    height: 20px;
    display: flex;
    align-items: center;
}

.user-home-info .fl .vip {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 20px;
    background: #ecf4ff;
    color: #59f;
    padding: 0 20px;
}

.user-home-info .fl .vip span {
    font-size: 14px;
}

.user-home-info .fl .vip a {
    display: flex;
    width: 70px;
    height: 24px;
    font-size: 12px;
    color: #fff;
    justify-content: center;
    align-items: center;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
    border-radius: 15px;
}

.user-home-info .fl .vip a:hover {
    background: #73abff;
}

.user-home-info .fl .loginout {
    position: absolute;
    display: flex;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 20px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #666;
    background: rgb(255 255 255 / 0.5);
    border-radius: 20px;
}

.user-home-info .fl .loginout:hover {
    color: #fff;
    background: rgb(85 153 255 / 1);
}

.user-home-info .fr {
    width: 100%;
    background: #fff;
}

.user-home-info .fr .wrap {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 180px;
}

.user-home-info .fr .wrap>.title {
    width: calc(100% - 310px);
    margin-left: 310px;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.user-home-info .fr .wrap .icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 310px);
    height: 70px;
    margin-left: 310px;
    margin-top: 20px;
}

.user-home-info .fr .wrap .icons .item {
    width: 33.333333%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-home-info .fr .wrap .icons .item .icon {
    width: 60px;
    height: 60px;
    background-image: url('../img/usershortcuticon.png');
    background-repeat: no-repeat;
    background-size: 60px;
    transition: .3s;
}

.user-home-info .fr .wrap .icons .item:hover .icon {
    transform: rotate(360deg);
}

.user-home-info .fr .wrap .icons .item:nth-child(2) .icon {
    background-position-y: -60px;
}

.user-home-info .fr .wrap .icons .item:nth-child(3) .icon {
    background-position-y: -120px;
}

.user-home-info .fr .wrap .icons .item .title {
    display: flex;
    flex-direction: column;
    width: calc(100% - 100px);
}

.user-home-info .fr .wrap .icons .item .title span {
    font-size: 12px;
    color: #666;
}

.user-home-info .fr .wrap .icons .item .title em {
    font-size: 22px;
}

.user-home-info .fr .wrap .safe {
    height: 50px;
    width: calc(100% - 340px);
    margin-left: 310px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-home-info .fr .wrap .safe em {
    width: 60px;
}

.user-home-info .fr .wrap .safe .progress {
    width: calc(100% - 140px);
    height: 10px;
}

.user-home-info .fr .wrap .safe .go {
    width: 60px;
    display: flex;
    color: #59f;
}

.user-home-info .fr .wrap .safe .go i {
    transform: rotateZ(90deg);
    display: block;
    margin-left: 2px;
}

.user-home-info .fr .wrap .safe .go i svg {
    transition: .2s;
}

.user-home-info .fr .wrap .safe .go:hover i svg {
    transform: translateY(-5px);
}

.user-home-info .fr .hello {
    width: 100%;
    height: 30px;
    background-color: #ecf4ff;
    padding-left: 310px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #59f;
    position: relative;
    z-index: 1;
}

.user-home-info .fr .hello span {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    border-radius: 15px;
    background: #fff;
    color: #59f;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-home-order {
    width: 732px;
    padding: 0 20px 20px;
    background: #fff;
    border-radius: 12px;
    height: fit-content;
}

.user-tit {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.user-tit-min {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.user-home-order .order-nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.user-home-order .order-nav .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 30px;
}

.user-home-order .order-nav .item:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.user-home-order .order-nav .item i {
    display: block;
    width: 60px;
    height: 60px;
    background: url('../img/userhomeordericon.png');
    background-repeat: no-repeat;
    background-size: 240px;
    border-radius: 30px;
    transition: .3s;
}

.user-home-order .order-nav .item:hover i {
    background-position-y: -60px;
}

.user-home-order .order-nav .item:nth-child(2) i {
    background-position-x: -60px;
}

.user-home-order .order-nav .item:nth-child(3) i {
    background-position-x: -120px;
}

.user-home-order .order-nav .item:nth-child(4) i {
    background-position-x: -180px;
}

.user-home-order .order-nav .item em {
    margin-top: 10px;
    font-size: 14px;
}

.user-home-order .order-nav .item span {
    margin-top: 5px;
    font-size: 13px;
    color: #999;
}

.user-home-order .noorder {
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center;
}

.user-home-order .noorder i {
    width: 80px;
    height: 80px;
    background: url('../img/noorder.png') no-repeat;
    background-size: 100%;
}

.user-home-order .noorder span {
    font-size: 14px;
    color: #999;
    margin-left: 20px;
}

.user-home-order .order-list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    border-top: 1px solid rgb(0 0 0 / 5%);
}

.user-home-order .order-list .item .fl {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.user-home-order .order-list .item .fl img {
    width: 100%;
    height: 100%;
}

.user-home-order .order-list .item .fa {
    width: calc(100% - 260px);
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-home-order .order-list .item .fa .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.user-home-order .order-list .item .fa .tag {
    margin-top: 10px;
    display: flex;
}

.user-home-order .order-list .item .fa .tag em,
.user-home-order .order-list .item .fa .tag span {
    display: flex;
    align-items: center;
    height: 20px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 10px;
}

.user-home-order .order-list .item .fa .tag em {
    background: rgb(0 0 0 / 5%);
    color: #888;
}

.user-home-order .order-list .item .fa .tag span.o1 {
    color: #ff9800;
    background: #fff2de;
}

.user-home-order .order-list .item .fa .tag span.o2 {
    color: #4caf50;
    background: #edffee;
}

.user-home-order .order-list .item .fa .tag span.o3 {
    color: #f44336;
    background: #fff0ee;
}

.user-home-order .order-list .item .fr {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-home-order .order-list .item .fr .money {
    font-size: 14px;
    color: #f44336;
}

.user-home-order .order-list .item .fr .go {
    display: flex;
    width: 80px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
}

.user-home-order .order-list .item .fr .go:hover {
    background: #73abff;
}

.user-home-order .order-list .more {
    width: 100%;
    border-top: 1px solid rgb(0 0 0 / 5%);
    padding-top: 20px;
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: center;
}

.user-home-order .order-list .more a {
    margin-left: 10px;
    display: flex;
    width: fit-content;
    color: #59f;
}

.user-home-order .order-list .more i {
    transform: rotateZ(90deg);
    display: block;
    margin-left: 2px;
}

.user-home-order .order-list .more i svg {
    transition: .3s;
}

.user-home-order .order-list .more a:hover i svg {
    transform: translateY(-5px);
}

.user-home-doc {
    width: 320px;
    height: fit-content;
}

.user-home-doc .user-home-doc-nav {
    padding: 0 20px 20px;
    background: #fff;
    border-radius: 12px;
}

.user-home-doc .user-home-doc-nav .wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.user-home-doc .user-home-doc-nav .wrap .item {
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid rgb(0 0 0 / 5%);
    font-size: 14px;
    margin-top: 10px;
    margin-right: 10px;
}

.user-home-doc .user-home-doc-list {
    margin-top: 20px;
    padding: 0 20px 20px;
    background: #fff;
    border-radius: 12px;
}

.user-home-doc .user-home-doc-list .item {
    display: flex;
    margin-top: 10px;
    font-size: 14px;
    justify-content: space-between;
}

.user-home-doc .user-home-doc-list .item em {
    width: calc(100% - 50px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-home-doc .user-home-doc-list .item span {
    width: 50px;
    color: #666;
    text-align: right;
}

.user-home-full {
    width: 100%;
    padding: 0 20px 20px;
    background: #fff;
    border-radius: 12px;
}

.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;
}

.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, .user-select, .user-textarea {
    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: rgba(0,0,0,.85);
    border-radius: 2px;
}

.user-input:focus, .user-select:focus, .user-textarea:focus {
    border-color: rgb(85 153 255);
}

.user-input, .user-textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
}

.user-input[disabled] {
    cursor: not-allowed;
    color: #999;
}

.user-select {
    width: 100%;
}

.user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border: 1px solid transparent;
    padding: 0 18px;
    background: #5599ff;
    color: #fff;
    white-space: nowrap;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
}

.user-btn:hover {
    background: #73abff;
}

.user-btn.ml {
    margin-left: 120px;
}

.user-btn.fixed {
    width: 240px;
}

.user-btn.full {
    width: 100%;
}

.user-btn, .user-input, .user-select, .user-textarea {
    transition: .3s;
}

.user-form-mid {
    position: relative;
    float: left;
    display: block;
    padding: 9px 0!important;
    line-height: 20px;
    margin-right: 10px;
}

.user-input-ed {
    border: 1px solid rgb(0 0 0 / 10%);
}

.user-grade-info {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.user-grade-info em {
    display: flex;
    font-size: 14px;
    width: 240px;
    height: 38px;
    color: #59f;
    justify-content: center;
    align-items: center;
    background-color: #eef5ff;
    border-radius: 4px;
}

.user-grade-tips {
    margin-top: 20px;
    padding: 20px;
    background: rgb(85 153 255 / 10%);
    border-radius: 12px;
}

.user-grade-tips .item {
    display: none;
    flex-wrap: wrap;
    width: 100%;
}

.user-grade-tips .item.ing {
    display: flex;
}

.user-grade-tips .item p {
    width: 100%;
    color: #59f;
}

.user-grade-tips .item span {
    font-size: 14px;
    color: #f44336;
}

.user-toolbtn {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.user-toolbtn-search {
    width: 280px;
    height: 35px;
    display: flex;
}

.user-toolbtn-search input {
    width: 245px;
    height: 35px;
    padding: 0 10px;
    border: 1px solid var(--bs-gray-300);
    border-right: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    transition: .3s;
}

.user-toolbtn-search input:hover,
.user-toolbtn-search input:focus {
    border-color: #59f;
    border: 1px solid #59f;
}

.user-toolbtn-search-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--bs-gray-300);
    border-left: 0;
    border-radius: 0 2px 2px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
}

.user-toolbtn-search-btn:hover {
    border-color: #59f;
    background: #59f;
    color: #fff;
}

.user-toolbtn-btn {
    padding: 0 10px;
    height: 35px;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
}

.user-toolbtn-btn.btn-border {
    border: 1px solid var(--bs-gray-300);
}

.user-toolbtn-btn.btn-border:hover {
    border: 1px solid var(--bs-gray-500);
}

.user-toolbtn-select {
    width: 280px;
    height: 35px;
    border: 1px solid var(--bs-gray-300);
    border-radius: 2px;
    transition: .3s;
}

.user-toolbtn-select:hover,
.user-toolbtn-select:focus {
    border-color: #59f;
    border: 1px solid #59f;
}

.money-amount {
    width: 100%;
    height: 80px;
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 2px;
}

.money-amount .item {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.money-amount p {
    font-size: 13px;
}

.money-amount span {
    color: #f44336;
    font-size: 15px;
}

.money-amount em {
    color: #f44336;
    font-size: 24px;
    font-weight: bold;
}

.user-money {
    margin-top: 20px;
}

.user-type {
    display: flex;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    margin-bottom: 20px;
}

.user-type .item {
    display: flex;
    height: 38px;
    padding: 0 18px;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.user-type .item.ing {
    color: #59f;
}

.user-type-wrap {
    display: none;
}

.user-type-wrap.ing {
    display: block;
}

.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;
    border: 1px solid rgb(0 0 0 / 10%);
    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: #59f;
}

.user-money-way .card.ing {
    background: #59f;
    color: #fff;
    border-color: #59f;
}

.user-money-cashout-tips {
    padding: 20px;
    background: rgb(85 153 255 / 10%);
    border-radius: 12px;
    margin-bottom: 15px;
}

.user-money-cashout-tips .item {
    display: none;
}

.user-money-cashout-tips .item.ing {
    display: block;
}

.user-money-cashout-tips p {
    color: #59f;
    font-size: 14px;
}

.btn-primary,
.page-item.active .page-link {
    background: #59f;
    border-color: #59f;
}

.btn-primary:hover {
    background: #73abff;
    border-color: #73abff;
}

.page-link,
.page-link:hover {
    color: #59f;
}

.user-myshop-shoplist .pic {
    width: 60px;
    height: 60px;
}

.public-login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/userloginbg.png');
    background-color: #ecf4ff;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.public-login .wrap {
    display: flex;
    width: 800px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 40px rgb(85 153 255 / 10%);
}

.public-login .wrap .fl {
    width: 400px;
    height: 500px;
    background-color: #59f;
    background-image: url('../img/userlogin.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.public-login .wrap .fl.reg {
    height: 580px;
}

.public-login .wrap .fr {
    width: 400px;
    padding: 10px 40px;
}

.public-login .wrap .fr .title {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-login .wrap .fr .title span {
    color: #666;
    display: flex;
    align-items: center;
}

.public-login .wrap .fr .title span a {
    display: flex;
    align-items: center;
    color: #59f;
}

.public-login .wrap .fr .title span a i {
    transform: rotateZ(90deg);
    display: block;
    margin-left: 2px;
}

.public-login .wrap .fr .title span a i svg {
    transition: .2s;
}

.public-login .wrap .fr .title span a:hover i svg {
    transform: translateY(-5px);
}

.public-login .login-form {
    border-radius: 4px;
    border: 1px solid rgb(0 0 0 / 10%);
    padding: 20px;
}

.public-login .login-form .login-type {
    display: flex;
    justify-content: space-evenly;
}

.public-login .login-form .login-type .item {
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
}

.public-login .login-form .login-type .item.ing {
    color: #59f;
}

.public-login .login-form .login-form-wrap {
    display: none;
}

.public-login .login-form .login-form-wrap.ing {
    display: block;
}

.public-login .login-form .login-form-wrap .login-form-item {
    width: 100%;
    margin-top: 20px;
}

.public-login .login-form .login-form-wrap .imgcode,
.public-login .login-form .login-form-wrap .code {
    display: flex;
    justify-content: space-between;
}

.public-login .login-form .login-form-wrap .imgcode img {
    width: 110px;
    height: 38px;
    border-radius: 2px;
    border: 1px solid rgb(0 0 0 / 10%);
}

.public-login .login-form .login-form-wrap .imgcode .user-input,
.public-login .login-form .login-form-wrap .code .user-input {
    width: 140px;
}

.public-login .login-form .login-form-wrap .code .user-btn {
    width: 110px;
}

.quicklogin {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.quicklogin span{
    color: #666;
    margin-right: 10px;
}

.quicklogin .item {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 4px;
    background-image: url('../img/loginicon.png');
    background-size: 114px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: .3s;
}

.quicklogin .item:nth-child(2) {
    background-position: -38px;
}

.quicklogin .item:nth-child(3) {
    background-position: -76px;
}

.quicklogin .item:hover {
    background-color: #ecf4ff;
}