123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- .classInfo {
- .infoField {
- width: 50vw;
- font-size: 16px;
- :global {
- .van-tab {
- font-size: 16px;
- }
- .van-tabs__nav--line {
- padding-left: 0;
- }
- .van-tab--active {
- color: #000;
- }
- // .van-tab--shrink {
- // padding-left: 0;
- // }
- }
- }
- .boxStyle {
- background: transparent !important;
- width: 18px;
- height: 18px;
- border: transparent !important;
- }
- :global {
- .van-radio {
- display: inline-block;
- align-items: inherit;
- overflow: inherit;
- }
- .van-radio__icon {
- height: 18px;
- line-height: 18px;
- display: inline-block;
- vertical-align: sub;
- }
- .van-radio__label {
- line-height: 18px;
- }
- }
- .radioGroup {
- padding-top: 14px;
- display: flex;
- }
- .radio {
- width: 80px;
- height: 28px;
- line-height: 28px;
- background: #F8F8F8;
- border: 1px solid #F8F8F8;
- border-radius: 5px;
- font-size: 16px;
- color: #C0C0C0;
- text-align: center;
- &+.radio {
- margin-left: 12px;
- }
- &.active {
- background: #E9FFF8;
- border: 1px solid var(--van-primary);
- color: var(--van-primary);
- }
- }
- .imgContainer {
- width: 150px;
- height: 85px;
- border-radius: 10px;
- overflow: hidden;
- margin: 0 0 12px;
- position: relative;
- :global {
- .van-radio {
- position: absolute;
- bottom: 10px;
- right: 20px;
- z-index: 9;
- }
- }
- }
- .btnGroup {
- padding: 0 14px;
- padding-bottom: 15px;
- }
- }
- .class-info-tip {
- font-size: 14px;
- color: #999999;
- line-height: 27px;
- padding: 0 12px 12px;
- span {
- color: #ff4e19;
- }
- }
- .photoTip {
- font-size: 14px;
- color: #999999;
- line-height: 27px;
- padding: 5px 0;
- }
|