123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /* pages/visit-agenda/visit-agenda.wxss */
- .container {
- color: #ffffff;
- padding: 30rpx;
- display: block;
- width: 100%;
- height: 100%;
- background-size: 100% 100%;
- }
- .backBtn {
- width: 60rpx;
- height: 60rpx;
- margin-top: 40rpx;
- }
- .agenda-title {
- font-size: 40rpx;
- width: 95%;
- margin-top: 90rpx;
- margin-left: 10rpx;
- border-bottom: solid 1rpx #ffffff50;
- padding-bottom: 10rpx;
- }
- .english-name {
- font-size: 22rpx;
- color: #ffffff50;
- text-align: left;
- margin-top: 10rpx;
- }
- .agenda-name {
- margin-top: 10rpx;
- line-height: 60rpx;
- font-size: 50rpx;
- color: #2BFFE9;
- border-bottom: solid 1rpx #ffffff50;
- padding-bottom: 10rpx;
- display: inline-flex;
- letter-spacing: 8rpx;
- }
- .now-time {
- margin-top: 30rpx;
- font-size: 22rpx;
- }
- .arrangement-list {
- /* height: 300rpx; */
- margin-top: 60rpx;
- }
- .arrangement-list textarea {
- width: 100%;
- height: 800rpx;
- word-break: break-all;
- }
- .item:nth-child(odd) {
- background-image: var(--bg--);
- color: white;
- height: 120rpx;
- line-height: 120rpx;
- font-size: 28rpx;
- width: 100%;
- margin-top: 20rpx;
- display: inline-flex;
- background-size: 100% 100%;
- }
- .item:nth-child(even) {
- background-color: #07309C;
- color: white;
- height: 120rpx;
- line-height: 120rpx;
- font-size: 28rpx;
- width: 100%;
- margin-top: 20rpx;
- border-radius: 10rpx;
- display: inline-flex;
- background-image: none;
- background-size: 100% 100%;
- }
- .item .time {
- margin-left: 10rpx;
- width: 25%;
- }
- .item .name {
- width: 25%;
- }
- .item .vertical {
- border-left: solid 1rpx #ffffff;
- margin-right: 20rpx;
- height: 80rpx;
- margin-top: 20rpx;
- }
- .item .desc {
- width: 40%;
- line-height: 35rpx;
- height: 70rpx;
- font-size: 22rpx;
- word-wrap: break-all;
- margin-top: 30rpx;
- color: #ffffff60;
- overflow: hidden;
- text-overflow: ellipsis;
- align-items: center;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
|