|
@@ -0,0 +1,123 @@
|
|
|
+.school-container {
|
|
|
+ display: flex;
|
|
|
+ height: 100%;
|
|
|
+ font-family: 'NotoSerif', '微软正黑体', 'Microsoft JhengHei UI', 'Microsoft JhengHei', Sans-serif;
|
|
|
+}
|
|
|
+.school-container .school-container-header {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-right: 20px;
|
|
|
+ color: #949494;
|
|
|
+}
|
|
|
+.school-container-left {
|
|
|
+ width: 28%;
|
|
|
+ height: 100%;
|
|
|
+ border-right: 1px solid #424242;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap {
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ padding-left: 10px;
|
|
|
+ padding-bottom: 50px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ padding: 10px;
|
|
|
+ border-bottom: 1px solid #424242;
|
|
|
+ display: flex;
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-name {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 300;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-status {
|
|
|
+ font-size: 12px;
|
|
|
+ background: #1CC0F3;
|
|
|
+ padding: 2px 8px;
|
|
|
+ margin-left: 10px;
|
|
|
+ border-radius: 2px;
|
|
|
+ font-weight: 200;
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-code {
|
|
|
+ margin: 5px 0;
|
|
|
+ color: #a5a5a5;
|
|
|
+ letter-spacing: 0.6px;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-nums {
|
|
|
+ color: #1CC0F3;
|
|
|
+ margin-top: 5px;
|
|
|
+ font-size: 12px;
|
|
|
+ margin-left: 20px;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-nums .ivu-icon {
|
|
|
+ font-size: 18px;
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-role {
|
|
|
+ position: absolute;
|
|
|
+ right: 20px;
|
|
|
+ top: 20px;
|
|
|
+ color: #a5a5a5;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-btn {
|
|
|
+ position: absolute;
|
|
|
+ right: 20px;
|
|
|
+ bottom: 20px;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ border-radius: 5px;
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item-btn .ivu-icon {
|
|
|
+ font-size: 16px;
|
|
|
+ margin-right: 2px;
|
|
|
+ color: #DDDDDD;
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item:hover {
|
|
|
+ background-image: -webkit-linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+ background-image: -o-linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+ background-image: -moz-linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+ background-image: linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+}
|
|
|
+.school-container-left .school-list-wrap .list-wrap .school-item:hover .school-item-btn {
|
|
|
+ visibility: visible;
|
|
|
+}
|
|
|
+.school-container .schoolmgmt-container-right {
|
|
|
+ flex: 1;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.school-container .schoolmgmt-container-right .school-container-header {
|
|
|
+ width: 100%;
|
|
|
+ height: 40px;
|
|
|
+ border-bottom: 1px solid #424242;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0 20px;
|
|
|
+}
|
|
|
+.school-container-header {
|
|
|
+ width: 100%;
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ padding-left: 20px;
|
|
|
+ color: #a5a5a5;
|
|
|
+ border-bottom: 1px solid #424242;
|
|
|
+}
|
|
|
+.school-container .item-active {
|
|
|
+ background-image: -webkit-linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+ background-image: -o-linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+ background-image: -moz-linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+ background-image: linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(110, 110, 110, 0.2) 50%, rgba(110, 110, 110, 0.4) 100%);
|
|
|
+}
|