123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- @import './atom.scss';
- //@import './element-ui.scss';
- html {
- box-sizing: border-box;
- background: #fff;
- }
- body {
- margin: 0;
- color: #333;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- a:focus,
- a:active {
- outline: none;
- }
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- ::-webkit-scrollbar {
- margin-right: -3px;
- width: 4px;
- height: 4px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 3px;
- background-color: #c3c3c3;
- }
- .page-container {
- box-sizing: border-box;
- margin: 5px;
- padding: 10px;
- background-color: #fff;
- }
- /*顶部标题*/
- .nav{padding: 30px 0 20px;}
- .container{
- //max-width: 1200px;
- margin: 0 auto;
- padding: 80px 0 50px 0;
- .title{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- line-height: 1em;
- padding-bottom: 30px;
- font-size: 20px;
- }
- }
- ul,li{list-style: none;margin: 0;}
- .page{
- margin-top: 140px;
- background-color: #f2f2f2;
- .top-title{
- background-color: #fff;
- padding: 30px 0;
- .top-container{
- //max-width: 1200px;
- margin: 0 auto;
- >span{
- font-size: 20px;
- vertical-align: middle;
- padding-left: 10px;
- }
- }
- }
- }
- .page-nav-container{
- //max-width: 1200px;
- margin: 0 auto;
- .nav-txt .n-breadcrumb{
- height: 70px;
- line-height: 70px;
- }
- }
- .pt-20{padding-left: 1.25em;}
- //spin
- .load{
- position:fixed;
- top: 45%;
- left: 50%;
- .n-spin-description{
- color: #18a058;
- }
- }
|