1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /**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;
- }
|