2016-03-15 17:40:31 +08:00
|
|
|
html {
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:12:04 +08:00
|
|
|
body {
|
2016-03-22 19:19:37 +08:00
|
|
|
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",SimSun,sans-serif;
|
2016-03-15 17:40:31 +08:00
|
|
|
line-height: 1.5;
|
|
|
|
color: #666;
|
|
|
|
font-size: 14px;
|
2016-03-08 16:12:04 +08:00
|
|
|
background: #ECECEC;
|
2016-03-15 17:40:31 +08:00
|
|
|
transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
|
|
overflow-x: hidden;
|
2016-03-08 16:12:04 +08:00
|
|
|
}
|
|
|
|
|
2016-03-22 19:19:37 +08:00
|
|
|
a {
|
|
|
|
transition: color .3s ease;
|
|
|
|
}
|
|
|
|
|
2016-02-29 14:08:40 +08:00
|
|
|
.main-wrapper {
|
|
|
|
background: #fff;
|
|
|
|
width: 92%;
|
|
|
|
margin: 0 auto;
|
|
|
|
border-radius: 6px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 24px 0 0;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-container {
|
2016-05-05 16:12:51 +08:00
|
|
|
padding: 0 8% 120px 4%;
|
2016-03-07 14:22:30 +08:00
|
|
|
margin-left: -1px;
|
2016-02-29 14:08:40 +08:00
|
|
|
background: #fff;
|
|
|
|
min-height: 500px;
|
|
|
|
overflow: hidden;
|
2016-03-07 14:22:30 +08:00
|
|
|
border-left: 1px solid #e9e9e9;
|
2016-04-18 13:43:33 +08:00
|
|
|
position: relative;
|
2016-03-01 16:20:32 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 17:13:19 +08:00
|
|
|
.aside-container {
|
2016-03-01 17:42:23 +08:00
|
|
|
padding-bottom: 50px;
|
2016-03-02 12:10:18 +08:00
|
|
|
|
2016-03-22 19:19:37 +08:00
|
|
|
&.ant-menu-inline .ant-menu-submenu-title h4,
|
|
|
|
&.ant-menu-inline > .ant-menu-item,
|
|
|
|
&.ant-menu-inline .ant-menu-item a {
|
2016-03-18 11:24:01 +08:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2016-03-02 12:10:18 +08:00
|
|
|
a[disabled] {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2016-03-01 17:42:23 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 17:13:19 +08:00
|
|
|
.aside-container .chinese {
|
2016-03-01 16:20:32 +08:00
|
|
|
font-size: 12px;
|
|
|
|
margin-left: 6px;
|
|
|
|
font-weight: normal;
|
|
|
|
opacity: .67;
|
2016-03-07 11:35:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.outside-link:after {
|
|
|
|
content: '\E669';
|
|
|
|
font-family: 'anticon';
|
|
|
|
margin-left: 5px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.outside-link.internal {
|
|
|
|
display: none;
|
2016-03-22 19:19:37 +08:00
|
|
|
}
|