123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- /* 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%; */
- height: 100%;
- width: 100%;
- }
- .grade-details {
- background: #fff;
- display: flex;
- flex-direction: column;
- padding: 24rpx 24rpx 24rpx 24rpx;
- }
- .grade-details image {
- width: 100%;
- height: 290rpx;
- border-radius: 20rpx;
- }
- .catalog {
- display: flex;
- align-items: flex-end;
- width: 100%;
- height: 100rpx;
- background: #fff;
- position: relative;
- background: rgba(240, 241, 245, 1);
- padding: 0 40rpx;
- }
- .select{
- color: #61CA54
- }
- .switch text {
- flex: 1;
- height: 60rpx;
- text-align: center;
- font-size: 36rpx;
- /* margin: 0 90rpx; */
- box-sizing: border-box;
- position: relative;
- z-index: 1;
- width: 100%;
- display: block;
- line-height:66rpx;
- }
- .switch {
- width: 335rpx;
- height: 70rpx;
- position: relative;
- }
- .switch image {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 0;
- }
- .catalog-list {
- width: 100%;
- padding: 0 18rpx 18rpx 18rpx ;
- margin-bottom: 120rpx;
- box-sizing: border-box;
- }
- .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;
- }
- .lastThreeYears {
- width: 100%;
- height: 22rpx;
- line-height: 26rpx;
- padding-right: 6rpx;
- box-sizing: border-box;
- font-size: 16rpx;
- color: #939393;
- text-align: right;
- }
- .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: none;
- display: flex;
- position: absolute;
- bottom: 0;
- color: #fff;
- }
- /* .noBg{
- background: none;
- } */
- .bottomx {
- bottom: 20rpx;
- }
- .group-btn .Price {
- position: relative;
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- z-index: 1;
- }
- .group-btn .btn-image{
- position: absolute;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- z-index: 0;
- }
- /* .group-btn .Price text:nth-child(1) {
- font-size: 28rpx;
- }
- .group-btn .Price text:nth-child(2) {
- font-size: 32rpx;
- } */
- .group-btn .Price .one-line-text{
- font-size: 40rpx;
- }
- .two-line-1{
- font-size: 32rpx;
- }
- .two-line-2{
- font-size: 28rpx;
- }
- .group-btn .bg1,
- .group-btn .bg2 {
- position: absolute;
- top: 14rpx;
- width: 4rpx;
- height: 70%;
- }
- .group-btn .bg1 {
- left: 50%;
- }
- .group-btn .bg2 {
- left: 68%;
- }
- .formFit {
- display: block;
- text-align: center;
- }
- .formBtn {
- margin: 0;
- padding: 0;
- background: rgba(255, 255, 255, 0);
- width: 100%;
- position: absolute;
- top: 0;
- height: 100%;
- left: 0;
- }
- .formBtn::after {
- border: none;
- }
|