@charset "UTF-8";
/**
 * @file photos.scss
 * @public
 * @overview
 * 相片列表页样式
 */
/**
 * @file _variable.scss
 * @private
 * @overview
 * colors
 */
/**
 * @file _mixins.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _mixins/animation.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _mixins/transition.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _functions.scss
 * @private
 * @overview
 *
 */
/**
 * @file framework/mixins/transform.scss
 * @private
 * @overview
 *
 */
/**
 * @file _extends.scss
 * @private
 * @overview
 * @warn 这个模块必须在具有生成css目标文件的scss的中引入，而不要在私有scss文件中引入，否则会生成大量重复样式
 *
 */
/**
 * @file _mixins.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _mixins/animation.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _mixins/transition.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _functions.scss
 * @private
 * @overview
 *
 */
/**
 * @file framework/mixins/transform.scss
 * @private
 * @overview
 *
 */
.photo-capsule > em, .uploadpanel {
  -webkit-transition: all ease-in-out 0.15s;
  -moz-transition: all ease-in-out 0.15s;
  -ms-transition: all ease-in-out 0.15s;
  -o-transition: all ease-in-out 0.15s; }

/**
 * @file components/_photo.scss
 * @private
 * @overview 相片相关的组件样式
 *
 */
/**
 * @file _variable.scss
 * @private
 * @overview
 * colors
 */
/**
 * @file _mixins.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _mixins/animation.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _mixins/transition.scss
 * @private
 * @overview
 *
 */
/**
 * 中文14px的字体对应24px的行高比较和谐，行高尽量不要是奇数
 */
/**
 * @file _functions.scss
 * @private
 * @overview
 *
 */
/**
 * @file framework/mixins/transform.scss
 * @private
 * @overview
 *
 */
.photo-capsule {
  position: relative;
  display: block;
  width: 180px;
  height: 120px;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3); }
  .photo-capsule > img {
    width: 100%;
    height: 100%; }
  .photo-capsule > em {
    position: absolute;
    bottom: -24px;
    width: 100%;
    padding-left: 10px;
    color: #fff;
    -webkit-transition-property: bottom;
    -moz-transition-property: bottom;
    -ms-transition-property: bottom;
    -o-transition-property: bottom; }
    .photo-capsule > em > .blk-shimming {
      background: #000;
      opacity: 0.5;
      filter: alpha(opacity=50); }
  .photo-capsule > span {
    position: absolute;
    right: -30px;
    top: 0;
    width: 30px; }
    .photo-capsule > span > span {
      display: block; }
  .photo-capsule:hover {
    box-shadow: 2px 2px 4px #ccc; }
    .photo-capsule:hover em {
      bottom: 0; }
    .photo-capsule:hover span {
      right: 0; }

.uploadpanel {
  overflow: hidden;
  height: 0;
  background: #fff;
  -webkit-box-shadow: inset 0px 11px 8px -10px #CCC, inset 0px -11px 8px -10px #CCC;
  -moz-box-shadow: inset 0px 11px 8px -10px #CCC, inset 0px -11px 8px -10px #CCC;
  box-shadow: inset 0px 11px 8px -10px #CCC, inset 0px -11px 8px -10px #CCC;
  -webkit-transition-property: height;
  -moz-transition-property: height;
  -ms-transition-property: height;
  -o-transition-property: height; }

.uploadpanel-pending {
  position: relative;
  height: 100%; }
  .uploadpanel-pending > .button {
    position: absolute;
    left: 50%;
    top: 40%;
    margin-left: -74px; }

.uploadpanel-ready {
  height: 100%;
  padding: 20px; }
  .uploadpanel-ready .photo-item {
    position: relative;
    width: 90px;
    height: 60px;
    background: #ddd;
    margin-bottom: 13px;
    margin-left: 13px;
    overflow: hidden; }
    .uploadpanel-ready .photo-item img {
      width: 100%;
      height: 100%; }
    .uploadpanel-ready .photo-item .mask {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      line-height: 60px;
      text-align: center;
      color: #fff;
      background: #000;
      background: rgba(0, 0, 0, 0.5);
      filter: alpha(opacity=50); }

#upload-statusbar {
  text-align: left;
  padding-top: 10px; }

#photo-container {
  height: 218px;
  overflow: auto; }

.W-keyword-filter {
  margin: 0 20px 0 0;
  padding: 0;
  float: right; }

.tab-filter {
  float: left;
  font-size: 24px; }
  .tab-filter .tab {
    padding: 0 20px 6px 20px;
    margin-right: 0;
    height: 55px; }

#doc-main .collection-photo {
  margin-top: 20px;
  margin-left: -10px; }
  #doc-main .collection-photo > .photo-capsule {
    margin-left: 10px;
    margin-bottom: 10px; }

#waterfall {
  position: relative;
  margin: 20px 0; }
  #waterfall > a {
    display: none;
    position: absolute;
    width: 180px;
    animation: fadeInUp 0.6s;
    -webkit-animation: fadeInUp 0.6s;
    -moz-animation: fadeInUp 0.6s;
    -ms-animation: fadeInUp 0.6s;
    -o-animation: fadeInUp 0.6s; }

.result-indicator {
  margin-top: 30px; }

/*# sourceMappingURL=photos.css.map */
