258 lines
8.6 KiB
Plaintext
258 lines
8.6 KiB
Plaintext
.MembershipLevelStatisticsMain {
|
|
width: 100%;
|
|
height: calc(100vh - 150px);
|
|
box-shadow: 0px 0px 6px 0px rgba(31, 48, 95, 0.2);
|
|
background: #FFFFFF;
|
|
border-radius: 4px;
|
|
overflow-y: auto;
|
|
|
|
.MembershipLevelStatisticsTop {
|
|
width: 100%;
|
|
background: #FFFFFF;
|
|
// box-shadow: 0px 0px 6px 0px rgba(31, 48, 95, 0.2);
|
|
// border-radius: 4px;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
|
|
.MembershipLevelStatisticsTitleBox {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.MembershipLevelStatisticsTitle {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
color: #333333;
|
|
line-height: 18px;
|
|
text-align: left;
|
|
font-style: normal;
|
|
margin-left: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.MembershipLevelStatisticsTitle::after {
|
|
content: "";
|
|
width: 4px;
|
|
height: 18px;
|
|
background: #1492FF;
|
|
border-radius: 2px;
|
|
position: absolute;
|
|
left: -12px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
.MembershipLevelStatisticsContentBox {
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
// .MembershipLevelStatisticsItemFirst {
|
|
// width: 280px;
|
|
// height: 180px;
|
|
// background-image: url('../../../assets/detail/staticSumTotalBg.png');
|
|
// background-size: 100% 100%;
|
|
// background-repeat: no-repeat;
|
|
// box-sizing: border-box;
|
|
// padding: 26px 39px;
|
|
// margin-right: 16px;
|
|
|
|
// .firstItemTitle {
|
|
// font-family: PingFangSC, PingFang SC;
|
|
// font-weight: 500;
|
|
// font-size: 18px;
|
|
// color: #FFFFFF;
|
|
// line-height: 13px;
|
|
// text-align: left;
|
|
// font-style: normal;
|
|
// }
|
|
|
|
// .firstItemValue {
|
|
// font-family: DINAlternate, DINAlternate;
|
|
// font-weight: bold;
|
|
// font-size: 28px;
|
|
// color: #FFFFFF;
|
|
// line-height: 32px;
|
|
// text-align: left;
|
|
// font-style: normal;
|
|
// margin-top: 12px;
|
|
// }
|
|
// }
|
|
|
|
.MembershipLevelStatisticsItemOther {
|
|
width: 100%;
|
|
height: 180px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.MembershipLevelStatisticsOtherItem {
|
|
width: calc((100% - 96px) / 6);
|
|
height: 100%;
|
|
background: #F6F9FF;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
padding: 29px 24px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
|
|
.otherItemTitle {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
color: #333333;
|
|
line-height: 18px;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
|
|
.otherItemValue {
|
|
font-family: DINAlternate, DINAlternate;
|
|
font-weight: bold;
|
|
font-size: 32px;
|
|
color: #1492FF;
|
|
line-height: 38px;
|
|
text-align: left;
|
|
margin-top: 17px;
|
|
font-style: normal;
|
|
}
|
|
|
|
.otherItemAddBox {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 29px;
|
|
|
|
.addLabel {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
line-height: 12px;
|
|
text-align: center;
|
|
font-style: normal;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.addIcon {
|
|
width: 7px;
|
|
height: 10px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.addValue {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
line-height: 16px;
|
|
text-align: center;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
|
|
.otherBgIcon {
|
|
width: 76px;
|
|
height: 51px;
|
|
position: absolute;
|
|
top: 29px;
|
|
right: 4px;
|
|
background-image: url(../../../assets/detail/otherBgIcon.png);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
|
|
.MembershipLevelStatisticsOtherItemSelect {
|
|
background-image: url('../../../assets/detail/staticSumTotalBg.png');
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
|
|
.otherItemTitle {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
line-height: 18px;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
|
|
.otherItemValue {
|
|
font-family: DINAlternate, DINAlternate;
|
|
font-weight: bold;
|
|
font-size: 32px;
|
|
color: #fff;
|
|
line-height: 38px;
|
|
text-align: left;
|
|
margin-top: 17px;
|
|
font-style: normal;
|
|
}
|
|
|
|
.otherItemAddBox {
|
|
.addLabel {
|
|
color: #fff;
|
|
}
|
|
|
|
.addValue {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.MembershipLevelStatisticsBottom {
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
box-sizing: border-box;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 0px 6px 0px rgba(31, 48, 95, 0.2);
|
|
border-radius: 4px;
|
|
padding: 16px;
|
|
|
|
.MembershipLevelStatisticsTitleBox {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.MembershipLevelStatisticsTitle {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
color: #333333;
|
|
line-height: 18px;
|
|
text-align: left;
|
|
font-style: normal;
|
|
margin-left: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.MembershipLevelStatisticsTitle::after {
|
|
content: "";
|
|
width: 4px;
|
|
height: 18px;
|
|
background: #1492FF;
|
|
border-radius: 2px;
|
|
position: absolute;
|
|
left: -12px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
}
|
|
} |