@charset "UTF-8";
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.publish_info, div.tag, .pagination, div.function, .tabSet, .divider, .divider-vertical {
  clear: both;
  zoom: 1;
}
.publish_info:before, div.tag:before, .pagination:before, div.function:before, .tabSet:before, .divider:before, .divider-vertical:before, .publish_info:after, div.tag:after, .pagination:after, div.function:after, .tabSet:after, .divider:after, .divider-vertical:after {
  content: "";
  display: table;
}
.publish_info:after, div.tag:after, .pagination:after, div.function:after, .tabSet:after, .divider:after, .divider-vertical:after {
  clear: both;
}

/* @include transition(all,2s,ease-out); */
/*範例：*/
/* button{*/
/* 	@include opacity(0.8);*/
/* }*/
/*https://medium.com/@vilcins/usefull-sass-mixins-7a68c5491bda*/
/* Grid system*/
/*== Media queries breakpoints*/
/**/
/*## Define the breakpoints at which your layout will change, adapting to different screen sizes.*/
/* Extra small screen / phone*/
/*** Deprecated `$screen-xs` as of v3.0.1*/
/* $screen-xs:                  480px !default;*/
/*** Deprecated `$screen-xs-min` as of v3.2.0*/
/*** Deprecated `$screen-phone` as of v3.0.1*/
/* Small screen / tablet*/
/*** Deprecated `$screen-sm` as of v3.0.1*/
/* $screen-sm:                  768px !default;*/
/*** Deprecated `$screen-tablet` as of v3.0.1*/
/* Medium screen / desktop*/
/*** Deprecated `$screen-md` as of v3.0.1*/
/* $screen-md:                  992px !default;*/
/*** Deprecated `$screen-desktop` as of v3.0.1*/
/* Large screen / wide desktop*/
/*** Deprecated `$screen-lg` as of v3.0.1*/
/* $screen-lg:                  1400px !default;*/
/*** Deprecated `$screen-lg-desktop` as of v3.0.1*/
/* So media queries don't overlap when required, provide a maximum*/
/*== Grid system*/
/**/
/*## Define your custom responsive grid.*/
/*** Number of columns in the grid.*/
/* $grid-columns:              12 !default;*/
/*** Padding between columns. Gets divided in half for the left and right.*/
/* $grid-gutter-width:         30px !default;*/
/* Navbar collapse*/
/*** Point at which the navbar becomes uncollapsed.*/
/*** Point at which the navbar begins collapsing.*/
/*== Container sizes*/
/**/
/*## Define the maximum width of `.container` for different screen sizes.*/
/* Small screen / tablet*/
/*** For `$screen-sm-min` and up.*/
/* Medium screen / desktop*/
/*** For `$screen-md-min` and up.*/
/* Large screen / wide desktop*/
/*** For `$screen-lg-min` and up.*/
/* Centered container element*/
/* Creates a wrapper for a series of columns*/
/* Generate the extra small columns*/
/* Generate the small columns*/
/* Generate the medium columns*/
/* Generate the large columns*/
.row {
  margin-left: calc(-1 * 30px / 2);
  margin-right: calc(-1 * 30px / 2);
  clear: both;
  zoom: 1;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
.row > div {
  box-sizing: border-box;
}

.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: calc(30px / 2);
  padding-right: calc(30px / 2);
  clear: both;
  zoom: 1;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}

.breadcrumb ul li:before {
  content: " / ";
  display: inline-block;
  padding: 0px 4px;
  margin: 0px 5px 0px 5px;
  color: #888;
}

.cp {
  font-size: 1.0666666em;
  line-height: 1.65em;
}
@media screen and (max-width: 575px) {
  .cp {
    font-size: 1.2em;
  }
}
.cp h1 {
  font-size: 2em;
}
.cp h2 {
  font-size: 1.75em;
  margin-bottom: 1.25em;
}
.cp h3 {
  font-size: 1.5em;
}
.cp h4 {
  font-size: 1.25em;
  margin-top: 0;
  margin-bottom: 1em;
}
.cp h5 {
  font-size: 1.125em;
  margin-top: 0;
  margin-bottom: 1em;
}
.cp h6 {
  font-size: 1.125em;
  margin-top: 0;
  margin-bottom: 1em;
}
.cp p {
  font-size: 1em;
  line-height: 1.85em;
  margin-top: 0;
}
.cp ul,
.cp ol {
  font-size: 1em;
  margin-bottom: 1em;
}
.cp ul li,
.cp ol li {
  margin-bottom: 0.5em;
}
.cp dd,
.cp th,
.cp td figure {
  font-size: 1em;
}
.cp blockquote {
  background: #f1f1f1;
  font-style: normal;
  display: block;
  font-size: 1em;
  border-left: 5px solid #002D5F;
  padding: 2em;
  box-sizing: border-box;
  margin: 0 0em 2em;
}
.cp img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .cp img {
    max-width: 100%;
    width: auto;
    clear: both;
  }
}

body {
  font-size: 1em;
  font-weight: normal;
  color: #333;
  line-height: 1.45em;
  font-family: Lato, "PingFang TC", "Helvetica Neue", Helvetica, 微軟正黑體, Arial, sans-serif;
  -webkit-text-size-adjust: none;
}

a {
  color: #006fa1;
  text-decoration: none;
}
a:hover, a:focus {
  color: #0092d4;
  cursor: pointer;
}

kbd {
  background: #FFF;
  border-radius: 0.2em;
  color: #555;
  font-weight: bold;
  display: inline-block;
  padding: 0.1em 0.6em;
  font-size: 0.938em;
  font-family: sans-serif;
  margin-right: 0.4em;
  margin-bottom: 0.1em;
  vertical-align: middle;
  border-top: 1px solid #BBB;
  border-bottom: 3px solid #BBB;
  border-left: 2px solid #BBB;
  border-right: 2px solid #BBB;
}
kbd ~ kbd {
  margin-left: 0.4em;
}
kbd kbd {
  border: none;
}

.breadcrumb {
  padding: 0.1em 0em 0.1em;
  font-size: 0.813em;
  margin: 0px auto 5px;
}
.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb ul li {
  display: inline-block;
  margin: 0px 0.1em 0.1em 0px;
  color: #333;
}
.breadcrumb ul li:first-child:before {
  content: "";
  display: inline-block;
  color: #666;
  margin-left: 0;
  padding: 0;
}
.breadcrumb a {
  color: #333;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  color: #0092d4;
}

.divider, .divider-vertical {
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 0.813em;
  color: grey;
  display: block;
}

.divider {
  display: table;
  line-height: 1;
  margin: 20px 0;
}
.divider:after, .divider:before {
  content: "";
  display: table-cell;
  position: relative;
  top: 50%;
  width: 50%;
  background-repeat: no-repeat;
  background-image: url("../images/basic/divider.jpg");
}
.divider:before {
  background-position: right 1em top 50%;
}
.divider:after {
  background-position: left 1em top 50%;
}

.divider-vertical {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: auto;
  height: 50%;
  line-height: 0;
  transform: translateX(-50%);
}
.divider-vertical:after, .divider-vertical:before {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 0;
  height: calc(100% - 1.2rem);
  border-left: 1px solid #CFCFCF;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.divider-vertical:before {
  top: -100%;
}
.divider-vertical:after {
  bottom: 0;
}

.btn_grp {
  text-align: center;
  margin-top: 1em;
}
.btn_grp._center {
  width: 100%;
  justify-content: center;
}

.upload_grp .upload_btn, input[type=reset], input[type=submit], button,
input[type=button], .btn-remove, .btn-reset, .btn-normal, .btn-secondary, .btn-primary, .btn-text, .btn-purple, .btn-red, .btn-orange, .btn-yellow, .btn-blue, .btn-green, .btn {
  font-size: 0.938em;
  background-image: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
  line-height: normal;
  width: auto;
  min-width: 4em;
  margin: 0.25em;
}

.btn {
  padding: 0.75em 2em;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #eee;
  color: #333;
  border-radius: 4px;
  transition: 0.3s ease-out;
  text-shadow: 0px 0px 0px RGBA(0, 0, 0, 0.3);
}
.btn:hover, .btn:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn:active {
  transform: translateY(3px);
}
.btn.active {
  background: #e1e1e1;
  cursor: pointer;
}
.btn i {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.btn:hover, .btn:focus {
  color: #333;
  outline: none;
}
.btn .ink {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
}
.btn .animate {
  animation: ripple 0.35s linear;
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(6.5);
  }
}

.btn-green {
  background-color: #4cae4c;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-green:hover, .btn-green:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-green:active {
  transform: translateY(3px);
}
.btn-green.active {
  background: #449d44;
  cursor: pointer;
}

.btn-blue {
  background-color: #08b2ff;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-blue:hover, .btn-blue:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-blue:active {
  transform: translateY(3px);
}
.btn-blue.active {
  background: #00a3ed;
  cursor: pointer;
}

.btn-yellow {
  background-color: #f0b603;
  color: #333;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-yellow:hover, .btn-yellow:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-yellow:active {
  transform: translateY(3px);
}
.btn-yellow.active {
  background: #d7a303;
  cursor: pointer;
}

.btn-orange {
  background-color: #e96800;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-orange:hover, .btn-orange:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-orange:active {
  transform: translateY(3px);
}
.btn-orange.active {
  background: #cf5d00;
  cursor: pointer;
}

.btn-red {
  background-color: #ff2535;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-red:hover, .btn-red:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-red:active {
  transform: translateY(3px);
}
.btn-red.active {
  background: #ff0b1e;
  cursor: pointer;
}

.btn-purple {
  background-color: #a047be;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-purple:hover, .btn-purple:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-purple:active {
  transform: translateY(3px);
}
.btn-purple.active {
  background: #923daf;
  cursor: pointer;
}

.btn-primary, .btn-text {
  background-color: #002d5f;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-primary:hover, .btn-primary:focus, .btn-text:hover, .btn-text:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-primary:active, .btn-text:active {
  transform: translateY(3px);
}
.btn-primary.active, .btn-text.active {
  background: #002146;
  cursor: pointer;
}
.btn-primary i, .btn-text i {
  filter: invert(100%);
  opacity: 1;
}
.btn-primary i span, .btn-text i span {
  filter: invert(100%);
}

.btn-secondary {
  background-color: #00a3ed;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-secondary:hover, .btn-secondary:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-secondary:active {
  transform: translateY(3px);
}
.btn-secondary.active {
  background: #0092d4;
  cursor: pointer;
}

.btn-normal {
  background-color: #555;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-normal:hover, .btn-normal:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-normal:active {
  transform: translateY(3px);
}
.btn-normal.active {
  background: #484848;
  cursor: pointer;
}

.btn-reset {
  background-color: #555;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-reset:hover, .btn-reset:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-reset:active {
  transform: translateY(3px);
}
.btn-reset.active {
  background: #484848;
  cursor: pointer;
}
.btn-reset i {
  filter: invert(100%);
  opacity: 1;
}
.btn-reset i span {
  filter: invert(100%);
}

.btn-remove {
  background-color: #939393;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.btn-remove:hover, .btn-remove:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.btn-remove:active {
  transform: translateY(3px);
}
.btn-remove.active {
  background: #868686;
  cursor: pointer;
}
.btn-remove i {
  filter: invert(100%);
  opacity: 1;
}
.btn-remove i span {
  filter: invert(100%);
}

.btn-xl {
  font-size: 1.407em;
}

.btn-lg {
  font-size: 1.1725em;
}

.btn-sm {
  font-size: 0.879844em;
}

.btn-xs {
  font-size: 0.7035em;
}

hr {
  border: none;
  border-top: 1px solid #CFCFCF;
  margin: 1em 0px;
  display: block;
  clear: both;
}

img.img_rounded {
  border-radius: 10px;
}
img.img_circle {
  border-radius: 50%;
}
img:not([src]) {
  visibility: hidden;
  opacity: 0;
}
img.lazy {
  visibility: hidden;
}
img.loaded {
  visibility: visible;
  animation: lazy_animation 0.5s ease-out;
}

@keyframes lazy_animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*for IE */
.img-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #F5F5F5;
}
.img-container:before {
  display: inline-block;
  content: "";
  padding-top: 75%;
}
.img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.img-container a {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.img-container a .caption {
  position: absolute;
  width: 100%;
  height: 3em;
  line-height: 3em;
  background: rgba(0, 0, 0, 0.45);
  padding: 0 1em;
  font-size: 1.25em;
  color: #FFF;
  margin: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .img-container a .caption {
    width: 100%;
    height: 2em;
    line-height: 2em;
    left: 0;
    padding: 0 1em;
  }
}
.img-container a:focus:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  box-shadow: 0 0px 0px 2px #0092d4 inset;
}
.img-container img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.img-container iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ie-object-contain, .ie-object-fill, .ie-object-cover, .ie-object-none {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
}
.ie-object-contain img, .ie-object-fill img, .ie-object-cover img, .ie-object-none img {
  opacity: 0;
  width: 0px;
  height: 0px;
}

.ie-object-none {
  background-size: auto;
}

.ie-object-cover {
  background-size: cover;
}

.ie-object-fill {
  background-size: 100% 100%;
}

.ie-object-contain {
  background-size: contain;
}

.fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.none {
  -o-object-fit: none;
     object-fit: none;
}

.scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

[tooltip] {
  position: relative;
}

[tooltip]:before,
[tooltip]:after {
  text-transform: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]:before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001;
}

[tooltip]:after {
  content: attr(tooltip);
  text-align: left;
  min-width: 150px;
  line-height: 1.5em;
  max-width: 300px;
  font-size: 0.813em;
  max-height: 4.86153675em;
  overflow: hidden;
  padding: 0.5em;
  border-radius: 4px;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
  box-sizing: border-box;
}

[tooltip]:hover:before,
[tooltip]:hover:after {
  display: block;
}

[tooltip=""]:before,
[tooltip=""]:after {
  display: none !important;
}

[tooltip]:not([flow]):before,
[tooltip][flow^=up]:before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

[tooltip]:not([flow]):after,
[tooltip][flow^=up]:after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow]):before,
[tooltip]:not([flow]):after,
[tooltip][flow^=up]:before,
[tooltip][flow^=up]:after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

[tooltip][flow^=down]:before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^=down]:after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]:before,
[tooltip][flow^=down]:after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

[tooltip][flow^=left]:before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=left]:after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=right]:before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^=right]:after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover:before,
[tooltip]:not([flow]):hover:after,
[tooltip][flow^=up]:hover:before,
[tooltip][flow^=up]:hover:after,
[tooltip][flow^=down]:hover:before,
[tooltip][flow^=down]:hover:after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover:before,
[tooltip][flow^=left]:hover:after,
[tooltip][flow^=right]:hover:before,
[tooltip][flow^=right]:hover:after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.tabSet {
  max-width: 100%;
  margin: 1em auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .tabSet {
    width: auto;
    height: auto !important;
  }
}

.tabs {
  position: relative;
}
.tabs > .tabItem {
  float: left;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1;
}
.tabs > .tabItem.active > a {
  background-color: #002D5F;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .tabs > .tabItem {
    float: none;
  }
  .tabs > .tabItem > a {
    width: 100% !important;
    border-bottom: 1px solid #888;
  }
  .tabs > .tabItem.active > a {
    border-color: #bbb;
  }
}
.tabs > .tabItem > a {
  display: block;
  padding: 16px 0 14px;
  text-align: center;
  background-color: #aaa;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.tabs > .tabItem > a:hover {
  background: #002D5F;
}

.example-2 .tabItem > a:hover {
  background: #755934;
}
.example-2 .tabItem.active > a {
  background: #755934;
}

.active + .tabContent {
  display: block;
}

