|
|
|
/* pages/calculation/calculation.wxss */
|
|
|
|
.main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-bottom: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mark {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: rgba(0, 0, 0, .1);
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top {
|
|
|
|
height: 90rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
width: 111rpx;
|
|
|
|
height: 63rpx;
|
|
|
|
background: #f1f1f1;
|
|
|
|
border: 1rpx solid #f0f0f0;
|
|
|
|
border-radius: 31rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search image {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-box {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-box text {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
font-size: 32rpx;
|
|
|
|
color: #262936;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-icon {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-box {
|
|
|
|
display: flex;
|
|
|
|
padding: 30rpx;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table {
|
|
|
|
display: flex;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-item {
|
|
|
|
margin-right: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-active .table-icon {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-name {
|
|
|
|
font-size: 30rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #262936;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-icon {
|
|
|
|
width: 14rpx;
|
|
|
|
height: 10rpx;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
height: 100%;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-item {
|
|
|
|
padding: 0 30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-box {
|
|
|
|
height: 130rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 14rpx 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-bottom: 2rpx solid #e3e3e3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: 34rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #262936;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 26rpx;
|
|
|
|
color: #838b99;
|
|
|
|
}
|
|
|
|
|
|
|
|
.num {
|
|
|
|
margin-left: 56rpx;
|
|
|
|
}
|