1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* pages/index/event/detail/index.wxss */
- /* pages/index/event/index.wxss */
- .content {
- margin-bottom: 10px;
- }
- .title {
- font-weight: 900;
- padding: 5px;
- margin: 5px;
- position: relative;
- }
- .time,
- .address {
- font-size: 12px;
- padding: 5px;
- margin: 5px;
- color: var(--weui-FG-1);
- }
- .address {
- border-top: 1px solid var(--weui-FG-3);
- border-bottom: 1px solid var(--weui-FG-3);
- }
- .blueText {
- color: cornflowerblue;
- font-size: 12px;
- }
- .slide-image {
- width: 100%;
- }
- .content_tip1,
- .content_tip2 {
- font-weight: 500;
- padding: 0 10px;
- position: absolute;
- border-radius: 20px;
- color: #fff;
- right: 0;
- top: -30px;
- z-index: 99;
- }
- .content_tip1 {
- background-color: #179415;
- }
- .content_tip2 {
- background-color: gray;
- }
- .eventSign1,.eventSign2 {
- padding: 10px;
- text-align: center;
- color: #fff;
- border-radius: 20px;
- }
- .eventSign1{
- background-color: #179415;
- }
- .eventSign2{
- background-color: gray;
- }
- [weui-modal-show=false] .weui-half-screen-dialog {
- -webkit-transition: -webkit-transform .3s;
- transition: -webkit-transform .3s;
- transition: transform .3s;
- transition: transform .3s, -webkit-transform .3s;
- -webkit-transform: translateY(100%);
- transform: translateY(100%)
- }
|