123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- @import "colorui/main.wxss";
- @import "colorui/icon.wxss";
- @import "static/style/thorui.wxss";
- /**app.wxss**/
- page {
- background: #fafafa;
- font-size: 28rpx;
- /* font-family:PingFang-SC-Medium; */
- }
- .container {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- }
- .phcolor {
- color: #ccc;
- font-size: 32rpx;
- }
- button::after {
- border: none;
- }
- .opcity {
- opacity: 0.5;
- }
- .hover {
- background: #f7f7f9 !important;
- }
- .ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- /*列表统一样式 */
- .list-item {
- position: relative;
- }
- .list-item::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 30rpx;
- }
- .last::after {
- border-bottom: 0 !important;
- }
- /*按钮样式*/
- .btn-primary {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- background: linear-gradient(-90deg, #5677fc, #5c8dff);
- border-radius: 45rpx;
- color: #fff;
- font-size: 36rpx;
- }
- .btn-hover {
- color: #d5d4d9;
- background: linear-gradient(-90deg, #4a67d6, #4e77d9);
- }
- .btn-gray {
- background: #ededed;
- color: #999 !important;
- }
- .btn-gray-hover {
- background: #d5d5d5 !important;
- color: #898989;
- }
- .btn-red {
- background: red;
- color: #fff !important;
- }
- .btn-red-hover {
- background: #f04b4b !important;
- color: #fff;
- }
- .btn-white {
- background: #fff;
- color: #333 !important;
- }
- .tui-white-hover {
- background: #e5e5e5 !important;
- color: #2e2e2e !important;
- }
- .btn-disabled {
- color: #fafbfc !important;
- background: linear-gradient(-90deg, #cad8fb, #c9d3fb);
- }
|