.tabContent {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  clear: both;
  padding: 30px 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .tabContent {
    position: static;
  }
}
.tabContent ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabContent li {
  margin: 0 0 1.3em 0;
  padding: 0;
  line-height: 1.6;
  border-bottom: 1px #CCC dashed;
}
@media screen and (max-width: 767px) {
  .tabContent li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.tabContent li a {
  color: #333;
  text-decoration: none;
}
.tabContent li a:hover, .tabContent li a:focus {
  color: #0092d4;
  cursor: pointer;
}
.tabContent li time {
  display: inline-block;
  margin: 0 0 0 1em;
  font-size: 0.813em;
  color: #666;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.938em;
  color: #222;
}
@media screen and (max-width: 575px) {
  table {
    width: 100%;
  }
}
table tr {
  transition: 0.3s ease-out;
}
table tr:hover {
  color: #111;
}
table th,
table td {
  padding: 0.2em 0.5em;
  text-align: left;
}
table th.main_data,
table td.main_data {
  text-align: center;
}
@media screen and (max-width: 767px) {
  table th.main_data,
  table td.main_data {
    max-width: 100%;
    min-width: 300px;
  }
}
table th.text-left,
table td.text-left {
  text-align: left;
}
table th.text-right,
table td.text-right {
  text-align: right;
}
table th.last-child,
table td.last-child {
  min-width: 8em;
}
table th input[type=checkbox],
table td input[type=checkbox] {
  margin-top: 4px;
}
table th .pic,
table td .pic {
  max-width: 80px;
  overflow: hidden;
  position: relative;
}
table th .pic:before,
table td .pic:before {
  display: inline-block;
  content: "";
  padding-top: 75%;
}
table th .pic img,
table td .pic img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
table th .pic a,
table td .pic a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
table th .pic img,
table td .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
table th.hasInput,
table td.hasInput {
  width: 3em;
}
table td {
  border: #ebebeb 1px solid;
  word-break: break-all;
  border-left: none;
  border-right: none;
  text-align: left;
  min-height: 3em;
}
table td.main_data {
  text-align: left;
  min-width: 10em;
  font-weight: bold;
}
table td.main_data a {
  word-break: break-all;
  color: #1f72bb;
  display: block;
  font-size: 1rem;
}
table td.main_data a:hover, table td.main_data a:focus {
  color: #308cdd;
}
table td > .btn {
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  min-width: 2em;
  background: #FFF;
  position: relative;
  border: 1px solid #DDD;
}
table td > .btn:hover, table td > .btn:focus {
  border: 1px solid #21baff;
  background: #FFF;
  box-shadow: none;
  background: #21baff;
}
table td > .btn:hover:before, table td > .btn:focus:before {
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
}
table td > .btn:hover i, table td > .btn:focus i {
  filter: invert(100%);
}
table td > .btn:hover i span, table td > .btn:focus i span {
  filter: invert(100%);
}
table td > .btn:hover span, table td > .btn:focus span {
  filter: invert(100%);
}
table td > .btn-delete:hover, table td > .btn-delete:focus {
  color: #FFF;
  background: #FF3E4D;
  border: 1px solid #FF3E4D;
}
table td.num {
  text-align: center;
  width: 3em;
}
table td time {
  white-space: nowrap;
  font-size: 0.875rem;
}
table td span {
  display: inline-block;
  vertical-align: middle;
  border-radius: 0.2em;
  text-align: center;
  margin-right: 0.25em;
  font-size: 0.938rem;
}
table td span.green {
  color: #FFF;
  margin: 0 0.1em 0em;
  padding: 0.2em;
  min-width: 4em;
  white-space: nowrap;
  background: #4cae4c;
}
table td span.red {
  color: #FFF;
  margin: 0 0.2em 0.2em;
  padding: 0.2em;
  min-width: 4em;
  white-space: nowrap;
  background: #ff0b1e;
}
table td span.blue {
  color: #FFF;
  margin: 0 0.2em 0.2em;
  padding: 0.2em;
  min-width: 4em;
  white-space: nowrap;
  background: #00a3ed;
}
table td span.orange {
  color: #FFF;
  margin: 0 0.2em 0.2em;
  padding: 0.2em;
  min-width: 4em;
  white-space: nowrap;
  background: #ff7a0e;
}
table td span.gray {
  color: #FFF;
  margin: 0 0.2em 0.2em;
  padding: 0.2em;
  min-width: 4em;
  white-space: nowrap;
  background: #b3b3b3;
}
table th {
  background-color: #f2f2f2;
  color: #111;
  text-align: left;
  white-space: nowrap;
  border-left: none;
  border-right: none;
}
table th a {
  color: #111;
}
table th a i {
  opacity: 0.5;
  font-size: 0.8em;
}
table th a i:before {
  top: -0.2em;
}
table th a:hover, table th a:focus {
  color: #333;
}
table th a:hover i, table th a:focus i {
  opacity: 1;
}
table th i {
  margin: 0 0.05em;
}
table th i:before {
  width: 0.75em !important;
  height: 0.75em !important;
}
table.table_hover tr:hover {
  background: #FAFAFA;
}
table.table_sprite tr:nth-child(even) {
  background: #FAFAFA;
}

@media screen and (max-width: 575px) {
  .table_list {
    background-color: transparent !important;
  }
  .table_list thead,
  .table_list tbody,
  .table_list th,
  .table_list td,
  .table_list tr {
    display: block;
  }
  .table_list thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table_list tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
  .table_list td {
    border: none !important;
    border-bottom: 1px solid #eee !important;
    position: relative;
    padding-left: 35% !important;
    white-space: normal;
    text-align: left;
  }
  .table_list td:before {
    content: attr(data-title);
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 30%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #000;
  }
}

.fix_th_table {
  margin: 1em 0;
}
@media screen and (max-width: 767px) {
  .fix_th_table {
    position: relative;
    width: 100%;
    overflow: hidden !important;
  }
}
@media screen and (max-width: 767px) {
  .fix_th_table table {
    display: block;
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 1em;
  }
}
.fix_th_table th,
.fix_th_table td {
  width: 10em;
  padding: 0.8em 0;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fix_th_table th,
  .fix_th_table td {
    display: inline-block;
    margin-right: -6px;
    margin-left: 0;
    margin-top: -1px;
  }
}
.fix_th_table th:first-child {
  width: 8em;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .fix_th_table th:first-child {
    position: absolute !important;
    left: 0;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .fix_th_table tr {
    display: block;
    clear: both;
    white-space: nowrap;
    width: auto;
    padding-left: 8em;
  }
  .fix_th_table tr:first-child {
    border-top: #ddd 1px solid;
  }
}

.table_wrapper {
  margin-bottom: 2em;
}
@media screen and (max-width: 991px) {
  .table_wrapper {
    width: 100%;
    display: block;
    clear: both;
    zoom: 1;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 1em;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
  }
  .table_wrapper:before, .table_wrapper:after {
    content: "";
    display: table;
  }
  .table_wrapper:after {
    clear: both;
  }
  .table_wrapper table {
    width: 100%;
    min-width: 600px;
  }
}

.scroltable {
  min-width: 600px !important;
}

.scroltable-wrapper {
  position: relative;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  overflow-y: hidden;
}

.scroltable-container {
  overflow: auto;
}

.scroltable-nav {
  display: none;
  position: absolute;
  width: 60px;
  height: 100%;
  cursor: pointer;
  z-index: 9;
}

.scroltable-nav.scroltable-nav-left {
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.scroltable-nav.scroltable-nav-left .tablearrow_left {
  position: fixed;
  left: 0em;
  top: 0em;
  display: none;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .scroltable-nav.scroltable-nav-left .tablearrow_left {
    display: block;
  }
}
.scroltable-nav.scroltable-nav-left .tablearrow_left:before {
  position: absolute;
  top: 0em;
  left: -0.2em;
  width: 30px;
  height: 30px;
  background: url(../vendor/scrolltable/images/arrow-left.png) no-repeat 10px center;
  content: "";
  z-index: 2;
}

.scroltable-nav.scroltable-nav-right {
  right: 0;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.scroltable-nav.scroltable-nav-right .tablearrow_right {
  position: fixed;
  top: 0em;
  right: 0em;
  display: none;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .scroltable-nav.scroltable-nav-right .tablearrow_right {
    display: block;
  }
}
.scroltable-nav.scroltable-nav-right .tablearrow_right:before {
  position: absolute;
  top: 0em;
  right: -0.2em;
  width: 30px;
  height: 30px;
  background: url(../vendor/scrolltable/images/arrow-right.png) no-repeat right 10px center;
  content: "";
  z-index: 2;
}

@keyframes arrow_left {
  from {
    left: -0.2em;
  }
  to {
    left: 0.3em;
  }
}
@keyframes arrow_right {
  from {
    right: -0.2em;
  }
  to {
    right: 0.3em;
  }
}
.scroll-select::-webkit-scrollbar {
  width: 6px;
}

.scroll-select::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.scroll-select::-webkit-scrollbar-thumb:hover {
  background: #555;
}

select::-ms-expand {
  display: none;
}

.labelEffect {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .labelEffect {
    margin-left: 0;
  }
}
.labelEffect.password_toggle input[type=text], .labelEffect.password_toggle input[type=password], .labelEffect.hasBtn input[type=text], .labelEffect.hasBtn input[type=password] {
  letter-spacing: 0.1em;
}
.labelEffect > label {
  width: 100%;
  color: #222;
  align-items: flex-start;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.6em 0;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.labelEffect input, .labelEffect textarea, .labelEffect select {
  flex: 1 1 70%;
  border-radius: 0.2em;
}
.labelEffect [class^=btn], .labelEffect .additonal {
  min-width: 0em;
  margin: 0;
  padding: 0.2em 1em;
  font-size: 0.938em;
  height: 48px;
}
.labelEffect .btn-icon {
  flex: 0 1 3em;
  background: none;
  flex: 0 1 10%;
  min-width: 0em;
  margin: 0em 0 0 0.5em;
  padding: 0.2em 0.25em;
  font-size: 0.938em;
  position: absolute;
  right: 2px;
}
.labelEffect .btn-icon i {
  font-size: 1.25em;
}

.additional {
  white-space: nowrap;
  padding: 0.5em 0;
}
.additional img {
  max-height: 3em;
}
.additional label input {
  flex: 0 1 1.2em !important;
  margin-top: 0;
}
.additional .btn_circle {
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  min-width: 2.5em;
  background: #FFF;
  position: relative;
  border: 1px solid #DDD;
}
.additional .btn_circle:hover, .additional .btn_circle:focus {
  border: 1px solid #21baff;
  background: #FFF;
  box-shadow: none;
  background: #21baff;
}
.additional .btn_circle:hover:before, .additional .btn_circle:focus:before {
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
}
.additional .btn_circle:hover i, .additional .btn_circle:focus i {
  filter: invert(100%);
}
.additional .btn_circle:hover i span, .additional .btn_circle:focus i span {
  filter: invert(100%);
}
.additional .btn_circle:hover span, .additional .btn_circle:focus span {
  filter: invert(100%);
}
.additional .check_grp {
  padding-top: 0;
}

.flex-form {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-top: 0.5em;
}
.flex-form.flex-6-6 {
  align-content: stretch;
}
.flex-form.flex-6-6 .form_grp {
  flex: 1 1 50%;
}
@media screen and (max-width: 767px) {
  .flex-form {
    margin: 0.2em;
    width: 100%;
    min-width: 1em;
  }
}
.flex-form .form_grp {
  flex: 0 1 100%;
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 0;
  margin: 0.35em 0;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flex-form .form_grp {
    flex-basis: 100%;
  }
}
.flex-form .form_grp:has(.form_content .checkSwitch) .form_title {
  padding-top: 0;
}
.flex-form .form_grp .labelEffect {
  flex: 1 1 auto;
}
.flex-form .form_grp .help {
  font-size: 0.9em;
  color: #333;
  text-align: right;
  margin-left: auto;
  padding: 0.35em 0;
  display: block;
  width: 100%;
}
.flex-form .form_grp.error input {
  background: #F5F5F5;
}
.flex-form .form_grp.error .labelEffect > label {
  color: #FF3E4D;
}
.flex-form .form_grp.error .labelEffect > label:before, .flex-form .form_grp.error .labelEffect > label:after {
  background: #FF3E4D;
}
.flex-form .form_grp.error .form_title {
  color: #FF3E4D;
}
.flex-form .form_grp.error .form_inline .labelEffect:before {
  width: 50%;
  left: 0%;
}
.flex-form .form_grp.error .form_inline .labelEffect:after {
  width: 50%;
  right: 50%;
}
.flex-form .form_grp.error input[type=text],
.flex-form .form_grp.error input[type=reset],
.flex-form .form_grp.error input[type=file],
.flex-form .form_grp.error input[type=tel],
.flex-form .form_grp.error input[type=password],
.flex-form .form_grp.error input[type=date],
.flex-form .form_grp.error textarea,
.flex-form .form_grp.error select {
  box-shadow: 0 0 0 2px #FF3E4D;
  outline: none;
}
.flex-form .form_grp._column {
  flex-direction: column;
  align-items: flex-start;
}
.flex-form .form_grp._column .form_title {
  padding: 0.5em 0;
}
.flex-form .form_grp._column .form_content {
  padding-left: 0;
}
.flex-form .form_grp._column .form_content .check_grp,
.flex-form .form_grp._column .form_content .radio_grp {
  padding-top: 0;
}
.flex-form .form_grp._column .labelEffect {
  flex: 1 1 100%;
}
@media screen and (max-width: 991px) {
  .flex-form .form_grp {
    flex-direction: column;
  }
}
.flex-form .datepick {
  display: flex;
  flex: 0 1 100%;
  flex-flow: row nowrap;
  align-items: flex-start;
  position: relative;
}
.flex-form .datepick .help {
  bottom: -1.75em;
}
.flex-form .datepick input.calendar {
  width: 100%;
}
.flex-form .datepick .btn {
  position: absolute;
  padding: 0;
  margin: 0;
  right: 0;
  bottom: 3px;
  min-width: 0em;
  border: none;
  align-self: flex-start;
}
.flex-form .datepick .btn i {
  font-size: 1.5em;
  opacity: 0.75;
  margin: 0;
}
.flex-form .datepick .btn i:before {
  margin: 0;
}
.flex-form .datepick .btn:hover i, .flex-form .datepick .btn:focus i {
  opacity: 1;
}
.flex-form .datepick .startDate, .flex-form .datepick .endDate {
  flex: 0 1 calc(50% - 1em);
  position: relative;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(50% - 1em);
  max-width: calc(50% - 1em);
}
.flex-form .datepick .endDate {
  margin-left: 1em;
}
.flex-form .datepick .endDate:after {
  position: absolute;
  content: "~";
  left: -1em;
  top: 55px;
  font-size: 1.125rem;
}
.flex-form .datepick .btn {
  background: none;
}
.flex-form .form_title_th, .flex-form .form_content_th {
  text-align: center;
  font-weight: bold;
  padding: 0.2em 0 1.5em;
  font-size: 0.938em;
  height: 3em;
  line-height: 3em;
}
@media screen and (max-width: 767px) {
  .flex-form .form_title_th, .flex-form .form_content_th {
    display: none;
  }
}
.flex-form .form_title {
  font-weight: bold;
  padding-top: 12px;
  font-size: 1.125rem;
}
@media screen and (max-width: 991px) {
  .flex-form .form_title {
    padding-bottom: 12px;
  }
}
.flex-form .form_content {
  display: flex;
  flex-flow: row wrap;
  flex: 1 1 calc(100% - 200px);
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
}
.flex-form .form_content [class^=notice] {
  flex: 1 1 100%;
}
.flex-form .form_content.form_inline {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: flex-end;
  padding-bottom: 0em;
  border-bottom: none;
}
.flex-form .form_content.form_inline .labelEffect {
  flex: 1 1 auto;
  align-self: center;
}
.flex-form .form_content.form_inline .labelEffect:before, .flex-form .form_content.form_inline .labelEffect:after {
  content: "";
  display: block;
  width: 0%;
  left: 50%;
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: transparent;
  transition: 0.2s ease all;
}
.flex-form .form_content.form_inline .labelEffect.short, .flex-form .form_content.form_inline .labelEffect.zip, .flex-form .form_content.form_inline .labelEffect.ext, .flex-form .form_content.form_inline .labelEffect.county, .flex-form .form_content.form_inline .labelEffect.dist {
  flex: 0 1 8em;
  text-align: center;
  min-width: 8em;
  flex-direction: row;
}
.flex-form .form_content.form_inline .labelEffect.short input, .flex-form .form_content.form_inline .labelEffect.zip input, .flex-form .form_content.form_inline .labelEffect.ext input, .flex-form .form_content.form_inline .labelEffect.county input, .flex-form .form_content.form_inline .labelEffect.dist input {
  text-align: center;
}
.flex-form .form_content.form_inline .labelEffect.range {
  flex-direction: row;
}
.flex-form .form_content.form_inline .labelEffect.range span {
  margin: 0 10px;
}
.flex-form .form_content.form_inline .labelEffect.range + span {
  font-size: 0.875rem;
  align-self: center;
  justify-content: center;
  white-space: nowrap;
  margin-right: 0.5em;
  color: #999;
}
.flex-form .form_content.form_inline .labelEffect.address {
  flex: 1 1 auto;
}
@media screen and (max-width: 991px) {
  .flex-form .form_content.form_inline .labelEffect.address {
    flex: 0 1 100%;
  }
}
.flex-form .form_content.form_inline .labelEffect span {
  font-size: 0.875rem;
  align-self: center;
  justify-content: center;
  white-space: nowrap;
  margin-right: 0.5em;
  color: #999;
}
.flex-form .form_content .help {
  padding: 0.1em 0.5em;
  margin: 6px 0 0;
}
.flex-form .form_content .help + .btn_grp {
  margin-top: 0;
}
.flex-form .form_content p, .flex-form .form_content p.notice {
  font-size: 0.875rem;
  flex: 1 1 80%;
  margin: 0;
  color: #999;
  background: none;
  padding: 0;
  border: none;
}
.flex-form .form_content .form_grp {
  border-bottom: none;
}
.flex-form .form_content .info {
  margin: 0.3em 0;
}
.flex-form .form_content .info span {
  display: inline-block;
  margin-right: 0.3em;
}
.flex-form .form_content.hasDot {
  padding-right: 1em;
  position: relative;
}
.flex-form .form_content.hasDot button, .flex-form .form_content.hasDot a, .flex-form .form_content.hasDot input[type=button] {
  padding: 0.5em !important;
  right: 1.1em;
  top: 0em;
  font-size: 1em;
  margin: 0;
  width: 3em;
  min-width: 3em;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #FFF;
  background: linear-gradient(to bottom, #FFF, #EEE);
  border: 1px solid #CCC;
}
.flex-form .form_content.hasDot button:hover, .flex-form .form_content.hasDot button:focus, .flex-form .form_content.hasDot a:hover, .flex-form .form_content.hasDot a:focus, .flex-form .form_content.hasDot input[type=button]:hover, .flex-form .form_content.hasDot input[type=button]:focus {
  background: #FFF;
  border: 1px solid #0092d4 !important;
}
.flex-form .form_content.hasDot > input[type=text] {
  width: calc(100% - 3.5em);
}
.flex-form .form_content .select {
  display: flex;
  flex-flow: row wrap;
}
.flex-form .form_content .select select {
  margin: 0 0.5em 0em 0;
  flex: 1 1 calc(50% - 0.5em);
}
.flex-form .form_content .pickBtn {
  display: flex;
  position: relative;
  flex: 1 1 100%;
}
.flex-form .form_content .pickBtn input[type=text] {
  width: 100%;
  flex: 0 1 100%;
  padding-right: 7em;
}
.flex-form .form_content .pickBtn .btn {
  position: absolute;
  padding: 0.1em 1em;
  max-width: auto;
  right: 0.1em;
}
.flex-form .form_content .btn_grp {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 4px;
       column-gap: 4px;
  width: 100%;
  padding: 0;
  margin-top: 10px;
}
.flex-form .form_content .btn_grp .btn {
  height: 44px;
}
.flex-form .form_content .flex_full {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.flex-form .form_content .flex_full .column {
  flex: 1 1 auto;
}
.flex-form .form_content .flex_full .column .form_flex {
  margin: 4px 0;
}
.flex-form .form_content .flex_full .btn_grp {
  width: auto;
  min-width: auto;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .flex-form .form_content .flex_full {
    flex-direction: column;
  }
}

.form_flex {
  display: flex;
  gap: 6px;
  width: 100%;
}
.form_flex [class^=btn] {
  height: 44px;
  margin: 0;
  padding: 0.2em 1em;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.form_flex .btn_grp {
  margin: 0;
  padding: 0;
}

form .form_grp,
form .check_grp,
form .radio_grp,
form .btn_grp,
form .upload_grp, div .form_grp,
div .check_grp,
div .radio_grp,
div .btn_grp,
div .upload_grp {
  display: flex;
  flex-flow: row wrap;
}
form .check_grp,
form .radio_grp, div .check_grp,
div .radio_grp {
  display: flex;
  flex-flow: column wrap;
  position: relative;
  padding-top: 12px;
}
form .check_grp label,
form .radio_grp label, div .check_grp label,
div .radio_grp label {
  position: relative;
  display: flex;
}
form .check_grp label input,
form .radio_grp label input, div .check_grp label input,
div .radio_grp label input {
  position: relative;
  z-index: 1;
  border-radius: 0.25em;
}
form .check_grp label input:checked ~ span:after,
form .radio_grp label input:checked ~ span:after, div .check_grp label input:checked ~ span:after,
div .radio_grp label input:checked ~ span:after {
  position: absolute;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #54caff;
  content: "";
  left: 0em;
  top: 0.3em;
  z-index: 0;
  animation: ripple 0.35s linear;
}
form .check_grp.form_inline,
form .radio_grp.form_inline, div .check_grp.form_inline,
div .radio_grp.form_inline {
  flex-flow: row wrap;
}
form .check_grp.form_inline label,
form .radio_grp.form_inline label, div .check_grp.form_inline label,
div .radio_grp.form_inline label {
  flex: 0 1 auto;
  margin-right: 1em;
  display: flex;
  align-items: center;
}
form .radio_grp label input, div .radio_grp label input {
  border-radius: 50%;
}
form .form_grp.form_inline label,
form .upload_grp.form_inline label, div .form_grp.form_inline label,
div .upload_grp.form_inline label {
  display: inline-block;
  margin-right: 0.5em;
}
form .form_grp.form_inline input,
form .form_grp.form_inline textarea,
form .form_grp.form_inline select,
form .upload_grp.form_inline input,
form .upload_grp.form_inline textarea,
form .upload_grp.form_inline select, div .form_grp.form_inline input,
div .form_grp.form_inline textarea,
div .form_grp.form_inline select,
div .upload_grp.form_inline input,
div .upload_grp.form_inline textarea,
div .upload_grp.form_inline select {
  width: auto;
}
form .form_grp.form_inline input[type=radio],
form .upload_grp.form_inline input[type=radio], div .form_grp.form_inline input[type=radio],
div .upload_grp.form_inline input[type=radio] {
  width: 1em;
}
form .form_grp .innerWrap,
form .upload_grp .innerWrap, div .form_grp .innerWrap,
div .upload_grp .innerWrap {
  padding: 1em 1.5em;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  border-radius: 0.3em;
}

.tipInfo {
  word-break: keep-all;
  line-height: 48px;
  color: #555;
  font-size: 0.875rem;
}

.punctuation {
  display: inline-block;
  line-height: 48px;
  font-weight: bold;
  padding: 0 4px;
}

.scrollArea {
  flex: 1 1 auto;
}
.scrollArea select[multiple] {
  height: 120px;
  overflow-y: scroll;
  border: none;
  background: #F5F5F5;
  border-radius: 0.2em;
  border: 1px solid #dcdcdc;
  padding: 0.65em 0.75em;
}
.scrollArea ol, .scrollArea ul {
  margin: 0;
}

.btn_grp_function {
  display: grid;
  align-content: center;
  min-height: -webkit-fill-available;
}

label,
legend {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 575px) {
  label,
  legend {
    display: block;
  }
}
label.inline input,
label.inline select,
label.inline textarea,
legend.inline input,
legend.inline select,
legend.inline textarea {
  width: auto;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input,
textarea,
select,
button {
  color: #333;
  border: 1px solid #dcdcdc;
  padding: 0.65em 0.75em;
  box-sizing: border-box;
  transition: 0.3s ease-out;
}
input:hover,
textarea:hover,
select:hover,
button:hover {
  outline: none;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

input,
select,
textarea {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: bold;
  background: #F4F4F4;
}

select {
  transition: none !important;
  font-weight: normal;
}

textarea {
  min-height: 10em;
  background: #FCFCFC;
}
textarea:focus {
  background: #F5F5F5;
}

input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=file]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=file]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=file]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=file]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}

button,
input[type=button] {
  background-color: #21baff;
  color: #FFF;
  border-radius: 4px;
  transition: 0.3s ease-out;
  text-shadow: none !important;
}
button:hover, button:focus,
input[type=button]:hover,
input[type=button]:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
button:active,
input[type=button]:active {
  transform: translateY(3px);
}
button.active,
input[type=button].active {
  background: #08b2ff;
  cursor: pointer;
}

input[type=submit] {
  background-color: #21baff;
  color: #FFF;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
input[type=submit]:hover, input[type=submit]:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
input[type=submit]:active {
  transform: translateY(3px);
}
input[type=submit].active {
  background: #08b2ff;
  cursor: pointer;
}

textarea {
  color: #333;
  border: 1px solid #dcdcdc;
  padding: 0.65em 0.75em;
  box-sizing: border-box;
  transition: 0.3s ease-out;
  align-self: stretch;
  background: #F4F4F4;
}
textarea:hover {
  outline: none;
}
textarea:focus {
  outline: none;
}
@media screen and (max-width: 575px) {
  textarea {
    width: 100%;
  }
}

input[type=text], input[type=date], input[type=email], input[type=tel], input[type=time], input[type=url] {
  border-radius: 0.2em;
  background: #F4F4F4;
}
input[type=text]:hover, input[type=text]:focus, input[type=date]:hover, input[type=date]:focus, input[type=email]:hover, input[type=email]:focus, input[type=tel]:hover, input[type=tel]:focus, input[type=time]:hover, input[type=time]:focus, input[type=url]:hover, input[type=url]:focus {
  background: #F5F5F5;
}

input[type=text]:focus,
input[type=reset]:focus,
input[type=file]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=date]:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 2px #21baff;
  outline: none;
}

select:focus {
  background: url(../images/basic/icon_select_arrow.svg) no-repeat right center #F5F5F5;
  background-size: 20px;
}

select {
  font-weight: bold;
  height: 44px;
  line-height: 44px;
  padding: 0 24px 0 0.5em;
  border-radius: 0;
  background: url(../images/basic/icon_select_arrow.svg) no-repeat right center #F5F5F5;
  background-size: 20px;
}
select option {
  outline: none;
  border: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.select {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.select .select-value {
  flex: 1 1 100%;
  color: #333;
  border: 1px solid #dcdcdc;
  padding: 0.65em 0.75em;
  box-sizing: border-box;
  transition: 0.3s ease-out;
  background: url(../images/basic/icon_select_arrow.svg) no-repeat right 10px center #F5F5F5;
  background-size: 20px;
  height: 42px;
  padding: 0.75em 2em 0.75em 0.75em;
  border-radius: 0.2em;
}
.select .select-value:hover {
  outline: none;
}
.select .select-value:focus {
  outline: none;
}
.select .select-option {
  display: none;
}

input[type=reset] {
  background-color: #999999;
  color: #FFF;
  border-radius: 4px;
  transition: 0.3s ease-out;
  text-shadow: none;
}
input[type=reset]:hover, input[type=reset]:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
input[type=reset]:active {
  transform: translateY(3px);
}
input[type=reset].active {
  background: #8c8c8c;
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 0.25em;
  width: 1.2em;
  height: 1.2em;
  background-color: #f7f6ee;
  border: 2px solid #CCC;
  transition: none;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 1.2em;
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  box-shadow: none;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  border-color: #21baff;
  background-color: #21baff;
  outline: none;
}

input[type=checkbox]:checked {
  background-image: url(../images/basic/icon_checked.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 98%;
  box-shadow: #21baff 0 0 0 1px;
  border-radius: 2px;
}

input[type=radio]:checked {
  box-shadow: #fff 0 0 0 2px inset, #21baff 0 0 0 1px;
}

input[readonly],
input[disabled] {
  background: #EAEAEA !important;
  color: #333;
  border-color: transparent;
}
input[readonly] ~ label,
input[disabled] ~ label {
  color: #888;
}
input[readonly]:hover, input[readonly]:focus, input[readonly]:focus-visible,
input[disabled]:hover,
input[disabled]:focus,
input[disabled]:focus-visible {
  cursor: not-allowed;
  box-shadow: none;
}

.upload_grp {
  position: relative;
}
.upload_grp input[readonly],
.upload_grp input[disable] {
  background: transparent;
  color: #666;
}
.upload_grp .upload_btn {
  position: absolute;
  overflow: hidden;
  top: 0px;
  right: 2px;
  background-color: #21baff;
  color: #FFF;
  border-radius: 4px;
  transition: 0.3s ease-out;
  padding: 0.2em 1em !important;
  border-radius: 4px;
}
.upload_grp .upload_btn:hover, .upload_grp .upload_btn:focus {
  cursor: pointer;
  color: #fff;
  box-shadow: none;
}
.upload_grp .upload_btn:active {
  transform: translateY(3px);
}
.upload_grp .upload_btn.active {
  background: #08b2ff;
  cursor: pointer;
}
.upload_grp .upload_btn:hover, .upload_grp .upload_btn:focus {
  cursor: pointer !important;
}

input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 1.25em;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

img.captcha {
  display: inline-block;
  vertical-align: middle;
  height: 2.5em;
  width: auto;
  margin-bottom: 0.5em;
}
img.captcha + input {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
img.captcha ~ img {
  display: inline-block;
  vertical-align: middle;
  height: 2.5em;
  margin-bottom: 0.5em;
}

abbr {
  border-bottom: none;
  text-decoration: none;
  font-weight: bold;
  color: #FF3E4D;
  margin: 0 0.2em;
}

.checkSwitch {
  box-sizing: content-box;
  display: inline-block;
  cursor: pointer;
  height: 1.55rem;
  width: 2.79rem;
  position: relative;
}
.checkSwitch input {
  position: absolute;
  display: none;
}
.checkSwitch input:hover, .checkSwitch input:focus {
  cursor: pointer;
}
.checkSwitch_switch {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 10rem;
  background: #CCC;
  box-shadow: 0px 0px 0px 2px #CCC inset;
}
.checkSwitch_switch:before {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  top: 0.25rem;
  left: 0.3rem;
  z-index: 9;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  transition: transform 200ms ease, background 200ms;
}
.checkSwitch_switch:after {
  position: absolute;
  content: "關閉";
  right: -2.5rem;
  font-size: 0.938rem;
  white-space: nowrap;
}
input:checked + .checkSwitch_switch {
  background: #755934;
  box-shadow: 0px 0px 0px 2px #755934 inset;
}
input:checked + .checkSwitch_switch:before {
  transform: translate(125%, 0);
  box-shadow: none;
}
input:checked + .checkSwitch_switch:after {
  content: "開啟";
  font-weight: bold;
}

[class^=i_]:before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  speak: none;
}

.invert:before {
  filter: invert(100%);
}

.i_add:before {
  background-image: url(../images/icon/icon_add.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_apple:before {
  background-image: url(../images/icon/icon_apple.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_arrow_left:before {
  background-image: url(../images/icon/icon_arrow_left.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_arrow_right:before {
  background-image: url(../images/icon/icon_arrow_right.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_arrow_up:before {
  background-image: url(../images/icon/icon_arrow_up.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_arrow_down:before {
  background-image: url(../images/icon/icon_arrow_down.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_bookmark:before {
  background-image: url(../images/icon/icon_bookmark.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_chat:before {
  background-image: url(../images/icon/icon_chat.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_check:before {
  background-image: url(../images/icon/icon_check.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_clock:before {
  background-image: url(../images/icon/icon_clock.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_close:before {
  background-image: url(../images/icon/icon_close.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_download:before {
  background-image: url(../images/icon/icon_download.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_edit:before {
  background-image: url(../images/icon/icon_edit.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_facebook:before {
  background-image: url(../images/icon/icon_facebook.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_googleplus:before {
  background-image: url(../images/icon/icon_googleplus.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_grid:before {
  background-image: url(../images/icon/icon_grid.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_heart:before {
  background-image: url(../images/icon/icon_heart.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_home:before {
  background-image: url(../images/icon/icon_home.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_info:before {
  background-image: url(../images/icon/icon_info.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_link:before {
  background-image: url(../images/icon/icon_link.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_linkedin:before {
  background-image: url(../images/icon/icon_linkedin.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_lock:before {
  background-image: url(../images/icon/icon_lock.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_mail:before {
  background-image: url(../images/icon/icon_mail.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_rss:before {
  background-image: url(../images/icon/icon_rss.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_setting:before {
  background-image: url(../images/icon/icon_setting.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_star:before {
  background-image: url(../images/icon/icon_star.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_twitter:before {
  background-image: url(../images/icon/icon_twitter.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_video:before {
  background-image: url(../images/icon/icon_video.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_vimeo:before {
  background-image: url(../images/icon/icon_vimeo.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_youtube:before {
  background-image: url(../images/icon/icon_youtube.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_global:before {
  background-image: url(../images/icon/icon_global.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_trash:before {
  background-image: url(../images/icon/icon_trash.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_sort:before {
  background-image: url(../images/icon/icon_sort.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_move:before {
  background-image: url(../images/icon/icon_move.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_layout:before {
  background-image: url(../images/icon/icon_layout.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_copy:before {
  background-image: url(../images/icon/icon_copy.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_view:before {
  background-image: url(../images/icon/icon_view.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_man:before {
  background-image: url(../images/icon/icon_man.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_calendar:before {
  background-image: url(../images/icon/icon_calendar.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_search:before {
  background-image: url(../images/icon/icon_search.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_pick:before {
  background-image: url(../images/icon/icon_pick.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_calendar_color:before {
  background-image: url(../images/icon/icon_calendar_color.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_dot:before {
  background-image: url(../images/icon/icon_dot.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_photo:before {
  background-image: url(../images/icon/icon_photo.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_order:before {
  background-image: url(../images/icon/icon_order.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_top:before {
  background-image: url(../images/icon/icon_top.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_minus:before {
  background-image: url(../images/icon/icon_minus.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_folder_color:before {
  background-image: url(../images/icon/icon_color_folder.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_show:before {
  background-image: url(../images/icon/icon_show.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_hide:before {
  background-image: url(../images/icon/icon_hide.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_addfile:before {
  background-image: url(../images/icon/icon_addfile.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_reload:before {
  background-image: url(../images/icon/icon_reload.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.i_list:before {
  background-image: url(../images/icon/icon_list.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: 0.1em;
}

.forPrint {
  display: none;
}

.accesskey {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9;
  color: #333;
  font-size: 0.938em;
}
@media screen and (max-width: 767px) {
  .accesskey {
    display: none;
  }
}

a.more {
  display: block;
  width: 10em;
  text-align: center;
  height: 2.5em;
  margin: 0.5em auto 0.5em;
  line-height: 2.5;
  color: #002D5F;
  border: 1px solid #002D5F;
  text-align: center;
  overflow: hidden;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-property: color;
  transition-duration: 0.2s;
}
a.more:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  right: -10px;
  top: 14px;
  border-left: none;
  border-bottom: none;
  transition: 0.3s ease-out;
}
a.more:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #002D5F;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
a.more:hover, a.more:focus, a.more.active {
  color: white;
}
a.more:hover:before, a.more:focus:before, a.more.active:before {
  transform: scale(1);
}
a.more:hover:after, a.more:focus:after, a.more.active:after {
  right: 15px;
}

.scrollToTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../images/basic/top.png) no-repeat center top rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #FFF;
  line-height: 50px;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: 0.3s ease-out;
  display: none;
  z-index: 99999999;
  text-indent: -999999px;
}
.scrollToTop:hover, .scrollToTop:focus {
  background: url(../images/basic/top.png) no-repeat center top rgba(0, 0, 0, 0.8);
  box-shadow: none;
}

img.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.tooltip {
  text-align: center;
  padding: 40px 0;
}
.tooltip span {
  display: inline-block;
  background: #DEDEDE;
  text-align: center;
  padding: 10px;
  width: 100px;
  height: 20px;
  line-height: 20px;
  vertical-align: baseline;
}
.tooltip p > em {
  color: red;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    background: rgb(255, 255, 255);
  }
}
.loading {
  position: relative;
  width: 6px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 750ms infinite;
  animation-delay: calc(750ms / 3);
}
.loading:before, .loading:after {
  content: "";
  position: absolute;
  display: block;
  height: 16px;
  width: 6px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  animation: pulse 750ms infinite;
}
.loading:before {
  left: calc(-1 * 24px / 2);
}
.loading:after {
  left: calc(24px / 2);
  animation-delay: calc(750ms / 1.5);
}

.treeview_block {
  width: 100%;
  float: left;
  overflow: hidden;
  padding: 0.5em;
  background: #FFF;
  margin: 0 1em 0 0;
  font-size: 0.938em;
  min-height: 100%;
  position: relative;
  min-height: 550px;
}

.treeview {
  margin: 0;
  padding: 0;
  list-style: none;
}
.treeview ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 4px;
}
.treeview .hitarea {
  background: url(../images/treeview/treeview-default.gif) -64px -25px no-repeat;
  height: 16px;
  width: 16px;
  margin-left: -16px;
  float: left;
  cursor: pointer;
}
.treeview li {
  margin: 0;
  padding: 3px 0pt 3px 16px;
  line-height: 1em;
  font-size: 1em;
}
.treeview li.last {
  background-position: 0 -1766px;
}
.treeview a {
  color: #333;
  text-decoration: none;
}
.treeview a:hover, .treeview a:focus {
  color: #0092d4;
  cursor: pointer;
}
.treeview a.selected {
  background-color: #eee;
}
.treeview .hover {
  color: #0092d4;
  cursor: pointer;
}
.treeview li {
  background: url(../images/treeview/treeview-default-line.gif) 0 0 no-repeat;
}
.treeview li.collapsable, .treeview li.expandable {
  background-position: 0 -176px;
}
.treeview .expandable-hitarea {
  background-position: -80px -3px;
}

#treecontrol {
  margin: 1em 0;
  display: none;
}

.treeview li .treeview li.lastCollapsable, .treeview li.lastExpandable {
  background-image: url(../images/treeview/treeview-default.gif);
}

.treeview li.lastCollapsable {
  background-position: 0 -111px;
}

.treeview li.lastExpandable {
  background-position: -32px -67px;
}

.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea {
  background-position: 0;
}

.treeview-red li {
  background-image: url(../images/treeview/treeview-red-line.gif);
}

.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable {
  background-image: url(../images/treeview/treeview-red.gif);
}

.treeview-black li {
  background-image: url(../images/treeview/treeview-black-line.gif);
}

.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable {
  background-image: url(../images/treeview/treeview-black.gif);
}

.treeview-gray li {
  background-image: url(../images/treeview/treeview-gray-line.gif);
}

.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable {
  background-image: url(../images/treeview/treeview-gray.gif);
}

.treeview-famfamfam li {
  background-image: url(../images/treeview/treeview-famfamfam-line.gif);
}

.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable {
  background-image: url(../images/treeview/treeview-famfamfam.gif);
}

.treeview .placeholder {
  background: url(../images/treeview/ajax-loader.gif) 0 0 no-repeat;
  height: 16px;
  width: 16px;
  display: block;
}

.treeview li {
  padding: 3px 0 2px 16px;
}

.treeview span.folder, .treeview span.file {
  padding: 1px 0 1px 1.5em;
  display: block;
  line-height: 1.2;
  font-size: 0.938rem;
}

.treeview span.folder {
  background: url(../images/treeview/folder.gif) 0 0 no-repeat;
}

.treeview li.expandable span.folder {
  background: url(../images/treeview/folder-closed.gif) 0 0 no-repeat;
}

.treeview span.file {
  background: url(../images/treeview/file.gif) 0 0 no-repeat;
}

.sortable_list .sortable > div {
  text-align: left;
  margin-left: 2em;
  font-size: 0.875rem;
  max-width: 25em;
  color: #555;
  position: relative;
}
.sortable_list .sortable > div .dropdown {
  color: #555;
  position: absolute;
  width: 2em;
  height: 100%;
  right: 0;
  top: 0;
}
.sortable_list .sortable > div .dropdown a:hover {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  color: #FFF;
  border-radius: 0 0.2em 0.2em 0;
}
.sortable_list .sortable > div .dropdown a:hover i {
  color: #FFF;
  filter: invert(100%);
  display: block;
  opacity: 1;
}
.sortable_list .sortable > div .dropdown .dropdown-content {
  position: absolute;
  right: -2em;
  top: 2em;
  padding: 0.25em;
  background: #FFF;
  display: block;
  z-index: 99;
  min-width: 1em;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li {
  flex: 0 1 auto;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li button {
  width: 6em;
  height: 2.5em;
  padding: 0;
  background: #FFF;
  border: 1px solid #DDD;
  min-width: 1em;
  margin: 0, 5em;
  padding-left: 1.5em;
  line-height: 2.5em;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li button:hover, .sortable_list .sortable > div .dropdown .dropdown-content ul li button:focus {
  background: #21baff;
  border: 1px solid #21baff;
  color: #FFF;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li button:hover i, .sortable_list .sortable > div .dropdown .dropdown-content ul li button:focus i {
  filter: invert(100%);
  opacity: 1;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li button i {
  position: absolute;
  top: 0;
  right: auto;
  left: 0.2em;
  font-size: 0.938rem;
  opacity: 0.5;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li button i .ink {
  position: absolute;
}
.sortable_list .sortable > div .dropdown .dropdown-content ul li button.btn-delete:hover, .sortable_list .sortable > div .dropdown .dropdown-content ul li button.btn-delete:focus {
  background: #FF3E4D;
  border: 1px solid #FF3E4D;
  color: #FFF;
}
.sortable_list .sortable > div:hover {
  outline: 1px dashed #21BAFF;
  cursor: grab;
}
.sortable_list .sortable > div:active {
  cursor: grabbing;
}
.sortable_list .sortable > div > span {
  background: rgba(240, 240, 240, 0.9411764706);
  padding: 0.5em 1em;
  border-radius: 0.2em;
  display: block;
  margin: 5px;
}
.sortable_list .sortable > div .sortable span {
  background: #F1F1F1;
}
.sortable_list .sortable > div span {
  padding-right: 4em;
  position: relative;
}
.sortable_list .sortable > div span i {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  opacity: 0.2;
}
.sortable_list .sortable > div span em {
  position: absolute;
  right: 2.5em;
  top: 0.65em;
  background: #5CB85C;
  color: #FFF;
  padding: 0.1em 0.4em;
  display: block;
  font-size: 0.75rem;
  line-height: 1.45em;
  border-radius: 0.2em;
  font-style: normal;
}
.sortable_list .sortable > div span:hover {
  background: #21baff;
  color: #FFF;
}
.sortable_list .sortable > div > div:hover {
  outline: 1px dashed #FCC211;
}
.sortable_list .half {
  display: inline-block;
  width: 49%;
  padding: 0;
  margin: 0;
  vertical-align: top;
}

.loader {
  position: fixed;
  transform: translateZ(0);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  transition: 0.3s ease-out;
}

.loader_line {
  position: absolute;
  top: 40%;
  left: 48%;
}
.loader_line .line {
  animation: expand 1s ease-out infinite;
  display: inline-block;
  transform-origin: center center;
  margin: 0 3px;
  width: 4px;
  height: 25px;
}
.loader_line .line:nth-child(1) {
  background: #27ae60;
}
.loader_line .line:nth-child(2) {
  animation-delay: 180ms;
  background: #f1c40f;
}
.loader_line .line:nth-child(3) {
  animation-delay: 360ms;
  background: #e67e22;
}
.loader_line .line:nth-child(4) {
  animation-delay: 540ms;
  background: #2980b9;
}

@keyframes expand {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(2);
  }
}
.dropdown-content {
  display: block;
  right: 0;
  left: auto;
  top: 0em;
  opacity: 0;
  min-width: 24em;
  font-size: 0.813em;
  position: absolute;
  background: #FFF;
  padding: 1em;
  border-radius: 0.5em;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.36s cubic-bezier(0.215, 0.61, 0.355, 1) 0.24s;
  pointer-events: none;
}
.dropdown-content.show {
  display: block;
  top: 4em;
  opacity: 1;
  pointer-events: auto;
}
.dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 2em;
}
.dropdown-content ul li {
  color: #555;
  margin-bottom: 0.1em;
}
.dropdown-content:before {
  right: 5%;
  left: auto;
}
.dropdown-content .info {
  clear: both;
  zoom: 1;
  margin-bottom: 1em;
}
.dropdown-content .info:before, .dropdown-content .info:after {
  content: "";
  display: table;
}
.dropdown-content .info:after {
  clear: both;
}
.dropdown-content .info .id {
  overflow: hidden;
  display: block;
  font-size: 1.25em;
  font-weight: bold;
  padding: 0.75em 0;
}
.dropdown-content .info .pic {
  width: 4em;
  height: 4em;
  float: left;
  margin: 0px 0.5em 0.5em 0;
  border-radius: 50%;
  background: #FFF;
  overflow: hidden;
}
.dropdown-content .info .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-content .btn-grp {
  text-align: right;
}

.info_block {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-content: stretch;
  flex: 0 0 10%;
}
.info_block h4 {
  display: flex;
  flex: 0 0 100%;
  align-self: center;
  overflow: hidden;
  color: #404e55;
  background: #F5F5F5;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  padding: 0.5em 0.2em;
  margin: 0;
}
.info_block .info {
  display: flex;
  flex: 1 1 25%;
  min-width: 100px;
  flex-direction: column;
  flex-flow: column wrap;
  border: 1px solid #FFF;
  background: #F8F8F8;
  justify-content: center;
  align-items: center;
  padding: 2.5em 0.2em 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info_block .info {
    flex: 1 1 50%;
  }
}
.info_block .info .info_value {
  display: flex;
  text-align: center;
  padding: 0.2em;
  font-size: 2em;
  align-items: center;
  justify-content: center;
  color: #058dca;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.info_block .info .info_light {
  font-size: 2em;
  border-radius: 50%;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  color: #058dca;
}
.info_block .info .info_light.red {
  background: #FF3E4D;
  color: #FFF;
  font-size: 1.35em;
  width: 3.2em;
  height: 3.2em;
  line-height: 3.2em;
}
.info_block .info .info_light.blue {
  background: #21BAFF;
  color: #FFF;
  font-size: 1.35em;
  width: 3.2em;
  height: 3.2em;
  line-height: 3.2em;
}
.info_block .info .info_light.yellow {
  background: #FCC211;
  color: #FFF;
  font-size: 1.35em;
  width: 3.2em;
  height: 3.2em;
  line-height: 3.2em;
}
.info_block .info .info_light.green {
  background: #5CB85C;
  color: #FFF;
  font-size: 1.35em;
  width: 3.2em;
  height: 3.2em;
  line-height: 3.2em;
}
.info_block .info .info_light.gray {
  background: #AAA !important;
  color: #FFF;
  font-size: 1.35em;
  width: 3.2em;
  height: 3.2em;
  line-height: 3.2em;
}
.info_block .info .info_title {
  display: block;
  padding: 0.5em;
  justify-content: center;
  font-size: 0.875rem;
  color: #666;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.drag_area {
  flex: 1 1 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.drag_area .row {
  display: flex;
  flex: 1 1 calc(100% - 2em);
  justify-content: center;
  flex-flow: row no-wrap;
  margin: 0 0 0.5em;
  padding: 2.5em 0 1em;
  background: #F1F1F1;
  border-radius: 0.5em;
  position: relative;
  border: 1px solid #DDD;
  box-shadow: inset 0 1px 13px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .drag_area .row {
    flex-flow: row wrap;
  }
}
.drag_area .row:hover {
  border: 1px solid #21BAFF;
}
.drag_area .row:hover:before {
  border: 2px solid #21BAFF;
  background: #21BAFF;
  color: #FFF;
}
.drag_area .row:before {
  background-color: #F5F5F5;
  border: 1px solid #DDDDDD;
  border-radius: 4px 0 4px 0;
  color: #9DA0A4;
  content: "Row";
  font-size: 12px;
  font-weight: bold;
  left: -1px;
  line-height: 2;
  padding: 3px 7px;
  position: absolute;
  top: -1px;
}
.drag_area .row.col-12-full .column {
  flex: 1 1 calc(100% - 1em);
}
.drag_area .row.col-12-full:before {
  content: "Row col-12-full";
}
.drag_area .row.col-12 .column {
  flex: 1 1 calc(100% - 1em);
}
.drag_area .row.col-12:before {
  content: "Row col-12";
}
.drag_area .row.col-6-6 .column {
  flex: 1 1 calc(49% - 1em);
}
.drag_area .row.col-6-6:before {
  content: "Row col-6-6";
}
.drag_area .row.col-8-4 .column {
  flex: 1 1 calc(70% - 1em);
}
.drag_area .row.col-8-4 .column:nth-child(2) {
  flex: 1 1 calc(30% - 1em);
}
.drag_area .row.col-8-4:before {
  content: "Row col-8-4";
}
.drag_area .row.col-4-8 .column {
  flex: 1 1 calc(30% - 1em);
}
.drag_area .row.col-4-8 .column:nth-child(2) {
  flex: 1 1 calc(70% - 1em);
}
.drag_area .row.col-4-8:before {
  content: "Row col-4-8";
}
.drag_area .row.col-4-4-4 .column {
  flex: 1 1 calc(33.33% - 1em);
}
.drag_area .row.col-4-4-4:before {
  content: "Row col-4-4-4";
}
.drag_area .row.col-3-3-3-3 .column {
  flex: 1 1 calc(25% - 1em);
}
.drag_area .row.col-3-3-3-3:before {
  content: "Row col-3-3-3-3";
}
.drag_area .row .column {
  flex: 1 1 calc(25% - 2em);
  border: 1px solid #ddd;
  background: #FFF;
  flex-flow: row wrap;
  margin: 0 0.5em;
  padding: 2em 0 0;
  border-radius: 0.5em;
  position: relative;
  min-height: 5em;
  min-width: 120px;
}
@media screen and (max-width: 767px) {
  .drag_area .row .column {
    flex: 1 1 calc(100% - 2em) !important;
    margin-bottom: 0.5em;
  }
}
.drag_area .row .column:before {
  background-color: #F5F5F5;
  border: 1px solid #DDDDDD;
  border-radius: 4px 0 4px 0;
  color: #9DA0A4;
  content: "Column";
  font-size: 12px;
  font-weight: bold;
  left: -1px;
  line-height: 2;
  padding: 3px 7px;
  position: absolute;
  top: -1px;
}
.drag_area .row .column .module {
  flex: 1 1 2em;
  align-self: stretch;
  min-height: 6em;
  margin: 1em 0.5em;
  position: relative;
  border-radius: 0.5em;
  border: 2px solid #DDD;
}
.drag_area .row .column .module .template_is {
  background: #FFF;
  margin: 0 0.5em 1em;
  border-radius: 0.5em;
}
.drag_area .row .column .module .template_is img {
  max-width: 400px;
  margin: 0 auto;
}
.drag_area .row .column .module .module_title {
  width: 50%;
  padding-top: 0.5em;
  margin-left: 0.5em;
}
.drag_area .row .column .module .module_title input[type=text] {
  background: #FFF;
}
.drag_area .row .column .module .module_title input[type=text]:hover {
  background: #EEE;
}
.drag_area .row .column .module .module_title input[type=text]:focus {
  background: #555;
  color: #FFF;
}
.drag_area .row .column .module .dropdown {
  display: block;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
}
.drag_area .row .column .module .dropdown .dropdown-btn {
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  min-width: 2em;
  background: #FFF;
  position: relative;
  border: 1px solid #DDD;
}
.drag_area .row .column .module .dropdown .dropdown-btn i {
  display: none;
}
.drag_area .row .column .module .dropdown .dropdown-btn:hover, .drag_area .row .column .module .dropdown .dropdown-btn:focus {
  border: 1px solid #21baff !important;
  background: #FFF;
  box-shadow: none;
  background: #21baff;
}
.drag_area .row .column .module .dropdown .dropdown-btn:hover i, .drag_area .row .column .module .dropdown .dropdown-btn:focus i {
  filter: invert(100%);
}
.drag_area .row .column .module .dropdown .dropdown-btn:hover:before, .drag_area .row .column .module .dropdown .dropdown-btn:focus:before {
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
}
.drag_area .row .column .module .dropdown .dropdown-btn:before {
  width: 6px;
  height: 6px;
  right: 0.9em;
  content: "";
  position: absolute;
  border: 2px solid #333;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  top: 0.8em;
}
.drag_area .row .column .module .dropdown .dropdown-content {
  width: 16em;
  min-width: 16em;
  top: 2.2em;
  left: auto;
  right: -1em;
  padding: 1em;
  position: absolute;
  border-radius: 0.5em;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.75);
  z-index: 999998;
}
.drag_area .row .column .module .dropdown .dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.drag_area .row .column .module .dropdown .dropdown-content ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drag_area .row .column .module .dropdown .dropdown-content:before {
  right: 15%;
  left: auto;
}
.drag_area .row .column .module .dropdown .dropdown-content.show {
  display: block;
  top: 3.2em;
  opacity: 1;
  pointer-events: auto;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn {
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  padding: 0.25em !important;
  background: #FFF;
  border: 1px solid #DDD !important;
  text-shadow: none;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn i {
  margin-right: 0.5em;
  opacity: 0.5;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn:hover, .drag_area .row .column .module .dropdown .dropdown-content .btn:focus {
  border: 1px solid #21baff !important;
  background: #21baff !important;
  color: #FFF;
  cursor: pointer;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn:hover i, .drag_area .row .column .module .dropdown .dropdown-content .btn:focus i {
  filter: invert(100%);
  opacity: 1;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn.btn-red {
  border: 1px solid #FF3E4D !important;
  background: #FF3E4D;
  color: #FFF;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn.btn-red i {
  filter: invert(100%);
  opacity: 1;
}
.drag_area .row .column .module .dropdown .dropdown-content .btn.btn-red:hover, .drag_area .row .column .module .dropdown .dropdown-content .btn.btn-red:focus {
  color: #FFF;
  background: #ff717c !important;
  border: 1px solid #ff717c !important;
}
.drag_area .row:hover > .btn_grp, .drag_area .module:hover > .btn_grp {
  opacity: 1;
}
.drag_area .row .btn_grp, .drag_area .module .btn_grp {
  position: absolute;
  right: 1em;
  top: 0;
  opacity: 0;
}
.drag_area .row .btn_grp .btn, .drag_area .module .btn_grp .btn {
  padding: 0.2em 0.75em 0.2em 0.25em;
  font-size: 0.75rem;
  font-weight: bold;
}
.drag_area .row .btn_grp .btn i, .drag_area .module .btn_grp .btn i {
  margin-right: 0.5em;
}
.drag_area .module .btn_grp {
  top: -2.5em;
  right: 0;
}

header {
  position: fixed;
  width: 100%;
  transform: translateZ(0);
  height: 4em;
  background: #FFFFFF;
  box-shadow: 0px 3px 21px -17px rgb(0, 0, 0);
  padding: 0em 0 0em 16em;
  z-index: 9997;
  top: 0;
  left: 0;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1440px) {
  header {
    padding: 0em 0 0em 13em;
  }
}
header.full {
  padding: 0em 0 0em 3.5em;
}
header.full .toggle_menu_btn:before {
  transform: rotate(45deg);
  left: 1.25em;
}
@media screen and (max-width: 991px) {
  header {
    padding: 0em 0 0em 0em;
  }
  header.full {
    padding: 0 0 0 0em;
  }
}
header .container {
  max-width: 100%;
}
header .toggle_menu_btn {
  position: absolute;
  width: 4em;
  height: 4em;
  top: 0em;
  left: 0em;
  padding: 1em;
  z-index: 9;
  background: #F1F1F1;
}
header .toggle_menu_btn:hover:after, header .toggle_menu_btn:focus:after {
  background: #755934;
}
header .toggle_menu_btn:hover:before, header .toggle_menu_btn:focus:before {
  border: 3px solid #FFF;
  border-left: none;
  border-bottom: none;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  header .toggle_menu_btn:hover:before, header .toggle_menu_btn:focus:before {
    width: 2em;
    left: 1em;
    height: 0.5em;
    top: 1.6em;
    transform: rotate(0deg);
    border: 2px solid #FFF;
    border-left: none;
    border-right: none;
  }
}
header .toggle_menu_btn:before {
  position: absolute;
  border: 3px solid #444;
  border-left: none;
  border-bottom: none;
  transform: rotate(-135deg);
  content: "";
  width: 0.75em;
  height: 0.75em;
  left: 1.25em;
  top: 1.5em;
  left: 1.65em;
  z-index: 1;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  header .toggle_menu_btn {
    display: block;
  }
  header .toggle_menu_btn:before {
    width: 2em;
    left: 1em;
    height: 0.5em;
    top: 1.6em;
    transform: rotate(0deg);
    border: 2px solid #444;
    border-left: none;
    border-right: none;
  }
}
header .toggle_menu_btn:after {
  position: absolute;
  transition: 0.3s ease-out;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F1F1F1;
  content: "";
  top: 0;
  left: 0;
}
header .toggle_menu_btn span {
  width: 100%;
  height: 2px;
  background: #999;
  display: block;
  margin-bottom: 0.25em;
  position: relative;
  z-index: 9;
}
header h1 {
  float: left;
  margin: 0;
  padding: 0.2em;
  font-size: 1em;
  height: 3em;
}
header h1 a {
  display: block;
  color: #111;
  font-size: 1.5rem;
}
@media screen and (max-width: 991px) {
  header h1 a {
    font-size: 1.25rem;
  }
}
header h1 a:hover, header h1 a:focus {
  color: #2b2b2b;
}
header h1 img {
  width: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25em;
}
header h1 span {
  display: inline-block;
  vertical-align: middle;
}
header .control_panel {
  position: absolute;
  right: 0.5em;
  margin-top: 0.5em;
  padding: 0.5em;
  font-size: 1em;
  text-align: right;
}
@media screen and (max-width: 991px) {
  header .control_panel {
    right: 0;
  }
}
header .control_panel .item {
  display: inline-block;
  vertical-align: middle;
  width: 2em;
  height: 2em;
  margin: 0 0.4em;
}
header .control_panel .item.alert {
  border-radius: 50%;
  background: #EEE;
  position: relative;
}
header .control_panel .item.alert a {
  display: block;
}
header .control_panel .item.alert span {
  min-width: 1.25rem;
  height: 1.25rem;
  background: #fc423a;
  color: #FFF;
  text-align: center;
  display: block;
  position: absolute;
  top: -0.5em;
  right: -1em;
  font-size: 0.75rem;
  line-height: 1.25rem;
  border-radius: 0.625em;
  font-weight: bold;
  padding-left: 0.25em;
  padding-right: 0.25em;
}
header .control_panel .item.alert img {
  width: 70%;
  margin: 15%;
}
header .control_panel .item.account > a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  background: #EEE;
}
header .control_panel .dropdown .dropdown-btn {
  position: relative;
  transition: 0.3s ease-out;
}
header .control_panel .dropdown .dropdown-btn:hover, header .control_panel .dropdown .dropdown-btn:focus {
  background: #0092d4;
}
header .control_panel .dropdown .dropdown-btn:hover img, header .control_panel .dropdown .dropdown-btn:focus img {
  opacity: 1;
}
header .control_panel .dropdown .dropdown-btn img {
  width: 1.25em;
  margin: 0 auto;
  left: 50%;
  top: 0.35em;
  margin-left: -0.6em;
  position: absolute;
  opacity: 0.75;
}
header .control_panel .dropdown .dropdown-content {
  width: 280px !important;
  left: auto !important;
  right: 0em !important;
}
header .control_panel .dropdown .dropdown-content ul {
  margin-bottom: 2em;
  border-bottom: 1px solid #DEDEDE;
}
header .control_panel .dropdown .dropdown-content ul li {
  font-size: 0.75rem;
  text-align: left;
}
header .control_panel .dropdown .dropdown-content .btn-grp {
  display: flex;
  justify-content: flex-end;
}
header .control_panel .dropdown .dropdown-content .btn-grp button {
  flex: 1 1 30%;
  padding: 0.5em 1em;
  margin: 0 0.5em 0.5em;
}
header .control_panel .dropdown .dropdown-content .btn-grp .btn-red {
  background: #FF3E4D;
  color: #FFF;
  border: 1px solid #FF3E4D;
}
header .control_panel .dropdown .dropdown-content .btn-grp .btn-red:hover, header .control_panel .dropdown .dropdown-content .btn-grp .btn-red:focus {
  background: #FF3E4D;
  outline: none;
  border: 1px solid #FF3E4D !important;
}

aside {
  width: 16em;
  height: 100%;
  position: fixed;
  background: #f1eee8;
  transform: translateZ(0);
  padding-top: 4em;
  padding-bottom: 3em;
  z-index: 9999;
  top: 0;
  left: 0;
  overflow: hidden;
  padding-bottom: 2em;
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.07, 1.02);
}
aside.openSidebar {
  left: 15em;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  aside {
    width: 13em;
  }
}
@media screen and (max-width: 991px) {
  aside {
    width: 18em;
    margin-left: -21em;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  aside.open {
    margin-left: 0;
  }
}
aside h1 {
  position: absolute;
  height: 4em;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  margin: 0;
  padding: 0.5em 0.75em;
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 991px) {
  aside h1 {
    display: none;
  }
}
aside h1 a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 3em;
}
@media screen and (max-width: 991px) {
  aside h1 a {
    margin-right: 5em;
  }
}
aside h1 a img {
  width: 2em;
  height: 2em;
  display: flex;
  flex: 0 0 2em;
  margin-right: 0.5em;
}
aside h1 a span {
  display: flex;
  color: #002D5F;
  flex: 1 1 1em;
  left: 0;
}
aside .now_edit {
  background: #002D5F;
  padding: 1em 0.5em;
  height: 6em;
  flex-flow: row wrap;
  display: flex;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1440px) {
  aside .now_edit {
    height: 6em;
  }
}
aside .now_edit .pic {
  flex: 0 1 80px;
  max-width: 80px;
  position: relative;
  overflow: hidden;
  border: 1px solid #DDD;
  border-radius: 0.25em;
  margin-right: 0.5em;
  align-self: flex-start;
}
aside .now_edit .pic:before {
  display: inline-block;
  content: "";
  padding-top: 75%;
}
aside .now_edit .pic img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  aside .now_edit .pic {
    flex: 0 1 40px;
  }
}
aside .now_edit .pic img {
  border-radius: 0.25em;
  -o-object-fit: cover;
     object-fit: cover;
}
aside .now_edit .info {
  flex: 1 1 1em;
  font-size: 0.875rem;
  line-height: 1.25em;
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  color: #FFF;
}
aside .now_edit .info p {
  flex: 1 1 100%;
  margin: 0;
}
aside .now_edit .info p a {
  color: #FFF;
  display: block;
}
aside .now_edit .info .btn_grp {
  flex: 1 1 100%;
  margin: 0;
  padding: 0;
  text-align: right;
  display: flex;
  align-self: flex-end;
}
aside .now_edit .info .btn_grp .btn {
  background: transparent;
  border: 1px solid #EEE;
  color: #EEE;
  margin: 0 0 0 0.2em;
  padding: 0.2em 0.4em;
}
aside:before {
  content: "";
  position: fixed;
  height: 4em;
  box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  width: inherit;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  aside:before {
    background: #cabfa9;
  }
}
aside .copyright {
  position: fixed;
  bottom: 0;
  padding: 0 0.15em 0.3em;
  color: #949494;
  left: 0;
  width: inherit;
  font-size: 0.75em;
  height: 2em;
  text-align: center;
  white-space: nowrap;
  background: white;
}
aside.hidden {
  width: 3.5em;
}
@media screen and (max-width: 991px) {
  aside.hidden {
    width: 18em;
    margin-left: 0;
  }
}
aside.hidden .copyright {
  display: none;
}
aside.hidden .now_edit {
  padding: 0.5em;
  height: auto;
}
aside.hidden .now_edit .pic {
  margin: 0;
}
@media screen and (max-width: 991px) {
  aside.hidden .now_edit .pic {
    flex: 0 0 60px;
    margin-right: 1em;
  }
}
@media screen and (max-width: 991px) {
  aside.hidden .now_edit {
    height: 6em;
  }
}
aside.hidden .now_edit .info {
  display: none;
}
@media screen and (max-width: 991px) {
  aside.hidden .now_edit .info {
    display: flex;
  }
}
aside.hidden:after {
  display: none;
}
aside.hidden h1 a span {
  width: 190px;
  opacity: 0;
  width: 14em;
  left: 3.5em;
  position: absolute;
}
aside.hidden nav {
  margin-top: 0em;
}
aside.hidden nav .divider {
  display: none;
}
aside.hidden nav > ul li a {
  min-height: 2.8rem;
}
aside.hidden nav > ul li a img {
  top: 0.85em;
  opacity: 1;
}
aside.hidden nav > ul li span {
  display: none;
}
aside.hidden nav > ul li.li_hasChild:after {
  display: none;
}
@media screen and (max-width: 991px) {
  aside.hidden nav > ul li.li_hasChild:after {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  aside.hidden nav > ul li a {
    min-height: 2.8rem;
  }
  aside.hidden nav > ul li span {
    display: block;
  }
}
aside.hidden.Pc nav > ul ul {
  display: none !important;
}
aside .sub_nav {
  position: fixed;
  width: 16em;
  height: 100%;
  background: #2d404c;
  box-shadow: 5px 0px 15px -5px rgba(0, 0, 0, 0.35);
  right: -16em;
  top: 0;
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.07, 1.02);
  padding-top: 12em;
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 1440px) {
  aside .sub_nav {
    width: 13em;
  }
}
aside .sub_nav.show_subNav {
  right: 0em;
}
aside .sub_nav .divider {
  color: #FFF;
  opacity: 0.5;
}
aside .sub_nav:hover .close {
  display: block;
}
aside .sub_nav .close {
  width: 0.5em;
  height: 0.5em;
  margin: 0 1em 0 auto;
  float: right;
  opacity: 0.35;
  display: none;
}
aside .sub_nav .close:hover, aside .sub_nav .close:focus {
  opacity: 1;
}
aside .sub_nav .close i {
  filter: invert(100%);
}
aside .sub_nav ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  height: 40em;
}
aside .sub_nav ul li {
  list-style: none;
  width: 90%;
  margin: 0 auto 0.5em;
}
aside .sub_nav ul li:last-child {
  margin-bottom: 10em;
}
aside .sub_nav ul li a {
  border-radius: 5px;
  padding: 0.25em 2em 0.25em 0.25em;
  display: flex;
  flex-flow: row nowrap;
  transition: 0.3s ease-out;
  box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.25);
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(232, 232, 232) 100%);
  position: relative;
  overflow: hidden;
}
aside .sub_nav ul li a:before {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #002D5F;
  border-left: none;
  border-top: none;
  content: "";
  transform: rotate(-45deg);
  right: -2em;
  top: 50%;
  margin-top: -0.25em;
  transition: 0.3s ease-out;
}
aside .sub_nav ul li a:hover, aside .sub_nav ul li a:focus {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.75);
}
aside .sub_nav ul li a:hover:before, aside .sub_nav ul li a:focus:before {
  right: 1em;
}
aside .sub_nav ul li a:hover .info, aside .sub_nav ul li a:focus .info {
  color: #006fa1;
}
aside .sub_nav ul li a:hover .pic, aside .sub_nav ul li a:focus .pic {
  opacity: 1;
}
aside .sub_nav ul li a .pic {
  flex: 0 0 80px;
  position: relative;
  align-self: flex-start;
  overflow: hidden;
  margin: 0 0.5em 0 0;
  background: #FFF;
  opacity: 0.75;
  transition: 0.3s ease-out;
}
aside .sub_nav ul li a .pic:before {
  display: inline-block;
  content: "";
  padding-top: 75%;
}
aside .sub_nav ul li a .pic img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
aside .sub_nav ul li a .pic img {
  -o-object-fit: cover;
     object-fit: cover;
}
aside .sub_nav ul li a .info {
  font-size: 0.875em;
  font-weight: bold;
  color: #444;
  margin: auto 0;
  flex: 1 1 calc(100% - 100px);
}
aside .close_btn {
  position: absolute;
  width: 4em;
  height: 4em;
  top: 0;
  right: 0;
  padding: 1.25em;
  z-index: 9;
  display: none;
}
@media screen and (max-width: 991px) {
  aside .close_btn {
    display: block;
  }
}
aside .close_btn:after {
  border: 2px solid #fff;
  border-right: none;
  border-top: none;
  width: 12px;
  height: 12px;
  content: "";
  left: 25px;
  top: 25px;
  transform: rotate(45deg);
  position: absolute;
}
aside .close_btn:hover, aside .close_btn:focus {
  background: #755934;
}
aside nav {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  height: calc(100% - 5.5em);
  background: #f1eee8;
  padding-bottom: 3em;
}
@media screen and (max-width: 1440px) {
  aside nav {
    height: calc(100% - 4.5em);
  }
}
aside nav li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
aside nav li a .ink {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
}
aside nav li a .animate {
  animation: ripple 0.45s linear;
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(3.5);
  }
}
aside nav hr {
  margin: 0.2em 0;
  opacity: 0.2;
}
aside nav .divider {
  color: #333;
  margin: 0.2em 1em;
}
aside nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
aside nav > ul > li {
  width: 100%;
  transition: 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  position: relative;
}
aside nav > ul > li:hover {
  background: #fbfaf8;
}
aside nav > ul > li:hover a img {
  opacity: 1;
}
aside nav > ul > li.active {
  background: #fbfaf8;
}
aside nav > ul > li.active:before {
  position: absolute;
  background: #002D5F;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
}
aside nav > ul > li.active > a img {
  opacity: 1;
  top: 0.72em;
}
aside nav > ul > li.active > a span {
  color: #002D5F;
}
aside nav > ul > li.li_hasChild:after {
  position: absolute;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  border: 2px solid #755934;
  border-left: none;
  border-top: none;
  content: "";
  right: 1em;
  top: 0.9em;
}
aside nav > ul > li.li_hasChild.open:after {
  position: absolute;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
  content: "";
  right: 1em;
  top: 0.9em;
}
aside nav > ul > li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 0.6em 3em 0.6em 3.25em;
  font-size: 0.875rem;
  font-weight: bold;
}
aside nav > ul > li a img {
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  left: 1.2em;
  top: 0.75em;
  opacity: 0.5;
  transform: scale(0.8);
}
aside nav > ul > li a span {
  color: #333;
  font-size: 0.938rem;
}
aside nav > ul > li ul {
  display: none;
  background: #ded7c8;
}
aside nav > ul > li li:last-child {
  border-bottom: none;
}
aside nav > ul > li li a {
  padding: 0.7em 2em 0.5em 3.25em;
  position: relative;
  overflow: hidden;
  animation: fadeInLeft_ani 0.3s ease-out;
  border-bottom: none;
}
aside nav > ul > li li a:after {
  position: absolute;
  border: 2px solid #fff;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  content: "";
  top: 1.3em;
  right: -1em;
  transition: 0.3s ease-out;
}
aside nav > ul > li li a span {
  color: #333;
}
aside nav > ul > li li:hover span, aside nav > ul > li li:focus span, aside nav > ul > li li.active span {
  color: #fff;
}
aside nav > ul > li li:hover a, aside nav > ul > li li:focus a, aside nav > ul > li li.active a {
  background: #755934;
}
aside nav > ul > li li:hover a:after, aside nav > ul > li li:focus a:after, aside nav > ul > li li.active a:after {
  right: 1em;
}

@keyframes fadeInLeft_ani {
  0% {
    left: -20px;
    opacity: 0;
  }
  33% {
    left: -20px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
div.function ul li.icon_forward a:before, div.function ul li.icon_print a:before, div.function ul li.icon_back a:before {
  vertical-align: middle;
  content: "";
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.2em;
  display: inline-block;
}

div.function {
  box-sizing: border-box;
  margin: 0.5em 0;
}
div.function ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
div.function ul li {
  display: block;
  float: left;
  margin: 0 3px 3px 0;
}
div.function ul li button,
div.function ul li a {
  font-size: 0.813em;
  display: block;
  padding: 0.2em 1em;
  background: #888;
  border-color: #888;
  color: #FFF;
  border-radius: 4px;
}
div.function ul li button:hover, div.function ul li button:focus,
div.function ul li a:hover,
div.function ul li a:focus {
  background: #0092d4;
  border-color: #0092d4;
}
div.function ul li.icon_back a:before {
  background: url(../images/basic/icon_back.svg) no-repeat center center;
  background-size: cover;
}
div.function ul li.icon_print a:before {
  background: url(../images/basic/icon_print.svg) no-repeat center center;
  background-size: cover;
}
div.function ul li.icon_forward a:before {
  background: url(../images/basic/icon_forward.svg) no-repeat center center;
  background-size: cover;
}

.function_panel .share .shareButton {
  text-indent: -9999px;
}
.function_panel .share .shareButton:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  background: url(../images/basic/icon_share.png) no-repeat center center !important;
  background-size: 24px !important;
}
.function_panel .share .shareButton:hover:before, .function_panel .share .shareButton:focus:before {
  filter: invert(100%);
}
.function_panel .function {
  height: 40px;
  margin: 0;
}
.function_panel .function ul li {
  width: 40px;
  height: 40px;
  font-size: 1em;
  float: left;
  display: block;
  margin: 0 0.2em;
}
.function_panel .function ul li a {
  display: block;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background: #F1F1F1;
  text-indent: -9999px;
  position: relative;
}
.function_panel .function ul li a:hover, .function_panel .function ul li a:focus {
  background: #0092d4;
  color: #FFF;
}
.function_panel .function ul li a:hover:before, .function_panel .function ul li a:focus:before {
  filter: invert(100%);
}
.function_panel .function ul li a:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
}
.function_panel .function ul li.back a:before {
  background: url(../images/basic/icon_back.png) no-repeat center center;
  background-size: 100%;
}
.function_panel .function ul li.print a:before {
  background: url(../images/basic/icon_printer.png) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .function_panel .function ul li.print {
    display: none;
  }
}
.function_panel .function ul li.forward a:before {
  background: url(../images/basic/icon_forward.png) no-repeat center center;
  background-size: 100%;
}

.modal {
  position: fixed;
  display: none;
  width: 400px;
  height: 300px;
  background: #FFF;
  z-index: 99999999;
  top: 5%;
  left: 50%;
  margin-left: -200px;
  padding: 1em 1em 1em;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 1px 1px 15px RGBA(0, 0, 0, 0.5);
  animation: scaleUp 0.5s ease-out;
}
.modal h2 {
  border-bottom: 1px solid #002D5F;
  padding-bottom: 0.5em;
}
.modal .close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px !important;
  min-width: auto;
  height: 30px;
  font-size: 0em;
  border: none;
  display: block;
  padding: 0;
  background: url(../images/basic/icon_close.svg) no-repeat center center;
}
.modal .close:hover, .modal .close:focus {
  cursor: pointer;
}

@keyframes scaleUp {
  0% {
    transform: scale(1) translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
.modal_overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: RGBA(0, 0, 0, 0.5);
  z-index: 99999998;
}

.marquee {
  height: 45px;
  display: block;
  overflow: hidden;
  background: #FFF;
  margin: 2em 4em;
  text-align: left;
  padding: 0 3em 0 2em;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #dadada;
}
@media (max-width: 991px) {
  .marquee {
    margin: 1.5em 0em;
  }
}
.marquee ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee .slick-prev {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  right: 0px !important;
  top: 1px !important;
  left: auto;
  opacity: 0.5;
  background: url("../vendor/slick/icon_arrow_up_s.png") no-repeat center center;
  background-size: 16px;
  width: 20px !important;
  height: 20px !important;
  box-shadow: none;
}
.marquee .slick-prev:hover, .marquee .slick-prev:focus {
  opacity: 1;
}
.marquee .slick-prev:before {
  width: 10px !important;
  height: 10px !important;
}
.marquee .slick-next {
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  right: 0px !important;
  top: 22px !important;
  left: auto;
  opacity: 0.5;
  width: 20px !important;
  height: 20px !important;
  background: url("../vendor/slick/icon_arrow_up_s.png") no-repeat center center;
  background-size: 16px;
  box-shadow: none;
}
.marquee .slick-next:hover, .marquee .slick-next:focus {
  opacity: 1;
}
.marquee .slick-next:before {
  width: 10px !important;
  height: 10px !important;
}
.marquee > div {
  padding: 0;
  margin: 0;
}
.marquee a {
  display: block;
  line-height: 40px;
  margin-right: 3em;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000;
  text-decoration: none;
}
.marquee a span {
  color: #7cb52f;
  margin-right: 15px;
}
.marquee a:hover {
  color: #7cb52f;
}

.pagination {
  margin: 0.5em auto 5em;
  padding: 0;
  display: block;
  text-align: center;
  font-size: 0.875em;
}
.pagination span {
  color: #006fa1;
  margin: 0px 0.5em;
}
.pagination .page {
  margin: 10px 0;
  padding: 0;
  display: block;
}
.pagination .page li {
  display: inline-block;
  min-width: 20px;
  height: 30px;
  margin: 0px 2px 5px;
  list-style: none;
  box-sizing: border-box;
}
.pagination .page li a {
  border-radius: 5px;
  padding: 5px;
  width: 36px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  font-size: 1em;
  color: #404e55;
  background: #FFF;
  background: linear-gradient(to bottom, #FFF, #F1F1F1);
  border: #CCC solid 1px;
}
.pagination .page li a:hover, .pagination .page li a:focus {
  background: #004592;
  color: #fff !important;
  border: #004592 solid 1px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}
.pagination .page li.active a {
  color: #FFF;
  border: 1px solid #004592;
  background: #004592;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}
.pagination .page li.last a:after, .pagination .page li.last a:before, .pagination .page li.next a:before, .pagination .page li.prev a:before, .pagination .page li.first a:after, .pagination .page li.first a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border: 2px solid #666;
  border-left: none;
  border-bottom: none;
}
.pagination .page li.first a, .pagination .page li.prev a, .pagination .page li.next a, .pagination .page li.last a {
  text-indent: -9999px;
  position: relative;
}
.pagination .page li.first a:hover:before, .pagination .page li.first a:hover:after, .pagination .page li.first a:focus:before, .pagination .page li.first a:focus:after, .pagination .page li.prev a:hover:before, .pagination .page li.prev a:hover:after, .pagination .page li.prev a:focus:before, .pagination .page li.prev a:focus:after, .pagination .page li.next a:hover:before, .pagination .page li.next a:hover:after, .pagination .page li.next a:focus:before, .pagination .page li.next a:focus:after, .pagination .page li.last a:hover:before, .pagination .page li.last a:hover:after, .pagination .page li.last a:focus:before, .pagination .page li.last a:focus:after {
  border: 2px solid #FFF;
  border-left: none;
  border-bottom: none;
}
.pagination .page li.first a:before {
  margin-left: -6px;
  transform: rotate(-135deg);
}
.pagination .page li.first a:after {
  margin-left: 0px;
  transform: rotate(-135deg);
}
.pagination .page li.prev a:before {
  margin-left: -2px;
  transform: rotate(-135deg);
}
.pagination .page li.next a:before {
  margin-left: -6px;
  transform: rotate(45deg);
}
.pagination .page li.last a:before {
  margin-left: -3px;
  transform: rotate(45deg);
}
.pagination .page li.last a:after {
  margin-left: -9px;
  transform: rotate(45deg);
}
.pagination .total {
  padding: 0em;
  display: inline-block;
  vertical-align: middle;
  color: #666;
}
.pagination .total select {
  margin: 0px 0.5em;
  border-radius: 0.2em;
}
@media screen and (max-width: 767px) {
  .pagination .total select {
    margin: 0px;
  }
}
.pagination .total input[type=button] {
  background: #F7F7F7;
  background: linear-gradient(to bottom, #F7F7F7, #EAEAEA);
  border: 1px solid #CCC;
  color: #222;
  padding: 0.4em 1em !important;
  min-width: 3em;
  display: inline-block;
  vertical-align: middle;
  box-shadow: none;
  text-shadow: none;
}
.pagination .total input[type=button]:hover, .pagination .total input[type=button]:focus {
  color: #fff !important;
  background: #21baff;
  border: #08b2ff solid 1px;
  box-shadow: none !important;
}
.pagination .items {
  display: inline-block;
  vertical-align: middle;
}
.pagination .items a {
  padding: 0 5px;
  color: #002D5F;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .pagination .total select.form-control {
    margin: 0px 0px;
    text-align: center;
  }
}
.share {
  box-sizing: border-box;
  margin: 0.5em 0;
}
.share ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.share ul li {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: left;
  margin: 0px 3px 3px;
}
.share ul li a {
  display: block;
  height: 30px;
}
@media screen and (max-width: 991px) {
  .share ul li {
    margin: 0px 1px 2px;
    width: 30px;
    height: 30px;
  }
}
.share ul li img {
  width: 100%;
  height: 100%;
}

.function_panel .share {
  box-sizing: border-box;
  text-align: center;
  height: 40px;
  margin: 0;
  position: relative;
}
.function_panel .share ul {
  display: none;
  position: absolute;
  top: 3em;
  left: -8px;
  width: 40px;
  padding: 10px;
  background: #FFF;
  box-shadow: 2px 2px 5px RGBA(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 999;
  height: auto;
}
.function_panel .share ul li {
  display: block;
  margin: 0 auto 0.5em;
}
.function_panel .share ul li img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.function_panel .share ul li a {
  background: transparent;
  display: block;
  padding: 0;
  width: 30px;
  height: 30px;
}
.function_panel .share ul li a:hover, .function_panel .share ul li a:focus {
  background: transparent;
}
.function_panel .share ul li a:hover img, .function_panel .share ul li a:focus img {
  filter: invert(0%);
}
.function_panel .share ul li a:focus {
  outline: 1px solid #002D5F;
}
.function_panel .share a.shareButton {
  display: block;
  background: #F1F1F1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
}
.function_panel .share a.shareButton:hover, .function_panel .share a.shareButton:focus {
  background: #0092d4;
}
.function_panel .share a.shareButton:hover img, .function_panel .share a.shareButton:focus img {
  filter: invert(100%);
}
.function_panel .share a.shareButton img {
  width: 60%;
  height: 60%;
  margin: 20% auto;
}

div.tag {
  padding: 0.5em 0;
  margin-bottom: 0.5em;
}
div.tag ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
div.tag ul li {
  display: inline-block;
  margin: 0 0.1em 0.2em 0;
  min-width: 4em;
}
div.tag ul li a {
  display: block;
  font-size: 0.875em;
  color: #404e55;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #DDD;
  background: #FFF;
  padding: 0.2em 0.5em;
  text-shadow: none;
}
div.tag ul li a:hover, div.tag ul li a:focus {
  color: #FFF;
  border: 1px solid #755934;
  text-shadow: none;
  background: #987444;
}
div.tag ul li.active a {
  color: #FFF;
  border: 1px solid #755934;
  background: #755934;
  text-shadow: none;
}

*[class^=notice] {
  padding: 0.4em 2.5em;
  display: block;
  font-size: 0.938em;
  flex-grow: 1;
  margin: 0.2em 0;
  position: relative;
  color: #666;
  background-color: #f2f2f2;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  border: none;
}
*[class^=notice]:before {
  position: absolute;
  top: 0.7em;
  left: 0.8em;
  display: block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  content: "";
}
*[class^=notice]:before img {
  width: 100%;
}
*[class^=notice] a.close {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 0.8em;
  right: 1em;
  display: block;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
*[class^=notice] a.close:hover, *[class^=notice] a.close:focus {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
*[class^=notice] a.close img {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0;
}

*[class*=notice_info] {
  color: #00529B;
  background-color: #BDE5F8;
}
*[class*=notice_info]:before {
  background: url(../images/basic/icon_info.svg) no-repeat center center;
  background-size: 15px;
}

*[class*=notice_success] {
  color: #4F8A10;
  background-color: #DFF2BF;
}
*[class*=notice_success]:before {
  background: url(../images/basic/icon_success.svg) no-repeat center center;
  background-size: 15px;
}

*[class*=notice_warning] {
  color: #CE5605;
  background-color: #FEEFB3;
}
*[class*=notice_warning]:before {
  background: url(../images/basic/icon_warning.svg) no-repeat center center;
  background-size: 15px;
}

*[class*=notice_error] {
  color: #D8000C;
  background-color: #FFD2D2;
}
*[class*=notice_error]:before {
  background: url(../images/basic/icon_error.svg) no-repeat center center;
  background-size: 15px;
}

.chart_content figure > div {
  height: 250px;
}

.chart_content figure > div.h_400 {
  height: 250px;
}

.chart_content figure > div.h_200 {
  height: 250px;
}

.highcharts-tooltip-box {
  fill: white;
  fill-opacity: 0.6;
  stroke-width: 1;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.highcharts-tooltip text {
  fill: #222;
  stroke: none;
}

.highcharts-figure, .highcharts-data-table table {
  min-width: 150px;
  max-width: 100%;
  margin: 0.5em auto;
}

.highcharts-pane-group {
  width: 100% !important;
}
.highcharts-pane-group path {
  fill: #DDD !important;
  stroke: #DDD !important;
}

.highcharts-background {
  background: transparent !important;
  fill: transparent !important;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #EBEBEB;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 1000px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

.red .highcharts-color-0 {
  fill: #FF3E4D;
  stroke: #FF3E4D;
}

.green .highcharts-color-0 {
  fill: #5CB85C;
  stroke: #5CB85C;
}

.yellow .highcharts-color-0 {
  fill: #FCC211;
  stroke: #FCC211;
}

.gray .highcharts-color-0 {
  fill: #a6a6a6;
  stroke: #a6a6a6;
}

/* Link the series colors to axis colors */
.highcharts-color-0 {
  fill: #20A4F3;
  stroke: #20A4F3;
}

.highcharts-axis.highcharts-color-0 .highcharts-axis-line {
  stroke: #20A4F3;
}

.highcharts-axis.highcharts-color-0 text {
  fill: #20A4F3;
}

.highcharts-color-1 {
  fill: #54CEC3;
  stroke: #54CEC3;
}

.highcharts-axis.highcharts-color-1 .highcharts-axis-line {
  stroke: #54CEC3;
}

.highcharts-axis.highcharts-color-1 text {
  fill: #54CEC3;
}

.highcharts-yaxis .highcharts-axis-line {
  stroke-width: 2px;
}

.highcharts-color-0 {
  fill: #20A4F3;
  stroke: none !important;
}
.highcharts-color-0 tspan {
  fill: #20A4F3;
}

.highcharts-color-1 {
  fill: #54CEC3;
  stroke: none !important;
}
.highcharts-color-1 tspan {
  fill: #54CEC3;
}

.highcharts-color-2 {
  fill: #ffbc08;
  stroke: none !important;
}
.highcharts-color-2 tspan {
  fill: #ffbc08;
}

.highcharts-color-3 {
  fill: #fe7b62;
  stroke: none !important;
}
.highcharts-color-3 tspan {
  fill: #fe7b62;
}

.highcharts-color-4 {
  fill: #00b44b;
  stroke: none !important;
}
.highcharts-color-4 tspan {
  fill: #00b44b;
}

.highcharts-color-5 {
  fill: #2869b9;
  stroke: none !important;
}
.highcharts-color-5 tspan {
  fill: #2869b9;
}

.highcharts-color-6 {
  fill: #d84400;
  stroke: none !important;
}
.highcharts-color-6 tspan {
  fill: #d84400;
}

.highcharts-color-7 {
  fill: #009e7a;
  stroke: none !important;
}
.highcharts-color-7 tspan {
  fill: #009e7a;
}

.highcharts-color-8 {
  fill: #2e3c56;
  stroke: none !important;
}
.highcharts-color-8 tspan {
  fill: #2e3c56;
}

.highcharts-color-9 {
  fill: #754a28;
  stroke: none !important;
}
.highcharts-color-9 tspan {
  fill: #754a28;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

hr {
  border: 1px solid #eaeaea;
  width: 100%;
}

code, pre {
  font-size: 14px;
  line-height: 1.45em;
}

.text-left {
  text-align: left !important;
  justify-content: flex-start;
}

.text-center {
  text-align: center !important;
  justify-content: center;
}

.text-right {
  text-align: right !important;
  justify-content: flex-end;
}

.demo_line {
  outline: 1px #f08bc3 solid;
}

.dropdown {
  position: relative;
}

.color {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .color {
    display: block;
  }
  .color span {
    width: 50%;
    height: 100px;
    float: left;
  }
}
.color span {
  width: 100px;
  height: 100px;
  display: flex;
  flow: 0 0 100px;
  justify-content: center;
  line-height: 100px;
  align-self: stretch;
  align-items: stretch;
  text-align: center;
  color: #FFF;
  margin: 0 0.2em 0.4em;
}
@media screen and (max-width: 767px) {
  .color span {
    margin: 0 1px 1px;
    flow: 1 1 100%;
  }
}

.demo_componet {
  box-shadow: 0px 0px 15px -10px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  width: 100%;
  border-radius: 0.5em;
  position: relative;
  padding: 0.5em;
  flex: 0 0 100%;
}

.demo_info {
  position: relative;
  min-height: 1px;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
  margin-bottom: 0.5em;
  border-radius: 0.5em;
}
.demo_info a {
  color: #523e24 !important;
}
.demo_info a:hover, .demo_info a:focus {
  color: #755934 !important;
}
.demo_info pre {
  border-radius: 0.5em;
}

h3.demo {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  font-size: 1.25em;
  color: #404e55;
}

h4 {
  margin: 0.5em 0;
}

body {
  background: url(../images/bg.jpg) 50% top no-repeat;
  background-attachment: fixed;
}
body .overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  transform: translateZ(0);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
}
@media screen and (max-width: 991px) {
  body .overlay {
    display: none;
  }
  body .overlay.show {
    display: block;
  }
}

.wrapper {
  width: 100%;
  margin: 0px auto;
  background: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 767px) {
  .wrapper {
    overflow: hidden;
    overflow-y: auto;
  }
}
.wrapper.noscroll {
  position: static !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  margin: 0;
  padding: 0;
}

.container {
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.content {
  padding-top: 5em;
  margin-left: 17em;
  margin-right: 1em;
  position: relative;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.content.full {
  margin-left: 5em;
}
@media screen and (max-width: 1440px) {
  .content {
    margin-left: 14em;
  }
}
@media screen and (max-width: 991px) {
  .content {
    margin: 5em 1em 1em;
    padding-top: 0em;
  }
  .content.full {
    margin-left: 1em;
  }
}

.btn-back {
  margin-left: 1em;
  border: 1px solid #755934;
  border-bottom: 2px solid #755934;
  background: #755934;
  padding-left: 0.2em;
  padding-right: 0.6em;
  font-weight: normal;
  font-size: 0.75rem;
  color: #FFF;
  position: absolute;
  top: 70px;
  right: 1rem;
}
.btn-back i {
  font-size: 0.938rem;
  filter: invert(100%);
}
.btn-back .ink {
  display: none;
}

.grid {
  padding-bottom: 3em;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.grid .title {
  border: 1px solid rgba(166, 171, 182, 0.3);
  border-left: none;
  border-right: none;
  margin-bottom: 1em;
  position: relative;
  min-height: 1px;
  padding-left: 6px;
  padding-right: 6px;
  box-sizing: border-box;
  flex-flow: row nowrap;
  justify-content: space-between;
  display: flex;
}
.grid .title .btn {
  margin-left: 1em;
  border: 1px solid #CCC;
  border-bottom: 2px solid #CCC;
  background: #f7f7f7;
  padding-left: 0.2em;
  padding-right: 0.6em;
  font-weight: normal;
  font-size: 0.813rem;
}
.grid .title .btn i {
  font-size: 0.938rem;
  opacity: 0.5;
}
.grid .title .btn .ink {
  display: none;
}
@media screen and (max-width: 767px) {
  .grid .title {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
}
.grid .title h2 {
  font-size: 1.5em;
  line-height: 1.125em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: black;
}
.grid .title h2 span {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: #5e5e5e;
  margin-left: 1em;
  padding-left: 1em;
}
.grid .title h2 span:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "/";
}
.grid .title .btn-adv {
  align-self: center;
  padding: 0.5em;
  min-width: 0em;
  font-size: 0.875em;
  background: #755934;
  border: 1px solid #755934;
}
.grid .title .btn-adv i {
  opacity: 1;
  filter: invert(100%);
}
.grid .title .btn-adv i span {
  filter: invert(100%);
}
.grid .title .btn-adv .ink {
  display: block;
}
.grid .container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.grid .col {
  min-height: 200px;
  margin: 0px 0px 16px;
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 1px;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .grid .col {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
}

.demo [class^=flex-] {
  min-height: 200px;
}

.flex-8-4 {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .flex-8-4 {
    flex-wrap: wrap;
  }
}
.flex-8-4 .col {
  flex-grow: 2;
  flex-shrink: 2;
  flex-basis: 66.6666%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  align-self: stretch;
}
.flex-8-4 .col:nth-child(2n) {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 33.3333%;
}
@media screen and (max-width: 767px) {
  .flex-8-4 .col {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
  .flex-8-4 .col:nth-child(2n) {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

.flex-4-8 {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .flex-4-8 {
    flex-wrap: wrap;
  }
}
.flex-4-8 .col {
  flex-grow: 2;
  flex-shrink: 2;
  flex-basis: 33.3333%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  align-self: stretch;
}
.flex-4-8 .col:nth-child(2n) {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 66.6666%;
}
@media screen and (max-width: 767px) {
  .flex-4-8 .col {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
  .flex-4-8 .col:nth-child(2n) {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

.flex-9-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .flex-9-3 {
    flex-wrap: wrap;
  }
}
.flex-9-3 .col {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  align-self: stretch;
}
.flex-9-3 .col:nth-child(2n) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
}
@media screen and (max-width: 991px) {
  .flex-9-3 .col {
    flex-basis: 66.6666%;
  }
  .flex-9-3 .col:nth-child(2n) {
    flex-basis: 33.3333%;
  }
}
@media screen and (max-width: 767px) {
  .flex-9-3 .col {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
  .flex-9-3 .col:nth-child(2n) {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

.flex-3-9 {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .flex-3-9 {
    flex-wrap: wrap;
  }
}
.flex-3-9 .col {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  align-self: flex-start;
}
.flex-3-9 .col:nth-child(2n) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 75%;
}
@media screen and (max-width: 991px) {
  .flex-3-9 .col {
    flex-basis: 33.33333%;
  }
  .flex-3-9 .col:nth-child(2n) {
    flex-basis: 66.66666%;
  }
}
@media screen and (max-width: 767px) {
  .flex-3-9 .col {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
  .flex-3-9 .col:nth-child(2n) {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

.flex-4-4-4 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-self: flex-start;
}
.flex-4-4-4 .col {
  flex: 1 1 33.3333%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flex-4-4-4 .col {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
  }
}

.flex-3-3-3-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-self: flex-start;
}
.flex-3-3-3-3 .col {
  flex: 1 1 25%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flex-3-3-3-3 .col {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
  }
}

.flex-6-6 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-self: flex-start;
}
.flex-6-6 .col {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex-6-6 .col {
    display: block;
    width: 100%;
    flex: 0 0 100%;
  }
}

.flex-12 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-self: flex-start;
}
.flex-12 .col {
  flex: 1 1 100%;
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  .flex-12 .col {
    display: block;
    width: 100%;
  }
}

.flex-3-6-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-self: flex-start;
}
.flex-3-6-3 .col {
  flex: 2 0 12%;
  display: flex;
  justify-content: center;
}
.flex-3-6-3 .col:nth-child(2n) {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flex-3-6-3 .col {
    display: block;
    width: 100%;
    flex: 0 0 100%;
  }
}

.content_block, .widget_block, .publish_block {
  box-shadow: 0px 6px 15px -13px rgba(0, 0, 0, 0.6);
  background: #FFFFFF;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  width: 100%;
  border-radius: 0.5em;
  position: relative;
  padding: 1.5em;
  flex: 1 1 calc(80% - 260px);
  margin: 0 auto 0.5em 0;
}
.content_block.nobg, .widget_block.nobg, .publish_block.nobg {
  background: none;
  box-shadow: none;
}
.content_block h3, .widget_block h3, .publish_block h3 {
  margin: 0.5em 0;
  padding-bottom: 0.3em;
  position: relative;
  color: #111;
  font-size: 1.25em;
  display: flex;
  width: 100%;
}
.content_block ._head, .widget_block ._head, .publish_block ._head {
  margin-bottom: 0.25em;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  position: relative;
  width: 100%;
}
.content_block ._head small, .widget_block ._head small, .publish_block ._head small {
  margin-left: 1em;
  color: #333;
  font-size: 0.875rem;
  font-weight: normal;
}
.content_block ._head .sort_panel, .widget_block ._head .sort_panel, .publish_block ._head .sort_panel {
  padding: 0.4em 1em;
  border-radius: 0.25em;
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  flex-flow: row nowrap;
  flex: 1 1 auto;
}
@media screen and (max-width: 991px) {
  .content_block ._head .sort_panel, .widget_block ._head .sort_panel, .publish_block ._head .sort_panel {
    flex: 1 1 100%;
    padding: 0;
  }
}
.content_block ._head .sort_panel .check_grp label, .widget_block ._head .sort_panel .check_grp label, .publish_block ._head .sort_panel .check_grp label {
  margin-bottom: 0;
  margin-top: auto;
}
.content_block ._head .sort_panel .btn, .widget_block ._head .sort_panel .btn, .publish_block ._head .sort_panel .btn {
  min-width: 6em;
  padding: 0.25em 0.25em 0.25em 1em;
}
.content_block ._head .sort_panel .btn i, .widget_block ._head .sort_panel .btn i, .publish_block ._head .sort_panel .btn i {
  transform: scale(0.75);
}
.content_block ._head .sort_panel .flex-form, .content_block ._head .sort_panel .btn-grp, .widget_block ._head .sort_panel .flex-form, .widget_block ._head .sort_panel .btn-grp, .publish_block ._head .sort_panel .flex-form, .publish_block ._head .sort_panel .btn-grp {
  flex: 0 1 auto;
}
@media screen and (max-width: 767px) {
  .content_block ._head .sort_panel .flex-form, .content_block ._head .sort_panel .btn-grp, .widget_block ._head .sort_panel .flex-form, .widget_block ._head .sort_panel .btn-grp, .publish_block ._head .sort_panel .flex-form, .publish_block ._head .sort_panel .btn-grp {
    flex: 0 1 100%;
  }
}
.content_block ._head .sort_panel .btn_grp, .widget_block ._head .sort_panel .btn_grp, .publish_block ._head .sort_panel .btn_grp {
  flex-flow: row nowrap;
}
.content_block ._head .sort_panel .btn_grp .btn, .widget_block ._head .sort_panel .btn_grp .btn, .publish_block ._head .sort_panel .btn_grp .btn {
  background: transparent;
  border: 1px solid #DDD;
}
.content_block ._head .sort_panel .btn_grp .btn i, .widget_block ._head .sort_panel .btn_grp .btn i, .publish_block ._head .sort_panel .btn_grp .btn i {
  font-size: 0.75rem;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .content_block ._head .sort_panel .btn_grp, .widget_block ._head .sort_panel .btn_grp, .publish_block ._head .sort_panel .btn_grp {
    display: none;
  }
}
.content_block ._head .data-title, .widget_block ._head .data-title, .publish_block ._head .data-title {
  margin-top: 1.5em !important;
}
.content_block ._head .data-title input[type=text], .widget_block ._head .data-title input[type=text], .publish_block ._head .data-title input[type=text] {
  background: #fff6da;
  font-weight: 600;
}
.content_block ._head .data-title .labelEffect, .widget_block ._head .data-title .labelEffect, .publish_block ._head .data-title .labelEffect {
  margin-left: 0 !important;
}
.content_block ._head .flex-form, .widget_block ._head .flex-form, .publish_block ._head .flex-form {
  margin: 0;
  font-size: 0.875rem;
}
.content_block ._head .flex-form .form_grp, .widget_block ._head .flex-form .form_grp, .publish_block ._head .flex-form .form_grp {
  margin: 0;
  align-items: flex-end;
}
.content_block ._head .flex-form .form_content, .widget_block ._head .flex-form .form_content, .publish_block ._head .flex-form .form_content {
  padding: 0;
  margin: auto 0 0 0;
  border: none;
}
.content_block ._head .pagination, .widget_block ._head .pagination, .publish_block ._head .pagination {
  margin: 0 0 0 auto;
}
.content_block ._head .pagination select, .widget_block ._head .pagination select, .publish_block ._head .pagination select {
  width: 5.5em;
  text-align: center;
  border: 1px solid transparent;
  background: url(../images/basic/icon_select_arrow.svg) no-repeat right center transparent;
  background-size: 20px;
}
@media screen and (max-width: 767px) {
  .content_block ._head .pagination, .widget_block ._head .pagination, .publish_block ._head .pagination {
    display: none;
  }
}
.content_block ._head .tag, .widget_block ._head .tag, .publish_block ._head .tag {
  flex: 1 1 100%;
  margin: 0.1em 0 1em;
  padding: 0em 0em 0.25em;
  border-bottom: 1px solid #F1F1F1;
}
.content_block ._head h3, .widget_block ._head h3, .publish_block ._head h3 {
  margin: 0 0 0.25em;
  display: flex;
  flex: 1 1 auto;
  font-size: 1.25rem;
  border-bottom: 1px solid #AAA;
}
.content_block ._head .quick_btn, .widget_block ._head .quick_btn, .publish_block ._head .quick_btn {
  flex: 1 1 6em;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 6em;
  text-align: right;
  justify-content: flex-end;
  margin: 0 0 0 1em;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .content_block ._head .quick_btn, .widget_block ._head .quick_btn, .publish_block ._head .quick_btn {
    margin: 0 0 0.5em auto;
    flex: 0 1 50%;
  }
  .content_block ._head .quick_btn .btn, .widget_block ._head .quick_btn .btn, .publish_block ._head .quick_btn .btn {
    width: 100%;
    margin: 0 !important;
  }
}
@media screen and (max-width: 991px) {
  .content_block ._head .quick_btn, .widget_block ._head .quick_btn, .publish_block ._head .quick_btn {
    order: -1;
    flex: 1 1 100%;
  }
}
.content_block ._head .quick_btn .btn, .widget_block ._head .quick_btn .btn, .publish_block ._head .quick_btn .btn {
  font-size: 0.875rem;
  border-radius: 0.25em;
  padding: 0.4em 1.2em 0.4em 0.6em;
  align-self: center;
}
.content_block ._head .quick_btn .btn i, .widget_block ._head .quick_btn .btn i, .publish_block ._head .quick_btn .btn i {
  filter: invert(100%);
  opacity: 1;
}
.content_block ._head .quick_btn .btn i span, .widget_block ._head .quick_btn .btn i span, .publish_block ._head .quick_btn .btn i span {
  filter: invert(100%);
}
.content_block ._head .quick_btn .btn .i_sort, .widget_block ._head .quick_btn .btn .i_sort, .publish_block ._head .quick_btn .btn .i_sort {
  font-size: 0.75em;
}
.content_block ._content, .widget_block ._content, .publish_block ._content {
  padding-bottom: 2em;
}
.content_block ._content h3, .widget_block ._content h3, .publish_block ._content h3 {
  border: none !important;
}
.content_block ._content p, .widget_block ._content p, .publish_block ._content p {
  max-width: 50em;
  font-size: 0.875em;
  color: #888;
  margin: 0;
}
.content_block .chart_info, .widget_block .chart_info, .publish_block .chart_info {
  width: 220px;
  height: 1.5em;
  position: absolute;
  top: 1.4em;
  right: 1em;
  padding-right: 2em;
}
.content_block .chart_info .update, .widget_block .chart_info .update, .publish_block .chart_info .update {
  display: block;
  white-space: nowrap;
  font-size: 0.813em;
  color: #afafaf;
  position: absolute;
  bottom: -2em;
  right: 0;
}
.content_block .chart_info .update time, .widget_block .chart_info .update time, .publish_block .chart_info .update time {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.3em;
}
.content_block .chart_info .question, .widget_block .chart_info .question, .publish_block .chart_info .question {
  position: absolute;
  right: 0;
  top: 0;
}
.content_block .chart_info .question a, .widget_block .chart_info .question a, .publish_block .chart_info .question a {
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: #DDD;
  border-radius: 50%;
  background: #9b9b9b;
  text-align: center;
}
.content_block .chart_info .question a img, .widget_block .chart_info .question a img, .publish_block .chart_info .question a img {
  width: 100%;
  transform: scale(0.75);
  filter: invert(100%);
}
.content_block .chart_info .question a:hover, .content_block .chart_info .question a:focus, .widget_block .chart_info .question a:hover, .widget_block .chart_info .question a:focus, .publish_block .chart_info .question a:hover, .publish_block .chart_info .question a:focus {
  background: #755934;
}

.content_block .flex-form {
  width: 96%;
  margin: 1em auto 2em 1em;
}

.widget_block {
  flex: 0 1 250px;
  min-width: 200px;
  margin: 0 10px 0 0;
  box-shadow: 0px 6px 15px -13px rgba(0, 0, 0, 0.6);
  background: #FFFFFF;
  padding: 1em 0.75em;
  border-radius: 0.5em;
  align-self: flex-start;
}
.widget_block .containerTableStyle table {
  text-align: left;
  border: none !important;
}
.widget_block .containerTableStyle table th, .widget_block .containerTableStyle table td {
  text-align: left;
  font-size: 0.813rem;
  border: none !important;
}
.widget_block .containerTableStyle table th span, .widget_block .containerTableStyle table td span {
  font-size: 0.813rem !important;
}

.publish_block {
  flex: 0 1 260px;
  margin: 0 0 0 15px;
  box-shadow: none;
  background: transparent;
  align-self: flex-start;
  padding: 0;
  transform: translateZ(0);
  padding-bottom: 5em;
}
.publish_block ._head h3 {
  font-size: 0.938rem;
  margin-bottom: 1em;
  padding-bottom: 0.25em;
}
.publish_block .flex-form {
  font-size: 0.875rem;
}
.publish_block .flex-form .radio_grp label, .publish_block .flex-form .check_grp label {
  margin-bottom: 0;
  font-size: 0.813rem;
}
.publish_block .flex-form .form_grp {
  margin-bottom: 0em;
}
.publish_block .flex-form .form_content {
  margin-bottom: 0;
}
.publish_block .flex-form hr {
  flex: 1 1 100%;
  margin: 0.5em 0 2em;
}
.publish_block .flex-form input[type=text], .publish_block .flex-form input[type=password], .publish_block .flex-form input[type=calendar] {
  padding: 0.5em;
}
.publish_block .flex-form .datepick {
  flex-direction: column;
}
.publish_block .flex-form .datepick .btn {
  top: 0em;
}
.publish_block .block {
  background: #FFFFFF;
  padding: 0.5em 1em;
  box-shadow: 0px 6px 15px -13px rgba(0, 0, 0, 0.6);
  border-radius: 0.5em;
  margin: 0 auto 0.5em;
  width: 100%;
}
.publish_block .block .btn_grp {
  display: flex;
  flex-flow: row wrap;
}
.publish_block .block .btn_grp button {
  flex: 1 1 45%;
  padding: 0.45em 0.25em;
}
.publish_block .log {
  font-size: 0.75rem;
  width: 100%;
  background: #F5F5F5;
  border-radius: 0.2em;
  color: #444;
  padding: 0.25em 1em;
}
.publish_block .log ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0.5em;
}
.publish_block .log ul span {
  width: 1em;
  display: inline-block;
  font-weight: bold;
  margin-right: 0.5em;
  opacity: 0.5;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

table .dropdown-btn {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  min-width: 2em;
  background: #FFF;
  border: 1px solid #DDD;
}
table .dropdown-btn i {
  display: none;
}
table .dropdown-btn:hover, table .dropdown-btn:focus {
  border: 1px solid #0092d4 !important;
  background: #FFF;
  box-shadow: none;
  background: #0092d4;
}
table .dropdown-btn:hover i, table .dropdown-btn:focus i {
  filter: invert(100%);
}
table .dropdown-btn:hover:before, table .dropdown-btn:focus:before {
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
}
table .dropdown-btn:before {
  width: 6px;
  height: 6px;
  right: 0.9em;
  content: "";
  position: absolute;
  border: 2px solid #333;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  top: 0.9em;
}

table .dropdown-content {
  width: 200px;
  top: 3.2em;
  left: -150px;
}
table .dropdown-content:before {
  right: 15%;
  left: auto;
}
table .dropdown-content .btn {
  width: 100%;
  text-align: left;
  font-size: 0.875em;
  padding: 0.5em !important;
  background: #FFF;
  border: 1px solid #DDD !important;
}
table .dropdown-content .btn:hover, table .dropdown-content .btn:focus {
  border: 1px solid #0092d4 !important;
  background: #0092d4 !important;
  color: #FFF;
}
table .dropdown-content .btn:hover i, table .dropdown-content .btn:focus i {
  filter: invert(100%);
}
table .dropdown-content .btn i {
  margin-right: 0.5em;
}
table .dropdown-content .btn.btn-red {
  border: 1px solid #FF3E4D !important;
  color: #FF3E4D;
}
table .dropdown-content .btn.btn-red:hover {
  color: #FFF;
  background: #FF3E4D !important;
  border: 1px solid #FF3E4D !important;
}
table .dropdown-content .btn.btn-red:hover i {
  filter: invert(100%);
}

table td .dropdown {
  display: inline-block;
  position: relative;
  margin: 0 0.5em;
}
table td .dropdown .dropdown-btn {
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  min-width: 2em;
  background: #FFF;
  position: relative;
  border: 1px solid #DDD;
}
table td .dropdown .dropdown-btn i {
  display: none;
}
table td .dropdown .dropdown-btn:hover, table td .dropdown .dropdown-btn:focus {
  border: 1px solid #21baff !important;
  background: #FFF;
  box-shadow: none;
  background: #21baff;
}
table td .dropdown .dropdown-btn:hover i, table td .dropdown .dropdown-btn:focus i {
  filter: invert(100%);
}
table td .dropdown .dropdown-btn:hover:before, table td .dropdown .dropdown-btn:focus:before {
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
}
table td .dropdown .dropdown-btn:before {
  width: 6px;
  height: 6px;
  right: 0.9em;
  content: "";
  position: absolute;
  border: 2px solid #333;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  top: 0.8em;
}
table td .dropdown .dropdown-content {
  width: 16em;
  min-width: 16em;
  top: 2.2em;
  left: auto;
  right: -1em;
  padding: 1em;
  position: absolute;
  border-radius: 0.5em;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.75);
  z-index: 999998;
}
table td .dropdown .dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
table td .dropdown .dropdown-content ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
table td .dropdown .dropdown-content:before {
  right: 15%;
  left: auto;
}
table td .dropdown .dropdown-content.show {
  display: block;
  top: 3.2em;
  opacity: 1;
  pointer-events: auto;
}
table td .dropdown .dropdown-content .btn {
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  padding: 0.25em !important;
  background: #FFF;
  border: 1px solid #DDD !important;
}
table td .dropdown .dropdown-content .btn i {
  margin-right: 0.5em;
  opacity: 0.5;
}
table td .dropdown .dropdown-content .btn:hover, table td .dropdown .dropdown-content .btn:focus {
  border: 1px solid #21baff !important;
  background: #21baff !important;
  color: #FFF;
  cursor: pointer;
}
table td .dropdown .dropdown-content .btn:hover i, table td .dropdown .dropdown-content .btn:focus i {
  filter: invert(100%);
  opacity: 1;
}
table td .dropdown .dropdown-content .btn.btn-red {
  border: 1px solid #FF3E4D !important;
  background: #FF3E4D;
  color: #FFF;
}
table td .dropdown .dropdown-content .btn.btn-red i {
  filter: invert(100%);
  opacity: 1;
}
table td .dropdown .dropdown-content .btn.btn-red:hover, table td .dropdown .dropdown-content .btn.btn-red:focus {
  color: #FFF;
  background: #ff717c !important;
  border: 1px solid #ff717c !important;
}

.control_panel {
  margin: 0 0 0.1em;
  padding-bottom: 0.2em;
  text-align: right;
  display: flex;
  flex: 0 1 11.5em;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .control_panel {
    flex: 1 1 50%;
  }
}
.control_panel .dropdown {
  width: 100%;
  z-index: 9;
}
.control_panel .dropdown .btn {
  width: 100%;
  border: 1px solid #F1F1F1;
  background: #F1F1F1;
}
.control_panel .dropdown .btn:hover, .control_panel .dropdown .btn:focus {
  background: #21baff;
  border: 1px solid #21baff !important;
}
.control_panel .dropdown .dropdown-content {
  left: 0;
  right: auto;
  z-index: 999999;
  width: 100%;
  min-width: 4em;
}
.control_panel .dropdown .dropdown-content .btn {
  font-size: 0.813rem;
}
.control_panel .dropdown .dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.control_panel .dropdown .dropdown-content ul li {
  list-style: none;
}
.control_panel .dropdown .dropdown-content ul li button {
  text-align: left;
}
.control_panel .dropdown .dropdown-content ul li button:hover, .control_panel .dropdown .dropdown-content ul li button:focus {
  background: #21baff;
  border: 1px solid #21baff !important;
}
.control_panel .dropdown .dropdown-content ul li .btn-delete {
  background: #FF3E4D;
  border: 1px solid #FF3E4D !important;
  color: #FFF;
}
.control_panel .dropdown .dropdown-content ul li .btn-delete i {
  filter: invert(100%);
}
.control_panel .dropdown .dropdown-content ul li .btn-delete:hover, .control_panel .dropdown .dropdown-content ul li .btn-delete:focus {
  background: #FF3E4D;
  border: 1px solid #FF3E4D !important;
}
.control_panel .dropdown .dropdown-content.show {
  top: 3.5em;
}
.control_panel .btn_grp {
  padding: 0.2em 0;
}
.control_panel span {
  float: left;
  display: block;
  margin: 0.5em 0.5em 0.5em 0;
}
.control_panel .info {
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .control_panel .info {
    display: block;
    margin: 0 0 0.5em;
  }
}
.control_panel .btn {
  font-size: 0.875rem;
  background: #FFF;
  align-self: center;
  padding: 0.4em 1em 0.4em 0.4em;
  border: 2px solid #DDD;
  margin: 0 0.25em 0.25em 0;
}
.control_panel .btn i {
  opacity: 0.75;
}
.control_panel .btn:hover, .control_panel .btn:focus {
  border: 2px solid #0092d4 !important;
}
.control_panel .btn .i_sort {
  font-size: 0.75em;
}
.control_panel .btn:hover, .control_panel .btn:focus {
  background: #0092d4;
  color: #FFF;
  border: 2px solid #0092d4;
}
.control_panel .btn:hover i, .control_panel .btn:focus i {
  filter: invert(100%);
  opacity: 1;
}
.control_panel .btn-red {
  color: #333;
}
.control_panel .btn-red i {
  filter: invert(100%);
  margin-right: 0.3em;
  font-size: 0.938rem;
}
.control_panel .btn-red:hover, .control_panel .btn-red:focus {
  color: #FFF;
  background: #ff0b1e;
  border: 2px solid #ff0b1e !important;
}
.control_panel .btn-red:hover i, .control_panel .btn-red:focus i {
  filter: invert(0%);
}

.adv_search {
  display: none;
  flex: 1 1 100%;
}
.adv_search .btn_grp {
  display: flex;
  justify-content: center;
}
.adv_search .flex-form {
  width: 100%;
  max-width: 100%;
  justify-content: space-around;
  margin: 0.8em 0 0;
}
.adv_search .flex-form .form_grp {
  flex: 1 0 calc(50% - 1em);
  margin-left: 0.5em;
  margin-right: 0.5em;
}
@media screen and (max-width: 991px) {
  .adv_search .flex-form .form_grp {
    flex-basis: 100%;
  }
}

.card {
  display: flex;
  padding-bottom: 1em;
  justify-content: flex-start;
  align-content: flex-start;
  flex-flow: row wrap;
}
.card .item {
  flex: 0 1 calc(25% - 1em);
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(25% - 1em);
  max-width: calc(25% - 1em);
  margin: 0 0.5em 1em;
  background: #FFF;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.3);
  border-radius: 0.25em;
  min-height: 200px;
  padding-bottom: 4em;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 1600px) {
  .card .item {
    flex: 0 1 calc(20% - 1em);
    max-width: calc(20% - 1em);
  }
}
@media screen and (max-width: 1399px) {
  .card .item {
    flex: 0 1 calc(33.33% - 1em);
    max-width: calc(33.33% - 1em);
  }
}
@media screen and (max-width: 767px) {
  .card .item {
    flex: 0 1 calc(50% - 1em);
    max-width: calc(50% - 1em);
  }
}
@media screen and (max-width: 575px) {
  .card .item {
    flex: 0 1 calc(100% - 1em);
    max-width: calc(100% - 1em);
  }
}
.card .item:hover {
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.5);
}
.card .item:hover .dropdown .dropdown-btn {
  display: block;
}
.card .item:hover .tag_grp .tag {
  background: rgba(0, 0, 0, 0.85);
}
.card .item .num {
  position: absolute;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #FFF;
  text-align: center;
  line-height: 2em;
  top: 0.5em;
  left: 0.5em;
  z-index: 1;
}
.card .item .check_grp {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
}
.card .item .dropdown {
  position: absolute;
  top: 5px;
  right: 5px;
}
.card .item .dropdown .dropdown-btn {
  display: none;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  min-height: 3em;
  z-index: 9;
  padding: 0em;
  min-width: 0em;
  transition: 0.3s ease-out;
  background: #FFF;
  border: 1px solid #CCC;
}
.card .item .dropdown .dropdown-btn:hover, .card .item .dropdown .dropdown-btn:focus {
  background: #21BAFF;
  border: 1px solid #21BAFF;
}
.card .item .dropdown .dropdown-btn:hover i, .card .item .dropdown .dropdown-btn:focus i {
  filter: invert(100%);
}
.card .item .dropdown .dropdown-content {
  z-index: 99;
  width: 15em;
  max-width: 15em;
  min-width: 15em;
}
.card .item .dropdown .dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card .item .dropdown .dropdown-content ul li {
  list-style: none;
  margin-bottom: 0.25em;
}
.card .item .dropdown .dropdown-content ul li .btn {
  width: 100%;
  text-align: left;
  padding: 0.25em 0.5em;
  font-size: 0.875rem;
  margin: 0 0 0.25em;
  background: #FFF;
  border: 1px solid #CCC;
}
.card .item .dropdown .dropdown-content ul li .btn:last-child {
  margin-bottom: 0;
}
.card .item .dropdown .dropdown-content ul li .btn i {
  margin-right: 1em;
}
.card .item .dropdown .dropdown-content ul li .btn:hover, .card .item .dropdown .dropdown-content ul li .btn:focus {
  color: #FFF;
  background: #21baff;
  border: 1px solid #21baff;
}
.card .item .dropdown .dropdown-content ul li .btn:hover i, .card .item .dropdown .dropdown-content ul li .btn:focus i {
  filter: invert(100%);
}
.card .item .dropdown .dropdown-content ul li .btn-delete {
  background: #FF3E4D;
  color: #FFF;
}
.card .item .dropdown .dropdown-content ul li .btn-delete i {
  filter: invert(100%);
}
.card .item .dropdown .dropdown-content ul li .btn-delete:hover, .card .item .dropdown .dropdown-content ul li .btn-delete:focus {
  color: #FFF;
  background: #FF3E4D;
  border: 1px solid #FF3E4D;
}
.card .item .dropdown .dropdown-content ul li .btn-delete:hover i, .card .item .dropdown .dropdown-content ul li .btn-delete:focus i {
  filter: invert(100%);
}
.card .item .tag_grp {
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  display: flex;
}
.card .item .tag_grp .tag {
  background: RGBA(0, 0, 0, 0.5);
  font-size: 0.875em;
  padding: 0.2em 0.75em;
  border-radius: 0.3em;
  margin: 0 0.25em;
  font-size: 0.75rem;
  color: #FFF;
  transition: 0.3s ease-out;
}
.card .item .img-container {
  border-radius: 0.25em 0.25em 0 0;
  overflow: hidden;
}
.card .item .img-container:before {
  display: inline-block;
  content: "";
  padding-top: 56.25%;
}
.card .item .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.card .item .card_info {
  padding: 0.5em 1em;
  font-size: 0.938em;
  color: #666;
}
.card .item .card_info .card_title {
  margin: 0.25em 0 1em;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}
.card .item .card_info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}
.card .item .card_info ul li {
  border-bottom: 1px solid #DEDEDE;
  padding: 0.25em 0.5em;
}
.card .item .card_info ul li:last-child {
  margin-bottom: 0;
}
.card .item .card_info ul li span {
  color: #002D5F;
}
.card .item .btn-grp {
  display: block;
  text-align: center;
  justify-content: center;
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 1em;
  margin-left: -45%;
}
.card .item .btn-grp .btn {
  width: 100%;
  margin: 0;
}

.media {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid #888;
  padding-top: 0.5em;
}

.folder_list {
  flex: 0 1 180px;
  margin-right: 1em;
}
.folder_list .widget_block {
  padding: 0.25em 0.5em;
}
.folder_list .widget_block ._head h3 {
  font-size: 0.938rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .folder_list {
    display: none;
  }
}
.folder_list .btn {
  margin: 0 auto 1em;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .folder_list {
    order: 2;
    display: none;
  }
}
.folder_list ul > li {
  margin-bottom: 1em;
}
.folder_list ul ul {
  padding: 0.5em 0.5em 0.5em 1em;
  margin-top: 0.25em;
  background: #F5F5F5;
  display: none;
}
.folder_list ul li {
  margin-bottom: 0.25em;
}
.folder_list ul li.active > a {
  background: #21baff;
  color: #FFF;
}
.folder_list ul li a {
  background: #F5F5F5;
  display: block;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  color: #333;
  font-size: 0.875em;
}
.folder_list ul li a:focus {
  background: #21baff;
  color: #FFF;
}
.folder_list ul li i {
  margin-right: 0.5em;
  font-size: 1rem;
}
.folder_list ul li li a {
  padding: 0.25em 1.25em;
  position: relative;
}
.folder_list ul li li a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: #666;
  left: 0.5em;
  top: 0.9em;
}
.folder_list ul li li a:focus {
  color: #21baff;
  background: transparent;
}
.folder_list ul li li a:focus:before {
  background: #21baff;
}
.folder_list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hot_tag .btn {
  width: auto;
  font-size: 0.75rem;
  padding: 0.2em 0.4em;
  margin: 0 0 0.25em 0;
  background: #FFF;
}
.hot_tag a {
  display: inline-block;
  width: auto;
  border: 1px solid #CCC;
  color: #666;
}
.hot_tag a.active {
  background: #21baff;
  border: 1px solid #21baff;
  color: #FFF;
}

.upload_area {
  position: fixed;
  transform: translateZ(0);
  z-index: 999999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-out;
}
.upload_area span {
  color: #FFF;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  line-height: 1.25em;
  max-width: 380px;
  padding: 1em;
  position: relative;
  z-index: 99;
}
.upload_area:after {
  position: absolute;
  top: 1em;
  left: 1em;
  right: 1em;
  bottom: 1em;
  border: 2px dashed #FFF;
  content: "";
}
.upload_area:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.85;
  content: "";
  background: #00a3ed;
}

.attachment_list {
  display: flex;
  flex-flow: row wrap;
  flex: 1 1 calc(100% - 350px);
  flex-basis: calc(100% - 350px);
}
.attachment_list .item {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  display: flex;
  flex-flow: row nowrap;
  border-bottom: 1px dashed #DDD;
  align-items: center;
}
.attachment_list .item:hover .num {
  color: #0092d4;
}
.attachment_list .item:hover .form_grp input {
  color: #0092d4;
}
.attachment_list .item .num {
  flex-basis: 1.25em;
  width: 1.25em;
  margin-right: 0.5em;
  color: #888;
  flex-grow: 0;
  flex-shrink: 0;
}
.attachment_list .item .check_grp {
  flex-basis: 1.5em;
  margin-right: 1em;
}
.attachment_list .item .check_grp label {
  margin: 0;
}
.attachment_list .item a {
  flex-basis: 30px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  margin-right: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.attachment_list .item a span {
  flex-grow: 1;
  flex-basis: calc(100% - 30px);
  flex-shrink: 0;
}
.attachment_list .item a .img-container {
  background: none;
  margin-right: 1em;
  overflow: hidden;
  width: 30px;
  flex-grow: 0;
  flex-basis: 30px;
  flex-shrink: 0;
  margin: 0 1em 0 0;
}
.attachment_list .item a .img-container:before {
  display: inline-block;
  content: "";
  padding-top: 100%;
}
.attachment_list .item a .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.attachment_list .item a .img-container img {
  -o-object-fit: contain;
     object-fit: contain;
}
.attachment_list .item .form_grp {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.attachment_list .item .form_grp input {
  background: none;
  pointer-events: none;
  cursor: arrow;
  color: #555;
}
.attachment_list .item .btn_grp {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 50px;
}
.attachment_list .item .btn_grp > .btn {
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  min-width: 2em;
  background: #FFF;
  position: relative;
  border: 1px solid #DDD;
}
.attachment_list .item .btn_grp > .btn:hover, .attachment_list .item .btn_grp > .btn:focus {
  border: 1px solid #21baff;
  background: #FFF;
  box-shadow: none;
  background: #21baff;
}
.attachment_list .item .btn_grp > .btn:hover:before, .attachment_list .item .btn_grp > .btn:focus:before {
  border: 2px solid #FFF;
  border-left: none;
  border-top: none;
}
.attachment_list .item .btn_grp > .btn:hover i, .attachment_list .item .btn_grp > .btn:focus i {
  filter: invert(100%);
}
.attachment_list .item .btn_grp > .btn:hover i span, .attachment_list .item .btn_grp > .btn:focus i span {
  filter: invert(100%);
}
.attachment_list .item .btn_grp > .btn:hover span, .attachment_list .item .btn_grp > .btn:focus span {
  filter: invert(100%);
}
.attachment_list .item .btn_grp > .btn-delete:hover, .attachment_list .item .btn_grp > .btn-delete:focus {
  color: #FFF;
  background: #FF3E4D;
  border: 1px solid #FF3E4D;
}

.photo_list {
  min-height: 400px;
  padding: 0.5em;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  align-items: flex-start;
  background: #F2F2F2;
  position: relative;
  flex: 1 1 calc(100% - 350px);
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(100% - 350px);
  width: 100%;
}
.photo_list .item {
  margin: 2px;
  position: relative;
  padding: 4px;
  background: #FFF;
  flex: 0 1 calc(12.5% - 4px);
  flex-basis: calc(12.5% - 4px);
  max-width: calc(12.5% - 4px);
}
@media screen and (min-width: 1600px) {
  .photo_list .item {
    flex: 0 1 calc(10% - 4px);
    max-width: calc(10% - 4px);
  }
}
@media screen and (max-width: 1399px) {
  .photo_list .item {
    flex: 0 1 calc(20% - 4px);
    max-width: calc(20% - 4px);
  }
}
@media screen and (max-width: 991px) {
  .photo_list .item {
    flex: 0 1 calc(16.6666% - 4px);
    max-width: calc(16.6666% - 4px);
  }
}
@media screen and (max-width: 767px) {
  .photo_list .item {
    flex: 0 1 calc(25% - 4px);
    max-width: calc(25% - 4px);
  }
}
@media screen and (max-width: 575px) {
  .photo_list .item {
    flex: 0 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
}
.photo_list .item:hover {
  cursor: pointer;
}
.photo_list .item:hover .check_grp {
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  height: calc(100% - 2em);
}
.photo_list .item:hover .check_grp label {
  width: 100%;
  height: 100%;
  display: flex;
}
.photo_list .item:hover .check_grp label input {
  margin: 0 0 auto 0;
}
.photo_list .item p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.photo_list .item a {
  display: block;
}
.photo_list .item a:hover span, .photo_list .item a:focus span {
  color: #0092d4;
}
.photo_list .item a span {
  font-size: 0.87rem;
  width: 100%;
  display: block;
  color: #555;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.photo_list .item .img-container {
  overflow: hidden;
  background: #EEE;
  border: 1px solid #FFF;
}
.photo_list .item .img-container:before {
  display: inline-block;
  content: "";
  padding-top: 100%;
}
.photo_list .item .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.photo_list .item .img-container:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2) inset;
  z-index: 1;
  content: "";
}
.photo_list .item .img-container.active {
  border: 1px solid #21baff;
}
.photo_list .item .img-container.active img {
  opacity: 1;
}
.photo_list .item .img-container.active:after {
  background: rgba(188, 188, 188, 0.5);
  box-shadow: 0px 0px 0px 6px #21baff inset;
}
.photo_list .item .img-container img {
  opacity: 0.8;
  transition: 0.3s ease-out;
}
.photo_list .item .img-container:hover img {
  opacity: 1;
}
.photo_list .item .check_grp {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  padding: 0.75em 0 0 0.75em;
}
.photo_list .item .check_grp.show {
  display: block;
}
.fancybox-slide--iframe .fancybox-content {
  width: 800px;
  height: 600px;
  max-width: 80%;
  max-height: 80%;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .fancybox-slide--iframe .fancybox-content {
    max-width: 96%;
    max-height: 90%;
  }
}

.fancybox-button--close:hover, .fancybox-button--close:focus {
  background: #21baff !important;
}

.lightbox {
  background: #FFF;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  margin: 0 auto;
  max-width: 1400px;
}
.lightbox:before {
  position: fixed;
  background: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 0;
}
.lightbox .lightbox_content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row wrap;
  padding: 50px 0.5em 1em;
}
.lightbox .lightbox_title, .lightbox .lightbox_bottom {
  border-bottom: 1px solid #AAA;
  padding: 0.75em;
  margin: 0;
  width: 100%;
  position: fixed;
  z-index: 99;
  height: 50px;
  top: 0;
  font-size: 1.25em;
  font-weight: bold;
  left: 0;
  background: #F1F1F1;
}
.lightbox .lightbox_bottom {
  top: auto;
  bottom: 0;
  border-top: 1px solid #AAA;
  border-bottom: none;
  text-align: right;
  padding: 0.25em;
  height: auto;
}
.lightbox .lightbox_bottom .btn {
  margin: 0 0 0 auto;
  font-size: 0.938rem;
}
.lightbox .photo_block {
  flex: 1 1 30%;
  background: #EEE;
}
@media screen and (max-width: 767px) {
  .lightbox .photo_block {
    flex: 1 1 100%;
  }
}
.lightbox .photo_block .crop_area {
  position: relative;
  overflow: hidden;
  background: #888;
}
.lightbox .photo_block .crop_area:before {
  display: inline-block;
  content: "";
  padding-top: 75%;
}
.lightbox .photo_block .crop_area img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.lightbox .metadata {
  flex: 0 1 30%;
  background: #FFF;
  padding: 2em 1em;
}
@media screen and (max-width: 767px) {
  .lightbox .metadata {
    flex: 1 1 100%;
  }
}
.lightbox .metadata .btn_grp {
  justify-content: flex-end;
  text-align: right;
}
.lightbox .metadata .info {
  background: #F1F1F1;
  font-size: 0.75rem;
  padding: 1em;
}
.lightbox .metadata .info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lightbox .metadata .info ul li {
  margin-bottom: 0.1em;
  line-height: 1.45em;
}

.upload_content {
  display: none;
  border: 2px solid #21baff;
  font-size: 0.813em;
  padding: 1em;
  min-height: 150px;
  background: #F1F1F1;
  margin-bottom: 1em;
  position: relative;
}
.upload_content a.close {
  position: absolute;
  top: 0.5em;
  right: 0.75em;
  opacity: 0.35;
}
.upload_content a.close:hover, .upload_content a.close:focus {
  opacity: 0.75;
}
.upload_content p {
  margin: 0 auto;
  text-align: center;
  color: #666;
}
.upload_content p span {
  color: #FF3E4D;
  font-weight: bold;
  margin: 0 0.5em;
}
.upload_content .photo_list {
  min-height: 100px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.upload_content .item {
  position: relative;
  flex: 0 1 100px;
  max-width: 100px;
}
.upload_content .item.error {
  background: #d70011;
}
.upload_content .item.error p {
  color: #FFF;
}
.upload_content .item.error:hover .delete, .upload_content .item.error:focus .delete {
  opacity: 1;
}
.upload_content .item.error:hover .delete i, .upload_content .item.error:focus .delete i {
  opacity: 1;
}
.upload_content .item.error .delete {
  position: absolute;
  background: #d70011;
  width: 2em;
  height: 1.8em;
  top: 0;
  right: 0;
  z-index: 9;
  opacity: 0;
}
.upload_content .item.error .delete i {
  filter: invert(100%);
  margin-left: 0.45em;
  margin-top: 0.25em;
}
.upload_content .item .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  background: rgba(255, 255, 255, 0.15);
}
.upload_content .item .loading ~ img {
  opacity: 0.55;
}

.now_style a {
  display: block;
  border: 1px solid #CCC;
}
.now_style a img {
  width: 100%;
}

.add_btn_grp {
  flex: 0 1 auto;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1399px) {
  .add_btn_grp {
    flex: 0 1 100%;
    text-align: left;
  }
  .add_btn_grp .btn {
    margin-left: 0 !important;
  }
}
.add_btn_grp .btn {
  margin: 0 0 0.5em 0em;
  border: 1px solid #CCC;
  border-bottom: 2px solid #CCC;
  background: #f7f7f7;
  padding-left: 0.2em;
  padding-right: 0.6em;
  font-weight: normal;
  font-size: 0.813rem;
  color: #333;
  width: 100%;
}
.add_btn_grp .btn i {
  font-size: 0.938rem;
  opacity: 0.5;
}
.add_btn_grp .btn .ink {
  display: none;
}

.edit_block .notice {
  background: none;
  display: flex;
  flex-flow: row wrap;
  flex: 1 1 100%;
  padding: 0;
  align-items: center;
  margin-bottom: 0.5em;
}
.edit_block .notice p {
  flex: 0 1 auto;
}
.edit_block .notice .add_btn_grp {
  flex: 0 1 auto;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1399px) {
  .edit_block .notice .add_btn_grp {
    flex: 0 1 100%;
    text-align: left;
  }
  .edit_block .notice .add_btn_grp .btn {
    margin-left: 0 !important;
  }
}
.edit_block .notice .add_btn_grp .btn {
  margin: 0 0 0 0.5em;
  border: 1px solid #CCC;
  border-bottom: 2px solid #CCC;
  background: #f7f7f7;
  padding-left: 0.2em;
  padding-right: 0.6em;
  font-weight: normal;
  font-size: 0.813rem;
  color: #333;
  width: auto;
}
.edit_block .notice .add_btn_grp .btn i {
  font-size: 0.938rem;
  opacity: 0.5;
}
.edit_block .notice .add_btn_grp .btn .ink {
  display: none;
}
.edit_block .template_fixed {
  flex: 1 1 100%;
}
.edit_block .template_fixed img {
  width: 100%;
  opacity: 0.5;
}
.edit_block .divider {
  margin: 0.25em auto 0.5em;
  flex: 1 1 100%;
  color: #21BAFF;
}
.edit_block .divider:before, .edit_block .divider:after {
  top: 0;
}

.right_sidebar {
  position: fixed;
  transform: translateZ(0);
  width: 300px;
  padding: 0 1em;
  right: -350px;
  top: 0;
  padding-top: 6em;
  height: 100%;
  background: #FFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.07, 1.02);
}
.right_sidebar.show {
  right: 0;
}
.right_sidebar ._head {
  position: relative;
  margin-bottom: 0.5em;
}
.right_sidebar ._head h3 {
  margin: 0;
}
.right_sidebar ._head a.close {
  position: absolute;
  width: 2em;
  background: #002D5F;
  left: -3em;
  top: 0;
  padding: 0.5em;
  text-align: center;
}
.right_sidebar ._head a.close i {
  filter: invert(100%);
  display: block;
  font-size: 0.813em;
}
.right_sidebar ._head a.close span {
  display: block;
  text-align: center;
  font-size: 0.813em;
  color: #FFF;
  line-height: 1.35em;
}
.right_sidebar ._content {
  overflow: hidden;
  background: #CCC;
  border-radius: 0.5em;
  overflow-y: scroll;
  height: calc(100% - 3em);
  padding: 1em 1em 3em;
}
.right_sidebar ._content .item {
  border: 2px solid #CCC;
  border-radius: 0.5em;
  padding: 0.25em;
  margin-bottom: 0.5em;
  background: #FFF;
}
.right_sidebar ._content .item img {
  display: block;
  margin-bottom: 0.25em;
}
.right_sidebar ._content .item span {
  color: #222;
  text-align: center;
  display: block;
  font-size: 0.813rem;
  font-weight: bold;
}
.right_sidebar ._content .item:hover {
  border: 2px solid #21BAFF;
  cursor: grab;
}

.mp_widget .help {
  text-align: right;
  font-size: 0.75rem;
  color: #999;
}
.mp_widget .counter {
  color: #FFF;
  font-weight: bold;
  font-size: 2.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.mp_widget [class^=widget_] {
  display: flex;
  width: 100%;
  height: 120px;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  border-radius: 0.5em;
}
.mp_widget .widget_now_counter {
  background: rgb(20, 122, 231);
  background: linear-gradient(0deg, rgb(20, 122, 231) 0%, rgb(8, 201, 244) 100%);
}
.mp_widget .widget_now_pageview {
  background: rgb(244, 136, 8);
  background: linear-gradient(0deg, rgb(244, 136, 8) 0%, rgb(251, 188, 32) 100%);
}
.mp_widget .widget_now_user {
  background: rgb(78, 168, 9);
  background: linear-gradient(0deg, rgb(78, 168, 9) 0%, rgb(172, 223, 16) 100%);
}
.mp_widget .widget_new_data {
  background: rgb(214, 81, 116);
  background: linear-gradient(0deg, rgb(214, 81, 116) 0%, rgb(247, 166, 94) 100%);
}

h1.title, h2.title {
  line-height: 1.25em;
  margin: 0.4em 0;
}

.cp .pic {
  float: left;
  margin: 0px 1em 1em 0;
  width: auto;
  width: 45%;
  max-width: 400px;
  background: #F1F1F1;
  overflow: hidden;
  padding: 0.5em 0.5em 0.2em;
}
.cp .pic img {
  float: none;
  width: 100%;
  margin: 0;
  display: block;
}
.cp .pic span {
  text-align: center;
  display: block;
  font-size: 0.938em;
}
@media screen and (max-width: 767px) {
  .cp .pic {
    float: none;
    max-width: 100%;
    width: auto;
    margin: 0px auto;
    display: block;
    margin-bottom: 0.5em;
  }
}
.cp.small_size {
  font-size: 0.938em;
}
.cp.large_size {
  font-size: 1.125em;
}
.cp table {
  background: #FFF;
}
.cp img.float_left {
  float: left;
  margin: 0px 1em 1em 0;
  width: auto;
  max-width: 55%;
}
@media screen and (max-width: 767px) {
  .cp img.float_left {
    float: none;
    max-width: 100%;
    margin: 0px auto;
  }
}
.cp img.float_right {
  float: right;
  margin: 0px 0 1em 1em;
  width: auto;
  max-width: 55%;
}
@media screen and (max-width: 767px) {
  .cp img.float_right {
    float: none;
    max-width: 100%;
    margin: 0px auto;
  }
}
.cp a {
  color: #006fa1;
  text-decoration: none;
}
.cp a:hover, .cp a:focus {
  color: #0092d4;
  cursor: pointer;
}

.publish_info {
  font-size: 0.875em;
  line-height: 1.5em;
  list-style: none;
  margin: 0 0 0.7em 0;
  border-left: solid 5px #002D5F;
  padding: 0.8em 1.5em 0.8em;
  background: #F2F2F2;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .publish_info {
    font-size: 0.938em;
  }
}
.publish_info li {
  width: 32%;
  margin-bottom: 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 991px) {
  .publish_info li {
    width: 48%;
    margin-bottom: 0.2em;
    font-size: 0.875em;
  }
}
@media screen and (max-width: 767px) {
  .publish_info li {
    width: 100%;
    display: block;
  }
}

.edit_block {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.tabBtn_block {
  flex: 1 1 100%;
  display: flex;
  flex-flow: row nowrap;
  align-self: flex-start;
}
.tabBtn_block .tab_items {
  flex: 1 1 100%;
  display: flex;
  margin-bottom: 1em;
  justify-content: space-between;
}
.tabBtn_block .tab_items .btn {
  flex: 0 1 calc(33.333% - 1em);
  padding: 0.75em 1em;
  margin: 0 0 0.5em;
  font-weight: bold;
}
.tabBtn_block .tab_items .btn.active {
  background: #21baff;
  border: 1px solid #21baff;
  color: #FFF;
}
.tabBtn_block .tab_items .btn.active i {
  filter: invert(100%);
}
.tabBtn_block .tab_items .btn:hover, .tabBtn_block .tab_items .btn:focus {
  background: #21baff;
  border: 1px solid #21baff;
  color: #FFF;
}
.tabBtn_block .tab_items .btn:hover i, .tabBtn_block .tab_items .btn:focus i {
  filter: invert(100%);
}

.tab__content {
  position: relative;
  width: 100%;
  align-self: flex-start;
  margin: 0 0 auto;
  top: 0;
}
.tab__content > div {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tab__content > div .content__wrapper {
  width: 100%;
}
.tab__content > div .content__wrapper ._head {
  margin-bottom: 1em;
}
.tab__content > div .content__wrapper ._head h3 {
  margin-bottom: 0.5em;
}
.tab__content > div .content__wrapper ._head .flex-form {
  max-width: 100%;
  width: 100% !important;
}

.content_block .flex-form {
  margin-bottom: 0 !important;
}
.content_block .user_edit {
  overflow: hidden;
  overflow-y: scroll;
  background: #FAFAFA;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25) inset;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  max-height: 60vh;
  margin: 0 auto 1em 0;
}
.content_block .user_edit, .content_block .block_edit {
  padding: 0.25em;
  margin: 0 0em 2em;
  min-height: 300px;
  background: #FFF;
  border: 1px solid #DDD;
}
.content_block .user_edit p, .content_block .block_edit p {
  font-size: 0.938rem;
  color: #222;
  max-width: 100%;
}
.content_block .user_edit .article_block, .content_block .block_edit .article_block {
  margin: 0.5em 1em;
  border-radius: 0.5em;
  padding: 0.5em;
  position: relative;
}
.content_block .user_edit .article_block:hover .panel, .content_block .block_edit .article_block:hover .panel {
  display: block;
  opacity: 1;
}
.content_block .user_edit .article_block .panel, .content_block .block_edit .article_block .panel {
  position: absolute;
  right: 0.25em;
  bottom: -1em;
  background: #F1F1F1;
  padding: 0.25em;
  border-radius: 0.25em;
  z-index: 9;
  display: none;
  opacity: 0;
}
.content_block .user_edit .article_block .panel .btn, .content_block .block_edit .article_block .panel .btn {
  background: #FFF;
  padding: 0.2em;
  font-size: 0.813rem;
  padding-right: 1em;
  margin: 0 0.1em;
}
.content_block .user_edit .article_block .panel .btn .ink, .content_block .block_edit .article_block .panel .btn .ink {
  background: rgba(0, 0, 0, 0.5);
  filter: invert(100%);
}
.content_block .user_edit .article_block .panel .btn:hover, .content_block .user_edit .article_block .panel .btn:focus, .content_block .block_edit .article_block .panel .btn:hover, .content_block .block_edit .article_block .panel .btn:focus {
  background: #21baff;
  color: #FFF;
}
.content_block .user_edit .article_block .panel .btn:hover i, .content_block .user_edit .article_block .panel .btn:focus i, .content_block .block_edit .article_block .panel .btn:hover i, .content_block .block_edit .article_block .panel .btn:focus i {
  filter: invert(100%);
}
.content_block .user_edit .article_block .panel .btn-red, .content_block .block_edit .article_block .panel .btn-red {
  color: #555;
}
.content_block .user_edit .article_block .panel .btn-red:hover, .content_block .user_edit .article_block .panel .btn-red:focus, .content_block .block_edit .article_block .panel .btn-red:hover, .content_block .block_edit .article_block .panel .btn-red:focus {
  background: #FF3E4D;
}
.content_block .user_edit .article_block:hover, .content_block .user_edit .article_block:focus, .content_block .block_edit .article_block:hover, .content_block .block_edit .article_block:focus {
  outline: 1px dashed #5CB85C;
}
.content_block .user_edit .article_block input, .content_block .user_edit .article_block textarea, .content_block .block_edit .article_block input, .content_block .block_edit .article_block textarea {
  background: #FFF;
  padding: 0 !important;
  min-height: 15em !important;
}
.content_block .user_edit .article_block p, .content_block .block_edit .article_block p {
  max-width: 100%;
  color: #333;
  font-size: 0.938rem;
}
.content_block .user_edit .article_block h2, .content_block .user_edit .article_block h3, .content_block .user_edit .article_block h4, .content_block .user_edit .article_block h5, .content_block .block_edit .article_block h2, .content_block .block_edit .article_block h3, .content_block .block_edit .article_block h4, .content_block .block_edit .article_block h5 {
  margin: 0.5em 0;
}
.content_block .user_edit .article_block h3, .content_block .block_edit .article_block h3 {
  font-size: 1.25rem !important;
}

.setting_block {
  margin: 0 auto 1em;
}
.setting_block h3 {
  display: flex;
  align-items: center;
}
.setting_block h3 .btn {
  margin-left: 1em;
  border: 1px solid #CCC;
  border-bottom: 2px solid #CCC;
  background: #f7f7f7;
  padding-left: 0.2em;
  padding-right: 0.6em;
  font-weight: normal;
}
.setting_block h3 .btn i {
  font-size: 0.938rem;
  opacity: 0.5;
}
.setting_block .upload_block, .setting_block .link_block {
  padding: 1em 1em 0.5em;
  border: 1px solid #E1E1E1;
  background: #F1F1F1;
  border-radius: 0.5em;
  min-height: 100px;
  max-width: 960px;
  margin-right: auto;
}
.setting_block .upload_block .item, .setting_block .link_block .item {
  padding: 1em 1.5em;
  background: #FFF;
  border-radius: 0.5em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5em;
  box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
@media screen and (max-width: 1399px) {
  .setting_block .upload_block .item, .setting_block .link_block .item {
    flex-flow: row wrap;
  }
}
.setting_block .upload_block .item .pic, .setting_block .link_block .item .pic {
  flex: 0 1 80px;
  width: 80px;
  overflow: hidden;
  margin: 0 1em 0 0;
  position: relative;
  background: #F5F5f5;
}
.setting_block .upload_block .item .pic:before, .setting_block .link_block .item .pic:before {
  display: inline-block;
  content: "";
  padding-top: 75%;
}
.setting_block .upload_block .item .pic img, .setting_block .link_block .item .pic img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.setting_block .upload_block .item .pic img, .setting_block .link_block .item .pic img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.setting_block .upload_block .item .file_title, .setting_block .link_block .item .file_title {
  flex: 0 1 100%;
  font-size: 0.813rem;
  margin-bottom: 0.25em;
}
.setting_block .upload_block .item .flex-form, .setting_block .link_block .item .flex-form {
  flex: 1 1 40%;
  margin-top: auto;
  align-self: flex-end;
  margin-left: 0;
  max-width: 100%;
}
.setting_block .upload_block .item .flex-form .form_grp, .setting_block .link_block .item .flex-form .form_grp {
  margin-bottom: 0;
  display: flex;
}
.setting_block .upload_block .item .flex-form .form_grp input[type=text], .setting_block .link_block .item .flex-form .form_grp input[type=text] {
  background: #FAFAFA;
}
.setting_block .upload_block .item .flex-form .form_grp:hover input[type=text], .setting_block .link_block .item .flex-form .form_grp:hover input[type=text] {
  background: #F4F4F4;
}
.setting_block .upload_block .item .additional, .setting_block .link_block .item .additional {
  margin-left: 1em;
  font-size: 0.875rem;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .setting_block .upload_block .item .additional, .setting_block .link_block .item .additional {
    margin-left: auto;
    margin-right: 0;
  }
}
.setting_block .upload_block .item .labelEffect, .setting_block .link_block .item .labelEffect {
  flex: 1 1 100%;
}
.setting_block .link_block .item .additional {
  margin-left: 0;
  align-self: stretch;
}
.setting_block .link_block .item .additional .btn {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
}
.setting_block .link_block .flex-form {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
}
@media screen and (max-width: 1399px) {
  .setting_block .link_block .flex-form {
    flex-flow: row wrap;
  }
}
.setting_block .link_block .flex-form .form_grp {
  flex: 1 1 100%;
  gap: 0;
}
@media screen and (max-width: 1399px) {
  .setting_block .link_block .flex-form .form_grp {
    flex: 1 1 100%;
  }
}

.multi-flex-form-5 {
  display: flex;
  width: 100%;
  padding: 1em 0;
  margin-top: 1em;
  flex-flow: row wrap;
  align-content: flex-start;
}
.multi-flex-form-5 .form_grp {
  flex: 0 1 20%;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 991px) {
  .multi-flex-form-5 .form_grp {
    flex: 0 1 33%;
  }
}
@media screen and (max-width: 767px) {
  .multi-flex-form-5 .form_grp {
    flex: 0 1 50%;
  }
}
.multi-flex-form-5 .form_grp .form_title {
  font-size: 0.875rem;
  margin-bottom: 1em;
  color: #444;
  font-weight: bold;
}

.login_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ededed;
}
.login_wrapper .bg_img {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.login_wrapper .bg_img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  content: "";
}
.login_wrapper .bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login_wrapper .bg_img.hidden {
  display: none;
}

.login {
  position: relative;
  z-index: 99;
  background: #FFF;
  box-shadow: 0px 6px 15px -13px rgba(0, 0, 0, 0.6);
  border-radius: 0.5em;
  width: 380px;
  margin: 3% auto;
  left: auto;
  min-height: 400px;
  padding: 1em 2em 5em;
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.6s;
}
@media screen and (max-width: 575px) {
  .login {
    width: 90%;
  }
}
.login h1 {
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  line-height: 1.25em;
  margin-bottom: 1em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #DDD;
}
.login h1 .pic {
  flex: 1 1 100%;
  height: 60px;
  display: flex;
}
.login h1 .pic img {
  max-height: 100%;
  max-width: 80%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.login h1 span {
  flex: 0 1 100%;
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  text-align: center;
}
.login h3 {
  font-size: 1.5em;
  text-align: center;
  opacity: 0.5;
}
.login .flex-form .form_grp {
  gap: 0;
}
.login .form_content {
  border: none;
  display: flex;
  justify-content: space-between;
  font-size: 0.813rem;
}
.login .btn_grp {
  width: 100%;
  margin-top: 1em;
}
.login .btn_grp .btn {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.login .contact {
  position: absolute;
  font-size: 0.75rem;
  color: #888;
  bottom: 1.5em;
  left: 10%;
  width: 80%;
  line-height: 1.4;
  text-align: center;
}
.login .contact p {
  margin: 0;
  padding: 0;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media print {
  body {
    background: none;
  }
  /* -------------------------------不需要列印的區塊，請放置於這----//*/
  header,
  .fatfooter,
  footer,
  .accesskey,
  .submenu,
  aside,
  .publish_block {
    display: none;
  }
  .noPrint {
    display: none;
  }
  .forPrint {
    display: block;
  }
  /* -------------------------------各別顯示設定----//*/
  body {
    background: transparent;
    float: none;
    width: 100%;
    -webkit-print-color-adjust: exact;
  }
  .content {
    padding: 1em !important;
    margin: 0 !important;
  }
  .container {
    margin: 0px auto;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .cp {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  input[type=text], input[type=password], input[type=tel], input[type=mail], input[type=number], input[type=date], input[type=calendar], textarea, select {
    border-bottom: 1px solid #999 !important;
    font-size: 14pt !important;
    border-radius: 0px !important;
    padding: 0.25em 0.75em;
  }
  input[readonly], input[disabled] {
    background: #F1F1F1 !important;
  }
  .labelEffect input:focus ~ label, .labelEffect input.used ~ label, .labelEffect textarea:focus ~ label, .labelEffect textarea.used ~ label, .labelEffect select:focus ~ label, .labelEffect select.used ~ label {
    color: #333 !important;
    font-size: 10pt !important;
    height: calc(100% + 1.5em) !important;
  }
  select {
    background: url(../images/basic/icon_select_arrow.svg) no-repeat right center transparent !important;
    background-size: 20px !important;
    padding-right: 20px !important;
  }
  .help {
    color: #AAA !important;
  }
  .flex-form .form_content.form_inline .labelEffect {
    align-self: flex-end !important;
  }
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  thead {
    display: table-header-group;
    /* 表格即使分頁也會顯示表頭 */
  }
  input[type=checkbox]:checked,
  input[type=radio]:checked {
    border: #21baff solid 5px !important;
    background-color: #FFF !important;
    outline: none !important;
  }
  input[type=checkbox]:checked {
    background-color: #21baff !important;
    background-image: url(../images/basic/icon_checked.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 120% !important;
    border: #21baff solid 2px !important;
    box-shadow: #21baff 0 0 0 2px !important;
    border-radius: 2px;
  }
}/*# sourceMappingURL=supercms.css.map */