/*color*/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
.text-shadow {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.flex-center {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  /* Safari 7.0+ */
  /*水平置中*/
  justify-content: center;
  -webkit-justify-content: center;
}
/*font-family: "微軟正黑體", "Microsoft YaHei", "Arial Unicode MS", "Helvetica Neue", Helvetica, sans-serif;*/
.checkbox {
  padding-left: 20px;
  /*label*/
}
.checkbox label {
  display: inline-block;
  position: relative;
  color: #333333;
  padding-left: 5px;
}
.checkbox label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label:after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: -1px;
  top: 0;
  margin-left: -20px;
  padding-left: 4px;
  padding-top: 2px;
  font-size: 15px;
  color: #555555;
}
.checkbox input[type="checkbox"] {
  opacity: 0;
}
.checkbox input[type="checkbox"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'icomoon';
  content: "\e91e";
}
.checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
  padding-right: 10px;
  margin-left: 0;
}
.checkbox input[type="checkbox"]:checked + label::before {
  background-color: #3e9dd5;
  border-color: #3e9dd5;
}
.checkbox input[type="checkbox"]:checked + label::after {
  color: #fff;
}
/*.checkbox-primary{
    input[type="checkbox"]:checked + label::before {background-color: @blue; border-color: @blue; }
      input[type="checkbox"]:checked + label::after {color: #fff; }
} */
.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #e9392a;
  border-color: #e9392a;
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #bababa;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #ffc000;
  border-color: #ffc000;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #dceab5;
  border-color: #dceab5;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.radio {
  padding-left: 20px;
}
.radio label {
  display: block;
  position: relative;
  padding-left: 5px;
  color: #333333;
}
.radio label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #bababa;
  border-radius: 50%;
  background-color: #fff;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.radio label:after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.radio label .form-group {
  position: relative;
  top: -6px;
  left: 5px;
}
.radio label span.has-form-group {
  position: relative;
  top: -3px;
}
.radio input[type="radio"] {
  opacity: 0;
}
.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
  padding-right: 10px;
}
.radio input[type="radio"] + label::after {
  background-color: #3e9dd5;
}
.radio input[type="radio"]:checked + label::before {
  border-color: #afafaf;
}
.radio input[type="radio"]:checked + label::after {
  background-color: #3e9dd5;
}
/*.radio-primary{
    input[type="radio"] + label::after {background-color: @blue; }
    input[type="radio"]:checked + label::before {border-color: @blue; }
    input[type="radio"]:checked + label::after {background-color: @blue; }
    } */
.radio-danger input[type="radio"] + label::after {
  background-color: #e9392a;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #e9392a;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #e9392a;
}
.radio-info input[type="radio"] + label::after {
  background-color: #bababa;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #bababa;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #bababa;
}
.radio-warning input[type="radio"] + label::after {
  background-color: #ffc000;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #ffc000;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #ffc000;
}
.radio-success input[type="radio"] + label::after {
  background-color: #dceab5;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #dceab5;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #dceab5;
}
/*************************************
*		common
**************************************/
* {
  border-radius: 0px;
}
:focus {
  outline: none;
}
li {
  list-style: none;
}
::-moz-focus-inner {
  border: 0;
}
input:focus {
  outline: 0;
}
a {
  text-decoration: none;
}
.clearfix {
  clear: both;
}
.nowrap {
  white-space: nowrap;
}
.pos-re {
  position: relative;
}
.pos-ab {
  position: absolute;
}
.center {
  margin: 0 auto;
}
.inline-block {
  display: inline-block !important;
}
.form-info {
  color: #afafaf;
  display: inline-block;
}
hr {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}
/*txt*/
.lt {
  text-align: left !important;
}
.ct {
  text-align: center !important;
}
.rt {
  text-align: right !important;
}
.text-red {
  color: #e9392a;
}
.text-red.active {
  color: #000;
  background: #ffc000;
}
.text-blue {
  color: #3e9dd5 !important;
}
.text-blue-dark {
  color: #2856a1 !important;
}
.text-green {
  color: #5bb24a !important;
}
.text-orange {
  color: #f18e33 !important;
}
.text-yellow {
  color: #ffc000 !important;
}
.text-gray {
  color: #787878 !important;
}
.text-dark {
  color: #333333 !important;
}
.text-gray-light {
  color: #afafaf !important;
}
.text-white {
  color: #ffffff !important;
}
.text-logo {
  color: #3e9dd5 !important;
}
.color-red {
  color: #e9392a;
}
.color-orange {
  color: #f18e33;
}
.txt-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/*多餘文字...效果*/
/*list*/
.list-cjk li {
  list-style-type: cjk-ideographic;
}
/*國字數字*/
.list-num {
  padding-left: 20px;
}
.list-num li {
  list-style-type: decimal;
  margin-bottom: 10px;
}
/*數字*/
.list-dot {
  padding-left: 20px;
}
.list-dot li {
  position: relative;
}
.list-dot li:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: -10px;
  top: 9px;
  background: #afafaf;
}
.list-dot.l-h-30 li:before {
  top: 13px;
}
.list-warning {
  padding-left: 20px;
}
.list-warning li {
  position: relative;
  margin-bottom: 5px;
}
.list-warning li:before {
  content: "/";
  color: #fff;
  position: absolute;
  display: inline-block;
  padding: 2px 3px;
  left: -17px;
  top: 0px;
  background: #ffc000;
}
.list-warning li .color-green-dark {
  font-size: 1.8rem;
  font-weight: bolder;
}
.list-check {
  padding-left: 32px;
}
.list-check li {
  position: relative;
  margin-bottom: 5px;
}
.list-check li:before {
  content: "\ea10";
  font-family: "icomoon";
  color: #5bb24a;
  font-size: 1.6rem;
  position: absolute;
  left: -23px;
}
.list-abc li {
  list-style-type: lower-alpha;
}
/*小寫英文abc*/
.list-ABC li {
  list-style-type: upper-alpha;
}
/*大英文abc*/
.list-non li {
  list-style-type: none;
}
/*無符號*/
/*width / height */
.wid_100per {
  width: 100%;
}
.wid_90per {
  width: 90%;
}
.wid_80per {
  width: 80%;
}
.wid_70per {
  width: 70%;
}
.wid_65per {
  width: 65%;
}
.wid_60per {
  width: 60%;
}
.wid_50per {
  width: 50%;
}
.wid_55per {
  width: 55%;
}
.wid_49per {
  width: 49%;
}
.wid_48per {
  width: 48%;
}
.wid_45per {
  width: 45%;
}
.wid_40per {
  width: 40%;
}
.wid_35per {
  width: 35%;
}
.wid_30per {
  width: 30%;
}
.wid_25per {
  width: 25%;
}
.wid_20per {
  width: 20%;
}
.wid_15per {
  width: 15%;
}
.wid_10per {
  width: 10%;
}
.wid_100px {
  width: 100px !important;
}
.wid_120px {
  width: 120px !important;
}
.wid_150px {
  width: 150px !important;
}
.wid_250px {
  width: 250px !important;
}
.wid_300px {
  width: 300px !important;
}
.wid_80px {
  width: 80px;
}
.wid_70px {
  width: 70px;
}
.wid_65px {
  width: 65px;
}
.wid_60px {
  width: 60px;
}
.wid_50px {
  width: 50px;
}
.wid_40px {
  width: 40px;
}
.wid_35px {
  width: 35px;
}
.wid_30px {
  width: 30px;
}
.wid_25px {
  width: 25px;
}
.wid_20px {
  width: 20px;
}
.wid_15px {
  width: 15px;
}
.wid_10px {
  width: 10px;
}
.wid_5px {
  width: 5px;
}
.ht_85px {
  height: 85px;
}
.ht_65px {
  height: 65px;
}
.mt-20 {
  margin-top: -20px !important;
}
.mt-10 {
  margin-top: -10px !important;
}
.mt-5 {
  margin-top: -5px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.m0 {
  margin: 0;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
/* padding / margin */
.p-0 {
  padding: 0px  !important;
}
.p-10 {
  padding: 10px  !important;
}
.p-15 {
  padding: 15px  !important;
}
.p-20 {
  padding: 20px  !important;
}
/*background*/
.bg_gray {
  background: #f1f1f1;
}
.bg_white {
  background: #fff !important;
}
/*div table*/
.div-tb {
  display: table;
  width: 100%;
}
.div-tb .td {
  display: table-cell;
  vertical-align: top;
  padding: 0px;
  line-height: 25px;
}
.div-tb .td.hd {
  color: #333333;
}
.div-tb .td.rt strong {
  font-weight: normal;
}
.div-tb .idx_tr {
  display: table-row;
}
.vtop {
  vertical-align: top!important;
}
.vmid {
  vertical-align: middle !important;
}
.vbtm {
  vertical-align: bottom !important;
}
.gap20 {
  padding: 0 5px;
}
.gap20 .col-xs-1,
.gap20 .col-sm-1,
.gap20 .col-md-1,
.gap20 .col-lg-1,
.gap20 .col-xs-2,
.gap20 .col-sm-2,
.gap20 .col-md-2,
.gap20 .col-lg-2,
.gap20 .col-xs-3,
.gap20 .col-sm-3,
.gap20 .col-md-3,
.gap20 .col-lg-3,
.gap20 .col-xs-4,
.gap20 .col-sm-4,
.gap20 .col-md-4,
.gap20 .col-lg-4,
.gap20 .col-xs-5,
.gap20 .col-sm-5,
.gap20 .col-md-5,
.gap20 .col-lg-5,
.gap20 .col-xs-6,
.gap20 .col-sm-6,
.gap20 .col-md-6,
.gap20 .col-lg-6,
.gap20 .col-xs-7,
.gap20 .col-sm-7,
.gap20 .col-md-7,
.gap20 .col-lg-7,
.gap20 .col-xs-8,
.gap20 .col-sm-8,
.gap20 .col-md-8,
.gap20 .col-lg-8,
.gap20 .col-xs-9,
.gap20 .col-sm-9,
.gap20 .col-md-9,
.gap20 .col-lg-9,
.gap20 .col-xs-10,
.gap20 .col-sm-10,
.gap20 .col-md-10,
.gap20 .col-lg-10,
.gap20 .col-xs-11,
.gap20 .col-sm-11,
.gap20 .col-md-11,
.gap20 .col-lg-11,
.gap20 .col-xs-12,
.gap20 .col-sm-12,
.gap20 .col-md-12,
.gap20 .col-lg-12 {
  padding-right: 10px;
  padding-left: 10px;
}
.gap10 {
  padding: 0 10px;
}
.gap10 .col-xs-1,
.gap10 .col-sm-1,
.gap10 .col-md-1,
.gap10 .col-lg-1,
.gap10 .col-xs-2,
.gap10 .col-sm-2,
.gap10 .col-md-2,
.gap10 .col-lg-2,
.gap10 .col-xs-3,
.gap10 .col-sm-3,
.gap10 .col-md-3,
.gap10 .col-lg-3,
.gap10 .col-xs-4,
.gap10 .col-sm-4,
.gap10 .col-md-4,
.gap10 .col-lg-4,
.gap10 .col-xs-5,
.gap10 .col-sm-5,
.gap10 .col-md-5,
.gap10 .col-lg-5,
.gap10 .col-xs-6,
.gap10 .col-sm-6,
.gap10 .col-md-6,
.gap10 .col-lg-6,
.gap10 .col-xs-7,
.gap10 .col-sm-7,
.gap10 .col-md-7,
.gap10 .col-lg-7,
.gap10 .col-xs-8,
.gap10 .col-sm-8,
.gap10 .col-md-8,
.gap10 .col-lg-8,
.gap10 .col-xs-9,
.gap10 .col-sm-9,
.gap10 .col-md-9,
.gap10 .col-lg-9,
.gap10 .col-xs-10,
.gap10 .col-sm-10,
.gap10 .col-md-10,
.gap10 .col-lg-10,
.gap10 .col-xs-11,
.gap10 .col-sm-11,
.gap10 .col-md-11,
.gap10 .col-lg-11,
.gap10 .col-xs-12,
.gap10 .col-sm-12,
.gap10 .col-md-12,
.gap10 .col-lg-12 {
  padding-right: 5px;
  padding-left: 5px;
}
.gap0 {
  padding: 0 15px;
}
.gap0 > .col-xs-1,
.gap0 > .col-sm-1,
.gap0 > .col-md-1,
.gap0 > .col-lg-1,
.gap0 > .col-xs-2,
.gap0 > .col-sm-2,
.gap0 > .col-md-2,
.gap0 > .col-lg-2,
.gap0 > .col-xs-3,
.gap0 > .col-sm-3,
.gap0 > .col-md-3,
.gap0 > .col-lg-3,
.gap0 > .col-xs-4,
.gap0 > .col-sm-4,
.gap0 > .col-md-4,
.gap0 > .col-lg-4,
.gap0 > .col-xs-5,
.gap0 > .col-sm-5,
.gap0 > .col-md-5,
.gap0 > .col-lg-5,
.gap0 > .col-xs-6,
.gap0 > .col-sm-6,
.gap0 > .col-md-6,
.gap0 > .col-lg-6,
.gap0 > .col-xs-7,
.gap0 > .col-sm-7,
.gap0 > .col-md-7,
.gap0 > .col-lg-7,
.gap0 > .col-xs-8,
.gap0 > .col-sm-8,
.gap0 > .col-md-8,
.gap0 > .col-lg-8,
.gap0 > .col-xs-9,
.gap0 > .col-sm-9,
.gap0 > .col-md-9,
.gap0 > .col-lg-9,
.gap0 > .col-xs-10,
.gap0 > .col-sm-10,
.gap0 > .col-md-10,
.gap0 > .col-lg-10,
.gap0 > .col-xs-11,
.gap0 > .col-sm-11,
.gap0 > .col-md-11,
.gap0 > .col-lg-11,
.gap0 > .col-xs-12,
.gap0 > .col-sm-12,
.gap0 > .col-md-12,
.gap0 > .col-lg-12 {
  padding-right: 0px;
  padding-left: 0px;
}
.text-success {
  color: #5bb24a;
}
/*
 * Component: Form
 * ---------------
 */
.btn {
  font-size: 15px\9;
}
.form-control {
  border-radius: 0;
}
.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaaaaa;
  font-size: 16px;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaaaaa;
  font-size: 16px;
}
.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaaaaa;
  font-size: 16px;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #aaaaaa;
  font-size: 16px;
}
.form-control.input-lg::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaaaaa;
  font-size: 18px;
}
.form-control.input-lg::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaaaaa;
  font-size: 18px;
}
.form-control.input-lg:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaaaaa;
  font-size: 18px;
}
.form-control.input-lg:-moz-placeholder {
  /* Firefox 18- */
  color: #aaaaaa;
  font-size: 18px;
}
.has-success label {
  color: #5bb24a;
}
.has-success .help-block,
.has-success .control-label {
  color: #5bb24a;
}
.has-success .form-control,
.has-success .input-group-addon {
  border-color: #5bb24a;
  box-shadow: none;
}
.has-warning label {
  color: #f18e33;
}
.has-warning .help-block,
.has-warning .control-label {
  color: #f18e33;
}
.has-warning .form-control,
.has-warning .input-group-addon {
  border-color: #f18e33;
  box-shadow: none;
}
.has-error label {
  color: #e9392a;
}
.has-error .help-block,
.has-error .control-label {
  color: #e9392a;
}
.has-error .form-control,
.has-error .input-group-addon {
  border-color: #e9392a;
  box-shadow: none;
}
/* Input group */
.input-group {
  border: 1px solid #ddd;
  padding: 0;
}
.input-group .form-control {
  border: 0;
}
.input-group .input-group-addon {
  border-radius: 0;
  border: 0;
  padding: 0;
  min-width: 100px;
  background-color: #fff;
}
.input-group .input-group-btn .btn {
  background: transparent;
  padding: 5px 22px !important;
  color: #3e9dd5;
  position: relative;
}
.input-group .input-group-btn .btn i {
  font-size: 26px;
  position: absolute;
  top: 11px;
  left: 4px;
}
.input-group .input-group-btn .btn:hover {
  color: #2856a1;
}
/*.input-group-lg  .form-control, .input-group-lg  .input-group-addon, .input-group-lg  .input-group-btn  .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
}*/
.input-group-sm .form-control,
.input-group-sm .input-group-addon,
.input-group-sm .input-group-btn .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/*
 * Component: Small Box
 * --------------------
 */
/*
 * Component: Button
 * -----------------
 */
.btn {
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
}
.btn.uppercase {
  text-transform: uppercase;
}
.btn.btn-flat {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-width: 1px;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus {
  outline: none;
}
.btn-underline {
  text-decoration: underline;
  color: #3e9dd5;
}
.btn.btn-file {
  position: relative;
  overflow: hidden;
}
.btn.btn-file > input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  filter: alpha(opacity=0);
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.btn-default {
  background-color: #fff;
  color: #444;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:active,
.btn-default.hover {
  background-color: #eee;
}
.btn-primary {
  background-color: #3e9dd5;
  border-color: #3e9dd5;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover {
  background-color: #2856a1;
}
.btn-primary-line {
  color: #3e9dd5;
  background-color: #fff;
  border-color: #3e9dd5;
}
.btn-primary-line:hover,
.btn-primary-line:active,
.btn-primary-line.hover {
  color: #2856a1;
  border-color: #2856a1;
  background-color: #fff;
}
.btn-success {
  background-color: #5bb24a;
  border-color: #008d4c;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
  background-color: #008d4c;
}
.btn-info {
  background-color: #00c0ef;
  border-color: #00acd6;
}
.btn-info:hover,
.btn-info:active,
.btn-info.hover {
  background-color: #00acd6;
}
.btn-danger {
  background-color: #e9392a;
  border-color: #d73925;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
  background-color: #d73925;
}
.btn-warning {
  background-color: #f18e33;
  border-color: #e08e0b;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
  background-color: #e08e0b;
}
.btn-outline {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn[class*='bg-']:hover {
  -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}
.btn-app {
  border-radius: 3px;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;
  min-width: 80px;
  height: 60px;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  font-size: 12px;
}
.btn-app > .fa,
.btn-app > .glyphicon,
.btn-app > .ion {
  font-size: 20px;
  display: block;
}
.btn-app:hover {
  background: #f4f4f4;
  color: #444;
  border-color: #aaa;
}
.btn-app:active,
.btn-app:focus {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-app > .badge {
  position: absolute;
  top: -3px;
  right: -10px;
  font-size: 10px;
  font-weight: 400;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group label.btn.btn-default.active {
  background: #3e9dd5;
  color: #fff;
  border-color: #3e9dd5;
}
.well {
  background: #fff;
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.modal-dialog-centered .modal-content {
  width: 100%;
}
@media (min-width: 576px) {
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
}
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-15 {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}
.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
dt {
  font-weight: bolder;
}
dd {
  color: #777;
}
.list-group-item a {
  color: #333333;
}
.list-group-item.active a {
  color: #fff;
}
a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
/*Firefox 瀏覽器對 fieldset 元素設置了一些影響 width 屬性的樣式，導致響應式表格出現問題。可以使用下面提供的針對 Firefox 的 hack 代碼解決*/
@-moz-document url-prefix() {
  fieldset {
    display: table-cell;
  }
}
/*SVG 圖像和 IE 8-10*/
.img-responsive {
  width: 100% \9;
}
/* /////////////// panel///////////// */
.panel {
  position: relative;
}
.panel .panel-title {
  font-size: 18px;
}
.panel .panel-img {
  width: 100%;
}
.panel .panel-img-top {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.panel .panel-img-bottom {
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.panel .panel-body {
  padding-bottom: 12px;
}
.panel .panel-body .panel-title {
  margin-bottom: 5px;
}
.panel .panel-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px 20px;
}
.panel .panel-img-overlay .panel-title {
  margin-bottom: 5px;
}
.bg-primary,
.bg-secondary,
.bg-success,
.bg-danger,
.bg-warning,
.bg-info,
.bg-light,
.bg-dark {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.bg-primary .panel-heading,
.bg-secondary .panel-heading,
.bg-success .panel-heading,
.bg-danger .panel-heading,
.bg-warning .panel-heading,
.bg-info .panel-heading,
.bg-light .panel-heading,
.bg-dark .panel-heading {
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.bg-primary {
  background: #3e9dd5 !important;
  color: #fff !important;
}
.bg-secondary {
  background: #6c757d !important;
  color: #fff !important;
}
.bg-success {
  background: #28a745 !important;
  color: #fff !important;
}
.bg-danger {
  background: #dc3545 !important;
  color: #fff !important;
}
.bg-warning {
  background: #ffc000 !important;
  color: #fff !important;
}
.bg-info {
  background: #17a2b8 !important;
  color: #fff !important;
}
.bg-light {
  background: #f8f9fa !important;
  color: #000 !important;
}
.bg-dark {
  background: #343a40 !important;
  color: #fff !important;
}
/* /////////////// END panel///////////// */
/*手風琴*/
.panel-group .panel + .panel {
  margin-top: -1px !important;
}
.panel-group .panel {
  border-color: rgba(0, 0, 0, 0.12);
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  /*a*/
}
.panel-group .panel > a {
  height: auto;
  position: relative;
  padding: 0;
  line-height: 1em;
  background: #3e9dd5;
  padding: 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.panel-group .panel > a i {
  font-size: 30px;
  /*color:@gray-dark;*/
  float: left;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.panel-group .panel > a:hover i {
  color: #ffffff;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.panel-group .panel > a:after {
  font-family: "icomoon";
  content: '\e873';
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -8px;
  margin-right: 20px;
  /*color: rgba(255,255,255,.4);*/
  color: #fff;
  font-size: 13px;
}
.panel-group .panel > a:after a i {
  color: #afafaf;
}
.panel-group .panel > a.active {
  color: #fff;
  background: #3e9dd5;
}
.panel-group .panel > a.collapsed {
  background: #ffffff;
  color: #333333;
}
.panel-group .panel > a.collapsed:hover {
  color: #3e9dd5;
}
.panel-group .panel > a.collapsed:after {
  content: "\e874";
  color: #afafaf;
}
.panel-group .panel > a.one-level {
  background: #fff;
  color: #333333;
  line-height: 22px;
  padding: 15px 10px 12px 15px;
}
.panel-group .panel > a.one-level:after {
  display: none;
}
.panel-group .panel > a.one-level.active {
  color: #fff;
  background: #3e9dd5;
}
.panel-group .panel > a.one-level:hover {
  color: #3e9dd5;
  background: #e5eff7;
}
.panel-group .panel .panel-body {
  padding: 10px;
  background: rgba(0, 0, 0, 0.015);
}
.panel-group .panel ul.panel-body {
  padding: 10px;
}
.panel-group .panel ul.panel-body li a {
  display: block;
  color: #333333;
  font-size: 14px;
  padding: 5px 5px 5px 20px;
}
.panel-group .panel ul.panel-body li a:hover {
  text-decoration: none;
}
.panel-group .panel ul.panel-body li.active a {
  color: #3e9dd5;
}
.panel-group .panel + .panel {
  margin-top: 0;
}
/*END 手風琴*/
.nav-tabs > li > a {
  color: #333333;
  border-top: 2px solid #fff;
  /*background: @line;*/
}
.nav-tabs > li.active > a {
  border-top: 2px solid #3e9dd5;
}
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border-top: 2px solid #3e9dd5;
}
.affix {
  top: 0;
  width: 100%;
  z-index: 1049 !important;
  /*.header-left {width: 20%; }*/
}
.affix .header {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  height: 80px;
  min-height: 80px;
}
.affix .header .logo {
  width: 120px;
  height: 60px;
}
.affix .header .menu {
  margin-top: 40px;
}
.affix .header .menu > li > a {
  font-size: 1.5rem;
}
.affix .header-nav ul {
  margin-top: 5px;
}
.affix.nav-stacked {
  width: auto;
}
.tooltip {
  display: block;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #2856a1;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #2856a1;
}
.tooltip .tooltip-inner {
  background: #2856a1;
}
/*
 * Component: Table
 * ----------------
 */
table.table thead tr th {
  background: #3e9dd5;
  color: #fff;
  font-weight: normal;
}
table.table td,
table.table th {
  /*padding: 7px !important;*/
  text-align: center;
  vertical-align: middle !important;
}
table.table td.success,
table.table th.success {
  background: #3e9dd5 !important;
  color: #fff;
}
table.table td.lt,
table.table th.lt {
  text-align: left;
}
table.table hr {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 3px 0;
}
.table > thead > tr > th {
  border-bottom: 2px solid #f4f4f4;
}
/* .text-center in tables */
.datepicker.form-control {
  padding: 6px 12px !important;
}
.datepicker table.table thead tr th {
  border-radius: 0;
}
.datepicker table.table thead tr th.dow {
  background: #58cbfa;
  color: #fff;
  font-weight: normal;
}
.datepicker table.table thead tr th.prev:hover,
.datepicker table.table thead tr th.next:hover,
.datepicker table.table thead tr th.datepicker-switch:hover {
  background: #2856a1;
}
.datepicker .table td {
  border-top: 0 !important;
}
.datepicker .datepicker-switch:after {
  content: "▼";
  display: inline-block;
  opacity: .5;
  margin-left: 3px;
  font-size: 80%;
}
/* * Component: Progress Bar * ----------------------- */
.progress,
.progress > .progress-bar {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.progress,
.progress > .progress-bar,
.progress .progress-bar,
.progress > .progress-bar .progress-bar {
  border-radius: 1px;
}
/* size variation */
.progress.sm,
.progress-sm {
  height: 10px;
}
.progress.sm,
.progress-sm,
.progress.sm .progress-bar,
.progress-sm .progress-bar {
  border-radius: 1px;
}
.progress.xs,
.progress-xs {
  height: 7px;
}
.progress.xs,
.progress-xs,
.progress.xs .progress-bar,
.progress-xs .progress-bar {
  border-radius: 1px;
}
.progress.xxs,
.progress-xxs {
  height: 3px;
}
.progress.xxs,
.progress-xxs,
.progress.xxs .progress-bar,
.progress-xxs .progress-bar {
  border-radius: 1px;
}
/* Vertical bars */
.progress.vertical {
  position: relative;
  width: 30px;
  height: 200px;
  display: inline-block;
  margin-right: 10px;
}
.progress.vertical > .progress-bar {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.progress.vertical.sm,
.progress.vertical.progress-sm {
  width: 20px;
}
.progress.vertical.xs,
.progress.vertical.progress-xs {
  width: 10px;
}
.progress.vertical.xxs,
.progress.vertical.progress-xxs {
  width: 3px;
}
.progress-group .progress-text {
  font-weight: 600;
}
.progress-group .progress-number {
  float: right;
}
/* Remove margins from progress bars when put in a table */
.table tr > td .progress {
  margin: 0;
}
.selectpicker .check-mark {
  font-family: "icomoon";
}
.selectpicker .check-mark:before {
  content: "\e904";
}
/*
 * Component: modal
 * ----------------
 */
.modal {
  background: rgba(0, 0, 0, 0.3);
}
.modal-content {
  border-radius: 0;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  border: 0;
  width: 100%;
}
.modal-header {
  border-bottom-color: rgba(5, 56, 122, 0.1);
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(0, 54, 128, 0.2)));
  background: -webkit-linear-gradient(top, #ffffff, rgba(0, 54, 128, 0.2));
  background: -moz-linear-gradient(top, #ffffff, rgba(0, 54, 128, 0.2));
  background: -ms-linear-gradient(top, #ffffff, rgba(0, 54, 128, 0.2));
  background: -o-linear-gradient(top, #ffffff, rgba(0, 54, 128, 0.2));
  color: #003680;
}
.modal-footer {
  border-top-color: #f4f4f4;
}
.modal-primary .modal-header,
.modal-primary .modal-footer {
  border-color: #307095;
}
.modal-warning .modal-header,
.modal-warning .modal-footer {
  border-color: #c87f0a;
}
.modal-info .modal-header,
.modal-info .modal-footer {
  border-color: #0097bc;
}
.modal-success .modal-header,
.modal-success .modal-footer {
  border-color: #00733e;
}
.modal-danger .modal-header,
.modal-danger .modal-footer {
  border-color: #c23321;
}
/*
 * Component: alert
 * ----------------
 */
.pop-alert {
  position: fixed;
  /*display: none;*/
  /*opacity: 0;*/
  z-index: 9;
  top: 50px;
  right: 50px;
}
.alert {
  border-radius: 3px;
}
.alert .close {
  color: #000;
  opacity: 0.2;
}
.alert .close:hover {
  opacity: 0.5;
}
.alert a {
  color: #fff;
  text-decoration: underline;
}
.breadcrumb {
  padding: 15px;
  padding-bottom: 13px;
  font-size: 13px;
  margin-bottom: 0px;
  background-color: transparent;
}
.breadcrumb li.share {
  float: right;
}
.breadcrumb li.share > a {
  font-size: 20px;
  color: #999;
  min-width: 30px;
  padding: 0 6px;
  margin-left: 10px;
  position: relative;
}
.breadcrumb li.share > a > i {
  position: absolute;
  top: -13px;
}
.breadcrumb li.share > a:hover {
  color: #3e9dd5;
}
.breadcrumb li.share:before {
  display: none;
}
.breadcrumb li.share ul.dropdown-menu {
  min-width: 40px;
  width: 40px;
}
.breadcrumb li.share ul.dropdown-menu a {
  padding: 3px;
  text-align: center;
}
.breadcrumb li.share ul.dropdown-menu a i {
  font-size: 25px;
}
.link_owl {
  position: relative;
  margin: 15px 0;
}
.link_owl .owl-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -20px;
  width: 100%;
}
.link_owl .owl-nav .owl-prev,
.link_owl .owl-nav .owl-next {
  font-size: 2.5rem;
  position: absolute;
}
.link_owl .owl-nav .owl-prev,
.link_owl .owl-nav .owl-next {
  opacity: .6;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.link_owl .owl-nav .owl-prev i:before,
.link_owl .owl-nav .owl-next i:before {
  color: #787878;
}
.link_owl .owl-nav .owl-prev:hover,
.link_owl .owl-nav .owl-next:hover {
  opacity: 1;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.link_owl .owl-nav .owl-prev {
  left: -10px;
}
.link_owl .owl-nav .owl-next {
  right: -10px;
}
.link_owl .owl-nav .disabled {
  opacity: 0;
}
.link_owl:before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 41px;
  /*        background: url(../img/index/slider-bg.png) no-repeat center bottom;*/
  background-size: auto 100%;
  position: absolute;
  bottom: -41px;
  z-index: 2;
}
.link_owl .owl-dots {
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
}
.link_owl .owl-dots .owl-dot {
  margin: 0 6px;
  border: 1px solid #fff;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  zoom: 1;
  cursor: pointer;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
.link_owl .owl-dots .owl-dot.active {
  background: #5bb24a;
}
.link_owl .item {
  padding: 25px;
}
.link_owl .item a {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.15);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.link_owl .item a img {
  width: 100%;
  position: relative;
  z-index: 0;
}
.link_owl .item a span {
  text-align: center;
  display: inline-block;
  z-index: 2;
  width: 80%;
  position: absolute;
  color: #2856a1;
  font-weight: bolder;
  letter-spacing: 1px;
  font-size: 23px;
  left: 50%;
  top: 50%;
  margin-left: -40%;
  margin-top: -15%;
  text-shadow: 5px 5px 15px #FFFFFF;
}
.link_owl .item a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 1px solid #2856a1;
  -webkit-box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.07);
}
span.star {
  color: #e9392a;
}
.message-error {
  color: #e9392a;
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
  margin-top: 4px;
}
.txtImp {
  color: #e9392a;
}
.demo-sample {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px dashed #dddddd;
}
.demo-sample.in-td {
  margin: 0;
  border: 0;
  padding: 0;
}
.demo-sample .tab-content {
  padding: 10px;
}
.demo-sample .code-box-copy {
  right: 0;
  top: -10px;
  width: 60px;
  height: 60px;
  /*overflow: hidden;*/
  position: absolute;
}
.demo-sample .code-box-copy .code-box-copy__btn {
  opacity: 1;
  position: absolute;
  z-index: 9;
}
.demo-sample .code-box-copy pre {
  opacity: 0;
  background: transparent;
}
.demo-sample:hover .code-box-copy__btn {
  opacity: 1;
}
.main-title {
  font-size: 22px;
  font-weight: bolder;
  letter-spacing: 1px;
  /*padding-left: 10px;*/
  margin-top: 5px;
  position: relative;
  display: block;
  margin-bottom: 30px;
  color: #333333;
  /*border-bottom: 1px solid @line;*/
}
.main-title:before {
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: -20px;
  content: "";
  /*opacity: .5;*/
  width: 5px;
  height: 30px;
  background: #ffc000;
  /*border:15px solid transparent;
        border-left:10px solid @blue;*/
  /*  padding: 7px 0;
        border-bottom: 1px solid @blue;
        margin-bottom: -1px;*/
}
.main-title small {
  color: #f18e33;
}
.main-title .btn-group {
  float: right !important;
  margin-top: -7px;
}
ul.last-news {
  width: 100%;
  margin: 25px 0;
  /*li*/
}
ul.last-news li {
  display: inline-block;
  width: 33.333%;
  float: left;
}
ul.last-news li a {
  padding: 0px 20px 0px 0;
}
ul.last-news li a h3 {
  color: #3e9dd5;
  font-size: 20px;
  margin: 0;
  margin-bottom: 10px;
}
ul.last-news li a small {
  color: #666;
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
ul.last-news li a p {
  color: #333333;
  font-size: 15px;
  line-height: 1.7em;
}
ul.last-news li a:hover {
  text-decoration: none;
}
ul.last-news li a:hover h3 {
  color: #ffc000;
}
ul.last-news li:nth-child(2) {
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
ul.last-news li:nth-child(2) a {
  padding: 0px 20px;
}
ul.last-news li:last-child a {
  padding: 0px 0 0 20px;
}
.addmyfav {
  position: absolute;
  display: inline-block;
  border: 1px solid #dddddd;
  margin-left: 9px;
  top: -4px;
  width: 30px;
  text-align: center;
  border-radius: 50%;
  line-height: 29px;
  height: 30px;
  background-color: #f5f5f5;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#ffffff));
  background: -webkit-linear-gradient(top, #f5f5f5, #ffffff);
  background: -moz-linear-gradient(top, #f5f5f5, #ffffff);
  background: -ms-linear-gradient(top, #f5f5f5, #ffffff);
  background: -o-linear-gradient(top, #f5f5f5, #ffffff);
}
.addmyfav i {
  color: #afafaf;
  font-size: 17px;
}
.addmyfav i:before {
  content: "\e814";
  font-style: normal;
  font-family: "icomoon";
}
.addmyfav span {
  position: absolute;
  line-height: 19px;
  left: 32px;
  top: 0px;
  display: none;
  width: 115px;
  color: #787878;
  font-size: 0.6em;
  font-weight: normal;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #dddddd;
  text-indent: 3px;
  height: 30px;
}
.addmyfav span:before {
  display: inline-block;
  content: "";
  border: 6px solid transparent;
  border-right: 6px solid #dddddd;
  position: absolute;
  left: -15px;
  top: 6px;
}
.addmyfav span:after {
  display: inline-block;
  content: "";
  border: 6px solid transparent;
  border-right: 6px solid #fff;
  position: absolute;
  left: -14px;
  top: 6px;
}
.addmyfav:hover,
.addmyfav:focus {
  text-decoration: none;
}
.addmyfav:hover span,
.addmyfav:focus span {
  display: inline-block;
}
.addmyfav.active i {
  color: #e9392a;
}
.addmyfav.active i:before {
  content: "\e940";
  font-family: "icomoon";
}
p.p-title {
  font-size: 14px;
  display: inline-block;
  margin: 2px 0 5px 7px;
  width: 100%;
  color: #787878;
}
.table-tit {
  display: block;
  font-size: 20px;
  padding: 0px;
  /*min-height: 47px;*/
  position: relative;
  color: #333333;
  margin: 0 0  12px 0;
  text-align: left;
  line-height: normal !important;
  /*    border: 1px solid @line;
    border-bottom: none;*/
  clear: both;
}
.table-tit > span {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
.table-tit > span:before {
  display: inline-block;
  content: "";
  width: 3px;
  height: 18px;
  background: #3e9dd5;
  /*opacity: .5;*/
  position: absolute;
  left: 0;
  top: 3px;
}
.table-tit > span + span:before {
  display: none;
}
.table-tit > .btn-group {
  margin-left: 10px;
  margin-top: -5px;
  position: absolute;
}
.table-tit > .btn-group .btn {
  font-size: 14px;
  padding: 5px 7px 3px 7px;
}
.table-tit > .btn-group .btn i {
  position: relative;
  top: 1px;
}
.table-tit > .btn-group.pull-right {
  position: relative;
}
.table-tit .inline-block {
  position: absolute;
  margin-top: -5px;
  margin-left: 5px;
}
.table-tit .inline-block .div-tb .td {
  padding: 0 5px;
}
.table-tit .dropdown-menu.download {
  min-width: 80px;
}
.table-tit .dropdown-menu.download li a {
  padding-left: 40px;
  position: relative;
}
.table-tit .dropdown-menu.download li a:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  left: 10px;
  position: absolute;
}
.table-tit .dropdown-menu.download li a.txt:before {
  background: url(../img/form/download_txt.png) no-repeat;
  background-size: cover;
}
.table-tit .dropdown-menu.download li a.pdf:before {
  background: url(../img/form/download_pdf.png) no-repeat;
  background-size: cover;
}
.table-tit .dropdown-menu.download li a.xls:before {
  background: url(../img/form/download_xls.png) no-repeat;
  background-size: cover;
}
.table-tit .dropdown-menu.download li a.csv:before {
  background: url(../img/form/download_csv.png) no-repeat;
  background-size: cover;
}
.table-tit .dropdown-menu.download li a.ods:before {
  background: url(../img/form/download_ods.png) no-repeat;
  background-size: cover;
}
.table-tit .dropdown-menu.download li a.odt:before {
  background: url(../img/form/download_odt.png) no-repeat;
  background-size: cover;
}
.keyword {
  font-size: 18px;
  color: #f18e33;
}
a.table-tit:after {
  display: inline-block;
  font-family: "icomoon";
  content: "\e873";
  float: left;
  color: #3e9dd5;
  margin-right: 5px;
  margin-top: 3px;
}
a.table-tit.collapsed {
  border-bottom: 1px solid #dddddd;
}
a.table-tit.collapsed:after {
  display: inline-block;
  font-family: "icomoon";
  content: "\e874";
}
a.table-tit:hover {
  text-decoration: none;
  color: #3e9dd5;
}
.table-tit-sub-tit {
  font-size: 13px;
  display: block;
  padding-left: 15px;
  border-left: 0px solid #dddddd;
  border-right: 0px solid #dddddd;
  margin-bottom: 0;
  padding-bottom: 8px;
}
.form-outside {
  display: block;
  margin: 8px 0;
  padding: 5px 0;
  min-height: 24px;
  clear: both;
  color: #afafaf;
}
.form-outside .txt-left {
  float: left;
}
.form-outside .txt-right {
  float: right;
}
ul.file-download {
  float: right;
}
ul.file-download li {
  display: inline-block;
  padding: 0 5px;
  float: left;
}
ul.file-download li a {
  display: inline-block;
  width: 24px;
  height: 24px;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.file-download li a:hover {
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: .7;
}
ul.file-download li.pdf a {
  background: url(../img/form/download_pdf.png) no-repeat;
}
ul.file-download li.txt a {
  background: url(../img/form/download_txt.png) no-repeat;
}
ul.file-download li.xls a {
  background: url(../img/form/download_xls.png) no-repeat;
}
ul.file-download li.csv a {
  background: url(../img/form/download_csv.png) no-repeat;
}
ul.file-download li.ods a {
  background: url(../img/form/download_ods.png) no-repeat;
}
ul.file-download li.odt a {
  background: url(../img/form/download_odt.png) no-repeat;
}
.table {
  margin-bottom: 0;
}
.table.tb-single.result {
  border: 1px solid #dddddd;
  margin: 0;
}
.table.tb-single.result td {
  word-break: break-all;
  padding: 10px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  /*width: 33%;*/
}
.table.tb-single.result td .form-group {
  margin-bottom: 0;
}
.table.tb-single.result .hd {
  background-color: #f5f5f5;
  border-right: 1px solid rgba(0, 54, 128, 0.2);
}
.table.tb-single {
  border: 0;
  margin: 20px 0;
}
.table.tb-single td {
  padding: 3px 10px;
  border: 0;
  text-align: left;
  /*border-bottom: 1px solid @line; */
}
.table.tb-single td span.only-txt {
  display: inline-block;
  padding: 10px 0;
}
.table.tb-single td.hd {
  background: transparent;
  border-right: 0;
  text-align: right;
  padding-right: 10px;
  width: 17%;
}
.table.tb-single .form-group {
  margin-top: 0;
}
.table.tb-single .form-group .form-control {
  margin-bottom: 0px;
}
.table.tb-multi {
  min-width: 755px;
  border-top: 3px solid rgba(5, 56, 122, 0.2);
}
.table.tb-multi th {
  white-space: nowrap;
  text-align: center;
  background: rgba(5, 56, 122, 0.07);
  border-right-color: #dddddd;
  border-bottom: 1px solid #dddddd;
  color: #333333;
  /*border-right: 1px @blue-light solid;*/
  /*position: sticky;*/
  /* hr + .sort-icon{
                position: absolute;
                z-index: 3;
                width: 15px;
                height: 15px;
                right: 10px;
                top: 50%;
                margin-top: -10px;
            }*/
}
.table.tb-multi th hr {
  border-top: 1px solid rgba(5, 56, 122, 0.2);
  margin: 3px 0;
}
.table.tb-multi th .sort-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  opacity: .5;
  cursor: pointer;
  background: #f5f5f5;
}
.table.tb-multi th .sort-icon:before {
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  content: "\e938";
  font-family: "icomoon";
  color: #333333;
}
.table.tb-multi.sum {
  border: 1px solid #cccccc;
}
.table.tb-multi.sum td {
  border-top: 1px #cccccc solid;
  border-right: 1px #cccccc solid;
}
.table.tb-multi.sum td.td_money {
  text-align: right;
}
.table.tb-multi.sum tr.sum td {
  border-top: #3e9dd5 1px solid !important;
  font-size: 18px !important;
  font-weight: bold;
  color: #3e9dd5;
  background: #fff !important;
  border-right: none !important;
}
.tb-news {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.tb-news tr {
  cursor: pointer;
}
.tb-news tr td {
  text-align: left;
  vertical-align: top !important;
  padding: 15px !important;
  font-size: 16px;
}
.tb-news tr td.date {
  width: 100px;
}
.tb-news tr td .badge {
  font-weight: normal;
  font-size: 12px;
  margin-left: 5px;
}
.tb-news tr td .badge.new {
  background: #f18e33;
}
.tb-news tr td .badge.top {
  background: #5bb24a;
}
.tb-news tr td + td {
  padding-left: 0 !important;
}
.tb-news tr:hover td {
  background: #3e9dd5 !important;
  color: #fff;
}
.tb-single-rwd {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}
.tb-single-rwd .td {
  display: table-cell;
  vertical-align: top;
  width: 32%;
}
.tb-single-rwd .td .form-group {
  margin-bottom: 0;
}
.tb-single-rwd .td .form-group .help-block {
  text-align: right;
  display: none;
}
.tb-single-rwd .td .form-group.has-error .help-block {
  display: block;
  margin-bottom: -5px;
}
.tb-single-rwd .td.hd {
  white-space: nowrap;
  font-size: 17px;
  color: #555;
  padding-right: 15px;
  padding-top: 10px;
  text-align: right;
  width: 18%;
}
.tb-single-rwd .td.hd.for-en {
  width: 23%;
}
.tb-single-rwd .td.col-3 {
  width: 82%;
}
@media (max-width: 768px) {
  .tb-single-rwd {
    display: block;
    margin-bottom: 0;
  }
  .tb-single-rwd .td {
    display: block;
    margin-bottom: 5px;
    width: 100% !important;
  }
  .tb-single-rwd .td.hd {
    text-align: left;
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.btn-area {
  text-align: center;
  /*background: @light-white;*/
  padding: 15px;
  border-top: 1px solid #dddddd;
  margin-bottom: 20px;
}
.btn-area .btn {
  min-width: 100px;
  margin: 0 10px;
}
.btn-area.simple-style {
  border: 0;
}
.paginator {
  padding: 10px;
  /*margin-bottom: 20px;*/
  background: #fff;
  border: 1px solid #dddddd;
  border-top: 0;
}
.paginator i {
  position: relative;
  font-size: 13px;
  z-index: 1;
  /*top: 1px;*/
}
.paginator .btn {
  padding: 4px 10px 2px 10px;
  background: transparent;
}
.paginator .btn.btn-sm:after {
  display: inline-block;
  opacity: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 8px;
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #dddddd;
  z-index: 0;
  left: 2px;
  top: -3px;
}
.paginator .btn.btn-sm:hover {
  color: #3e9dd5;
}
.paginator .btn.btn-sm:hover:after {
  opacity: 1;
}
.paginator .bootstrap-select {
  margin-left: 10px !important;
  margin-right: 10px;
}
.paginator span.p-info {
  color: #2856a1;
  display: inline-block;
  padding: 0 3px;
  font-size: 16px;
}
/*denie*/
.paginator select option {
    font-size: 16px;
}
.btn-icon {
  color: #3e9dd5 !important;
  background: transparent!important;
}
.btn-icon i {
  font-size: 25px;
}
.btn-icon:hover {
  color: #2856a1 !important;
}
.btn-icon.view {
  color: #3e9dd5;
}
.btn-icon.edit {
  color: #5bb24a !important;
}
.btn-icon.delete {
  color: #afafaf !important;
}
.btn-icon.forbid {
  color: #e9392a !important;
}
.remark {
  margin-top: 20px;
}
.remark h4 {
  margin-bottom: 10px;
  font-size: 16px;
  padding-left: 25px;
  color: #e9392a;
  position: relative;
}
.remark h4:before {
  content: "\e87c";
  display: inline-block;
  font-family: "icomoon";
  position: absolute;
  left: 0;
}
.cf-pick-list.div-tb {
  width: 100%;
}
.cf-pick-list.div-tb .td {
  vertical-align: middle;
  width: 30px;
  padding: 5px;
}
.cf-pick-list.div-tb .td.left,
.cf-pick-list.div-tb .td.right {
  width: 48%;
}
.cf-pick-list.div-tb .td.left ::selection,
.cf-pick-list.div-tb .td.right ::selection,
.cf-pick-list.div-tb .td.left select:focus::-ms-value,
.cf-pick-list.div-tb .td.right select:focus::-ms-value {
  background-color: #e9392a;
  color: #e9392a;
}
.cf-pick-list.div-tb .td.left select:hover,
.cf-pick-list.div-tb .td.right select:hover {
  background: #f5f5f5;
}
.cf-pick-list.div-tb .td.left option,
.cf-pick-list.div-tb .td.right option {
  padding: 3px 10px;
  border-radius: 5px;
}
.cf-pick-list.div-tb .td.left option:hover,
.cf-pick-list.div-tb .td.right option:hover {
  background: #3e9dd5;
  color: #fff;
}
.cf-pick-list.div-tb .td.left option:checked,
.cf-pick-list.div-tb .td.right option:checked {
  background: #3e9dd5;
  color: #fff;
}
.pickListButtons {
  padding: 10px;
  text-align: center;
}
.pickListButtons button {
  margin-bottom: 5px;
}
.pickListSelect {
  height: 200px !important;
}
.modal .table.tb-single td.hd {
  width: 30%;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  text-decoration: none;
}
.login-section .row .col {
  padding: 0;
  /*login*/
}
.login-section .row .col.login {
  border-top: 6px solid #f18e33;
}
.login-section .row .col.login .login-hold {
  border-top: 2px solid #fff;
  min-height: 600px;
  background: url(../img/index/banner-bg.jpg) top no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.login-section .row .col.login .vcard {
  margin: 0 30px;
  margin-top: -100px;
}
.login-section .row .col.login .vcard .col-xs-4 {
  padding: 0 10px;
}
.login-section .row .col.news {
  border-top: 6px solid #5bb24a;
}
/*END login-section*/
.login-tab {
  width: 400px;
  margin-top: 80px;
  background: #fff \9;
  background: -moz-linear-gradient(top, #ffffff 15%, rgba(255, 255, 255, 0.8) 49%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 15%, rgba(255, 255, 255, 0.8) 49%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 15%, rgba(255, 255, 255, 0.8) 49%, #ffffff 100%);
  display: inline-block;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.login-tab > .nav-tabs {
  display: table;
  width: 100%;
  border-bottom: 0;
}
.login-tab > .nav-tabs > li {
  display: table-cell;
  float: none;
}
.login-tab > .nav-tabs > li > a {
  display: block;
  font-size: 20px;
  border-radius: 0;
  padding: 8px 20px 10px 20px;
  background: #2856a1;
  border-top: 5px solid #2856a1;
  color: rgba(255, 255, 255, 0.7);
  color: #aeb6d4\9;
  margin: 0;
}
.login-tab > .nav-tabs > li.active a {
  background: #fff;
  color: #2856a1;
  border-top: 4px solid #2856a1;
  padding-top: 9px;
  border-left: 0;
  border-right: 0;
}
.login-tab > .tab-content {
  padding: 5px 15px 0;
}
.login-tab > .tab-content .btn-radio {
  width: 100%;
}
.login-tab > .tab-content .btn-radio .btn {
  width: calc(50% - 5px);
  width: 50%\9;
  border-radius: 0;
  font-size: 16px;
  margin-bottom: 10px !important;
  height: 45px;
  padding: 0;
  line-height: 42px;
}
.login-tab > .tab-content .btn-radio .btn:nth-child(odd) {
  margin-right: 10px !important;
}
.login-tab > .tab-content .btn-radio .btn + .btn {
  margin: 0;
}
.login-tab > .tab-content .pick-radio {
  display: table;
  width: 100%;
  border-bottom: 0;
}
.login-tab > .tab-content .pick-radio > li {
  display: table-cell;
  float: none;
}
.login-tab > .tab-content .pick-radio > li > a {
  display: block;
  font-size: 16px;
  border-radius: 0;
  padding: 10px;
  background: #fff;
  color: #333333;
  margin: 0;
  border: 1px solid #dddddd;
}
.login-tab > .tab-content .pick-radio > li > a:hover {
  background: #f5f5f5;
}
.login-tab > .tab-content .pick-radio > li.active a {
  border: 1px solid #3e9dd5;
  background: #3e9dd5;
  color: #fff;
  border-left: 0;
  border-right: 0;
}
.login-tab > .tab-content .pick-radio li + li a {
  border-left: 0;
}
.login-tab .login-info {
  text-align: center;
  color: #787878;
  padding: 0 15px 10px;
}
.login-tab .login-info .btn-underline {
  margin-top: 5px;
  margin-right: 15px;
}
/*END login-tab*/
h2.news-block-title {
  background: #2856a1;
  color: #fff;
  text-indent: -10px;
  margin: 0;
  font-size: 25px;
  margin-bottom: -3px;
  z-index: 2;
  position: relative;
  padding: 10px 0 15px;
  text-align: center;
  border-bottom: 1px solid #3e9dd5;
}
h2.news-block-title i {
  color: #3e9dd5;
  font-size: 30px;
  margin-right: 5px;
}
ul.news-block {
  display: block;
  /*display: ~"block !important \9";*/
  border-top: 2px solid #fff;
  position: relative;
}
ul.news-block:before {
  display: inline-block;
  content: "";
  width: 2px;
  height: 600px;
  position: absolute;
  left: -1px;
  top: 0;
  background: #fff;
  z-index: 3;
}
ul.news-block li {
  display: inline-block;
  width: 50%;
  float: left;
  background: #58cbfa;
  position: relative;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.news-block li:before {
  display: inline-block;
  content: "";
  width: 2px;
  height: 300px;
  position: absolute;
  right: -1px;
  top: 0;
  background: #fff;
  z-index: 3;
}
ul.news-block li:after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #fff;
  z-index: 3;
}
ul.news-block li:hover {
  background: #3e9dd5;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.news-block li:hover a {
  text-decoration: none;
}
ul.news-block li a {
  display: block;
  min-height: 300px;
  color: #fff;
  padding: 30px;
}
ul.news-block li a .date {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  color: #2856a1;
}
ul.news-block li a .date.pin:after {
  display: inline-block;
  content: "\e91f";
  font-family: "icomoon";
  margin-left: 5px;
  font-size: 23px;
  position: relative;
  opacity: .8;
  top: 3px;
}
ul.news-block li a p {
  font-size: 20px;
  line-height: 1.8em;
  margin-top: 10px;
}
/*END news-block*/
.index-title {
  color: #3e9dd5;
  display: block;
  text-align: center;
  font-size: 40px;
}
.map-section {
  margin-top: 30px;
  padding: 30px 0;
  background: #f5f5f5;
}
.map-section h4 {
  display: block;
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}
.map-section h4 span.count {
  color: #f18e33;
  font-size: 40px;
  font-weight: bolder;
  margin-left: 10px;
}
/*END map-section*/
ul.map-info {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 0 10px;
}
ul.map-info li {
  font-size: 20px;
}
ul.map-link {
  padding-top: 30px;
}
ul.map-link li {
  margin-bottom: 20px;
  padding: 0 10px;
  z-index: 0;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li a {
  display: block;
  border: 2px solid #3e9dd5;
  background: #fff;
  padding: 8px 15px;
  font-size: 18px;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li a i {
  background: #3e9dd5;
  font-size: 13px;
  font-style: normal;
  color: #fff;
  padding: 3px 10px;
  border-radius: 15px;
  display: inline-block;
  margin-left: 5px;
  float: right;
}
ul.map-link li a:hover {
  text-decoration: none;
  border: 2px solid #2856a1;
  color: #fff;
  background: #2856a1;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li.active {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 3;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li.active a {
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /*border:2px solid @blue-dark;*/
  border: 2px solid transparent;
  color: #fff;
  background: #2856a1;
}
ul.map-link li.map-orange {
  /*a{
                    border-color: @map-orange;
                    color: @map-orange;
                    i{
                        background: @map-orange;
                        .transition;
                    }
                    &:hover{
                        background: @map-orange;
                        color: #fff;
                        i{
                            background: rgba(0,0,0,.2);
                            .transition;
                        }
                    }
                }*/
}
ul.map-link li.map-orange.active a {
  background: #fc9d5b;
  color: #fff;
}
ul.map-link li.map-orange.active a i {
  background: rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li.map-green.active a {
  background: #5eac60;
  color: #fff;
}
ul.map-link li.map-green.active a i {
  background: rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li.map-blue.active a {
  background: #4ab3d0;
  color: #fff;
}
ul.map-link li.map-blue.active a i {
  background: rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.map-link li.map-purple.active a {
  background: #ac86bf;
  color: #fff;
}
ul.map-link li.map-purple.active a i {
  background: rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.link-section {
  padding-bottom: 50px;
  padding-top: 30px;
}
.inpage {
  background: #f8f8f6;
  min-height: 500px;
  padding-bottom: 50px;
}
.inpage .map-link {
  padding-top: 0;
}
.line-right {
  border-right: 1px dotted #dddddd;
}
.btn-download {
  padding-right: 35px;
  width: 100%;
  position: relative;
  word-break: break-all;
  word-wrap: break-word;
  display: inline-block;
  white-space: normal;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 30px;
  clear: both;
}
.btn-download i {
  position: absolute;
  left: 10px;
  top: 10px;
}
.i-pdf {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/index/pdf.png);
  background-size: cover;
  position: absolute;
  margin-left: 5px;
}
.i-word {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/index/pdf.png);
  position: absolute;
  margin-left: 5px;
  background: url(../img/index/word.png);
  background-size: cover;
}
.search-tab {
  background: #fff;
  border: 1px solid #dddddd;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.search-tab ul.nav {
  width: 100%;
}
.search-tab ul.nav li {
  display: inline-block;
  float: left;
  width: 33.333%;
  padding: 0;
  /*border-left: 1px solid @line;*/
  /*border-bottom: 1px solid @line;*/
  /*&:first-child{border-left:0;}*/
}
.search-tab ul.nav li a {
  display: block;
  text-align: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  background: #2856a1;
  border-top: 4px solid transparent;
  padding: 10px 0 15px;
  min-height: 72px;
  height: 72px;
}
.search-tab ul.nav li a i {
  font-size: 32px;
  position: relative;
  opacity: .5;
  top: 3px;
  left: -2px;
}
.search-tab ul.nav li a i.icon-map {
  font-size: 36px;
}
.search-tab ul.nav li a i.icon-map + span {
  position: relative;
  top: -2px;
}
.search-tab ul.nav li.active {
  /*border-bottom: 1px solid @blue;*/
}
.search-tab ul.nav li.active a {
  color: #2856a1;
  border-top: 4px solid #2856a1;
  background: #fff;
}
.search-tab .tab-content {
  padding: 30px;
  /*padding-top: 20px;*/
}
/*///////////////////////////////////*/
.remark {
  margin: 20px 0;
}
.news-content p {
  line-height: 1.8em;
  font-size: 16px;
}
/*ie8*/
.container {
  min-width: 1024px\9 !important ;
  width: 1024px\9 !important ;
}
.login-section > .row {
  display: table\9;
  width: 100%\9;
  /*table-layout: ~"fixed\9";*/
  margin: 0;
}
.login-section > .row .col {
  display: table-cell\9;
  vertical-align: top;
}
.affix .header {
  z-index: 50\9;
}
.header .menu > li > a {
  font-size: 16px\9;
}
.header .menu {
  margin-top: 65px\9;
}
.header .menu.hidden-sm.hidden-xs {
  display: inline-block \9 !important;
  /*margin-left: ~"210px \9";*/
}
.header-left {
  width: 23%\9 !important;
  display: table-cell\9;
}
.header-right {
  width: 77%\9 !important;
  display: table-cell\9;
}
.header .menu > li:after {
  top: 5px\9;
}
.m-menu-toggle {
  display: none\9;
}
.news-block-title.visible-xs.visible-sm {
  display: none\9 !important;
}
.map-hold,
.map-hold-in {
  margin: 0\9 !important;
  display: table\9;
  width: 100%\9;
  table-layout: fixed;
}
.map-hold .col-lg-8.col-md-7,
.map-hold-in .col-lg-8.col-md-7 {
  width: 60%\9 !important;
  display: table-cell\9;
  vertical-align: top;
}
.map-hold .col-lg-4.col-md-5,
.map-hold-in .col-lg-4.col-md-5 {
  width: 40%\9 !important;
  display: table-cell\9;
  vertical-align: top;
}
.affix .header .logo {
  width: 170px\9;
  height: 67px\9;
}
ul.map-info {
  right: 15px\9;
  bottom: 10px\9;
}
#topcontrol {
  /*background: ~"#555\9";*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#88000000,endColorstr=#88000000);
}
.header-nav .info .hidden-sm.hidden-xs {
  display: inline-block\9 !important;
}
.header-nav .info .visible-sm-inline-block.visible-xs-inline-block {
  display: none\9 !important;
}
.tb-multi.table th {
  color: #cde4f0\9;
}
.search-tab ul.nav li a {
  color: #fff\9;
}
.search-tab .tab-pane > .row {
  display: table\9;
  width: 100%\9;
}
.search-tab .tab-pane > .row .col-md-7 {
  width: 60%\9;
  display: table-cell\9;
  vertical-align: top;
}
.search-tab .tab-pane > .row .col-md-5 {
  width: 40%\9;
  display: table-cell\9;
  vertical-align: top;
}
.search-tab ul.nav li a {
  min-height: 45px\9;
  /*VM*/
  /*height: ~"50px\9";*/
}
.tb-single-rwd .btn-group {
  display: block\9;
}
.tb-single-rwd .clearfix.visible-xs.visible-sm.mb20 {
  display: block\9 !important;
}
.tb-single-rwd .clearfix.visible-xs.mb20 {
  display: block\9 !important;
}
ul.news-block li a {
  min-height: 240px\9;
  /*VM*/
  height: 300px\9;
}
.link_owl {
  display: table\9;
  width: 100%\9;
  /*table-layout: fixed;*/
}
.link_owl .item {
  display: table-cell\9;
  padding: 10px\9;
}
.link_owl .item a {
  border: 1px solid #fff;
}
.link_owl .item a img {
  /*width: ~"auto\9 !important";*/
  width: 180px\9 !important;
  min-width: 180px\9 !important;
  height: auto;
}
.link_owl .item a span {
  font-size: 20px\9;
}
.checkbox label {
  white-space: nowrap;
}
.checkbox label:before {
  display: none\9;
}
.checkbox label:after {
  display: none\9;
}
.checkbox input[type="checkbox"] {
  opacity: 1\9;
}
.modal {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#88000000,endColorstr=#88000000);
}
.modal-dialog {
  width: 500px\9;
  margin: 20px auto\9;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videolink_owl {
    position: relative;
    margin: 15px 0;
}

.videolink_owl .owl-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -20px;
    width: 100%;
}

.videolink_owl .owl-nav .owl-prev,
.videolink_owl .owl-nav .owl-next {
    font-size: 2.5rem;
    position: absolute;
    opacity: .6;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.videolink_owl .owl-nav .owl-prev i:before,
.videolink_owl .owl-nav .owl-next i:before {
    color: #787878;
}

.videolink_owl .owl-nav .owl-prev:hover,
.videolink_owl .owl-nav .owl-next:hover {
    opacity: 1;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.videolink_owl .owl-nav .owl-prev {
    left: -10px;
}

.videolink_owl .owl-nav .owl-next {
    right: -10px;
}

.videolink_owl .owl-nav .disabled {
    opacity: 0;
}

.videolink_owl:before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 41px;
    /*        background: url(../img/index/slider-bg.png) no-repeat center bottom;*/
    background-size: auto 100%;
    position: absolute;
    bottom: -41px;
    z-index: 2;
}

.videolink_owl .owl-dots {
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
}

.videolink_owl .owl-dots .owl-dot {
    margin: 0 6px;
    border: 1px solid #fff;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    zoom: 1;
    cursor: pointer;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

.videolink_owl .owl-dots .owl-dot.active {
    background: #5bb24a;
}

.videolink_owl .item {
    padding: 15px;
}

.videolink_owl .item a img {
    width: 100%;
    position: relative;
    z-index: 0;
}

/*@import "responsive.less";*/
