/* color */
.color-primary {
  color: #15389B;
}

.color-second {
  color: #50A6F9;
}

.color-third {
  color: #83CC3C;
}

.color-white {
  color: white;
}

.color-accent {
  color: #50A6F9;
}

.color-low {
  color: #aaaaaa;
}

.color-link {
  color: cornflowerblue;
}

/* font */
.text-through {
  text-decoration: line-through;
}

.text-underline {
  text-decoration: underline;
}

.text-none {
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* line-height */
.line-height {
  line-height: 21px;
}

/* font */
.font-bold {
  font-weight: bold;
}

.font-lighter {
  font-weight: lighter;
}

.font-sm {
  font-size: 12px;
}

.font-md {
  font-size: 14px;
  line-height: 21px;
}
.font-md[class*="n-line-"] {
  overflow: hidden;
}
.font-md.line-s2 {
  height: 42px;
}
.font-md.line-s3 {
  height: 63px;
}
.font-md.line-s4 {
  height: 84px;
}
@media (min-width: 768px) {
  .font-md.line-m2 {
    height: 42px;
  }
  .font-md.line-m3 {
    height: 63px;
  }
  .font-md.line-m4 {
    height: 84px;
  }
}
@media (min-width: 1024px) {
  .font-md.line-l2 {
    height: 42px;
  }
  .font-md.line-l3 {
    height: 63px;
  }
  .font-md.line-l4 {
    height: 84px;
  }
}

.font-lg {
  font-size: 16px;
}

.font-xl {
  font-size: 18px;
}

/* container */
.bg-color {
  background-color: black;
}

.bg-dark {
  background-color: black;
}

.bg-light {
  background-color: white;
}

/* visibility */
.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* position */
.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.z-index {
  z-index: 1;
}

.top {
  top: 0;
}

.right {
  right: 0;
}

.bottom {
  bottom: 0;
}

.left {
  left: 0;
}

/* width & height */
.box-sizing {
  box-sizing: border-box;
}

.width {
  width: 100%;
}

.height {
  height: 100%;
}

/* display */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hide {
  display: none;
}

/* overflow */
.overflow {
  overflow: hidden;
}

.overflow-x {
  overflow-x: hidden;
}

.overflow-y {
  overflow-y: hidden;
}

/* float */
.float-l {
  float: left;
}

.float-r {
  float: right;
}

.float-none {
  float: none;
}

.float-clear {
  clear: both;
}

/* padding */
.padding {
  padding: 12px;
}

.padding-v {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-h {
  padding-left: 12px;
  padding-right: 12px;
}

.padding-t {
  padding-top: 12px;
}

.padding-b {
  padding-bottom: 12px;
}

.padding-l {
  padding-left: 12px;
}

.padding-r {
  padding-right: 12px;
}

.padding-null {
  padding: 0;
}

/* margin */
.margin {
  margin: 12px;
}

.margin-h {
  margin-left: 12px;
  margin-right: 12px;
}

.margin-v {
  margin-top: 12px;
  margin-bottom: 12px;
}

.margin-t {
  margin-top: 12px;
}

.margin-b {
  margin-bottom: 12px;
}

.margin-l {
  margin-left: 12px;
}

.margin-r {
  margin-right: 12px;
}

.margin-null {
  margin: 0;
}

.margin-auto-h {
  margin-left: auto;
  margin-right: auto;
}

.margin-auto-v {
  margin-top: auto;
  margin-bottom: auto;
}

/* border */
.border {
  border-color: #eee;
  border-width: 1px;
  border-style: solid;
}

.border-0 {
  border-width: 0;
}

.border-primary {
  border-color: #15389B;
}

.border-second {
  border-color: #50A6F9;
}

.border-third {
  border-color: #83CC3C;
}

.border-t {
  border-top-color: #eee;
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-color: #eee;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-l {
  border-left-color: #eee;
  border-left-width: 1px;
  border-left-style: solid;
}

.border-r {
  border-right-color: #eee;
  border-right-width: 1px;
  border-right-style: solid;
}

/* border */
.radius-0 {
  border-radius: 0px;
}

.radius-sm {
  border-radius: 4px;
}

.radius-md {
  border-radius: 8px;
}

.radius-lg {
  border-radius: 12px;
}

.radius-full {
  border-radius: 50%;
}

.shadow-sm {
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}

.col-row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.col-row:after {
  content: "";
  display: table;
  clear: both;
}
.col-row > [class*="col-"] {
  box-sizing: border-box;
}

/* col.{(s|m|l)n} */
.col-1 {
  width: 8.33333%;
}

.col-2 {
  width: 16.66666%;
}

.col-3 {
  width: 24.99999%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66666%;
}

.col-6 {
  width: 49.99999%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66666%;
}

.col-9 {
  width: 74.99999%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66666%;
}

.col-12 {
  width: 99.99999%;
}

@media (min-width: 768px) {
  .m1 {
    width: 8.33333%;
  }

  .m2 {
    width: 16.66666%;
  }

  .m3 {
    width: 24.99999%;
  }

  .m4 {
    width: 33.33333%;
  }

  .m5 {
    width: 41.66666%;
  }

  .m6 {
    width: 49.99999%;
  }

  .m7 {
    width: 58.33333%;
  }

  .m8 {
    width: 66.66666%;
  }

  .m9 {
    width: 74.99999%;
  }

  .m10 {
    width: 83.33333%;
  }

  .m11 {
    width: 91.66666%;
  }

  .m12 {
    width: 99.99999%;
  }
}
@media (min-width: 1024px) {
  .l1 {
    width: 8.33333%;
  }

  .l2 {
    width: 16.66666%;
  }

  .l3 {
    width: 24.99999%;
  }

  .l4 {
    width: 33.33333%;
  }

  .l5 {
    width: 41.66666%;
  }

  .l6 {
    width: 49.99999%;
  }

  .l7 {
    width: 58.33333%;
  }

  .l8 {
    width: 66.66666%;
  }

  .l9 {
    width: 74.99999%;
  }

  .l10 {
    width: 83.33333%;
  }

  .l11 {
    width: 91.66666%;
  }

  .l12 {
    width: 99.99999%;
  }
}
#node-subnav {
  margin: 0 22px 0 0;
  padding: 0 10px 0;
}

#node-subnav .bar {
  font-size: 18px;
  color: #013799;
  background: url(images/node-subnav.bar.png) left bottom no-repeat;
  padding: 0 0 20px;
  margin: 0 0 15px;
}

