/* pages/grade-details/grade-details.wxss */ /**基础风格样式**/ @import '../../../towxml/style/main.wxss'; /**如果页面有动态主题切换,则需要将使用到的样式全部引入**/ /**主题配色(浅色样式)**/ @import '../../../towxml/style/theme/light.wxss'; /**主题配色(深色样式)**/ @import '../../../towxml/style/theme/dark.wxss'; .group-details { height: 100%; width: 100%; background:rgba(240,241,245,1); } scroll-view { height: 98%; width: 100%; } .grade-details { background: #fff; display: flex; flex-direction: column; padding: 24rpx; } .grade-details image{ width: 100%; height: 290rpx; border-radius: 20rpx; } .catalog { display: flex; align-items: center; width: 100%; height: 110rpx; background: #fff; position: relative; } .catalog image { position:absolute; left:374rpx; top:26rpx; width:2rpx; height:60rpx; } .catalog text { height: 60rpx; text-align: center; font-size: 36rpx; /* margin: 0 110rpx; */ margin:0 104rpx; box-sizing: border-box; } .catalog .select { border-bottom: 4rpx solid #61CA54; color: #61CA54; } .catalog-list { width: 100%; padding: 18rpx; box-sizing: border-box; margin-bottom: 100rpx; } .know { padding: 18rpx 18rpx 120rpx 18rpx; box-sizing: border-box; background: #fff; margin-top: 12rpx; } .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; } .catalog-item .right image { width: 16rpx; height: 28rpx; vertical-align: middle; margin-right: 6rpx; } .catalog-item .right text { vertical-align: middle; } .group-btn { width: 100%; height: 102rpx; background: #FF9209; display: flex; position: absolute; bottom: 0; color: #fff; } .bottomx { bottom: 20rpx; } .group-btn .Price { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; } .group-btn .Price text:nth-child(1) { font-size: 28rpx; } .group-btn .Price text:nth-child(2) { font-size: 32rpx; } .group-btn .bg1, .group-btn .bg2 { position: absolute; top: 14rpx; width: 4rpx; height: 70%; } .group-btn .bg1 { left: 35%; } .group-btn .bg2 { left: 68%; }