123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- @import "~/assets/css/tool.scss";
- // @import "~/assets/css/font/iconfont.css";
- @import "~/assets/bqfl1/iconfont.css";
- @import "~/assets/font/iconfont.css";
- // .mywow {
- // // display: none;
- // transform: translateX(-10000000px);
- // }
- * {
- // padding: 0;
- // margin: 0;
- box-sizing: border-box;
- }
- a {
- text-decoration: none;
- /* 去除默认的下划线 */
- color: inherit;
- /* 去除默认的颜色和点击后变化的颜色 */
- }
- @include responseTo("pc") {
- html,
- body {
- // min-width: 1500px;
- color: var(--color-01);
- font-weight: var(--weight-400);
- font-family: var(--family-01);
- margin: 0;
- }
- .container {
- // padding-top: 170px;
- }
- body {
- max-width: 1920px;
- margin: auto;
- }
- .center1200 {
- width: 1200px !important;
- margin: 0 auto !important;
- }
- .center1440 {
- width: 1440px !important;
- margin: 0 auto !important;
- }
- .center1670 {
- width: 1670px !important;
- margin: 0 auto !important;
- }
- }
- img {
- line-height: 1;
- }
- .one-row {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .bg {
- background-repeat: no-repeat;
- background-position: center center;
- background-size: cover;
- }
- .center-btn {
- width: auto;
- min-width: var(--size-178);
- min-height: var(--size-50);
- background: linear-gradient(-45deg, #2cbac0 0%, #006efe 100%), #006efe;
- border-radius: 4px;
- display: inline-flex;
- justify-content: center;
- align-items: center;
- font-size: var(--size-18);
- font-family: var(--family-01);
- font-weight: var(--weight-400);
- color: #ffffff;
- }
- .btn-01 {
- width: 1px;
- display: inline-flex;
- justify-content: center;
- align-items: center;
- flex-wrap: nowrap;
- min-width: var(--size-178);
- min-height: var(--size-50);
- padding: 0 var(--size-20);
- background: #ffffff;
- border: 1px solid var(--color-04);
- border-radius: var(--size-4);
- font-size: var(--size-18);
- font-family: var(--family-01);
- font-weight: var(--weight-400);
- color: var(--color-04);
- }
- .load {
- position: fixed;
- top: 45%;
- left: 50%;
- // .n-spin-description {
- // color: #b10000;
- // }
- // .n-base-loading__icon {
- // color: #b10000 !important;
- // }
- }
- .n-dropdown-menu.en .n-dropdown-option .n-dropdown-option-body .n-dropdown-option-body__label {
- font-size: 0.85em;
- }
- /** 个人中心共用样式 */
- .personal-center {
- padding: var(--size-220) var(--size-220) var(--size-40) var(--size-220);
- background-color: #f5f5f5;
- .center-component {
- width: 100%;
- min-height: var(--size-220);
- // background-color: #ffffff;
- border-radius: var(--size-16);
- overflow: hidden;
- display: flex;
- background-color: #ffffff;
- .center-component-right {
- flex: 1;
- .component-right-head {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: var(--size-3) solid #f5f5f5;
- padding: var(--size-40) var(--size-30) var(--size-14) var(--size-54);
- .head-title {
- flex: 1;
- color: #1a1a1a;
- margin: 0;
- font-size: var(--size-24);
- font-weight: 700;
- }
- }
- .component-right-body {
- padding: var(--size-40) var(--size-30) var(--size-14) var(--size-54);
- }
- }
- }
- }
- // 表格样式
- .table-style {
- box-sizing: border-box;
- .th-sort {
- display: flex;
- justify-content: center;
- .iconfont {
- color: #ff6a00;
- margin-right: var(--size-4);
- }
- span {
- min-width: var(--size-70);
- }
- }
- th {
- background-color: #fff7f1;
- font-weight: 700;
- font-size: var(--size-16);
- box-sizing: border-box;
- }
- td,
- th {
- text-align: center;
- word-wrap: break-word;
- /* 或者使用 overflow-wrap: break-word; */
- white-space: normal;
- /* 默认值,允许文本换行 */
- }
- tr:nth-of-type(even) td {
- background-color: #f7f7f7 !important;
- }
- .highlight {
- display: block;
- color: #0090ff;
- cursor: pointer;
- }
- .highlight.ver {
- color: #06a71b;
- margin-top: var(--size-10);
- }
- }
- // 表格分页样式
- .table-pagination {
- display: flex;
- justify-content: center;
- margin-top: var(--size-50);
- padding-bottom: var(--size-20);
- }
|