123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /* pages/conference/conference.wxss */
- page{
- background: #fff;
- padding-bottom: 30rpx;
- }
- .banner{
- width: 100%;
- height: 300rpx;
- border-radius: 18rpx;
- }
- .name{
- font-size: 36rpx;
- margin-top: 20rpx;
- color: #333;
- margin-bottom: 30rpx;
- font-weight: 500;
- }
- .info text{
- color: #666;
- display: block;
- margin-bottom: 20rpx;
- }
- .title{
- font-size: 36rpx;
- color: #000;
- margin-bottom: 20rpx;
- font-weight: 500;
- }
- .content{
- color: #666;
- line-height: 52rpx;
- margin-bottom: 20rpx;
- font-size: 32rpx;
- }
- .post{
- width: 100% !important;
- background: #0580D3;
- color: #fff;
- display: block;
- font-size: 34rpx;
- height: 90rpx;
- line-height: 90rpx;
- padding: 0;
- border-radius: 18rpx;
- margin: 30rpx 0;
- }
- .bg{
- position: fixed;
- width: 100%;
- height: 100vh;
- top: 0;
- left: 0;
- z-index: 99;
- background: rgba(0,0,0,.5);
- padding: 50rpx 0;
- overflow: auto;
- }
- .form{
- background: #fff;
- border-radius: 18rpx;
- padding: 50rpx 60rpx;
- display: block;
- position: relative;
- width: 90%;
- margin: auto;
- }
- .form_tt{
- text-align: center;
- color: #333;
- font-size: 30rpx;
- margin-bottom: 50rpx;
- }
- .item{
- background: #F7F7F7;
- height: 72rpx;
- border-radius: 10rpx;
- position: relative;
- display: flex;
- margin-bottom: 18rpx;
- padding: 0 20rpx;
- }
- .item label{
- line-height: 72rpx;
- color: #999;
- width: 32%;
- }
- .item input{
- width: 63%;
- height: 72rpx;
- }
- .item picker{
- width: 63%;
- }
- .form .ts{
- display: block;
- text-align: center;
- color: #999;
- font-size: 22rpx;
- line-height: 50rpx;
- }
- .close{
- width: 50rpx;
- position: absolute;
- top: 20rpx;
- right: 20rpx;
- }
- .code{
- position: absolute;
- color: #1682DA;
- font-size: 22rpx;
- right: 24rpx;
- top: 0;
- line-height: 72rpx;
- z-index: 99;
- }
- .picker{
- line-height: 72rpx;
- }
- .list{
- /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
- /* border-radius: 20rpx; */
- display: flex;
- /* padding: 20rpx; */
- /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
- /* margin: 0 20rpx 40rpx; */
- border-bottom: 1px solid #F0F0F0;
- padding: 28rpx 0;
-
- }
- .list image{
- width: 20%;
- /* height: 50px; */
- }
- .list>view{
- width: 80%;
- vertical-align: middle;
- padding-left: 20rpx;
- }
- .list .tt{
- margin-bottom: 20rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 28rpx;
- }
- .list text{
- color: #999;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- white-space: normal;
- font-size: 26rpx;
- }
|