123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /* pages/growUp/growUp.wxss */
- .container{
- padding: 0;
- margin: 0;
- }
- .grow-list{
- width: 699rpx;
- margin: 0 25rpx;
- border-left: 1rpx solid #ccc;
- }
- .grow-box{
- display: flex;
- margin-bottom: 40rpx;
- }
- .grow-title{
- padding-left: 30rpx;
- }
- .line-index{
- width: 20rpx;
- height: 20rpx;
- background: #005033;
- border-radius: 20rpx;
- position: relative;
- top: 20rpx;
- left: -10rpx;
- }
- .grow-time{
- font-size: 32rpx;
- height: 60rpx;
- line-height: 60rpx;
- }
- .grow-name{
- height: 40rpx;
- line-height: 40rpx;
- }
- .grow-desc{
- font-size: 20rpx;
- background: #eee;
- display: inline-block;
- height: 30rpx;
- line-height: 30rpx;
- color: #666;
- padding: 5rpx 10rpx;
- margin-top: 30rpx;
- }
- .grow-content image,.grow-content video{
- max-width: 400rpx;
- max-height: 300rpx;
- }
- .grow-content{
- margin: 20rpx 0;
- }
- .loading {
- height: 200rpx;
- line-height: 100rpx;
- background: #FFF;
- color: #999;
- text-align: center;
- }
- .img-list,
- .video-list,
- .audio-list {
- display: grid;
- justify-content: space-between;
- grid-template-columns: repeat(auto-fill, 150rpx);
- grid-gap: auto;
- }
- .audio-list {
- display: grid;
- justify-content: space-between;
- grid-template-columns: repeat(auto-fill, 120rpx);
- grid-gap: auto;
- }
- .img-list image,
- .video-list image {
- width: 150rpx;
- height: 150rpx;
- border-radius: 20rpx;
- margin-bottom: 20rpx;
- margin: 10rpx auto;
- border: 0.55rpx #f5f5f5 solid;
- }
- .video-img-view {
- position: relative;
- }
- .videoImg {
- opacity: 0.9;
- }
- .playImg {
- width: 48rpx !important;
- height: 48rpx !important;
- position: absolute;
- z-index: 2;
- left: 50%;
- margin-left: -24rpx !important;
- top: 50%;
- margin-top: -24rpx !important;
- }
- .audio-list image {
- height: 30rpx;
- width: 50rpx;
- border: 1px solid #eee;
- box-shadow: 0 0 20rpx #ccc;
- padding: 10rpx;
- margin-top: 20rpx;
- padding: 0 25rpx;
- border-radius: 10rpx;
- }
- .curAudioStyle {
- box-shadow: 0 0 20rpx #cc6031 !important;
- border: none;
- }
- .toTask {
- width: 400rpx;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- color: #FFF;
- background: #005033;
- border-radius: 50rpx;
- font-size: 32rpx;
- position: fixed;
- bottom: 40rpx;
- left: 50%;
- margin-left: -200rpx;
- }
- .done-title {
- font-size: 32rpx;
- margin-top: 60rpx;
- }
- #play-video{
- position: absolute;
- top: 40rpx;
- left: 100rpx;
- }
|