cyl/dev
parent
3c8513c992
commit
24715f0408
@ -1,106 +1,112 @@
|
|||||||
@import "../screen/index.wxss";
|
@import "../screen/index.wxss";
|
||||||
page {
|
page {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
.weui-search-bar {
|
.weui-search-bar {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.weui-search-bar__box {
|
.weui-search-bar__box {
|
||||||
background-color: #f6f6f6;
|
background-color: #f6f6f6;
|
||||||
}
|
}
|
||||||
.weui-search-bar__form {
|
.weui-search-bar__form {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
.weui-search-bar__box {
|
.weui-search-bar__box {
|
||||||
border-radius: 17px;
|
border-radius: 17px;
|
||||||
}
|
}
|
||||||
.p10200 {
|
.p10200 {
|
||||||
padding: 10px 10px 140px 20px;
|
padding: 10px 10px 140px 20px;
|
||||||
}
|
}
|
||||||
.letter-list {
|
.letter-list {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 190px;
|
top: 120px;
|
||||||
right: 3px;
|
right: 3px;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
width: 24px;
|
width: 20px;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.letter-list .letter {
|
.letter-list .letter {
|
||||||
padding: 2px 0px;
|
padding: 3px 0px;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rlhc {
|
.rlhc {
|
||||||
background: var(--color-ysd);
|
background: var(--color-ysd);
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
.positionLetter {
|
.positionLetter {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
right: 40px;
|
right: 40px;
|
||||||
top: 90px;
|
top: 90px;
|
||||||
width: 47px;
|
width: 47px;
|
||||||
height: 47px;
|
height: 47px;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background: #cccccc;
|
background: #cccccc;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
font-weight: 601;
|
font-weight: 601;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
line-height: 47px;
|
line-height: 47px;
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
}
|
}
|
||||||
.loginOut {
|
.loginOut {
|
||||||
margin-top: 20rpx;
|
margin-top: 20rpx;
|
||||||
}
|
}
|
||||||
.btn {
|
.btn {
|
||||||
width: unset !important;
|
width: unset !important;
|
||||||
}
|
}
|
||||||
.navigatorBar {
|
.navigatorBar {
|
||||||
position: relative;
|
position: relative;
|
||||||
/* z-index: 999; */
|
/* z-index: 999; */
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding-bottom: 16px;
|
padding-bottom: 16px;
|
||||||
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* 灰色底部阴影 */
|
||||||
}
|
}
|
||||||
.navigatorBar .tabs {
|
.navigatorBar .tabs {
|
||||||
position: relative;
|
display: flex;
|
||||||
left: 50%;
|
position: relative;
|
||||||
color: #fff;
|
left: 50%;
|
||||||
|
color: #fff;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: #f2f2f2;
|
background-color: #f2f2f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigatorBar .tabs > view {
|
.navigatorBar .tabs > view {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
line-height: 26px;
|
height: 100%;
|
||||||
width: 56px;
|
display: flex;
|
||||||
color: #666666;
|
flex-direction: column;
|
||||||
text-align: center;
|
justify-content: center;
|
||||||
|
/* line-height: 26px; */
|
||||||
|
width: 56px;
|
||||||
|
color: #666666;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
.navigatorBar .tabs .active {
|
.navigatorBar .tabs .active {
|
||||||
height: 26px;
|
/* height: 100%; */
|
||||||
background-color: #1890ff;
|
background-color: #1890ff;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
.searchBox{
|
.searchBox {
|
||||||
margin: 0 20px;
|
margin: 0 20px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
height: 34px;
|
height: 34px;
|
||||||
border-radius: 99px;
|
border-radius: 99px;
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
}
|
}
|
||||||
.fss{
|
.fss {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue