|
- @import "./element-reset";
- @import "./animation";
- @import "./font";
- @import "./layout";
-
- * {
- margin: 0;
- padding: 0;
- font-family: '微软雅黑';
- box-sizing: border-box;
- }
-
- html,
- body {
- position: relative;
- height: 100%;
- color: #FFFFFF;
- overflow-y: auto;
- }
-
- .page {
- position: relative;
- width: 1920px;
- height: 1080px;
- border: 1px solid red;
-
- .left {
- position: absolute;
- left: 20px;
- top: 100px;
- bottom: 20px;
- }
-
- .right {
- position: absolute;
- right: 20px;
- top: 100px;
- bottom: 20px;
- }
- }
-
- .scrollbar::-webkit-scrollbar {
- width: 0;
- height: 0;
- }
-
- .scrollbar::-webkit-scrollbar-thumb {
- border-radius: 5px;
- background-color: #124394;
- }
-
- .scrollbar::-webkit-scrollbar-track {
- border-radius: 5px;
- background-color: #00286b;
- }
-
- .scrollbar2::-webkit-scrollbar {
- width: 5px;
- }
-
- .scrollbar2::-webkit-scrollbar-thumb {
- border-radius: 5px;
- background-color: #124394;
- }
-
- .scrollbar2::-webkit-scrollbar-track {
- border-radius: 5px;
- background-color: #00286b;
- }
-
- // 省略号
- .ellipsis_1 {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- .full {
- width: 100%;
- height: 100%;
- }
-
- .hover_pointer {
- cursor: pointer;
- }
-
- .border {
- border: 1px solid red;
- }
-
- .screen {
- width: 1920px;
- height: 1080px;
- }
-
- .relative {
- position: relative;
- }
-
- .menu_style {
- border: 1px solid #48B7FF;
- box-sizing: border-box;
- background-color: rgba(6, 24, 24, 0.585);
- border-radius: 4px;
- box-shadow: 0px 0px 13px 0px #48B7FF inset;
- }
|