123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /* 全局公共样式 */
- body,
- html {
- -webkit-user-select: auto;
- user-select: auto;
- }
- /* #ifdef H5 */
- uni-main {
- position: relative;
- background-color: #f5f5f5;
- }
- .uni-mask+.uni-left-window, .uni-mask+.uni-right-window{
- position: fixed;
- }
- .uni-container .uni-forms {
- padding: 15px;
- max-width: 460px;
- }
- /* #endif */
- /* #ifndef H5 */
- .uni-nav-menu {
- height: 100vh;
- }
- /* #endif */
- .pointer {
- cursor: pointer;
- }
- .uni-top-window {
- z-index: 998;
- overflow: visible;
- }
- .uni-tips {
- font-size: 12px;
- color: #666;
- }
- /* 容器 */
- .uni-container {
- padding: 15px;
- box-sizing: border-box;
- }
- /* 标题栏 */
- .uni-header {
- padding: 0 15px;
- display: flex;
- height: 55px;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px #f5f5f5 solid;
- }
- .uni-title {
- margin-right: 10px;
- font-size: 16px;
- font-weight: 500;
- color: #333;
- }
- .uni-sub-title {
- margin-top: 3px;
- font-size: 14px;
- color: #999;
- }
- .uni-link {
- color: #3A8EE6;
- cursor: pointer;
- text-decoration: underline;
- }
- .uni-group {
- display: flex;
- align-items: center;
- justify-content: center;
- word-break: keep-all;
- }
- /* 按钮样式 */
- .uni-button-group {
- margin-top: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .uni-button {
- padding: 10px 20px;
- font-size: 14px;
- border-radius: 4px;
- line-height: 1;
- margin: 0;
- box-sizing: border-box;
- overflow: initial;
- }
- .uni-button+.uni-button {
- margin-left: 10px;
- }
- .uni-button:hover,
- .uni-button:focus {
- opacity: 0.9;
- }
- .uni-button:active {
- opacity: 1;
- }
- .uni-button-full {
- width: 100%;
- }
- /* 搜索框样式 */
- .uni-search {
- height: 30px;
- line-height: 30px;
- font-size: 12px;
- padding: 0 10px;
- border: 1px #eee solid;
- margin-right: 10px;
- border-radius: 5px;
- }
- /* 分页容器 */
- .uni-pagination-box {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- }
- .uni-input-border,
- .uni-textarea-border {
- width: 100%;
- font-size: 14px;
- color: #666;
- border: 1px #e5e5e5 solid;
- border-radius: 5px;
- box-sizing: border-box;
- }
- .uni-input-border {
- padding: 0 10px;
- height: 35px;
- }
- .uni-textarea-border {
- padding: 10px;
- height: 80px;
- }
- .uni-disabled {
- background-color: #F5F7FA;
- color: #C0C4CC;
- }
- .uni-icon-password-eye {
- position: absolute;
- right: 8px;
- top: 6px;
- font-family: uniicons;
- font-size: 20px;
- font-weight: normal;
- font-style: normal;
- width: 24px;
- height: 24px;
- line-height: 24px;
- color: #999999;
- }
- .uni-eye-active {
- color: #007AFF;
- }
- .uni-tabs__header {
- position: relative;
- background-color: #f5f7fa;
- border-bottom: 1px solid #e4e7ed;
- }
- .uni-tabs__nav-wrap {
- overflow: hidden;
- margin-bottom: -1px;
- position: relative;
- }
- .uni-tabs__nav-scroll {
- overflow: hidden;
- }
- .uni-tabs__nav {
- position: relative;
- white-space: nowrap;
- }
- .uni-tabs__item {
- position: relative;
- padding: 0 20px;
- height: 40px;
- box-sizing: border-box;
- line-height: 40px;
- display: inline-block;
- list-style: none;
- font-size: 14px;
- font-weight: 500;
- color: #909399;
- margin-top: -1px;
- margin-left: -1px;
- border: 1px solid transparent;
- cursor: pointer;
- }
- .uni-tabs__item.is-active {
- color: #007aff;
- background-color: #fff;
- border-right-color: #dcdfe6;
- border-left-color: #dcdfe6;
- }
- .uni-form-item-tips {
- color: #999;
- font-size: 12px;
- margin-top: 3px;
- position: absolute;
- }
- .uni-form-item-empty {
- color: #999;
- min-height: 36px;
- line-height: 36px;
- }
|