| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- .ccxx_top {
- height: 501rpx;
- position: relative;
- background: linear-gradient(var(--color), #718FEC);
- box-sizing: border-box;
- padding: 123rpx 0 0 23rpx;
- }
- .ccxx_top view {
- font-size: 50rpx;
- color: #FFFFFF;
- line-height: 68rpx;
- }
- .ccxx_top text {
- font-size: 29rpx;
- color: #FFFFFF;
- line-height: 68rpx;
- }
- .ccxx_top image {
- width: 569rpx;
- height: 580rpx;
- position: absolute;
- right: 0;
- bottom: 34rpx;
- }
- .ccxx_mid {
- width: 710rpx;
- background: #ffffff;
- border-radius: 17rpx;
- box-sizing: border-box;
- padding: 25rpx;
- box-shadow: 0 -4rpx 15rpx 0 rgba(0, 0, 0, 0.1);
- margin: -170rpx auto auto auto;
- position: relative;
- z-index: 1;
- }
- .ccxx_mid_item {
- display: flex;
- justify-content: space-between;
- line-height: 50rpx;
- }
- .ccxx_mid_label {
- font-size: 28rpx;
- color: #333333;
- flex: none;
- }
- .ccxx_mid_val {
- width: 60%;
- font-size: 26rpx;
- color: #666666;
- /* flex: auto; */
- text-align: right;
- }
- .ccxx_mid_val text {
- display: block;
- width: 100%;
- text-align: left;
- text-overflow: ellipsis;
- word-wrap: break-word;
- }
- .ccxx_btm {
- width: 710rpx;
- margin: 25rpx auto;
- padding: 20rpx;
- background: #ffffff;
- border-radius: 17rpx;
- box-sizing: border-box;
- }
- .ccxx_btm_tit {
- font-size: 30rpx;
- color: #333333;
- line-height: 50rpx;
- }
- .ccxx_btm_item {
- font-size: 24rpx;
- color: #333333;
- line-height: 36rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .playlog-item {
- display: flex;
- }
- /*时间轴*/
- .playlog-item .dotline {
- width: 35px;
- position: relative;
- }
- /*竖线*/
- .playlog-item .dotline .line {
- width: 1px;
- height: 100%;
- background: #ccc;
- position: absolute;
- top: 15px;
- left: 15px;
- }
- /*圆点*/
- .playlog-item .dotline .dot .dotMin{
- width: 8px;
- height: 8px;
- background: #D8D8D8;
- position: absolute;
- top: 3px;
- left: 4px;
- border-radius: 50%;
- }
- .playlog-item .dotline .dot {
- width: 15px;
- height: 15px;
- background: rgba(216, 216, 216, .5);
- position: absolute;
- top: 10px;
- left: 8px;
- border-radius: 50%;
- }
- .playlog-item .dotline .time {
- width: 100%;
- position: absolute;
- margin-top: 30px;
- z-index: 99;
- font-size: 12px;
- color: #777;
- text-align: center;
- }
- .playlog-item .content {
- width: 100%;
- display: flex;
- flex-direction: column;
- /* margin: 7px 0; */
- margin: 7rpx 0 7rpx 65rpx;
- }
- .playlog-item .content .chapter {
- font-size: 30rpx;
- line-height: 68rpx;
- color: #444;
- white-space: normal;
- padding-right: 10px;
- }
- .playlog-item .content .course {
- font-size: 28rpx;
- line-height: 56rpx;
- color: #999;
- }
- .onAll{
- background: #fff;
- text-align: center;
- padding: 25rpx;
- color: #4F99E8;
- }
|