123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /* pages/grade-details/grade-details.wxss */
- .group-details {
- height: 100%;
- width: 100%;
- background:rgba(240,241,245,1);
- }
- scroll-view {
- height: 100%;
- width: 100%;
- }
- .grade-details {
- margin: 12rpx 0;
- background: #fff;
- display: flex;
- flex-direction: column;
- padding: 24rpx;
- }
- .grade-details image{
- width: 100%;
- height: 290rpx;
- border-radius: 20rpx;
- }
- .grade-details text {
- font-size: 32rpx;
- }
- .grade-details text:nth-child(2) {
- margin: 12rpx 0;
- }
- .catalog {
- width: 100%;
- height: 62rpx;
- background: #fff;
- position: relative;
- }
- .catalog image {
- position: absolute;
- left: 24rpx;
- top: 10rpx;
- width: 208rpx;
- height: 42rpx;
- }
- .catalog text {
- position: absolute;
- left: 34rpx;
- top: 7rpx;
- z-index: 2;
- color: #fff;
- font-size: 36rpx;
- }
- .catalog-list {
- width: 100%;
- padding: 18rpx;
- box-sizing: border-box;
- margin-bottom: 100rpx;
- }
- .catalog-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 88rpx;
- background: #fff;
- padding: 0 20rpx;
- box-sizing: border-box;
- margin-bottom: 12rpx;
- border-radius: 10rpx;
- }
- .catalog-item .left {
- color: #656565;
- font-size: 36rpx;
- }
- .catalog-item .right {
- color: #939393;
- font-size: 28rpx;
- }
- .group-btn {
- width: 100%;
- height: 102rpx;
- background: #E5E5E5;
- display: flex;
- position: absolute;
- bottom: 0;
- }
- .group-btn .Price {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #000;
- }
- .group-btn .Price:nth-child(4) {
- color: #4A90E2;
- }
- .group-btn .Price:nth-child(5) {
- color: #FC6400;
- }
- .group-btn .Price text:nth-child(1) {
- font-size: 32rpx;
- }
- .group-btn .Price text:nth-child(2) {
- font-size: 36rpx;
- }
- .group-btn .bg1,
- .group-btn .bg2 {
- position: absolute;
- top: 15%;
- width: 4rpx;
- height: 70%;
- }
- .group-btn .bg1 {
- left: 35%;
- }
- .group-btn .bg2 {
- left: 68%;
- }
|