courselist.scss 3.87 KB
Newer Older
xuzhenghua committed
1
.class-child {
xuzhenghua committed
2

xuzhenghua committed
3 4 5
  .class-content {
    padding: 0 12px;
    position: relative;
xuzhenghua committed
6

xuzhenghua committed
7 8 9 10 11
    .v-list-item {
      padding: 10px 0 0;

      .content {
        border: none;
xuzhenghua committed
12

xuzhenghua committed
13 14 15
        .cover {
          flex: inherit;
          width: 42.2%;
xuzhenghua committed
16

xuzhenghua committed
17 18
          img {
            width: 100%;
xuzhenghua committed
19 20
          }

xuzhenghua committed
21 22 23
          .course-status {
            background-color: rgba(224, 46, 36, 0.6);

xuzhenghua committed
24 25
          }
        }
xuzhenghua committed
26 27 28 29 30 31
      }

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

xuzhenghua committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        .title {
          font-size: 16px;
          color: $color_333;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }

        .contact {
          font-size: 14px;
          color: $color_666;
          margin-top: 14px;
        }

        .des {
          position: absolute;
          bottom: 0;

          .course-price {
            .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;
          }
xuzhenghua committed
77 78 79 80
        }
      }
    }

xuzhenghua committed
81 82 83 84
    .tabs {
      display: flex;
      margin-top: 10px;
      margin-bottom: 50px;
xuzhenghua committed
85 86 87
      ul {
        width: 100%;
      }
xuzhenghua committed
88
    }
xuzhenghua committed
89

xuzhenghua committed
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 117 118 119
    .pull-down {
      width: 32px;
      position: absolute;
      top: 4px;
      right: 0;
      z-index: 2;
      background-color: $bg_fff;
      color: $color_666;
    }
    .am-tabs-tab-bar-wrap {
      padding-right: 20px;
    }

    .am-tabs-default-bar-tab {
      width: auto !important;
      margin-right: 20px;
    }

    .am-tabs-default-bar-tab-active {
      color: $active;
      border-bottom: 2px solid $active !important;
    }

    .am-tabs-default-bar-underline {
      display: none;
    }

    .am-whitespace.am-whitespace-md {
      height: 0 !important;
    }
xuzhenghua committed
120
  }
xuzhenghua committed
121

xuzhenghua committed
122 123 124
  .mbc-box {
    position: fixed;
    left: 0;
xuzhenghua committed
125
    top: 88px;
xuzhenghua committed
126 127
    right: 0;
    bottom: 0;
xuzhenghua committed
128 129
    background-color: rgba(0, 0, 0, .6);

xuzhenghua committed
130 131 132 133 134 135 136
    .tabcontent {
      width: 100%;
      height: 303px;
      overflow: auto;
      background-color: $bg_fff;
      border-top: 1px solid $sp_ddd;
      padding-bottom: 30px;
xuzhenghua committed
137

xuzhenghua committed
138 139 140 141 142 143
      .class-course {
        width: 100%;
        margin-top: 20px;
        padding: 0 15px;

        .course-items-title {
xuzhenghua committed
144
          font-size: 14px;
xuzhenghua committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
          color: $color_333;

        }

        .items-box {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;

          .item-banner {
            display: inline-block;
            width: 30.5%;
            height: 76px;
            margin-top: 10px;

            img {
              width: 100%;
              height: 100%;
              border-radius: 3px;
            }
          }

          .item-label {
            display: inline-block;
            width: 30.5%;
            height: 30px;
            line-height: 30px;
            text-align: center;
            background-color: $bg_f4f4f4;
            border-radius: 15px;
            margin-top: 15px;
            margin-bottom: -5px;
          }
xuzhenghua committed
178 179 180 181 182 183 184 185 186 187 188 189
          .active-label {
            display: inline-block;
            width: 30.5%;
            height: 30px;
            line-height: 30px;
            text-align: center;
            background-color: $bg_active;
            border-radius: 15px;
            margin-top: 15px;
            margin-bottom: -5px;
            color: $white;
          }
xuzhenghua committed
190 191 192 193 194
        }

      }
    }
  }
xuzhenghua committed
195 196 197
  .am-tabs-default-bar-top .am-tabs-default-bar-tab::after {
    background-color: $bg_fff!important;
  }
xuzhenghua committed
198
}
xuzhenghua committed
199