123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**app.wxss**/
- @import "/static/iconfont/iconfont.wxss";
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 50rpx;
- box-sizing: border-box;
- }
- .appscrollarea {
- flex: 1;
- overflow-y: hidden;
- height: 100vh;
- box-sizing: border-box;
- }
- .padding_50{
- padding:50rpx;
- }
- page {
- --themeColor: #316192;
- /* --themeColor:#3f395c */
- }
- button[type=primary]{
- background-color: var(--themeColor);
- }
- .loadData{
- width: 100%;
- color: #969799;
- background-color: #f7f8fa;
- text-align: center;
- line-height:100rpx;
- }
- .headTitle{
- background-color: var(--themeColor);
- text-align: center;
- line-height: 80rpx;
- color: #ffffff;
- font-weight: bolder;
- border-radius: 10rpx;
- }
- .form_dropdown{
- height: 50rpx !important;
- box-shadow:none !important;
- }
- .form_dropdown>.van-dropdown-menu__item{
- justify-content:flex-start !important;
- }
- .form_radio{
- display: flex;
- justify-content: space-around;
- align-items: center;
- flex-direction: row;
- }
- .label{
- font-size: 35rpx;
- }
- .text{
- font-size: 14px;
- }
- .link{
- color: #4695e5;
- }
- .ellipsis .wux-ellipsis__expanded{
- color: red !important;
- }
- .ellipsis .wux-ellipsis__collapsed{
- color: red !important;
- }
|