index.scss 3.03 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
xuzhenghua committed
2
.preferential {
2  
xuzhenghua committed
3
  padding-top: 88px;
zhanghaozhe committed
4
  .preferential {
2  
xuzhenghua committed
5 6 7 8 9 10 11 12 13
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    z-index: 10;
    padding-top: 0;
  }

zhanghaozhe committed
14
  .custom-tab-bar {
2  
xuzhenghua committed
15 16 17 18 19 20 21 22
    width: 100%;
    position: fixed;
    top: 43px;
    left: 0;
    padding: 15px 0 15px 11px;
    z-index: 10;
    background: #fff;
  }
xuzhenghua committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  .class-content {
    padding: 0 12px;
    position: relative;
    margin-top: 15px;

    .v-list-item {
      padding: 10px 0 0;

      .content {
        border: none;

        .cover {
          flex: inherit;
          width: 42.2%;

          img {
            width: 100%;
xuzhenghua committed
40
            height: 100%;
xuzhenghua committed
41 42 43 44 45
          }

          .course-status {
            background-color: rgba(224, 46, 36, 0.6);
          }
xuzhenghua committed
46 47 48 49 50 51 52 53 54
          .return_cash {
            position: absolute;
            width: 31px;
            height: 18px;
            top: 0;
            right: 0;
            background: url("./image/return.icon.png") no-repeat;
            background-size: 100% 100%;
          }
xuzhenghua committed
55 56 57 58 59 60 61 62 63 64
        }
      }

      .info {
        width: 52.3%;
        position: relative;
        display: block;

        .title {
          font-size: 16px;
xuzhenghua committed
65
          color: $color_525B65;
xuzhenghua committed
66 67 68 69
        }

        .contact {
          font-size: 14px;
xuzhenghua committed
70
          color: #777;
xuzhenghua committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
          margin-top: 14px;
        }

        .des {
          position: absolute;
          bottom: 0;

          .course-price {
            .price {
              color: $red;
              font-size: 12px;
            }

            .new {
              color: $red;
              font-size: 16px;
            }

            .old {
              color: $color_999;
              font-size: 12px;
              display: inline-block;
              margin-left: 15px;
              text-decoration: line-through;
            }
          }

          .isbuy {
            display: inline-block;
            width: 61px;
            height: 18px;
            background-color: $bg_active;
            border-radius: 9px;
            color: $white;
            font-size: 12px;
            text-align: center;
            line-height: 18px;
          }
        }
      }
    }

    .tabs {
      display: flex;
      margin-top: 5px;
      margin-bottom: 50px;
xuzhenghua committed
117 118 119
      ul {
        width: 100%;
      }
xuzhenghua committed
120 121 122 123 124 125
    }

    .am-tabs-default-bar-tab {
      width: 82px !important;
      height: 24px;
      color: $bg_active;
zhanghaozhe committed
126
      border: 1px solid $bg_active !important;
xuzhenghua committed
127 128 129 130 131
      border-radius: 12px;
      margin-right: 20px;
      font-size: 12px;
    }
    .am-tabs-default-bar-tab-active {
zhanghaozhe committed
132
      background: linear-gradient(90deg, $bg_active 0%, #5077f3 100%);
xuzhenghua committed
133
      color: $white;
zhanghaozhe committed
134
      border: none !important;
xuzhenghua committed
135 136 137 138 139 140 141 142 143
    }
    .am-tabs-default-bar-underline {
      display: none;
    }

    .am-whitespace.am-whitespace-md {
      height: 0 !important;
    }
    .am-tabs-default-bar-top .am-tabs-default-bar-tab::after {
zhanghaozhe committed
144
      background-color: rgba(0, 0, 0, 0);
xuzhenghua committed
145 146
    }
  }
xuzhenghua committed
147

zhanghaozhe committed
148
  .notdata {
xuzhenghua committed
149 150 151 152 153 154
    width: 100%;
    text-align: center;
    margin-top: 100px;
    color: #666;
    font-size: 14px;
  }
xuzhenghua committed
155
}