diff --git a/app/views/cooperates/_partner_item.html.erb b/app/views/cooperates/_partner_item.html.erb
index a094c452..09490e39 100644
--- a/app/views/cooperates/_partner_item.html.erb
+++ b/app/views/cooperates/_partner_item.html.erb
@@ -1,23 +1,25 @@
序号
- 单位名称
- 教师
- 学生
+ 单位名称
+ 教师
+ 学生
课堂
发布实训
实训报告
+ 最新课堂动态时间
使用详情
<% @schools.each_with_index do |school, index| %>
-
<%= index + 1 %>
- <%= school.name %>
- <%= school.teacher_count %>
- <%= school.student_count %>
+ <%= school.name %>
+ <%= school.teacher_count %>
+ <%= school.student_count %>
<%= school.course_count %>
<%= school.shixun_count %>
<%= school.shixun_report_count %>
+ 2019-04-11 时间
<% if school.statistic_url != "" %>
查看
diff --git a/public/stylesheets/educoder/edu-main.css b/public/stylesheets/educoder/edu-main.css
index 9912bd61..dac31425 100644
--- a/public/stylesheets/educoder/edu-main.css
+++ b/public/stylesheets/educoder/edu-main.css
@@ -3,6 +3,22 @@
body{font-size:14px; line-height:2.0;background:#fafafa!important;font-family: "微软雅黑","宋体"; color:#05101a;height: 100%;position: relative;
}
html,body{height:100%;}
+/*滚动条样式*/
+body::-webkit-scrollbar {/*滚动条整体样式*/
+ width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
+ height: 8px;
+}
+body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
+ border-radius: 5px;
+ -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
+ background: #47494d;
+}
+body::-webkit-scrollbar-track {/*滚动条里面轨道*/
+ -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
+ border-radius: 0;
+ background: rgba(0,0,0,0.1);
+}
+
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,span{ margin:0; padding:0;}
table,input,textarea,select,button {outline: none;border-radius: 3px; font-family: "微软雅黑","宋体"; font-size:14px;line-height:1.9;border:1px solid #eaeaea;background: #FFFFff; color:#05101A;}
textarea{resize: none;}