1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- @import "~/static/css/tool.scss";
- * {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- a {
- text-decoration: none;
- /* 去除默认的下划线 */
- color: inherit;
- /* 去除默认的颜色和点击后变化的颜色 */
- }
- @include responseTo("tv") {
- html,
- body {
- min-width: 1500px;
- color: var(--color-01);
- font-weight: var(--weight-400);
- font-family: var(--family-01);
- }
- .center1200 {
- width: 1200px !important;
- margin: 0 auto !important;
- }
- .center1440 {
- width: 1440px !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: 174px;
- min-height: 50px;
- background: linear-gradient(-45deg, #2cbac0 0%, #006efe 100%), #006efe;
- border-radius: 4px;
- display: inline-flex;
- justify-content: center;
- align-items: center;
- font-size: 18px;
- 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: 174px;
- min-height: 50px;
- 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);
- }
|