.ly-layout {
    width: 100%;
    min-height: 100%;
}
.ly-layout > .layout{
    max-width: 800px;
    margin: 0 auto !important;
}

/*顶部状态栏*/
.ly-header {
    width: 100%;
    max-width: 800px;
    height: 50px;
    line-height: 50px;
    color: var(--themeColor);
    background: #ffffff;
    text-align: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    box-shadow: 0 2px 10px #cccccc;
}

.ly-header > i {
    text-align: left;
    width: 40px;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.ly-navigate{
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    position: fixed;
    z-index: 10;
    top: 50px;
    background: #ffffff;
    border-top: solid 1px #EEEEEE;
}
.ly-navigate > .navigate-item{
    height: 50px;
    line-height: 50px;
    color: var(--themeColor);
    border-bottom: solid 2px #FFFFFF;
}
.ly-navigate > .navigate-item.active{
    font-weight: bold;
    border-bottom: solid 2px var(--themeColor);
}

/*列表空白区*/
.ly-empty-box {
    width: 100%;
    max-width: 800% !important;
    padding-top: 50px;
    left: 50%;
    text-align: center;
}

.ly-empty-box > img {
    width: 50%;
}

/*底部tab*/
.ly-tab {
    width: 100%;
    max-width: 800px;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: nowrap;
    background: #FFFFFF;
    align-items: center;
    justify-content: space-around;
    border-top: solid 1px var(--themeBackgroundColor);
}

.ly-tab > .tab-item {
    width: 25%;
    text-align: center;
    color: #969696;
}

.ly-tab > .tab-item.active {
    width: 25%;
    text-align: center;
    color: var(--themeColor);
}

.ly-tab > .tab-item > .mui-icon {
    font-size: 24px;
}

.ly-tab > .tab-item > .iconfont {
    font-size: 24px;
}

.ly-tab > .tab-item > .tab-label {
    font-size: 14px;
    margin-top: 4px;
}

/*商品区*/
.ly-card {
    background: #ffffff;
    margin-top: 10px;
    padding-bottom: 10px;
}

.ly-card > .card-title {
    height: 46px;
    line-height: 46px;
    padding-left: 10px;
    box-shadow: 1px 1px 1px #eeeeee;
}

.ly-card > .card-title > img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.ly-card > .card-title > span:nth-of-type(1) {
    margin-left: 6px;
    font-weight: bold;
    color: #333333;
}

.ly-card > .card-title > span:nth-of-type(2) {
    margin-right: 10px;
}

.ly-card > .card-title > span:nth-of-type(2) > i {
    margin-left: 4px;
    font-size: 20px;
}

.ly-card > .card-content {
    text-align: center;
    padding: 4px;
}

.ly-card > .card-content > .card-item {
    padding: 4px;
    text-align: center;
}

.ly-card > .card-content > .card-item img {
    width: 100%;
    display: block;
}

.ly-card > .card-content > .card-item p {
    margin-top: 4px;
}

.theme-color {
    color: var(--themeColor) !important;
}

.bold-weight {
    font-weight: bold !important;
}

/*按钮样式*/
.form-btn {
    cursor: pointer;
    margin-right: 5px;
    font-size: 12px;
    cursor: pointer;
}

.form-btn:hover {
    text-decoration: none !important;
}

.detail-btn {
    color: #67c23a;
    cursor: pointer;
}

.edit-btn {
    color: #409eff;
    cursor: pointer;
}

.warn-btn {
    color: #E6A23C;
    cursor: pointer;
}

.del-btn {
    color: red;
    cursor: pointer;
}

.detail-btn:hover {
    color: #67c23a;
    opacity: 0.8;
}

.edit-btn:hover {
    color: #409eff;
    opacity: 0.8;
}

.warn-btn:hover {
    color: #E6A23C;
    cursor: pointer;
}

.del-btn:hover {
    color: red;
    opacity: 0.8;
}

.tip-icon {
    display: inline-block;
    font-size: 12px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: solid 1px #409eff;
    border-radius: 5px;
    background: #00a2ff;
    margin-right: 8px;
    color: #FFFFFF;
}

[v-cloak] {
    display: none;
}