#node-subnav .bar strong {
  /*background:url(images/icon.category.png) left 3px no-repeat;*/
  display: inline-block;
  padding: 0 0 0 10px;
}

#node-subnav .bar span {
  font-size: 12px;
  color: #7acc47;
  display: inline-block;
  margin: 0 0 0 5px;
}

#node-subnav .container {
  padding: 0 10px;
}

#node-subnav .container ul {
  list-style: none;
}

#node-subnav .container ul li {
  display: block;
  margin-bottom: 5px;
}

#node-subnav .container ul li a {
  font-size: 15px;
  text-align: left;
  display: block;
  line-height: 180%;
  padding: 0 0 8px 0;
  border-bottom: 1px dotted #ccc;
}

#node-subnav .container ul li a .notes {
  font-size: 12px;
  color: #aaa;
  display: block;
  line-height: 12px;
  margin: 0 0 5px;
  height: 12px;
}

#node-subnav .container ul li a:hover {
  color: #75bf44;
}

#node-subnav .container ul li .hover {
  background: url(images/node-subnav.hover.png) 185px center no-repeat;
}

#node-subnav .container ul ul {
  display: none;
}

#node-subnav .container ul ul li {
  display: block;
  margin-bottom: 0;
}

#node-subnav .container ul ul li .hover {
  background: #eee url(images/node-subnav.hover.png) 185px center no-repeat;
}

#node-subnav .container ul ul li a {
  font-size: 14px;
  color: #666;
  background: #eee;
  text-shadow: none;
  padding: 0 0 10px 10px;
  border-bottom: 1px #fff dotted;
}

#node-subnav .container ul ul li a:hover {
  border-bottom: 1px #fff dotted;
}

