123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .top-box {
- display: flex;
- flex-direction: column;
- margin: 140rpx 0 0 50rpx;
- height: 170rpx;
- justify-content: space-around;
- }
- .top-box .info-title {
- margin-left: 10rpx;
- font-size: 70rpx;
- font-family: YSfont;
- color: #FFF;
- z-index: 2;
- text-shadow: 1px -1px 0px #c0c0c0, 2px -2px 0px #b0b0b0, 1px -1px 0px #a0a0a0, 2px -2px 0px #909090;
- }
- .top-box .info-subtitle {
- margin-left: 10rpx;
- font-size: 40rpx;
- font-family: YSfont;
- color: #FFF;
- z-index: 2;
- text-shadow: 1px -1px 0px #c0c0c0, 2px -2px 0px #b0b0b0, 1px -1px 0px #a0a0a0, 2px -2px 0px #909090;
- }
- .top-box .data-title {
- font-size: 60rpx;
- font-family: YSfont;
- color: #FFF;
- z-index: 2;
- margin-left: 20rpx;
- }
- .top-box .data-subtitle {
- font-size: 40rpx;
- font-family: YSfont;
- color: #FFF;
- z-index: 2;
- opacity: 0.8;
- margin-left: 20rpx;
- }
- .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 .item-title {
- font-size: 30rpx;
- color: #898b91;
- }
- .week-view .week-item .item-box .item-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 .item-title {
- font-size: 34rpx;
- color: #303133;
- }
- .week-view .week-item-select .item-box .item-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 .item-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #303133;
- }
- .class-list .class-item .item-subtitle {
- font-size: 30rpx;
- font-weight: bold;
- color: #909399;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .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;
- }
|