.mine {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
}
.mine .info {
    display: flex;
    flex-direction: column;
}
.mine .info .info-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0 0;
}
.mine .info .info-right {
    height: 80px;
}
.mine .info .info-left .login {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mine .info .info-left .login img {
    border-radius: 50%;
}
.mine .info .info-left .login .loginOrRegister {
    font-size: 16px;
    color: #e5e5e5;
    margin-left: 10px;
}
.mine .info .info-left .login .loginOrRegister a {
    text-decoration: none;
    color: #fff;
}

.mine .info .info-right {
    background: #1e3a24;
    border-radius: 16px;
    padding: 10px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
}
.mine .myorder {
    background: #1e3a24;
    border-radius: 16px;
    padding: 10px 20px;
    margin: 0 0 20px 0;
}
.mine .myorder .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mine .myorder .header .title {
    font-size: 18px;
}
.mine .myorder .header .all a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}
.mine .myorder .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.mine .myorder .content .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mine .myorder .content .item a {
    color: #fff;
    text-decoration: none;
}
.mine .main {
    background: #1e3a24;
    border-radius: 16px;
    padding: 10px;
    margin: 20px 0;
}
.mine .main .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
}
.mine .main .item:last-child {
    border-bottom:none;
    padding-bottom: 0px;
}
.mine .main .item .left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mine .main .item .left .text {
    font-size: 16px;
    margin-left: 5px;
}
.mine .footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mine .footer button {
    background: linear-gradient(180deg,#4ed462, #30933f);
    border: none;
    border-radius: 22px;
    color: #fff;
    height: 40px;
    width: 100%;
    font-size: 16px;
}


@media screen and (max-width: 992px) {
    .mine {
        padding: 0 10px;
    }
    .mine .info {
        display: flex;
        flex-direction: column;
    }
    .mine .info .info-left {
        width: 100%;
    }
    .mine .info .info-right {
        width: 100%;
        margin-top: 20px;
        height: 80px;
    }
    .search-input {
        display: none;
    }
    .navbar-collapse {
        display: none;
    }
    .nav-header {
        display: none;
    }
}