/*
 * rbz-scroll.css — 荣宝斋画院首页轮播样式（合并版，去掉新浪 http 图片链接）
 * 本文件同时包含：中间焦点大图的布局 + 底部名家图片条 + 两者箭头/圆点的纯 CSS 皮肤。
 * 合入后，页面 body 里那段旧的内联 <style>（.scroll / .ladiesBg / .scroll_num 等）可以整段删除。
 * 所有原先指向 http://*.sinaimg.cn 的箭头/圆点背景图已移除，改用 CSS 绘制。
 */

/* ===== 中间焦点大图：基础布局（原内联 <style> 内容，去掉 http 图片）===== */
.scroll { position:relative; width:960px; height:525px; margin:0 auto 10px auto; overflow:hidden; }
.scroll .scroll_cont { position:relative; }
.scroll .box { float:left; width:960px; height:525px; overflow:hidden; position:relative; }
.scroll .box img { width:960px; height:525px; }
.scroll .box .bg { height:90px; background:#000; opacity:.5; margin-top:-90px; }
.scroll .box .txt { padding-left:20px; width:690px; height:90px; margin-top:-90px; position:relative; }
.scroll .box .txt h3 { height:35px; font-size:18px; line-height:45px; overflow:hidden; }
.scroll .box .txt a { color:#ff718f; }
.scroll .box .txt a:hover { color:#ffa6b9; }
.scroll .box .txt p { color:#dfdfdf; line-height:22px; }

/* 箭头：CSS 绘制，不再用新浪雪碧图 */
.scroll .arr {
  position:absolute; top:220px; width:44px; height:60px; line-height:60px;
  background:rgba(0,0,0,.35); color:#fff; text-align:center;
  border:0; border-radius:4px; cursor:pointer; z-index:6; font-size:0;
  text-decoration:none;
}
.scroll .arr::before { font-size:30px; line-height:60px; font-family:Arial, sans-serif; }
.scroll .arr:hover { background:rgba(0,0,0,.6); text-decoration:none; }
.scroll .arr_left { left:6px; }
.scroll .arr_left::before { content:"\2039"; }   /* ‹ 上一个 */
.scroll .arr_right { right:6px; }
.scroll .arr_right::before { content:"\203A"; }  /* › 下一个 */

/* 小圆点：CSS 绘制，不再用新浪点图 */
.scroll .scroll_num { position:absolute; top:auto; right:16px; bottom:16px; z-index:6; }
.scroll .scroll_num span {
  display:inline-block; width:10px; height:10px; margin-left:8px;
  border-radius:50%; background:rgba(255,255,255,.6); cursor:pointer;
  border:1px solid rgba(0,0,0,.15); box-sizing:border-box;
}
.scroll .scroll_num span.current { background:#d34b37; }

/* ===== 底部名家图片条 ===== */
.mjgzs { position:relative; }
.mjgzs .arrL, .mjgzs .arrR {
  position:absolute; width:40px; height:40px; line-height:38px; top:74px;
  background:rgba(0,0,0,.35); color:#fff; text-align:center;
  border-radius:50%; cursor:pointer; z-index:6; font-size:0;
  border:1px solid rgba(255,255,255,.5); text-decoration:none;
}
.mjgzs .arrL { left:2px; }
.mjgzs .arrL::before { content:"\2039"; font-size:26px; }
.mjgzs .arrR { right:2px; }
.mjgzs .arrR::before { content:"\203A"; font-size:26px; }
.mjgzs .arrL:hover, .mjgzs .arrR:hover { background:rgba(0,0,0,.6); text-decoration:none; }
