feat: 初始化
This commit is contained in:
159
components/nvue/NavBar/index.css
Normal file
159
components/nvue/NavBar/index.css
Normal file
@ -0,0 +1,159 @@
|
||||
.navBarWrapper {
|
||||
position: sticky;
|
||||
z-index: 98;
|
||||
background-color: #fff;
|
||||
width: 750rpx;
|
||||
}
|
||||
.navBarWrapper .navBar {
|
||||
width: 750rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-left: 28px;
|
||||
padding-right: 16px;
|
||||
height: 44px;
|
||||
border: 1px solid rgb(236, 236, 236);
|
||||
border-left-width: 0px;
|
||||
border-right-width: 0px;
|
||||
}
|
||||
|
||||
.leftDrawer {
|
||||
z-index: 100;
|
||||
}
|
||||
.leftDrawer .submenu {
|
||||
height: 48px;
|
||||
padding: 0 48px;
|
||||
border-bottom: 1px solid #ebeef5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.leftDrawer .scrollView ::v-deep .uni-scroll-view-content {
|
||||
height: unset;
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
.leftDrawer .menuItem {
|
||||
height: 50px;
|
||||
margin: 0px 28px 0px 16px;
|
||||
padding: 0px 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.leftDrawer .menuItem.active {
|
||||
color: #fff;
|
||||
background-color: #29bbe4;
|
||||
}
|
||||
.leftDrawer .menuItem.active .menuText {
|
||||
color: #fff;
|
||||
}
|
||||
.leftDrawer .menuItem .menuText, .leftDrawer .menuItem .value {
|
||||
font-size: 18px;
|
||||
}
|
||||
.leftDrawer .menuItem .menuIcon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
.leftDrawer .menuItem.userName {
|
||||
height: 65px;
|
||||
}
|
||||
.leftDrawer .menuItem.balance {
|
||||
height: 65px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.leftDrawer .menuItem.balance .value {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.rightDrawer .rightContent {
|
||||
padding: 0 20px;
|
||||
}
|
||||
.rightDrawer .rightContent .noticeItem {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 10px;
|
||||
padding: 20px 0 14px;
|
||||
border-bottom: 1px solid rgb(236, 236, 236);
|
||||
}
|
||||
.rightDrawer .rightContent .noticeItem:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.rightDrawer .rightContent .noticeItem .noticeSubject {
|
||||
color: rgb(51, 51, 51);
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.rightDrawer .rightContent .noticeItem .noticeSummary {
|
||||
color: rgb(102, 102, 102);
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.popup-content {
|
||||
width: 726rpx;
|
||||
height: 100px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 15px;
|
||||
height: 50px;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.popup-height {
|
||||
height: 100px;
|
||||
flex: 1;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.detailModal {
|
||||
flex-direction: row;
|
||||
position: relative;
|
||||
width: 726rpx;
|
||||
background-color: #fff;
|
||||
}
|
||||
.detailModal .detailContent {
|
||||
flex-direction: row;
|
||||
width: 726rpx;
|
||||
padding: 32px 30upx 24px;
|
||||
}
|
||||
.detailModal .closeIcon {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
top: 18px;
|
||||
right: 21px;
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
}
|
||||
.detailModal .titleWrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
row-gap: 12px;
|
||||
color: #333333;
|
||||
padding: 12px;
|
||||
margin: 24px 0;
|
||||
box-shadow: -1px 0 5px 1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.detailModal .titleWrapper .title {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
line-height: 34px;
|
||||
}
|
||||
.detailModal .titleWrapper .value {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
color: #29bbe4;
|
||||
line-height: 52px;
|
||||
}
|
||||
.detailModal .btnsWrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.detailModal .btnsWrapper .delBtn {
|
||||
background-color: #f56c6c;
|
||||
}
|
Reference in New Issue
Block a user