123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- .week_view {
- white-space: nowrap;
- }
- .week_view .week_item {
- display: inline-block;
- vertical-align: top;
- height: 140rpx;
- width: 120rpx;
- margin: 20rpx;
- padding: 20rpx;
- border-radius: 12rpx;
- background-color: #FFF;
- }
- .week_view .week_item .item_box {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- }
- .week_view .week_item .item_box ._title {
- font-size: 30rpx;
- color: #898b91;
- }
- .week_view .week_item .item_box ._day {
- font-size: 40rpx;
- font-weight: bold;
- color: #505155;
- }
- .week_view .week_item_select {
- display: inline-block;
- vertical-align: top;
- height: 160rpx;
- width: 140rpx;
- margin: 20rpx;
- padding: 20rpx;
- border-radius: 12rpx;
- background-color: #FFF;
- border: 3px solid #303133;
- }
- .week_view .week_item_select .item_box {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- }
- .week_view .week_item_select .item_box .tag_fill {
- border-radius: 6rpx;
- background-color: #303133;
- padding: 5rpx 20rpx;
- }
- .week_view .week_item_select .item_box .tag_fill .tag_text {
- font-size: 28rpx;
- color: #FFF;
- }
- .week_view .week_item_select .item_box ._title {
- font-size: 34rpx;
- color: #303133;
- }
- .week_view .week_item_select .item_box ._day {
- font-size: 50rpx;
- font-weight: bold;
- color: #303133;
- }
- .class_list {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin: 0 30rpx 20rpx 30rpx;
- }
- .class_list .class_item {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin: 10rpx 0;
- padding: 10rpx 0;
- height: 100rpx;
- border-bottom: 4rpx solid #f3f4f9;
- border-top: 4rpx solid #f3f4f9;
- border-image: linear-gradient(to right, #FFF, #d5d5d5) 1;
- }
- .class_list .class_item_title {
- font-size: 32rpx;
- font-weight: bold;
- color: #303133;
- }
- .class_list .class_item_subtitle {
- font-size: 30rpx;
- font-weight: bold;
- color: #909399;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .class_list .class_item_detail {
- margin-left: 40rpx;
- line-height: 30rpx;
- font-size: 26rpx;
- font-weight: bold;
- color: #909399;
- }
- .flex_cloumn {
- margin: 140rpx 0 0 50rpx;
- height: 170rpx;
- justify-content: space-around;
- }
- .flex_cloumn .content_title {
- font-size: 35rpx;
- font-weight: bold;
- -webkit-transform: skew(-10deg);
- transform: skew(-10deg);
- color: #FFF;
- z-index: 2;
- text-shadow: 1px -1px 0px #c0c0c0, 2px -2px 0px #b0b0b0, 1px -1px 0px #a0a0a0, 2px -2px 0px #909090;
- }
- .flex_cloumn .content_subtitle {
- font-size: 35rpx;
- color: #FFF;
- z-index: 2;
- }
- .image_box {
- display: flex;
- flex-direction: column;
- height: 100%;
- align-items: center;
- margin-bottom: 70rpx;
- }
- .detail_image1 {
- width: 500rpx;
- height: 600rpx;
- background-size: 100%;
- background-repeat: no-repeat;
- z-index: 51;
- }
|