@charset "UTF-8";
/*! Hint.css - v2.4.1 - 2016-11-08
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour */
/*-------------------------------------*	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*="hint--"] {
  position: relative;
  display: inline-block;
  /**
       * tooltip arrow
       */
  /**
       * tooltip body
       */ }

[class*="hint--"]:before, [class*="hint--"]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  transition-delay: 0ms; }

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
  visibility: visible;
  opacity: 1; }

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  transition-delay: 100ms; }

[class*="hint--"]:before {
  content: '';
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001; }

[class*="hint--"]:after {
  background: #383838;
  color: white;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  white-space: nowrap; }

[class*="hint--"][aria-label]:after {
  content: attr(aria-label); }

[class*="hint--"][data-hint]:after {
  content: attr(data-hint); }

[aria-label='']:before, [aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: #383838; }

.hint--top-right:before {
  border-top-color: #383838; }

.hint--top:before {
  border-top-color: #383838; }

.hint--bottom-left:before {
  border-bottom-color: #383838; }

.hint--bottom-right:before {
  border-bottom-color: #383838; }

.hint--bottom:before {
  border-bottom-color: #383838; }

.hint--left:before {
  border-left-color: #383838; }

.hint--right:before {
  border-right-color: #383838; }

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px; }

.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }

.hint--top:before {
  left: calc(50% - 6px); }

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--top:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px; }

.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%; }

.hint--bottom:before {
  left: calc(50% - 6px); }

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--bottom:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px; }

.hint--right:after {
  margin-bottom: -14px; }

.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%; }

.hint--right:hover:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--right:hover:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px; }

.hint--left:after {
  margin-bottom: -14px; }

.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%; }

.hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--left:hover:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px; }

.hint--top-left:before, .hint--top-left:after {
  bottom: 100%;
  left: 50%; }

.hint--top-left:before {
  left: calc(50% - 6px); }

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

.hint--top-left:after {
  margin-left: 12px; }

.hint--top-left:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px; }

.hint--top-right:before, .hint--top-right:after {
  bottom: 100%;
  left: 50%; }

.hint--top-right:before {
  left: calc(50% - 6px); }

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.hint--top-right:after {
  margin-left: -12px; }

.hint--top-right:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-right:hover:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px; }

.hint--bottom-left:before, .hint--bottom-left:after {
  top: 100%;
  left: 50%; }

.hint--bottom-left:before {
  left: calc(50% - 6px); }

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

.hint--bottom-left:after {
  margin-left: 12px; }

.hint--bottom-left:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px; }

.hint--bottom-right:before, .hint--bottom-right:after {
  top: 100%;
  left: 50%; }

.hint--bottom-right:before {
  left: calc(50% - 6px); }

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.hint--bottom-right:after {
  margin-left: -12px; }

.hint--bottom-right:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-right:hover:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word; }

.hint--small:after {
  width: 80px; }

.hint--medium:after {
  width: 150px; }

.hint--large:after {
  width: 300px; }

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*="hint--"] {
  /**
       * tooltip body
       */ }

[class*="hint--"]:after {
  text-shadow: 0 -1px 0px black;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); }

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726; }