#node-subnav .container .option {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------- */
#activities-contestants-detail .share a {
  display: inline-block;
  border-top: 1px #ccc solid;
  border-left: 1px #ccc solid;
  border-right: 1px #ccc solid;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  transition: all .2s;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0);
  -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0);
  -ms-transition-timing-function: cubic-bezier(0.165, 0.84, 0);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0);
  text-indent: -100px;
  overflow: hidden;
}

#activities-contestants-detail .share a.facebook {
  background: #4968B4 url(images/svg/fb.svg) center center no-repeat;
  background-size: 16px auto;
}

#activities-contestants-detail .share a.line {
  background: #38B900 url(images/svg/line.svg) center center no-repeat;
  background-size: 36px auto;
}

/* ---------------------------------------------------------------------------------------------------- */
#activities-contestants-post .required {
  color: #ff0000;
}

#activities-contestants-post table {
  background: #fff;
  -webkit-box-shadow: #ccc 0px 0px 5px;
  -moz-box-shadow: #ccc 0px 0px 5px;
  box-shadow: #ccc 0px 0px 5px;
  padding: 0 0 20px;
  margin: 10px 0;
  width: 100%;
}

#activities-contestants-post th {
  font-size: 14px;
  vertical-align: top;
  text-align: right;
  padding: 20px 15px 0 0;
  width: 120px;
}

#activities-contestants-post td {
  vertical-align: top;
  padding: 20px 0 0;
}

#activities-contestants-post td h5 {
  font-size: 15px;
  color: #7acc47;
  margin-bottom: 10px;
}

#activities-contestants-post td .tr {
  margin-bottom: 10px;
}

#activities-contestants-post td .th {
  display: inline-block;
  padding: 0 0 0 10px;
  width: 100px;
}

#activities-contestants-post .remark {
  display: inline-block;
  padding: 0 0 0 5px;
}

#activities-contestants-post .textarea {
  color: #666;
  outline: none;
  margin-bottom: 10px;
  height: 200px;
  width: calc(100% - 40px);
}

#activities-contestants-post .text {
  color: #666;
  outline: none;
  padding: 10px;
  width: calc(100% - 40px);
}

#activities-contestants-post .username-result {
  color: #eb181f;
}

#activities-contestants-post ul.remark {
  font-size: 15px;
  font-weight: bold;
  color: #eb181f;
  padding: 0;
  margin: 0 0 15px 20px;
}

#activities-contestants-post ul.remark label {
  display: block;
  margin: 10px 0;
  cursor: pointer;
}

#activities-contestants-post ul.remark ol {
  margin: 0 0 0 50px;
}

#activities-contestants-post .button {
  font-weight: bold;
  text-align: center;
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 0;
  width: 60px;
  height: 20px;
}

/* upload */
.uploader .qq-upload-button {
  font-weight: bold;
  color: #fff;
  background: #453a30;
  display: inline-block;
  padding: 7px 20px 0;
  padding: 9px 20px 0\9;
  margin: 0 5px 0 0;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 23px;
  height: 21px\9;
}

.uploader .qq-upload-button-hover {
  color: #fff;
  background: #7e7e7e;
  border: 1px solid #ccc;
  -webkit-box-shadow: #ddd 0 0 4px;
  -moz-box-shadow: #ddd 0 0 4px;
  box-shadow: #ddd 0 0 4px;
}

.uploader .qq-upload-button-focus {
  outline: 1px dotted black;
}

.uploader-list {
  font-size: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.uploader-list .qq-upload-success {
  background: #fff;
  float: left;
  padding: 10px;
  margin: 0 10px 10px 0;
  border: solid 1px #eee;
}

.uploader-list .qq-upload-failed-text {
  display: none;
}

.uploader-list .qq-upload-fail {
  display: none;
}

.uploader-list .image {
  display: block;
  margin-bottom: 5px;
  width: 90px;
  height: 90px;
  cursor: move;
}

.uploader-list .name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 5px;
  width: 90px;
  overflow: hidden;
}

.uploader-list .text {
  display: none;
  margin-bottom: 5px;
  width: 90px;
}

.uploader-list .textarea {
  display: block;
  padding: 0px;
  margin-bottom: 5px;
  width: 90px;
}

.uploader-list .remove {
  display: block;
}
