| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**index.wxss**/
- .section_w{
- padding: 30rpx 45rpx 0;
- }
- .section_t{
- display: flex;
- }
- .section_icon{
- display: block;
- width: 30rpx;
- height: 26rpx;
- }
- .section_icon.xing{
- width: 34rpx;
- height: 33rpx;
- }
- .section_title{
- flex: 1;
- padding-left: 12rpx;
- }
- .section_title .title_text{
- font-size: 32rpx;
- font-weight: 600;
- color: #333333;
- }
- .section_title .desc_text{
- padding-top: 20rpx;
- font-size: 26rpx;
- color: rgba(51,51,51,.7);
- }
- /* 等级列表 */
- .level_list{
- width: 660rpx;
- margin-top: 30rpx;
- border: 1px solid rgba(0,0,0,.1);
- font-size: 24rpx;
- color: #333333;
- }
- .level_list .row{
- display: flex;
- align-items: center;
- border-bottom: 1px solid rgba(0,0,0,.1);
- }
- .level_list .row.head{
- background: #F2F3F7;
- font-size: 26rpx;
- }
- .level_list .row:last-child{
- border-bottom: 0 none;
- }
- .level_list .row .col{
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 15rpx 0;
- }
- .level_list .row .col:not(:last-child){
- border-right: 1px solid rgba(0,0,0,.1);
- }
- /* */
- .section_w.sec{
- padding-top: 40rpx;
- }
- .section_title .desc_item{
- margin-top: 20rpx;
- display: flex;
- align-items: flex-start;
- }
- .section_title .desc_item::before{
- content: "";
- display: block;
- width: 6rpx;
- height: 6rpx;
- border-radius: 50%;
- background: rgba(0,0,0,.7);
- margin-right: 16rpx;
- margin-top: 15rpx;
- }
|