.hint--error.hint--top-left:before {
  border-top-color: #b34e4d; }

.hint--error.hint--top-right:before {
  border-top-color: #b34e4d; }

.hint--error.hint--top:before {
  border-top-color: #b34e4d; }

.hint--error.hint--bottom-left:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--bottom-right:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--left:before {
  border-left-color: #b34e4d; }

.hint--error.hint--right:before {
  border-right-color: #b34e4d; }

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328; }

.hint--warning.hint--top-left:before {
  border-top-color: #c09854; }

.hint--warning.hint--top-right:before {
  border-top-color: #c09854; }

.hint--warning.hint--top:before {
  border-top-color: #c09854; }

.hint--warning.hint--bottom-left:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--bottom-right:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--left:before {
  border-left-color: #c09854; }

.hint--warning.hint--right:before {
  border-right-color: #c09854; }

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #1a3c4d; }

.hint--info.hint--top-left:before {
  border-top-color: #3986ac; }

.hint--info.hint--top-right:before {
  border-top-color: #3986ac; }

.hint--info.hint--top:before {
  border-top-color: #3986ac; }

.hint--info.hint--bottom-left:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--bottom-right:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--left:before {
  border-left-color: #3986ac; }

.hint--info.hint--right:before {
  border-right-color: #3986ac; }

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a; }

.hint--success.hint--top-left:before {
  border-top-color: #458746; }

.hint--success.hint--top-right:before {
  border-top-color: #458746; }

.hint--success.hint--top:before {
  border-top-color: #458746; }

.hint--success.hint--bottom-left:before {
  border-bottom-color: #458746; }

.hint--success.hint--bottom-right:before {
  border-bottom-color: #458746; }

.hint--success.hint--bottom:before {
  border-bottom-color: #458746; }

.hint--success.hint--left:before {
  border-left-color: #458746; }

.hint--success.hint--right:before {
  border-right-color: #458746; }

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }

.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

.hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-right:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

.hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-right:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--left:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--always.hint--right:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px; }

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms; }

.hint--bounce:before, .hint--bounce:after {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }

@-webkit-keyframes heart_animation {
  0% {
    opacity: 0;
    -webkit-transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -webkit-transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    opacity: 0.5;
    -webkit-transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -webkit-transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -webkit-transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -webkit-transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -webkit-transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    opacity: 1;
    -webkit-transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -webkit-transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -webkit-transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -webkit-transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -webkit-transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -webkit-transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }

@-moz-keyframes heart_animation {
  0% {
    opacity: 0;
    -moz-transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -moz-transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    opacity: 0.5;
    -moz-transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -moz-transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -moz-transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -moz-transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -moz-transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    opacity: 1;
    -moz-transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -moz-transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -moz-transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -moz-transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -moz-transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -moz-transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -moz-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }

@keyframes heart_animation {
  0% {
    opacity: 0;
    -webkit-transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% {
    -webkit-transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.585, 0, 0, 0, 0, 0.585, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% {
    opacity: 0.5;
    -webkit-transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.925, 0, 0, 0, 0, 0.925, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% {
    -webkit-transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.158, 0, 0, 0, 0, 1.158, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% {
    -webkit-transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.233, 0, 0, 0, 0, 1.233, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% {
    -webkit-transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.168, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% {
    -webkit-transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.049, 0, 0, 0, 0, 1.049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% {
    opacity: 1;
    -webkit-transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.956, 0, 0, 0, 0, 0.956, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% {
    -webkit-transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.928, 0, 0, 0, 0, 0.928, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% {
    -webkit-transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% {
    -webkit-transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.022, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% {
    -webkit-transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.993, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% {
    -webkit-transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.002, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }

.msg_window .msg {
  margin: 0 auto;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  box-shadow: none !important;
  top: -50px;
  width: 90% !important;
  position: fixed;
  background: #0099e5;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
  border-top: none;
  padding: 16px;
  z-index: 99999;
  transition: top 0.6s ease-out;
  -webkit-transition: top 0.6s ease-out;
  -ms-transition: top 0.6s ease-out;
  -moz-transition: top 0.6s ease-out;
  -o-transition: top 0.6s ease-out;
  left: calc(5%);
  left: -webkit-calc(5%);
  left: -moz-calc(5%); }

.msg_window .msg .inside {
  min-height: 24px;
  line-height: 24px;
  padding-left: 40px;
  overflow: hidden;
  background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEM5QzJFMzE0QjhEMTFFMTlBQjY4Q0FBNzUwNTZGQjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEM5QzJFMzI0QjhEMTFFMTlBQjY4Q0FBNzUwNTZGQjgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0QzlDMkUyRjRCOEQxMUUxOUFCNjhDQUE3NTA1NkZCOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0QzlDMkUzMDRCOEQxMUUxOUFCNjhDQUE3NTA1NkZCOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnsOhGwAAADYSURBVHjarFNbDcMwDEymASiEQsgYdAgaCKUwBmNQCIWSMRiFMUgZeE50kTIvbrWHpfuI7ZzfxgghookR6F2SbjKasLFn3OG8MDxjADx0BJ++9TnC6DaCOPjEFxIoEzrxIaU9C11X/OuaSUZGVrl2JRPKPUGURUn5qjUOPQkGTF4YPYhDK4PKh454r8KeGjSYbVkLE2mdLwug2NJ46VBF/FTyxBLBjTF+QTDmv3KMGFFsrHIUPnmMtiwSWM8oZ1aiXhgPRp6Mtfb0n1XeOSa3e0y/nPNTgAEA6RKMp4Hu6KoAAAAASUVORK5CYII=) left center no-repeat; }

.msg_window .msg.warning {
  background-color: #222222;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; }

.msg_window .msg.warning .inside {
  background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2FybmluZyAtIHNvbGlkPC90aXRsZT4KICAgIDxnIGlkPSLpobXpnaItMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IndlYi3ljZXlm77mibnph4/ljZblm77ml6DmoIfpopgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02Mi4wMDAwMDAsIC02NS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9Iue8lue7hC025aSH5Lu9IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0Ni4wMDAwMDAsIDUwLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9Ildhcm5pbmctLS1zb2xpZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTYuMDAwMDAwLCAxNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTQuNywxLjEyMzgzMDc3IEwyMi45LDkuMzE1Mjk3NDggQzIzLjYsMTAuMDE0NTY5IDI0LDExLjAxMzUyODQgMjQsMTIuMDEyNDg3NyBDMjQsMTMuMDExNDQ3MSAyMy42LDE0LjAxMDQwNjUgMjIuOSwxNC43MDk2NzggTDE0LjcsMjIuOTAxMTQ0NyBDMTQsMjMuNjAwNDE2MyAxMywyNCAxMiwyNCBDMTEsMjQgMTAsMjMuNjAwNDE2MyA5LjMsMjIuOTAxMTQ0NyBMMS4xLDE0LjcwOTY3OCBDMC40LDE0LjAxMDQwNjUgMCwxMy4wMTE0NDcxIDAsMTIuMDEyNDg3NyBDMCwxMS4wMTM1Mjg0IDAuNCwxMC4wMTQ1NjkgMS4xLDkuMzE1Mjk3NDggTDkuMywxLjEyMzgzMDc3IEMxMC43LC0wLjM3NDYxMDI1OCAxMy4yLC0wLjM3NDYxMDI1OCAxNC43LDEuMTIzODMwNzcgWiIgaWQ9Iui3r+W+hCIgZmlsbD0iI0ZDQ0MwMCIgZmlsbC1ydWxlPSJub256ZXJvIj48L3BhdGg+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTEzLjMsOSBMMTIuNiwxNC42IEwxMS4zLDE0LjYgTDEwLjcsOSBMMTAuNyw1LjUgTDEzLjMsNS41IEwxMy4zLDkgWiBNMTAuNiwxNS42MDAxIEwxMy40LDE1LjYwMDEgTDEzLjQsMTguNDAwMSBMMTAuNiwxOC40MDAxIEwxMC42LDE1LjYwMDEgWiIgaWQ9IuW9oueKtiIgZmlsbD0iIzIyMjIyMiI+PC9wYXRoPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) left center no-repeat; }

.msg_window .msg.error {
  background-color: #222222;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; }

.msg_window .msg.error .inside {
  background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+RXJyb3IgLSBzb2xpZDwvdGl0bGU+CiAgICA8ZyBpZD0i6aG16Z2iLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ3ZWIt5LiN6YCC5ZCI5ZSu5Y2W77yI57uE5Zu+5qCH6K6w77yJIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNjIuMDAwMDAwLCAtNjUuMDAwMDAwKSIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9Iue8lue7hC025aSH5Lu9IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0Ni4wMDAwMDAsIDUwLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9IkVycm9yLS0tc29saWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2LjAwMDAwMCwgMTUuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjk1MDIwNzUsMCBDNS40NzcxNzg0MiwwIDAsNS4zIDAsMTIgQzAsMTUuMiAxLjE5NTAyMDc1LDE4LjIgMy40ODU0NzcxOCwyMC41IEM1Ljc3NTkzMzYxLDIyLjggOC42NjM5MDA0MSwyNCAxMS45NTAyMDc1LDI0IEMxMS45NTAyMDc1LDI0IDExLjk1MDIwNzUsMjQgMTIuMDQ5NzkyNSwyNCBDMTguNjIyNDA2NiwyNCAyNCwxOC42IDI0LDEyIEMyMy45MDA0MTQ5LDUuNCAxOC42MjI0MDY2LDAgMTEuOTUwMjA3NSwwIFoiIGlkPSLot6/lvoQiIGZpbGw9IiNGRjQ4NDgiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTcuNzkzMSw2LjIwNzI5IEMxNy41MTcyLDUuOTMwOSAxNy4xNDk0LDUuOTMwOSAxNi44NzM2LDYuMjA3MjkgTDExLjk5OTk5NzUsMTEuMDkwMiBMNy4xMjY0NCw2LjIwNzI5IEM2Ljg1MDU3LDUuOTMwOSA2LjQ4Mjc2LDUuOTMwOSA2LjIwNjksNi4yMDcyOSBDNS45MzEwMyw2LjQ4MzY5IDUuOTMxMDMsNi44NTIyMSA2LjIwNjksNy4xMjg2IEwxMS4wODA1LDEyLjAxMTUgTDYuMjA2OSwxNi44OTQ0IEM1LjkzMTAzLDE3LjE3MDggNS45MzEwMywxNy41MzkzIDYuMjA2OSwxNy44MTU3IEM2LjI5ODg1LDE3LjkwNzkgNi40ODI3NiwxNy45OTk5OTc1IDYuNjY2NjcsMTcuOTk5OTk3NSBDNi44NTA1NywxNy45OTk5OTc1IDcuMDM0NDgsMTcuOTA3OSA3LjEyNjQ0LDE3LjgxNTcgTDExLjk5OTk5NzUsMTIuOTMyOCBMMTYuODczNiwxNy44MTU3IEMxNi45NjU1LDE3LjkwNzkgMTcuMTQ5NCwxNy45OTk5OTc1IDE3LjMzMzMsMTcuOTk5OTk3NSBDMTcuNTE3MiwxNy45OTk5OTc1IDE3LjcwMTEsMTcuOTA3OSAxNy43OTMxLDE3LjgxNTcgQzE4LjA2OSwxNy41MzkzIDE4LjA2OSwxNy4xNzA4IDE3Ljc5MzEsMTYuODk0NCBMMTIuOTE5NSwxMi4wMTE1IEwxNy43OTMxLDcuMTI4NiBDMTguMDY5LDYuOTQ0MzQgMTguMDY5LDYuNDgzNjkgMTcuNzkzMSw2LjIwNzI5IFoiIGlkPSLot6/lvoQiIGZpbGw9IiMyMjIyMjIiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) left center no-repeat; }

.msg_window .msg.success {
  background-color: #222222;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; }

.msg_window .msg.success .inside {
  background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+Q29uZmlybSAtIHNvbGlkPC90aXRsZT4KICAgIDxnIGlkPSLpobXpnaItMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IndlYi3kuI3pgILlkIjlj4LliqDku7vliqHlpIfku70iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02Mi4wMDAwMDAsIC02NS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9IkNvbmZpcm0tLS1zb2xpZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjIuMDAwMDAwLCA2NS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMS45NTAyLDAgQzUuMzc3NTksMCAwLDUuNCAwLDEyIEMwLDE1LjIgMS4xOTUwMiwxOC4yIDMuNDg1NDgsMjAuNSBDNS43NzU5MywyMi44IDguNjYzOSwyNCAxMS45NTAyLDI0IEMxMS45NTAyLDI0IDExLjk1MDIsMjQgMTIuMDQ5OCwyNCBDMTguNjIyNCwyNCAyNCwxOC42IDI0LDEyIEMyMy45MDA0LDUuNCAxOC42MjI0LDAgMTEuOTUwMiwwIFoiIGlkPSLot6/lvoQiIGZpbGw9IiM2NEUyOTYiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTE2LjkxNjcsOC4xNzAzMyBMOS41OTIxLDE1LjQ0NSBMNy4xMjc1OSwxMi45OTA0IEM2Ljk2NjM2LDEyLjgxNTkgNi43MjE3NywxMi43NDMyIDYuNDkwNTIsMTIuODAxMSBDNi4yNTkyNywxMi44NTkgNi4wNzg2LDEzLjAzODIgNi4wMTk5NSwxMy4yNjc4IEM1Ljk2MTMxLDEzLjQ5NzQgNi4wMzQxMiwxMy43NDA0IDYuMjA5NjEsMTMuOTAwOCBMOS4xMjc1OSwxNi44MTEyIEM5LjM4MTEsMTcuMDYyOSA5Ljc5MjA2LDE3LjA2MjkgMTAuMDQ1NiwxNi44MTEyIEwxNy44MjkyLDkuMDgwNjkgQzE4LjA2NDMsOC44MjYxIDE4LjA1NTcsOC40MzI2NCAxNy44MDk1LDguMTg4NTEgQzE3LjU2MzMsNy45NDQzOCAxNy4xNjcyLDcuOTM2MzYgMTYuOTExMiw4LjE3MDMzIEwxNi45MTY3LDguMTcwMzMgWiIgaWQ9Iui3r+W+hCIgZmlsbD0iIzIyMjIyMiI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) left center no-repeat; }

.msg_window .msg .close {
  padding: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.3);
  display: none; }

.msg_window .msg .close_x {
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 8px;
  background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjM0MDk0MzQ1MjgwIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjI3MzgiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PC9zdHlsZT48L2RlZnM+PHBhdGggZD0iTTU2Ny40NjY2NjcgNTEybDI3Ny4zMzMzMzMtMjc3LjMzMzMzM2MxMi44LTEyLjggMTIuOC0zOC40IDAtNTEuMi0xMi44LTEyLjgtMzguNC0xMi44LTUxLjIgMEw1MTIgNDU2LjUzMzMzMyAyMzQuNjY2NjY3IDE4My40NjY2NjdjLTEyLjgtMTIuOC0zOC40LTEyLjgtNTEuMiAwcy0xMi44IDM4LjQgMCA1MS4ybDI3Ny4zMzMzMzMgMjc3LjMzMzMzMy0yNzcuMzMzMzMzIDI3Ny4zMzMzMzNjLTEyLjggOC41MzMzMzMtMTcuMDY2NjY3IDIxLjMzMzMzMy0xMi44IDM0LjEzMzMzNCA0LjI2NjY2NyAxMi44IDEyLjggMjUuNiAyNS42IDI1LjYgMTIuOCA0LjI2NjY2NyAyNS42IDAgMzguNC04LjUzMzMzNGwyNzcuMzMzMzMzLTI3Ny4zMzMzMzMgMjc3LjMzMzMzMyAyNzcuMzMzMzMzYzEyLjggMTIuOCAzOC40IDEyLjggNTEuMiAwIDEyLjgtMTIuOCAxMi44LTM4LjQgMC01MS4yTDU2Ny40NjY2NjcgNTEyeiIgcC1pZD0iMjczOSIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==) center top no-repeat; }

@media only screen and (max-width: 679px) {
  .msg_window .msg {
    width: 100% !important;
    left: 0; } }

html {
  background: #f7f8fa;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 131.25%;
  /*10 ÷ 16 × 100% = 62.5%*/ }
  html.pxLightbox {
    overflow: hidden !important;
    height: 100%; }
  @media only screen and (max-width: 1379px) {
    html {
      font-size: 112.5%;
      /*10 ÷ 16 × 100% = 62.5%*/ } }
  @media only screen and (max-width: 1179px) {
    html {
      font-size: 93.75%;
      /*10 ÷ 16 × 100% = 62.5%*/ } }
  @media only screen and (max-width: 679px) {
    html {
      font-size: 75%;
      /*10 ÷ 16 × 100% = 62.5%*/ } }
  html.windows, html.windows body {
    font-family: "Helvetica Neue", HelveticaNeue, Helvetica, TeXGyreHeros, FreeSans, "Nimbus Sans L", "Liberation Sans", "Microsoft YaHei", Arial, sans-serif; }

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 0.57143rem; }
  body ul {
    margin: 0;
    padding: 0; }
    body ul li {
      list-style: none; }
  body .seo_h1_none {
    width: 0;
    height: 0;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

a {
  text-decoration: none;
  outline: 0; }

input, select, textarea {
  font-family: inherit;
  font-weight: inherit;
  outline-style: none;
  outline-width: 0;
  line-height: normal;
  transition: border-color 200ms ease-out 0s;
  -webkit-transition: border-color 200ms ease-out 0s;
  -mos-transition: border-color 200ms ease-out 0s;
  -o-transition: border-color 200ms ease-out 0s; }

.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.flex {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  flex: 1; }

.left {
  float: left; }

.right {
  float: right; }

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0; }

.hidden {
  display: none !important; }

.vHidden {
  visibility: hidden; }

.px_topnav__link_text {
  -webkit-transition: opacity 0.2s ease-out, color 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out, color 0.2s ease-out;
  transition: opacity 0.2s ease-out, color 0.2s ease-out; }

.webuploader-container input {
  display: none; }

/*解决mac本下面chrome中下拉框一直是圆角的问题*/
select.select-common {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input {
  font-size: 14px;
  padding: 8px 10px;
  color: #525558;
  border: 1px solid rgba(185, 193, 199, 0.5);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: border-color 0.2s;
  -moz-transition: border-color 0.2s;
  transition: border-color 0.2s;
  resize: none;
  line-height: 1.4em; }

input:-moz-placeholder {
  color: #b9c1c7; }

input::-moz-placeholder {
  color: #b9c1c7; }

input:-ms-input-placeholder {
  color: #b9c1c7; }

input::-webkit-input-placeholder {
  color: #b9c1c7; }

input:focus {
  border-color: #0099e5; }

input:read-only:focus {
  border-color: rgba(185, 193, 199, 0.5); }

#YSF-BTN-HOLDER {
  right: 10px !important;
  bottom: 45px !important;
  width: 68px !important;
  height: 68px !important; }
  #YSF-BTN-HOLDER #YSF-CUSTOM-ENTRY-0 {
    border-radius: 50%;
    background-color: #0870D1; }
  #YSF-BTN-HOLDER img {
    max-width: 100% !important; }

.scroll_to_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 999; }

.scroll_to_top:hover svg path {
  fill: #f36478; }

.scroll_to_top.display {
  display: block; }

@media only screen and (max-width: 679px) {
  .instructions_contest .weibo, .instructions_contest .weixin {
    float: none; }
  .instructions_contest .mobile_show {
    display: block !important; }
  .scroll_to_top {
    width: 30px;
    right: 15px; }
  .scroll_to_top svg {
    width: 30px; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px), (min-device-width: 320px) and (max-device-width: 568px) {
  * {
    -webkit-overflow-scrolling: touch; } }

.popup-centered {
  left: auto;
  right: auto;
  font-size: 14px;
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 15px; }
  .popup-centered ul {
    margin: 0;
    padding: 0; }
  .popup-centered .arrow, .popup-centered .arrow .fill {
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .popup-centered .arrow {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.04);
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.04);
    border: 6px solid;
    margin: 0 0 0 9px;
    border-color: transparent transparent white white;
    top: 15px;
    left: 50%; }
  .popup-centered .arrow .fill {
    left: 50%;
    margin-left: -7px;
    top: -4px;
    border-color: transparent;
    border-bottom-color: #f7f8fa;
    border-width: 7px;
    z-index: 920; }
  .popup-centered .arrow .fill.blue {
    border-bottom-color: #02adea; }
  .popup-centered .contain {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2); }
  .popup-centered .inside {
    height: 100%;
    color: #525558;
    border-right-color: #eeeff2;
    background-color: white;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    z-index: auto;
    position: relative;
    width: 100%;
    overflow: hidden; }
  .popup-centered a {
    text-align: left;
    transition: 0s;
    -webkit-transition: 0s;
    -ms-transition: 0s;
    -moz-transition: 0s;
    -o-transition: 0s;
    display: block;
    color: #525558;
    padding: 0 16px;
    font-size: 16px;
    line-height: 36px; }
    .popup-centered a:hover {
      background-color: #0870d1;
      color: white; }
  .popup-centered .links {
    max-width: 300px; }
  .popup-centered .links ul {
    padding: 8px 0;
    border-top: 1px solid rgba(34, 34, 34, 0.1); }
    .popup-centered .links ul:first-child {
      border-top: 0px; }
    .popup-centered .links ul li {
      line-height: 1.8em; }
  .popup-centered .new {
    position: relative;
    left: 7px;
    bottom: 2px;
    font-size: 8px;
    line-height: 1.8em;
    text-transform: uppercase;
    color: #222222;
    font-weight: bold;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 1px 3px;
    background-color: #ffd200; }
  .popup-centered .icon {
    font-size: 12px;
    padding: 0 4px 0 0;
    position: relative;
    top: 1px; }
  .popup-centered .bottom {
    padding: 9px 20px 11px;
    border-top: 1px solid rgba(34, 34, 34, 0.1);
    background-color: #f7f8fa;
    font-size: 12px;
    line-height: 1.4em;
    color: #9ba2a7;
    max-width: 150px; }
  .popup-centered.position_left {
    padding-top: 0; }
    .popup-centered.position_left .arrow {
      border-bottom-color: transparent;
      border-left-color: #b9c1c7;
      left: auto;
      right: -20px;
      top: 20px; }
      .popup-centered.position_left .arrow .fill {
        border-bottom-color: transparent;
        border-left-color: #f7f8fa;
        border-width: 10px;
        margin-left: -12px;
        top: -10px; }
  .popup-centered.noArrow {
    padding-top: 0; }

@charset "UTF-8";
.show_on_small {
  display: none; }

.red_mark {
  position: relative; }
  .red_mark::after {
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #FF4C4C;
    position: absolute;
    top: 26px;
    left: -6px;
    z-index: 1; }

.tag {
  display: inline-block;
  padding: 0 2px;
  line-height: 17px;
  border-radius: 2px;
  background: #2986F7;
  font-size: 12px;
  color: #fff;
  transform: scale(0.8); }
  .tag.danger {
    background: #FF4C4C; }

@media (max-width: 1023px) {
  .show_on_small {
    display: initial; } }

.hide_on_small {
  display: initial; }

@media (max-width: 1023px) {
  .hide_on_small {
    display: none; } }

.main-nav-new .navbar_profile a {
  position: relative; }
  .main-nav-new .navbar_profile a .qy_icon {
    background: url("https://cdn-test.500px.me/images/qianyue/icon_2.svg");
    position: absolute;
    width: 12px;
    left: 28px;
    bottom: 20px;
    height: 12px; }

.main-nav-new .px_topnav__spacer {
  width: 100%; }

.main-nav-new .px_topnav__search_form .query:-ms-input-placeholder, .main-nav-new .px_topnav__search_form .query::-moz-placeholder, .main-nav-new .px_topnav__search_form .query::-webkit-input-placeholder {
  color: red; }

.main-nav-new .px_topnav {
  height: 72px;
  line-height: 72px;
  width: 100%;
  padding: 0 30px 0 40px;
  background-color: #fff;
  border-bottom: 1px solid #eeeff2;
  font-size: 14px;
  color: #222;
  overflow: hidden; }
  @media (max-width: 767px) {
    .main-nav-new .px_topnav {
      padding: 0; } }
  .main-nav-new .px_topnav .login {
    padding: 0 20px; }
  .main-nav-new .px_topnav .signup {
    background-color: #34bf49;
    color: #fff !important;
    padding: 0 20px; }
    .main-nav-new .px_topnav .signup:hover {
      background-color: #41cb56; }
  .main-nav-new .px_topnav .px_topnav__wrapper {
    display: flex;
    height: 72px;
    position: relative;
    top: 0;
    font-size: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out;
    -moz-transition: top 0.1s ease-out, opacity 0.1s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s ease-out;
    flex-direction: row; }
  .main-nav-new .px_topnav .icon {
    background: transparent url("https://cdn-test.500px.me/images/message/1x.png?dc=4") right bottom no-repeat;
    display: inline-block;
    margin: 0;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    color: #b9c1c7;
    vertical-align: middle; }
    .main-nav-new .px_topnav .icon.show_on_small {
      display: none; }
    @media (min--moz-device-pixel-ratio: 1.3), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
      .main-nav-new .px_topnav .icon {
        background-image: url("https://cdn-test.500px.me/images/message/2x.png?dc=4");
        background-size: 312px 60px; } }
    @media (max-width: 1023px) {
      .main-nav-new .px_topnav .icon {
        display: inline-block;
        margin-right: 0; }
        .main-nav-new .px_topnav .icon.hide_on_small {
          display: none; }
        .main-nav-new .px_topnav .icon.show_on_small {
          display: inline-block; } }
    .main-nav-new .px_topnav .icon.discover {
      background-position: -27px top; }
    .main-nav-new .px_topnav .icon.quests {
      width: 20px;
      background-position: -50px top; }
    .main-nav-new .px_topnav .icon.directory {
      width: 24px;
      background-position: -288px top; }
    .main-nav-new .px_topnav .icon.upload {
      width: 24px;
      background-position: -168px top; }
    .main-nav-new .px_topnav .icon.bell {
      background-position: -218px top;
      margin-left: 2px;
      margin-right: 2px; }
    .main-nav-new .px_topnav .icon.more {
      width: 4px;
      margin-left: 10px;
      margin-right: 10px;
      background-position: -250px top; }
    .main-nav-new .px_topnav .icon.search {
      background-position: -267px top; }
    .main-nav-new .px_topnav .icon.numbers {
      margin-right: 0;
      -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out;
      -moz-transition: top 0.1s ease-out, opacity 0.1s ease-out;
      transition: top 0.1s ease-out, opacity 0.1s ease-out;
      background-color: #ff4c4c;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      display: inline-block;
      position: relative;
      overflow: hidden;
      width: auto;
      min-width: 24px;
      height: 22px;
      line-height: 22px;
      background-image: none;
      color: white;
      cursor: pointer;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      -webkit-border-radius: 11px;
      border-radius: 11px; }
      .main-nav-new .px_topnav .icon.numbers + .icon {
        display: none; }
      .main-nav-new .px_topnav .icon.numbers:empty {
        display: none; }
        .main-nav-new .px_topnav .icon.numbers:empty + .icon {
          display: inline-block; }
    .main-nav-new .px_topnav .icon.avatar {
      width: 25px;
      height: 25px; }
  .main-nav-new .px_topnav .px_topnav__nav_content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    height: 72px;
    padding: 0 10px;
    color: #525558;
    font-weight: normal;
    letter-spacing: 0.025em;
    white-space: nowrap;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none; }
  .main-nav-new .px_topnav .px_topnav__search_form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center; }
    .main-nav-new .px_topnav .px_topnav__search_form form {
      position: relative;
      width: 100%;
      max-width: 300px; }
    .main-nav-new .px_topnav .px_topnav__search_form .submit {
      position: absolute;
      top: 27px;
      left: 24px;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      height: 20px;
      width: 20px;
      border: none;
      background-color: transparent;
      background-position: -100px top;
      overflow: hidden;
      text-indent: 30px;
      cursor: pointer;
      pointer-events: none; }
    .main-nav-new .px_topnav .px_topnav__search_form .query {
      width: 100%;
      border: 0;
      -webkit-border-radius: 25px;
      border-radius: 25px;
      background: #f7f8fa;
      font-weight: normal;
      font-size: 16px;
      color: #222;
      text-indent: 28px;
      border: 1px solid #eeeff2;
      line-height: 22px; }
      .main-nav-new .px_topnav .px_topnav__search_form .query:focus {
        background-color: #fff;
        border-color: #0099e5; }
      .main-nav-new .px_topnav .px_topnav__search_form .query:-ms-input-placeholder, .main-nav-new .px_topnav .px_topnav__search_form .query::-moz-placeholder, .main-nav-new .px_topnav .px_topnav__search_form .query::-webkit-input-placeholder {
        color: #71767a;
        line-height: 40px; }
  .main-nav-new .px_topnav svg:not(:root) {
    overflow: hidden; }
  .main-nav-new .px_topnav a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 72px;
    padding: 0 14px;
    font-size: 16px;
    color: #525558;
    font-weight: normal;
    letter-spacing: 0.025em;
    white-space: nowrap;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none; }
    .main-nav-new .px_topnav a:hover .icon.home {
      background-position: left center; }
    .main-nav-new .px_topnav a:hover .icon.discover {
      background-position: -27px center; }
    .main-nav-new .px_topnav a:hover .icon.upload {
      background-position: -168px center; }
    .main-nav-new .px_topnav a:hover .icon.cart {
      background-position: -144px center; }
    .main-nav-new .px_topnav a:hover .icon.gallery {
      background-position: -194px center; }
    .main-nav-new .px_topnav a:hover .icon.bell {
      background-position: -218px center; }
    .main-nav-new .px_topnav a:hover .icon.more {
      background-position: -250px center; }
    .main-nav-new .px_topnav a:hover .icon.search {
      background-position: -267px center; }
    .main-nav-new .px_topnav a:hover .icon.quests {
      background-position: -50px center; }
    .main-nav-new .px_topnav a:hover .icon.local_listings {
      background-position: -72px center; }
    .main-nav-new .px_topnav a:hover .icon.directory {
      background-position: -288px center; }
    .main-nav-new .px_topnav a .down_arrow {
      width: 16px;
      height: 16px;
      transform-origin: center;
      transition-duration: 0.2s; }
  .main-nav-new .px_topnav li {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 72px;
    vertical-align: top;
    font-size: 16px;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none; }
    .main-nav-new .px_topnav li.show_on_small {
      display: none; }
    @media (max-width: 767px) {
      .main-nav-new .px_topnav li.hide_on_small {
        display: none; }
      .main-nav-new .px_topnav li.show_on_small {
        display: table-cell; } }
    .main-nav-new .px_topnav li.active a {
      background-color: #f7f8fa; }
    .main-nav-new .px_topnav li.active #user_upload_new {
      background: #222222;
      color: #ffffff; }
      .main-nav-new .px_topnav li.active #user_upload_new .upload_icon_new {
        background-image: url("https://cdn-test.500px.me/images/svg/up_arrow_w.svg"); }
    .main-nav-new .px_topnav li:hover a {
      color: #0099e5;
      -webkit-transition: none;
      -moz-transition: none;
      transition: none; }
      .main-nav-new .px_topnav li:hover a .down_arrow {
        transform: rotate(180deg); }
    .main-nav-new .px_topnav li.px_topnav__logo_container .px_topnav__logo {
      width: 92px;
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box; }
      .main-nav-new .px_topnav li.px_topnav__logo_container .px_topnav__logo img {
        width: 100%;
        margin: 0; }
      .main-nav-new .px_topnav li.px_topnav__logo_container .px_topnav__logo path {
        -webkit-transition: fill 0.2s ease-out;
        -moz-transition: fill 0.2s ease-out;
        transition: fill 0.2s ease-out; }
      .main-nav-new .px_topnav li.px_topnav__logo_container .px_topnav__logo:hover path {
        fill: #0099e5; }
  .main-nav-new .px_topnav #user_upload_new {
    width: 96px;
    height: 42px;
    border-radius: 23px;
    border: 2px solid #222222;
    background: #FFFFFF;
    color: #222222;
    font-weight: bold;
    line-height: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px 0 11px; }
    .main-nav-new .px_topnav #user_upload_new .upload_icon_new {
      display: inline-block;
      width: 24px;
      height: 24px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-image: url("https://cdn-test.500px.me/images/svg/up_arrow.svg");
      margin: 0 7px 0 0; }
    .main-nav-new .px_topnav #user_upload_new:hover {
      background: rgba(34, 34, 34, 0.2);
      color: #222222; }

#px_topnav_user {
  max-width: 180px;
  text-overflow: ellipsis; }
  #px_topnav_user .avatar {
    background-image: none;
    position: relative;
    text-overflow: ellipsis;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%; }
  #px_topnav_user .username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

@media (max-width: 767px) {
  .main-nav-new .navbar_profile a {
    position: relative; }
    .main-nav-new .navbar_profile a .qy_icon {
      width: 12px;
      left: 25px;
      bottom: 10px;
      height: 12px; }
  .main-nav-new .px_topnav {
    height: 50px;
    line-height: 50px; }
    .main-nav-new .px_topnav .px_topnav__wrapper {
      height: 50px; }
    .main-nav-new .px_topnav .px_topnav__nav_content {
      height: 50px; }
    .main-nav-new .px_topnav a {
      height: 50px;
      padding: 0 10px; }
    .main-nav-new .px_topnav li {
      line-height: 50px; }
      .main-nav-new .px_topnav li.px_topnav__logo_container .px_topnav__logo {
        width: 82px; }
        .main-nav-new .px_topnav li.px_topnav__logo_container .px_topnav__logo img {
          margin: 0; } }

/*资讯类签约上传初始窗口样式end*/
.main-nav-new .px_topnav__wrapper .Copyright {
  position: relative; }
  .main-nav-new .px_topnav__wrapper .Copyright .__new {
    position: absolute;
    top: 4px;
    right: -15px;
    display: inline-block;
    width: 30px;
    height: 15px;
    background-size: 29px 13px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://cdn-test.500px.me/images/discover/icon-new.svg"); }

@media (max-width: 1200px) {
  .new_tag {
    display: none !important; } }

.pxLightbox_window {
  z-index: 2001;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  perspective: 1000;
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
  -moz-perspective: 1000;
  -o-perspective: 1000; }
  .pxLightbox_window .pxLightbox_container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .pxLightbox_window .pxLightbox_container .pxLightbox_background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 999999px;
      background-color: #FFF;
      opacity: 0.95; }
    .pxLightbox_window .pxLightbox_container .pxLightboxHtml {
      position: relative;
      display: block;
      margin: 0 auto;
      top: 50%;
      height: 0;
      width: 0;
      -webkit-transition: -webkit-transform 0.4s ease-in-out;
      -moz-transition: -moz-transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out;
      transform: scale(0.9);
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -moz-transform: scale(0.9);
      -o-transform: scale(0.9);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -o-backface-visibility: hidden;
      perspective: 1000;
      -webkit-perspective: 1000;
      -ms-perspective: 1000;
      -moz-perspective: 1000;
      -o-perspective: 1000;
      text-align: left; }
      .pxLightbox_window .pxLightbox_container .pxLightboxHtml > * {
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2); }
      .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content {
        overflow-y: auto;
        width: 100%;
        height: 100%;
        position: absolute;
        border: 1px solid rgba(140, 140, 140, 0.4);
        border-radius: 3px;
        background-color: #F7F8FA;
        margin: 0px auto;
        opacity: 1; }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content .top-bar {
          background-color: #f7f8fa;
          padding: 10px 15px;
          border-bottom: 1px solid #b9c1c7; }
          .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content .top-bar h3 {
            display: inline-block;
            margin: 5px 0; }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content .modal-footer {
          background-color: #f7f8fa;
          padding: 10px 15px;
          border-top: 1px solid rgba(34, 34, 34, 0.1);
          position: absolute;
          width: 100%;
          bottom: 0; }
          .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content .modal-footer .right .button {
            padding: 0 28px; }
            .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content .modal-footer .right .button + .button {
              margin-left: 10px; }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml .modal_content.noborder {
          border: 0; }
      .pxLightbox_window .pxLightbox_container .pxLightboxHtml .commonHead {
        border-radius: 1px 1px 0 0;
        background-color: #fff;
        height: 45px;
        padding: 0 10px;
        line-height: 44px;
        position: relative;
        border-bottom: 1px solid rgba(34, 34, 34, 0.1); }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml .commonHead h3 {
          display: block;
          float: left;
          color: #71767a;
          margin: 0; }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml .commonHead .close {
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          position: absolute;
          right: 10px;
          width: 20px;
          height: 20px;
          color: #71767a;
          line-height: 16px;
          font-size: 20px;
          text-align: center;
          cursor: pointer;
          -webkit-transition: all .2s;
          -moz-transition: all .2s;
          transition: all .2s; }
      .pxLightbox_window .pxLightbox_container .pxLightboxHtml.full-screen {
        margin: 0;
        top: 0;
        height: 100%;
        width: 100%; }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml.full-screen .close {
          display: block; }
        .pxLightbox_window .pxLightbox_container .pxLightboxHtml.full-screen .full_screen_modal_content {
          cursor: -webkit-zoom-out;
          box-shadow: none;
          -webkit-box-shadow: none;
          border: none;
          background: none;
          position: absolute;
          -webkit-border-radius: 3px;
          border-radius: 3px;
          background-color: #f7f8fa;
          margin: 0 auto;
          opacity: 1; }
          .pxLightbox_window .pxLightbox_container .pxLightboxHtml.full-screen .full_screen_modal_content .main_container {
            margin: 20px;
            -webkit-box-shadow: 0 2px 80px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 80px rgba(0, 0, 0, 0.1);
            overflow: hidden; }
            .pxLightbox_window .pxLightbox_container .pxLightboxHtml.full-screen .full_screen_modal_content .main_container .photo_sidebar {
              border: none;
              -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15);
              box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15); }
            .pxLightbox_window .pxLightbox_container .pxLightboxHtml.full-screen .full_screen_modal_content .main_container .photo_container {
              border-bottom: none; }
  html.pxLightbox .pxLightbox_window {
    display: block; }
  .pxLightbox_window.show {
    opacity: 1;
    transform: scale(1); }
    .pxLightbox_window.show .pxLightbox_container .pxLightboxHtml {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1); }
  .pxLightbox_window.full-screen-main {
    z-index: 888; }
    .pxLightbox_window.full-screen-main .pxLightbox_container .pxLightbox_background {
      background-color: white; }
  .pxLightbox_window.bg_gray .pxLightbox_container .pxLightbox_background {
    background-color: #7b7c7d; }
  .pxLightbox_window.bg_gray .pxLightbox_container .pxLightboxHtml > div {
    -webkit-border-radius: 10px;
    border-radius: 10px; }
  .pxLightbox_window.bg_gray .pxLightbox_container .pxLightboxHtml .modal_content {
    background-color: #eef1f4; }

.bottom_container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #CDCED2; }
  .bottom_container .btn {
    font-size: 17px;
    color: #0076FF;
    text-align: center;
    display: inline-block;
    width: 49%;
    height: 44px;
    line-height: 44px;
    vertical-align: top;
    cursor: pointer; }
  .bottom_container .cancel {
    border-right: 1px solid #CDCED2; }

@charset "UTF-8";
/*资讯类签约上传初始窗口样式begin*/
.chushi_win {
  height: 100%; }

.chushi_win .upload_closeable {
  position: relative;
  cursor: pointer;
  width: 27px;
  height: 27px;
  font-size: 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  top: 10px;
  right: 15px; }

.chushi_win .upload_closeable:hover {
  background-color: rgba(90, 90, 90, 0.3); }

.chushi_win .upload_closeable:before {
  position: absolute;
  content: '.';
  display: block;
  width: 24px;
  height: 2px;
  top: 12px;
  left: 1.5px;
  background: #5a5a5a;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

.chushi_win .upload_closeable:after {
  position: absolute;
  content: '.';
  display: block;
  width: 24px;
  height: 2px;
  top: 12px;
  left: 1.5px;
  background: #5a5a5a;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.chushi_win ._header {
  height: 100px;
  line-height: 100px;
  font-size: 24px;
  text-align: center;
  color: #0099e5;
  border-bottom: solid 1px #eeeff2; }

.chushi_win ._body {
  height: calc(100% - 150px);
  height: -webkit-calc(100% - 150px);
  height: -moz-calc(100% - 150px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex; }

.chushi_win ._body > div {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 6% 10%; }

.chushi_win ._body > div ._text {
  font-size: 13px;
  line-height: 1.85;
  text-align: center;
  color: #525558; }

.chushi_win ._body > div ._b {
  text-align: center; }

.chushi_win ._body > div ._b .button {
  margin-top: 25px;
  font-size: 14px;
  width: 100px;
  height: 35px;
  line-height: 35px; }

.chushi_win ._footer {
  border-top: solid 1px #eeeff2;
  height: 50px;
  position: relative; }

.chushi_win ._footer .cmp {
  position: absolute;
  right: 28px;
  top: 30%; }

.chushi_win ._footer .cmp span {
  vertical-align: middle; }

.chushi_win ._footer .cmp ._checkbox {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid rgba(185, 193, 199, 0.5);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #fff;
  display: inline-block; }

.chushi_win ._footer .cmp ._checkbox:before {
  opacity: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("https://cdn-test.500px.me/images/icon/duihao_500px.svg");
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: 8px;
  background-size: 8px;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.chushi_win ._footer .cmp ._checkbox.checked:before {
  opacity: 1;
  animation: pulse_large 0.4s 0s ease-in-out forwards; }

.chushi_win ._footer .cmp ._text {
  font-size: 12px;
  color: #71767a; }

/*资讯类签约上传初始窗口样式end*/

.dialogbox_main_cmp {
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1200; }

.dialog-box {
  font: 400 14px '\5FAE\8F6F\96C5\9ED1';
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -90px;
  margin-left: -150px;
  z-index: 1; }
  .dialog-box .normal {
    background: #fff; }
  .dialog-box .dialog-btn {
    padding: 0 20px 20px;
    text-align: center; }
    .dialog-box .dialog-btn span {
      width: 90px;
      height: 34px;
      line-height: 34px;
      text-align: center;
      border-radius: 3px;
      padding: 0 15px;
      margin: 0 10px; }

.dialog-box-close, .dialog-btn span {
  display: inline-block;
  cursor: pointer; }

.dialog-box-container {
  position: relative;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 0 10px #bbb; }

.dialog-box-title {
  color: #333;
  height: 36px;
  line-height: 36px;
  padding: 0 15px; }

.dialog-box-title h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  float: left; }

.dialog-box-close {
  font-size: 26px;
  margin-left: 20px;
  font-weight: 400;
  float: right; }

.dialog-box-close:hover {
  color: #0099e5; }

.dialog-box-content {
  text-align: center;
  padding: 20px;
  line-height: 24px;
  margin: 0 auto; }

.dialog-btn-cancel {
  background: #ddd; }

.dialog-btn-cancel:hover {
  background: #d6d6d6; }

.dialog-btn-warning {
  background: #33c; }

.dialog-btn-warning:hover {
  background: #55d168; }

.dialog-btn-ok {
  color: #fff;
  background: #0099e5;
  border: 1px solid #0099e5; }

.dialog-btn-ok:hover {
  background: #0099e5; }

#dialog-box-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  filter: alpha(opacity=30);
  background: #000;
  height: 2506px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s; }

#dialog-box-iframe body {
  margin: 0;
  padding: 0;
  border: 0; }

.effect-fade .dialog-box-container {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0;
  transition: all .3s; }

.show.effect-fade .dialog-box-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.effect-newspaper .dialog-box-container {
  -webkit-transform: scale(0) rotate(720deg);
  -ms-transform: scale(0) rotate(720deg);
  transform: scale(0) rotate(720deg);
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s; }

.show.effect-newspaper .dialog-box-container {
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
  opacity: 1; }

.effect-fall {
  -webkit-perspective: 1300px;
  perspective: 1300px; }

.effect-fall .dialog-box-container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(600px) rotateX(20deg);
  -ms-transform: translateZ(600px) rotateX(20deg);
  transform: translateZ(600px) rotateX(20deg);
  opacity: 0; }

.show.effect-fall .dialog-box-container {
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-transform: translateZ(0) rotateX(0);
  -ms-transform: translateZ(0) rotateX(0);
  transform: translateZ(0) rotateX(0);
  opacity: 1; }

.effect-scaled .dialog-box-container {
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s; }

.show.effect-scaled .dialog-box-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.effect-flip-horizontal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.effect-flip-horizontal .dialog-box-container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-70deg);
  -ms-transform: rotateY(-70deg);
  transform: rotateY(-70deg);
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0; }

.show.effect-flip-horizontal .dialog-box-container {
  -webkit-transform: rotateY(0);
  -ms-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1; }

.effect-flip-vertical {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px; }

.effect-flip-vertical .dialog-box-container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-70deg);
  -ms-transform: rotateX(-70deg);
  transform: rotateX(-70deg);
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0; }

.show.effect-flip-vertical .dialog-box-container {
  -webkit-transform: rotateX(0);
  -ms-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 1; }

.effect-sign {
  -webkit-perspective: 1300px;
  perspective: 1300px; }

.effect-sign .dialog-box-container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-60deg);
  -ms-transform: rotateX(-60deg);
  transform: rotateX(-60deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s; }

.show.effect-sign .dialog-box-container {
  -webkit-transform: rotateX(0);
  -ms-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 1; }

.dialog-foot {
  position: absolute;
  bottom: 0;
  padding: 20px; }

.dialogbox_main_cmp._v2 {
  color: #222222; }
  .dialogbox_main_cmp._v2 .button {
    cursor: pointer;
    text-align: center;
    position: relative;
    font-weight: 700;
    color: #FFF;
    display: inline-block;
    padding: 0 10px;
    height: 50px;
    line-height: 48px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
    background-color: #0870D1;
    border: 1px solid #47a3f8;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    -webkit-transition: background-color .1s ease-in-out;
    -moz-transition: background-color .1s ease-in-out;
    transition: background-color .1s ease-in-out;
    height: 48px;
    padding: 14px 30px;
    line-height: 22px;
    border-radius: 28px; }
    .dialogbox_main_cmp._v2 .button .value {
      cursor: pointer;
      width: 100%;
      height: 100%;
      display: inline-block; }
    .dialogbox_main_cmp._v2 .button:hover {
      background-color: #168af6; }
    .dialogbox_main_cmp._v2 .button.disabled {
      border: 1px solid #b9b9b9;
      background-color: #b9b9b9;
      pointer-events: none; }
    .dialogbox_main_cmp._v2 .button:focus {
      outline: none;
      -moz-outline: none; }
    .dialogbox_main_cmp._v2 .button.medium {
      min-width: 180px;
      height: 40px;
      text-align: center;
      line-height: 38px;
      font-size: 16px; }
    .dialogbox_main_cmp._v2 .button.mini_follow {
      font-size: 12px;
      line-height: 22px;
      height: 24px;
      padding: 0 8px;
      background: 0 0;
      text-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #0870D1;
      font-weight: 400;
      border-color: #0870D1; }
      .dialogbox_main_cmp._v2 .button.mini_follow:hover {
        background-color: rgba(0, 153, 229, 0.1); }
      .dialogbox_main_cmp._v2 .button.mini_follow:active {
        -webkit-box-shadow: none;
        box-shadow: none; }
      .dialogbox_main_cmp._v2 .button.mini_follow.disabled {
        color: #bfbfbf;
        border-color: #bfbfbf; }
    .dialogbox_main_cmp._v2 .button.ghost {
      background-color: #ffffff;
      color: #0870D1;
      border: 1px solid #ffffff; }
  .dialogbox_main_cmp._v2 .dialog-box-container {
    padding: 24px; }
  .dialogbox_main_cmp._v2 ._icon, .dialogbox_main_cmp._v2 .dialog-btn-v2 .dialog-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; }
  .dialogbox_main_cmp._v2 ._title {
    font-weight: 700;
    font-size: 21px; }
  .dialogbox_main_cmp._v2 ._desc {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px; }
  .dialogbox_main_cmp._v2 .dialog-btn-v2 .dialog-btn-wrapper + .dialog-btn-wrapper {
    margin-top: 0; }

@-webkit-keyframes animate_infinity {
  from {
    background-position: center 0; }
  to {
    background-position: center -960px; } }

@-moz-keyframes animate_infinity {
  from {
    background-position: center 0; }
  to {
    background-position: center -960px; } }

@-ms-keyframes animate_infinity {
  from {
    background-position: center 0; }
  to {
    background-position: center -960px; } }

@keyframes animate_infinity {
  from {
    background-position: center 0; }
  to {
    background-position: center -960px; } }

.infinite_scroll_loader {
  cursor: pointer; }
  .infinite_scroll_loader .bg {
    background-color: #edeef1;
    height: 40px;
    text-align: center; }
    .infinite_scroll_loader .bg .lyby_500px_load {
      display: inline-block;
      margin: 12px 0;
      width: 32px;
      height: 16px;
      background: url("//500px.me/images/loading-500.png") center top no-repeat;
      -webkit-animation: animate_infinity 2s steps(60) infinite;
      -moz-animation: animate_infinity 2s steps(60) infinite;
      -ms-animation: animate_infinity 2s steps(60) infinite;
      animation: animate_infinity 2s steps(60) infinite; }

.infinite_scroll_loader {
  cursor: pointer; }
  .infinite_scroll_loader .bg {
    background-color: #edeef1;
    height: 40px;
    text-align: center; }
    .infinite_scroll_loader .bg .lyby_500px_load {
      display: inline-block;
      margin: 12px 0;
      width: 32px;
      height: 16px;
      background: url("//500px.me/images/loading-500.png") center top no-repeat;
      -webkit-animation: animate_infinity 2s steps(60) infinite;
      -moz-animation: animate_infinity 2s steps(60) infinite;
      -ms-animation: animate_infinity 2s steps(60) infinite;
      animation: animate_infinity 2s steps(60) infinite; }

.checkbox-container-lxx .cate-txt {
  color: #525558;
  font-size: 14px;
  flex: 1; }

.checkbox-container-lxx .check-per.flexbox {
  display: "-webkit-" flex;
  display: "-moz-" flex;
  display: "-ms-" flex;
  display: "-ms-" flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  .checkbox-container-lxx .check-per.flexbox .checkbox-cate {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid rgba(185, 193, 199, 0.5);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: #fff;
    display: inline-block; }
    .checkbox-container-lxx .check-per.flexbox .checkbox-cate:before {
      opacity: 0;
      content: "";
      width: 100%;
      height: 100%;
      display: block;
      background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI3MnB4IiBoZWlnaHQ9IjcycHgiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNzIgNzIiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjMUVBQkUzIiBkPSJNNzAuMzU0LDEwLjk0MmwwLjAwOS0wLjAxNWwwLDBjMC41NjUtMC45ODcsMC45MTYtMi4xMDMsMC45MTYtMy4zMDhjMC0zLjgxMS0zLjIxNi02Ljg5OS03LjE4My02Ljg5OQoJYy0yLjI5NywwLTQuMzEyLDEuMDUyLTUuNjI4LDIuNjYxbC0wLjAwNi0wLjAwM0w1OC40NCwzLjQxNWMtMC4zNjUsMC40NDktMC42ODcsMC45MjgtMC45MjgsMS40NTdMMjcuNjM0LDUxLjg5MUwxMy44NzgsMzUuNzUxCglsLTAuMDAxLDAuMDAyYy0xLjI4OS0xLjg1Mi0zLjQ4MS0zLjA3LTUuOTczLTMuMDdjLTMuOTY2LDAtNy4xODQsMy4wODktNy4xODQsNi44OTdjMCwxLjkzNiwwLjgzNCwzLjY3OCwyLjE3MSw0LjkzMmwxOC4yNjQsMjMuNjEyCgloMC4wMDZjMS4yNzksMS44OTYsMy40OTMsMy4xNTUsNi4wMiwzLjE1NWMyLjk5NSwwLDUuNTYxLTEuNzY2LDYuNjM1LTQuMjdsMzYuMDQ2LTU1LjMxMQoJQzcwLjA0OCwxMS40NTksNzAuMjAzLDExLjIwNiw3MC4zNTQsMTAuOTQyeiIvPgo8L3N2Zz4K);
      background-position: center center;
      background-repeat: no-repeat;
      -webkit-background-size: 15px;
      background-size: 15px;
      -webkit-transform: scale(0.95);
      -moz-transform: scale(0.95);
      -ms-transform: scale(0.95);
      transform: scale(0.95);
      -webkit-transition: opacity .2s;
      -moz-transition: opacity .2s;
      transition: opacity .2s; }
    .checkbox-container-lxx .check-per.flexbox .checkbox-cate.checked:before {
      opacity: 1;
      animation: pulse_large .4s 0s ease-in-out forwards; }
    .checkbox-container-lxx .check-per.flexbox .checkbox-cate.error {
      border-color: #ff3442; }

.yaoyue_caogao_win {
  height: calc(100% - 45px);
  height: -webkit-calc(100% - 45px);
  height: -moz-calc(100% - 45px);
  overflow-y: auto;
  /*setbody begin*/
  /*setbody end*/ }
  .yaoyue_caogao_win:before {
    display: table;
    content: ''; }
  .yaoyue_caogao_win h1 {
    text-align: center;
    margin-top: 80px;
    font-weight: normal;
    font-size: 24px;
    color: #0099e5; }
  .yaoyue_caogao_win .__descc {
    color: #71767a;
    text-align: center;
    font-size: 14px; }
  .yaoyue_caogao_win .___bodyy {
    margin-top: 50px;
    padding: 0 20px; }
  .yaoyue_caogao_win ._yyCGtitle {
    text-align: left;
    padding-left: 20px;
    color: #525558;
    font-size: 16px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    padding-right: 100px; }
  .yaoyue_caogao_win .__yyCGtype {
    text-align: left;
    padding-left: 20px;
    margin-top: 5px;
    color: #71767a;
    font-size: 14px; }
  .yaoyue_caogao_win ._countIcon {
    display: inline-block;
    position: absolute;
    text-align: center;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 18px;
    background-color: #71767a;
    border-radius: 50%; }
  .yaoyue_caogao_win .sets_body {
    position: relative;
    padding-top: 30px;
    margin: 0 auto; }
  .yaoyue_caogao_win .profile_body .sets_body .empty_view {
    background-image: url(//assetcdn.500px.org/assets/profiles/set-e4b94e65746a353d9a4a2182fa79f8a4.svg); }
  .yaoyue_caogao_win .px_card {
    position: relative;
    width: 280px;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s; }
  .yaoyue_caogao_win .px_card .avatar,
  .yaoyue_caogao_win .px_card .name,
  .yaoyue_caogao_win .px_card .top {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s; }
  .yaoyue_caogao_win .px_card .avatar,
  .yaoyue_caogao_win .px_card .top {
    background-position: center; }
  .yaoyue_caogao_win .px_card:hover {
    -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08); }
  .yaoyue_caogao_win .px_card.small {
    width: 280px;
    margin: 0 10px 20px; }
  .yaoyue_caogao_win .px_card.medium {
    width: 360px;
    margin: 0 25px 50px; }
  .yaoyue_caogao_win .px_card.medium .top {
    height: 240px; }
  .yaoyue_caogao_win .px_card.medium .bottom {
    position: relative;
    height: 110px;
    padding-top: 35px; }
  .yaoyue_caogao_win .px_card.no_badge.no_avatar .bottom {
    min-height: 90px;
    padding-top: 15px; }
  .yaoyue_caogao_win .px_card.no_badge .top {
    height: 240px; }
  .yaoyue_caogao_win .px_card.no_badge .bottom {
    height: auto;
    padding-top: 10px; }
  .yaoyue_caogao_win .px_card.no_badge .name {
    font-size: 20px;
    line-height: 2.4em; }
  .yaoyue_caogao_win .px_card.no_badge .description {
    margin-bottom: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  .yaoyue_caogao_win .px_card.no_badge .avatar_wrap {
    width: 30px;
    height: 30px;
    margin: 0 auto; }
  .yaoyue_caogao_win .px_card.no_badge .avatar,
  .yaoyue_caogao_win .px_card.no_badge .avatar_background {
    display: block;
    width: 30px;
    height: 30px;
    border: none;
    position: absolute;
    bottom: auto;
    left: auto;
    margin-left: auto; }
  .yaoyue_caogao_win .px_card.nsfw_placeholder .nsfw_placeholder_content {
    display: table; }
  .yaoyue_caogao_win .px_card.nsfw_placeholder img {
    display: none; }
  .yaoyue_caogao_win .px_card .nsfw_placeholder_content {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #222;
    text-align: center;
    padding: 0 10px; }
  .yaoyue_caogao_win .px_card .nsfw_placeholder_content span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 700;
    color: #fff; }
  .yaoyue_caogao_win .px_card .link_wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100; }
  .yaoyue_caogao_win .px_card .top {
    position: relative;
    width: 100%;
    height: 130px;
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #b9c1c7;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    transition: all 0.2s;
    border: 1px solid #eeeff2;
    border-bottom: none;
    border-top: none; }
  .yaoyue_caogao_win .px_card .avatar,
  .yaoyue_caogao_win .px_card .avatar_background {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -30px; }
  .yaoyue_caogao_win .px_card .avatar {
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 150;
    transition: all 0.2s; }
  .yaoyue_caogao_win .px_card .avatar:hover {
    opacity: 0.7; }
  .yaoyue_caogao_win .px_card .avatar_background {
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 10;
    background-color: #fff; }
  .yaoyue_caogao_win .px_card .button,
  .yaoyue_caogao_win .px_card .name {
    z-index: 150;
    position: relative; }
  .yaoyue_caogao_win .px_card .bottom {
    width: 100%;
    height: 150px;
    text-align: center;
    padding-top: 35px;
    border: 1px solid #eeeff2;
    border-top: none;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px; }
  .yaoyue_caogao_win .px_card .description,
  .yaoyue_caogao_win .px_card .followers,
  .yaoyue_caogao_win .px_card .name {
    line-height: 1.4em; }
  .yaoyue_caogao_win .px_card .name {
    color: #0099e5;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    max-width: calc(100% - 20px);
    max-width: -webkit-calc(100% - 20px);
    max-width: -moz-calc(100% - 20px);
    display: inline-block; }
  .yaoyue_caogao_win .px_card .name:hover {
    color: #0099e5; }
  .yaoyue_caogao_win .px_card .description,
  .yaoyue_caogao_win .px_card .followers {
    color: #b9c1c7;
    font-size: 14px;
    display: block;
    margin: 0 auto 15px;
    max-width: calc(100% - 20px);
    max-width: -webkit-calc(100% - 20px);
    max-width: -moz-calc(100% - 20px); }
  .yaoyue_caogao_win .px_card .description a,
  .yaoyue_caogao_win .px_card .followers a {
    color: #525558;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    z-index: 150; }
  .yaoyue_caogao_win .px_card .description a:hover,
  .yaoyue_caogao_win .px_card .followers a:hover {
    color: #0af; }
  .yaoyue_caogao_win .px_card .bottom.create_gallery_cta__content {
    cursor: pointer;
    height: 330px !important; }
  .yaoyue_caogao_win .checkbox.multi_values:before,
  .yaoyue_caogao_win .checkbox:before {
    background-position: center center;
    background-repeat: no-repeat; }
  .yaoyue_caogao_win .px_card .bottom.create_gallery_cta__content .create_gallery_cta__text {
    margin-top: 10px;
    color: #0099e5;
    font-size: 20px; }
  .yaoyue_caogao_win .px_card .bottom.create_gallery_cta__content .create_gallery_cta__icon {
    background-image: url("//pic.500px.me/images/svg/set/add.svg");
    background-position: 50% bottom;
    background-repeat: no-repeat;
    -webkit-background-size: 40px;
    background-size: 40px;
    padding-top: 45%;
    padding-top: calc(50% - 40px); }
  .yaoyue_caogao_win .px_card.medium.gic_audit {
    border: 1px solid #eeeff2; }
  .yaoyue_caogao_win .px_card.gic_audit .bottom {
    border: none; }
  .yaoyue_caogao_win .px_card .bottom .g_ul li {
    border-bottom: 1px solid #e0e1e3;
    height: 30px;
    line-height: 30px; }
  .yaoyue_caogao_win .px_card .bottom .g_ul li:last-child {
    border-bottom: none; }
  .yaoyue_caogao_win .px_card .bottom .g_left {
    float: left;
    text-align: left;
    color: #0099e5;
    width: 95px; }
  .yaoyue_caogao_win .px_card .bottom .g_right {
    float: right;
    text-align: right;
    width: 70%;
    width: calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    color: #b5b9bb; }
  .yaoyue_caogao_win .px_card .bottom .g_tags {
    padding: 30px 0 20px;
    border-bottom: 1px solid #424141; }
  .yaoyue_caogao_win .px_card .bottom .g_tags p {
    display: block;
    margin: 0;
    overflow: hidden;
    max-height: 80px;
    font-size: 12px;
    line-height: 20px; }
  .yaoyue_caogao_win .photo__top_buttons {
    z-index: 101;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    min-height: 50px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s; }
  .yaoyue_caogao_win .photo__top_buttons__close_button:hover {
    background-color: rgba(255, 255, 255, 0.4); }
  .yaoyue_caogao_win .photo__top_buttons__close_button,
  .yaoyue_caogao_win .photo__top_buttons__more_button {
    opacity: 0;
    -webkit-background-size: 20px;
    -webkit-border-radius: 3px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    pointer-events: auto;
    top: 0;
    float: right;
    background-position: center;
    width: 25px;
    height: 25px;
    right: 15px;
    cursor: pointer;
    position: absolute;
    background-repeat: no-repeat; }
  .yaoyue_caogao_win .photo__top_buttons__more_button {
    background-image: url("//pic.500px.me/images/svg/set/more.svg");
    background-size: 20px;
    border-radius: 3px;
    transition: all 0.2s ease-out; }
  .yaoyue_caogao_win .photo__top_buttons__close_button {
    background-image: url("//pic.500px.me/images/svg/close.svg");
    background-size: 20px;
    border-radius: 3px;
    transition: all 0.2s ease-out; }
  .yaoyue_caogao_win .full-aspect-ratio-photo-grid .photo_thumbnail.active .photo__top_buttons,
  .yaoyue_caogao_win .full-aspect-ratio-photo-grid .photo_thumbnail:hover .photo__top_buttons,
  .yaoyue_caogao_win .px_card.medium:hover .photo__top_buttons {
    visibility: visible;
    opacity: 1; }
  .yaoyue_caogao_win .full-aspect-ratio-photo-grid .photo_thumbnail.active .photo__top_buttons__more_button,
  .yaoyue_caogao_win .full-aspect-ratio-photo-grid .photo_thumbnail:hover .photo__top_buttons__edit_button,
  .yaoyue_caogao_win .full-aspect-ratio-photo-grid .photo_thumbnail:hover .photo__top_buttons__more_button,
  .yaoyue_caogao_win .px_card.medium:hover .photo__top_buttons__close_button,
  .yaoyue_caogao_win .px_card.medium:hover .photo__top_buttons__edit_button {
    top: 10px;
    right: 15px;
    opacity: 1; }
  .yaoyue_caogao_win .photo_thumbnail.active .credits,
  .yaoyue_caogao_win .photo_thumbnail.active .right,
  .yaoyue_caogao_win .photo_thumbnail:hover .credits,
  .yaoyue_caogao_win .photo_thumbnail:hover .right {
    opacity: 1;
    bottom: 10px;
    -webkit-transition: bottom 0.2s;
    -moz-transition: bottom 0.2s;
    transition: bottom 0.2s; }

/*app begin*/
.download_app_window {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 999;
  display: block; }

.download_app {
  width: 860px;
  height: 516px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("https://cdn-test.500px.me/images/unloginIndex/app-window-bg.png"); }
  .download_app .close_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 19px;
    height: 19px;
    font-size: 0;
    border-radius: 3px;
    z-index: 1; }
    .download_app .close_btn:hover {
      background-color: rgba(90, 90, 90, 0.4); }
    .download_app .close_btn:before {
      position: absolute;
      content: '.';
      display: block;
      width: 16px;
      height: 2px;
      top: 8px;
      left: 1.5px;
      background: #ffffff;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg); }
    .download_app .close_btn:after {
      position: absolute;
      content: '.';
      display: block;
      width: 16px;
      height: 2px;
      top: 8px;
      left: 1.5px;
      background: #ffffff;
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg); }

.download_app .wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
  overflow: hidden;
  position: relative; }

.download_app .text_wrap {
  text-align: left;
  margin-left: 380px;
  display: table;
  height: 100%; }

.download_app .text_wrap .center {
  display: table-cell;
  vertical-align: middle; }

.download_app .text_wrap h2, .download_app .text_wrap h4 {
  color: #FFFFFF;
  font-weight: normal;
  line-height: 1.4em;
  margin: 0; }

.download_app .text_wrap h2 {
  font-size: 32px;
  margin-bottom: 23px;
  line-height: 1.2em; }

.download_app .text_wrap h4 {
  font-size: 14px;
  max-width: 300px; }

.download_app .downloads {
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  color: white;
  text-align: left;
  line-height: 0;
  font-size: 0;
  margin-top: 16px; }

.download_app ._erwenma {
  margin-top: 70px; }
  .download_app ._erwenma .app_ma {
    margin-right: 38px; }
  .download_app ._erwenma img {
    width: 100px;
    height: 100px; }

.download_app .downloads a {
  display: inline-block;
  margin-right: 38px; }

.download_app .downloads img {
  display: block !important;
  width: auto;
  height: 27px;
  margin-left: 5px; }

.download_app .iphone {
  position: absolute;
  width: 274px;
  height: 547px;
  overflow: visible;
  line-height: 0;
  z-index: 1;
  top: 31px;
  left: 100px;
  right: auto;
  -webkit-transform: translate3d(0, 0, 0) rotateY(26deg);
  -moz-transform: translate3d(0, 0, 0) rotateY(26deg);
  -ms-transform: translate3d(0, 0, 0) rotateY(26deg);
  transform: translate3d(0, 0, 0) rotateY(26deg);
  -moz-perspective: 2200px;
  -ms-perspective: 2200px;
  perspective: 2200px;
  -webkit-perspective: 2200px; }
  .download_app .iphone img {
    max-width: 100%; }

.iphone_wrap .wrap {
  width: 413px;
  top: 100px;
  z-index: 0;
  height: 833px;
  position: absolute;
  -moz-perspective: 2200px;
  -ms-perspective: 2200px;
  perspective: 2200px;
  -webkit-perspective: 2200px; }

.iphone * {
  outline: 1px solid transparent; }

/*app end*/

.mobileNavBar {
  background-color: #fff; }
  .mobileNavBar .upper,
  .mobileNavBar .lower {
    padding: 0 16px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .mobileNavBar .upper {
    height: 44px; }
    .mobileNavBar .upper .upperRight {
      display: flex;
      align-items: center;
      justify-content: center; }
    .mobileNavBar .upper .logo {
      width: 64px;
      height: 16px;
      margin-top: 4px; }
    .mobileNavBar .upper .menuBtn {
      width: 24px; }
  .mobileNavBar .lower ul a {
    text-decoration: none;
    color: #0e0e1a;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px; }
  .mobileNavBar .lower .search {
    height: 36px;
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #EFF0F2;
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 88px;
    color: #70737b; }
    .mobileNavBar .lower .search .searchIcon {
      margin-right: 11px; }
    .mobileNavBar .lower .search span {
      font-size: 12px;
      font-weight: 600;
      color: #70737b;
      padding-left: 10px;
      border-left: 1px solid #70737b; }

.mobileDrawer {
  width: 236px;
  height: 100%;
  padding: 24px 16px;
  box-sizing: border-box;
  background-color: #fcfdfd;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column; }
  .mobileDrawer p {
    margin: 0; }
  .mobileDrawer .top {
    border-bottom: 1px solid #E0E2E4;
    padding-bottom: 12px; }
    .mobileDrawer .top .unloginBlock {
      font-size: 14px; }
      .mobileDrawer .top .unloginBlock p:first-child {
        display: flex;
        align-items: center;
        gap: 8px; }
      .mobileDrawer .top .unloginBlock p:last-child {
        margin-top: 8px;
        text-align: left; }
    .mobileDrawer .top .loginBlock {
      color: #0e0e1a; }
      .mobileDrawer .top .loginBlock h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 26px;
        margin: 8px 0 0;
        color: #0e0e1a; }
      .mobileDrawer .top .loginBlock p {
        font-size: 12px;
        line-height: 16px;
        margin-top: 4px; }
        .mobileDrawer .top .loginBlock p span {
          margin-right: 8px; }
  .mobileDrawer .middle {
    overflow-y: auto;
    flex: 1;
    margin-bottom: 12px; }
    .mobileDrawer .middle ul {
      padding: 12px 0; }
      .mobileDrawer .middle ul li {
        margin-bottom: 4px; }
        .mobileDrawer .middle ul li:last-child {
          margin-bottom: 0; }
    .mobileDrawer .middle .subMenuWrapper .subMenu {
      padding: 0;
      height: 0;
      transition: height 0.3s;
      overflow: hidden; }
      .mobileDrawer .middle .subMenuWrapper .subMenu li {
        padding-left: 24px; }
    .mobileDrawer .middle .subMenuWrapper .arrow {
      transition: transform 0.3s; }
    .mobileDrawer .middle .subMenuWrapper.expanded .subMenu {
      height: 172px; }
    .mobileDrawer .middle .subMenuWrapper.expanded .arrow {
      transform: rotate(-90deg); }
    .mobileDrawer .middle .logoutBtnWrapper {
      padding: 12px 0 10px 0;
      border-top: 1px solid #E0E2E4; }

.mobileMask {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
  display: none; }

.mobileNavBar .avatar,
.mobileDrawer .avatar {
  position: relative; }
  .mobileNavBar .avatar .inner,
  .mobileDrawer .avatar .inner {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    background: #E0E2E4; }
  .mobileNavBar .avatar .vip,
  .mobileDrawer .avatar .vip {
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 0;
    right: 0; }

.mobileNavBar .loginBtn,
.mobileNavBar .registerBtn,
.mobileDrawer .loginBtn,
.mobileDrawer .registerBtn {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 360px;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none; }

.mobileNavBar .loginBtn,
.mobileDrawer .loginBtn {
  color: #fff;
  background-color: #1754F1;
  margin-right: 8px; }

.mobileNavBar .registerBtn,
.mobileDrawer .registerBtn {
  background-color: #fff;
  color: #1754F1;
  border: 1px solid #1754F1;
  margin-right: 12px; }

.mobileNavBar .linkBtn,
.mobileDrawer .linkBtn {
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  color: #0e0e1a;
  text-decoration: none; }
  .mobileNavBar .linkBtn span,
  .mobileDrawer .linkBtn span {
    margin-left: 4px; }
  .mobileNavBar .linkBtn.active,
  .mobileDrawer .linkBtn.active {
    background-color: #eff0f2;
    color: #034ad3; }

.mobileNavBar .button,
.mobileDrawer .button {
  outline: none;
  user-select: none;
  touch-action: manipulation;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 40px;
  padding: 8px;
  font-size: 14px; }
  .mobileNavBar .button.blockBtn,
  .mobileDrawer .button.blockBtn {
    width: 100%; }
  .mobileNavBar .button.large,
  .mobileDrawer .button.large {
    height: 48px;
    padding: 12px;
    font-size: 16px; }
  .mobileNavBar .button.primary,
  .mobileDrawer .button.primary {
    color: #fff;
    background-color: #034ad3; }
  .mobileNavBar .button.secondary,
  .mobileDrawer .button.secondary {
    color: #1754F1;
    background-color: #fff;
    border: 1px solid #1754F1; }
  .mobileNavBar .button.disabled,
  .mobileDrawer .button.disabled {
    color: #D0D3D7;
    background-color: #EFF0F2;
    cursor: not-allowed; }
  .mobileNavBar .button.round,
  .mobileDrawer .button.round {
    border-radius: 360px; }

body.sticky_nav .main-nav-new {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-animation: slideInNav 0.2s ease-out;
  -moz-animation: slideInNav 0.2s ease-out;
  animation: slideInNav 0.2s ease-out; }

