.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
@-webkit-keyframes movepopbottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -200px);
  }
  65% {
    opacity: 0.65;
    -webkit-transform: translate(0, 0px);
  }
  85% {
    opacity: 0.85;
    -webkit-transform: translate(0, -15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes movepopbottom {
  0% {
    opacity: 0;
    -moz-transform: translate(0, -200px);
  }
  65% {
    opacity: 0.65;
    -moz-transform: translate(0, 0px);
  }
  85% {
    opacity: 0.85;
    -moz-transform: translate(0, -15px);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes movepopbottom {
  0% {
    opacity: 0;
    -o-transform: translate(0, -200px);
  }
  65% {
    opacity: 0.65;
    -o-transform: translate(0, 0px);
  }
  85% {
    opacity: 0.85;
    -o-transform: translate(0, -15px);
  }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes movepopbottom {
  0% {
    opacity: 0;
    transform: translate(0, -200px);
  }
  65% {
    opacity: 0.65;
    transform: translate(0, 0px);
  }
  85% {
    opacity: 0.85;
    transform: translate(0, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes movetop {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 120px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes movetop {
  from {
    opacity: 0;
    -moz-transform: translate(0, 300px);
  }
  to {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes movetop {
  from {
    opacity: 0;
    -o-transform: translate(0, 300px);
  }
  to {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes movetop {
  from {
    opacity: 0;
    transform: translate(0, 120px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes righttoleft {
  from {
    opacity: 0;
    -webkit-transform: translate(300px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes righttoleft {
  from {
    opacity: 0;
    -moz-transform: translate(300px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes righttoleft {
  from {
    opacity: 0;
    -o-transform: translate(300px, 0);
  }
  to {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes righttoleft {
  from {
    opacity: 0;
    transform: translate(300px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes mintomax {
  /*小到大缩放动画*/
  from {
    opacity: 0;
    -webkit-transform: scale(0.3, 0.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@-moz-keyframes mintomax {
  from {
    opacity: 0;
    -moz-transform: scale(0.3, 0.3);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1, 1);
  }
}
@-o-keyframes mintomax {
  from {
    opacity: 0;
    -o-transform: scale(0.3, 0.3);
  }
  to {
    opacity: 1;
    -o-transform: scale(1, 1);
  }
}
@keyframes mintomax {
  from {
    opacity: 0;
    transform: scale(0.3, 0.3);
  }
  to {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes jumpout {
  /*跳出小动画*/
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1, 0.1);
  }
  80% {
    opacity: 0.8;
    -webkit-transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@-moz-keyframes jumpout {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1, 0.1);
  }
  80% {
    opacity: 0.8;
    -moz-transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1, 1);
  }
}
@-o-keyframes jumpout {
  0% {
    opacity: 0;
    -o-transform: scale(0.1, 0.1);
  }
  80% {
    opacity: 0.8;
    -o-transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1, 1);
  }
}
@keyframes jumpout {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  80% {
    opacity: 0.8;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.banner {
  position: relative;
  overflow: hidden;
}
.banner .carousel {
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.banner .item {
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.banner .item .banner-bd {
  color: #fff;
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.banner .item .banner-bd h1 {
  font-weight: bold;
}
.banner .item .banner-bd .g-h100 {
  height: 100px;
}
.banner .item .banner-bd .g-h20 {
  height: 20px;
}
.banner .item .banner-bd p {
  font-size: 22px;
}
.banner .item .banner-bd a.more {
  font-size: 14px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  line-height: 36px;
  border: solid 1px #fff;
  background-color: transparent;
  color: #fff;
  padding: 0 35px;
  -webkit-transition: background-color 0.25s, color 0.25s;
  -moz-transition: background-color 0.25s, color 0.25s;
  transition: background-color 0.25s, color 0.25s;
}
.banner .item .banner-bd a.more:hover {
  text-decoration: none;
  background-color: #fff;
  border: solid 1px #fff;
  color: #444;
}
.banner div.active .banner-bd h1 {
  filter: alpha(opacity=100);
  visibility: visible;
  -webkit-animation: movepopbottom 0.4s ease-in forwards;
  -moz-animation: movepopbottom 0.4s ease-in forwards;
  -o-animation: movepopbottom 0.4s ease-in forwards;
  animation: movepopbottom 0.4s ease-in forwards;
}
.banner div.active .banner-bd p {
  filter: alpha(opacity=100);
  visibility: visible;
  -webkit-animation: movetop 0.4s ease-in forwards;
  -moz-animation: movetop 0.4s ease-in forwards;
  -o-animation: movetop 0.4s ease-in forwards;
  animation: movetop 0.4s ease-in forwards;
}
.banner div.active .banner-bd a.more {
  filter: alpha(opacity=100);
  visibility: visible;
  -webkit-animation: movetop 0.4s ease-in 0.2s forwards;
  -moz-animation: movetop 0.4s ease-in 0.2s forwards;
  -o-animation: movetop 0.4s ease-in 0.2s forwards;
  animation: movetop 0.4s ease-in 0.2s forwards;
}
.banner .carousel-indicators {
  /*+margin-left:auto; +margin-right:auto; */
  bottom: 25px;
  z-index: 1;
  /*+text-align:center;*/
}
.banner .carousel-indicators li {
  display: inline-block;
  /**display:inline;*zoom:1;*/
  height: 15px;
  width: 15px;
  margin: 0 5px;
  border-radius: 100%;
  background-color: #9ea1b0;
  border: none;
  cursor: pointer;
}
.banner .carousel-indicators li.active {
  background-color: #fff;
}

.otctr .otctd {
  margin: 30px 0;
  padding: 0 20px;
  overflow: hidden;
}
.otctr .otctd img {
  float: left;
  display: inline-block;
  margin: 0 15px 0;
}
.otctr .otctd h3 {
  font-size: 30px;
  color: #004e98;
  line-height: 30px;
}
.otctr .otctd p {
  font-size: 16px;
}
.otctr li + li .otctd {
  border-left: solid 1px #e2e2e2;
}
.otc-con {
  background: #fff;
}
.otc-con .otc-ser {
  padding: 10px 20px;
  overflow: hidden;
}
.otc-con .otc-ser .otc-tf {
  float: left;
  width: 77%;
}
.otc-con .otc-ser .otc-tf h2 {
  font-size: 16px;
  margin-top: 3px;
  display: inline-block;
  _zoom: 1;
  *display: inline;
  float: left;
}
.otc-con .otc-ser .otc-tf .otc-bq {
  float: left;
  padding-top: 5px;
  width: 84%;
  min-height: 27px;
}
.otc-con .otc-ser .otc-tf .otc-bq .otc-bq-i {
  width: 79%;
  *width: 76%;
  float: left;
}
.otc-con .otc-ser .otc-tf .otc-bq .otc-bq-i span {
  display: inline-block;
  _display: inline;
  *zoom: 1;
  border: solid 1px #eee;
  margin: 0 0 5px 5px;
  padding: 2px 10px;
  cursor: pointer;
}
.otc-con .otc-ser .otc-tf .otc-bq .otc-bq-i span s {
  display: inline-block;
  _display: inline;
  *zoom: 1;
  width: 7px;
  height: 7px;
  background: url(otc/images/close.png) no-repeat top left;
  margin: 0 0 0 5px;
  overflow: hidden;
  cursor: pointer;
}
.otc-con .otc-ser .otc-tf .otc-bq .otc-bq-i span:hover {
  border: solid 1px #004e98;
  color: #004e98;
}
.otc-con .otc-ser .otc-tf .otc-bq .otc-bq-i span:hover s {
  background-position: -7px 0;
}
.otc-con .otc-ser .otc-tf .otc-bq .otc-bq-cz {
  float: right;
  width: 21%;
  margin-top: 3px;
}
.otc-con .otc-ser .otc-tf .otc-bq i {
  display: inline-block;
  _display: inline;
  *zoom: 1;
  border: solid 1px #eee;
  font-style: normal;
  margin: 0 0 5px 5px;
  padding: 3px 10px;
  cursor: pointer;
}
.otc-con .otc-ser .otc-tf .otc-bq i s {
  display: inline-block;
  _display: inline;
  *zoom: 1;
  width: 7px;
  height: 7px;
  background: url(otc/images/close.png) no-repeat top left;
  margin: 0 0 0 5px;
  overflow: hidden;
  cursor: pointer;
}
.otc-con .otc-ser .otc-tf .otc-bq i.datet {
  display: none;
}
.otc-con .otc-ser .otc-tf .otc-bq i:hover {
  border: solid 1px #004e98;
  color: #004e98;
}
.otc-con .otc-ser .otc-tf .otc-bq i:hover s {
  background-position: -7px 0;
}
.otc-con .otc-ser .otc-tf .otc-bq a.cle {
  float: right;
  display: none;
  background: url(otc/images/del.png) no-repeat;
  height: 18px;
  line-height: 18px;
  overflow: hidden;
  padding-left: 14px;
  margin-left: 5px;
}
.otc-con .otc-ser .otc-tf .otc-bq a.cle:hover {
  background-position: 0 -18px;
}
.otc-con .otc-ser .pure-form {
  float: right;
  position: relative;
  top: -1px;
  width: 260px;
}
.otc-con .otc-ser .pure-form input {
  position: absolute;
  border: solid 1px #eee;
  left: 0;
  top: 0;
  width: 190px;
  height: 34px;
  line-height: 34px;
  padding: 0 .5em;
  font-size: 14px;
  border-radius: 3px;
  box-shadow: none;
}
.otc-con .otc-ser .pure-form input:focus {
  border: solid 1px #004e98;
}
.otc-con .otc-ser .pure-form button {
  position: absolute;
  right: 0;
  right: 2px\0;
  top: 0;
  color: #fff;
  font-size: 14px;
  border: none;
  height: 34px;
  background-color: #004e98;
  text-decoration: none;
  border-radius: 0 3px 3px 0;
}
.otc-con .otc-select {
  background: #004e98;
  height: 40px;
  padding: 0 20px 0 0;
}
.otc-con .otc-select ul.topnav {
  float: left;
}
.otc-con .otc-select ul.topnav li.navr {
  float: left;
  width: 100px;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  position: relative;
  font-size: 14px;
}
.otc-con .otc-select ul.topnav li.navr a.sname {
  color: #fff;
}
.otc-con .otc-select ul.topnav li.navr.active {
  background: #004689;
}
.otc-con .otc-select ul.topnav li.navr span {
  height: 35px;
  width: 120px;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  background: url(otc/images/vd.png) no-repeat 90px 12px;
  cursor: pointer;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav {
  position: absolute;
  left: 0;
  top: 40px;
  background: #fff;
  padding: 10px;
  min-width: 120px;
  display: none;
  -moz-box-shadow: 0px 3px 8px rgba(0, 78, 152, 0.2);
  -webkit-box-shadow: 0px 3px 8px rgba(0, 78, 152, 0.2);
  box-shadow: 0px 3px 8px rgba(0, 78, 152, 0.2);
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li {
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  overflow: hidden;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li input {
  width: 12px;
  height: 12px;
  border: none;
  position: relative;
  top: 0;
  background: url(otc/images/cb.gif) no-repeat;
  -webkit-appearance: none;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li input:checked {
  background: url(otc/images/cb_hover.gif) no-repeat;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li input:checked ~ label {
  color: #004e98;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li label {
  font-size: 12px;
  padding-left: 5px;
  cursor: pointer;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li.allcheck {
  border-top: dotted 1px #ececec;
  margin-top: 8px;
  padding-top: 5px;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav li:hover {
  color: #004e98;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav p {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  font-weight: bold;
  border-top: none;
  cursor: default;
  overflow: hidden;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav p input{
  width: 12px;
  height: 12px;
  border: none;
  position: relative;
  top: 0;
  background: url(otc/images/cb.gif) no-repeat;
  -webkit-appearance: none;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav p input:checked{
  background: url(otc/images/cb_hover.gif) no-repeat;
}
.otc-con .otc-select ul.topnav li.navr ul.subnav p label{
  font-size: 12px;
  padding-left: 5px;
  cursor: pointer;
}

.otc-con .otc-select ul.topnav li.navr ul.subnav p.bt-dot {
  border-top: dotted 1px #ececec;
  margin-top: 8px;
  padding-top: 5px;
}
.otc-con .otc-select .date-box {
  float: left;
  margin: 10px 0 0 10px;
  font-size: 14px;
  color: #fff;
}
.otc-con .otc-select .date-box input {
  border: solid 1px #fff;
  border-width: 0 0 1px 0;
  font-size: 12px;
  color: #fff;
  width: 90px;
  margin-left: 5px;
  margin-top: -2px;
  background: #004e98 url(otc/images/date.gif) no-repeat right center;
  cursor: pointer;
}
.otc-con .otc-select .date-box ::-webkit-input-placeholder {
  color: #fff;
}
.otc-con .otc-select .date-box ::-moz-placeholder {
  color: #fff;
}
.otc-con .otc-select .select-page {
  float: right;
}
.otc-con .otc-select .select-page a {
  display: inline-block;
  width: 23px;
  height: 23px;
  color: #888;
  line-height: 23px;
  margin: 10px 0 0 10px;
  text-align: center;
  background: url(otc/images/otc2.png) no-repeat;
  background-position: 0 0;
}
.otc-con .otc-select .select-page a:hover,
.otc-con .otc-select .select-page a.active {
  background-position: -23px 0;
  color: #004e98;
}
.otc-con .otc-box {
  padding: 0 20px;
}
.otc-con .otc-box table {
  border: none;
}
.otc-con .otc-box table thead {
  background: #fff;
}
.otc-con .otc-box table thead th {
  padding: 15px 10px;
  text-align: center;
  border-bottom: solid 1px #eee;
  font-size: 12px;
}
.otc-con .otc-box table tr td {
  text-align: center;
  border-bottom: none;
  color: #666;
  font-size: 12px;
}
.otc-con .otc-box tr:nth-child(odd) td {
  background-color: #f2f2f2;
}

.otc-con .otc-box table tr.pure-table-odd {
  background-color: #fbfbfb;
}
.otc-con .otc-box table tr:hover {
  background-color: #fcfcfc;
}
.otc-con .otc-box .pagin {
  text-align: center;
  padding: 20px 0;
  border-top: solid 1px #eee;
}
.otc-con .otc-box .pagin a {
  background: #fff;
  margin: 0 5px;
  display: inline-block;
  padding: 5px 20px 3px 20px;
  font-size: 12px;
  border: solid 1px #e2e2e2;
  border-radius: 3px;
}
.otc-con .otc-box .pagin a:hover,
.otc-con .otc-box .pagin a:focus {
  background-color: #004e98;
  color: #fff;
  border-color: #004e98;
}
.otc-con .otc-box .pagin a.disable {
  cursor: default;
  background-color: #fff;
  color: #eee;
  border-color: #eee;
}
.otc-con .otc-box .pagin a.active {
  background-color: #004e98;
  color: #fff;
  border-color: #004e98;
}
.otc-con .otc-box .pagin span {
  margin: 0 10px;
  font-size: 14px;
}
/*第四部分 动态，公告，观点，资讯*/
.news {
  background: #fff;
  margin-top: 20px!important;
}
.news .news-col {
  padding: 20px;
}
.news .news-col .newstit {
  padding-bottom: 10px;
  overflow: hidden;
}
.news .news-col .newstit h2 {
  float: left;
  font-size: 16px;
}
.news .news-col .newstit a {
  float: right;
  font-size: 14px;
  color: #888;
}
.news .news-col ul li {
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news .news-col ul li i {
  font-size: 18px;
  color: #004e98;
}
.news .news-col ul li span {
  float: right;
  color: #888;
}
.news .news-col ul li a:hover {
  text-decoration: underline;
}
.fqcon {
  margin-top: 20px!important;
}
.fqcon .fq-col {
  padding: 20px;
  background: #fff;
}
.fqcon .fq-col .fqtit {
  overflow: hidden;
  border-bottom: dotted 1px #ececec;
  padding: 10px 0;
}
.fqcon .fq-col .fqtit h2 {
  float: left;
  font-size: 16px;
}
.fqcon .fq-col .fqtit a {
  float: right;
  font-size: 14px;
  color: #004e98;
}
.fqcon .fq-col ul {
  padding-top: 10px;
}
.fqcon .fq-col ul li {
  font-size: 12px;
  height: 28px;
  line-height: 28px;
  color: #888;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fqcon .fq-col ul li a {
  color: #444;
}
.fqcon .fq-col ul li a:hover {
  color: #004e98;
  text-decoration: underline;
}
.fqcon .mlr10 {
  margin: 0 20px;
}
/*内容页*/
.bgotc {
  background: #f7f7f7;
}
.bgotc .layour-l {
  padding: 20px 30px;
  background: #fff;
  margin-right: 20px;
}
.bgotc .layour-l .otc-bar {
  border-bottom: dotted 1px #ccc;
  padding: 10px 0 20px;
  text-align: center;
}
.bgotc .layour-l .otc-bar h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.bgotc .layour-l .otc-bar span {
  color: #888;
  font-size: 14px;
}
.bgotc .layour-l .otc-con {
  padding: 20px 0;
  font-size: 14px;
  line-height: 28px;
}
.bgotc .layour-l .otc-con .tit {
  display: block;
  height: 28px;
  background: url(otc/images/fin1.jpg) left center no-repeat;
  padding-left: 40px;
  font-size: 18px;
}
.bgotc .layour-l .otc-con .finance-xh {
  padding-top: 20px;
  font-size: 14px;
}
.bgotc .layour-l .otc-con .finance-xh i {
  background: #004e98;
  color: #fff;
  margin-right: 8px;
  border-radius: 3px;
}
.bgotc .layour-l .otc-con .tit2 {
  background: url(otc/images/fin2.jpg) left center no-repeat;
}
.bgotc .layour-l .otc-con .otc-in {
  line-height: 24px;
}
.bgotc .layour-l .otc-con .indent2 {
  text-indent: 2em;
}
.bgotc .layour-l .layour-list li {
  padding: 20px 0;
  border-bottom: dotted 1px #ccc;
  overflow: hidden;
}
.bgotc .layour-l .layour-list li .list-fl {
  width: 10%;
  text-align: right;
  float: left;
  margin-top: -4px;
}
.bgotc .layour-l .layour-list li .list-fl strong {
  font-family: arial;
  font-size: 28px;
  font-weight: normal;
  color: #004e98;
}
.bgotc .layour-l .layour-list li .list-fl span {
  display: block;
  font-size: 16px;
  color: #888;
}
.bgotc .layour-l .layour-list li .list-info {
  margin-left: 134px;
}
.bgotc .layour-l .layour-list li .list-info h2 {
  font-size: 18px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bgotc .layour-l .layour-list li .list-info h2 a:hover {
  color: #004e98;
  text-decoration: underline;
}
.bgotc .layour-l .layour-list li .list-info span {
  display: block;
  color: #888;
  font-size: 12px;
  padding-top: 5px;
}
.bgotc .layour-l .layour-list li .list-info p {
  color: #666;
  padding-top: 8px;
  font-size: 14px;
  line-height: 24px;
}
.bgotc .layour-l .law-list {
  padding: 0 10px;
}
.bgotc .layour-l .law-list li {
  padding: 15px 0;
  font-size: 16px;
  border-bottom: dotted 1px #ccc;
  color: #004e98;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bgotc .layour-l .law-list li i {
  margin-right: 5px;
  font-size: 18px;
}
.bgotc .layour-l .law-list li a {
  color: #444;
}
.bgotc .layour-l .law-list li a:hover {
  color: #004e98;
  text-decoration: underline;
}
.bgotc .layour-l .law-list li span {
  float: right;
  color: #ccc;
  margin-top: 3px;
}
.bgotc .layour-l .proplem-qa {
  padding: 0 10px;
}
.bgotc .layour-l .proplem-qa dl {
  border-bottom: solid 1px #eee;
  padding: 15px 5px;
}
.bgotc .layour-l .proplem-qa dl dt {
  font-size: 16px;
  cursor: pointer;
  background: url(otc/images/sg.jpg) right center no-repeat;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bgotc .layour-l .proplem-qa dl dd {
  display: none;
  font-size: 14px;
  padding-top: 5px;
}
.bgotc .layour-l .proplem-qa dl.active dt {
  background: url(otc/images/sm.jpg) right center no-repeat;
  color: #004e98;
}
.bgotc .layour-l .proplem-qa dl.active dd {
  display: block;
}
.bgotc .layour-r {
  background: #fff;
  margin-bottom: 20px;
}
.bgotc .layour-r ul {
  color: #999;
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
.bgotc .layour-r ul li {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.bgotc .layour-r ul li a {
  color: #444;
}
.bgotc .layour-r ul li a:hover {
  color: #004e98;
  text-decoration: underline;
}

.pure-u-3-4 .layour-l .layour-list li {
    padding: 20px 0;
    font-size: 17px;
    border-bottom: dotted 1px #ccc;
    overflow: hidden;
}
.pure-u-3-4 .layour-l .layour-list li a:hover {
  color: #004e98;
  text-decoration: underline;
}

.pure-u-3-4 .layour-l .layour-list li i {
  font-size: 20px;
    color: #004e98;
}

.page ul li .page-input-index {
    width: 42px;
    border: 1px solid #e2e2e2;
    margin: 0 2px;
    border-radius: 2px;
    padding: 0.45em 0.2em;
    text-align: center;
    font-size: 14px;
}
input.page-input-index::-webkit-outer-spin-button,
input.page-input-index::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input.page-input-index[type="number"]{
    -moz-appearance: textfield;
}
input.page-input-index[type="number"]{
    -ms-appearance: textfield;
}

/*
 *分页组件
 */
.page {
  padding: 40px 0;
  text-align: center;
}
.page ul li a.pure-button {
  margin: 0 2px;
  height: auto;
  border-radius: 3px;
  font-size: 14px;
  color: #444;
  padding: 0.5em 1.2em;
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
}
.page ul li a.pure-button:hover,
.page ul li a.pure-button:focus {
  text-decoration: none;
  filter: alpha(opacity=100);
  background: #004e98;
  color: #fff;
  border: 1px solid #004e98;
}
.page ul li a.prev,
.page ul li a.next {
  text-shadow: none;
}
.page ul li a.pure-button-active,
.page ul li a.pure-button:active {
  background: #004e98;
  border: 1px solid #004e98;
  box-shadow: none;
  color: #fff;
}
.page ul li a.disabled {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #e2e2e2;
  cursor: default;
}
.page ul li a.disabled:hover,
.page ul li a.disabled:focus,
.page ul li a.disabled:active {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #e2e2e2;
  cursor: default;
}
/**后端分页组件样式*/
#pagination{font-size:14px;font-family: Monaco, Menlo, Consolas, "Courier New", "FontAwesome", monospace;}  
#pagination a{text-decoration: none;padding: 2px;color: #444;display: inline-block;padding: 0.4em 1em;margin-right: 5px;margin-bottom: 5px;cursor: pointer;border: 1px solid #e2e2e2;border-radius: 3px;background: #f7f7f7;}
#pagination span{display: inline-block;padding: 0.4em 1em;margin-right: 5px;margin-bottom: 5px;cursor:pointer;}
#pagination span:first-child{cursor: pointer;border: 1px solid #e2e2e2;border-radius: 3px;background: #f7f7f7;color: #444;}
#pagination span.current{background: #004e98;border: 1px solid #004e98;box-shadow: none;color: #fff;border-radius: 3px;}
#pagination span.prev.current {    
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #e2e2e2;
    cursor: default;
}
#pagination span.next.current {    
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #e2e2e2;
    cursor: default;
}
/* LESS Document */
.g-bgf7 {
    background: #f7f7f7;
}
/*小三角*/
/*分享*/
.layour-l {
    background: #fff;
    padding: 10px 30px;
}
.layour-l .money-list li {
    height: 58px;
    line-height: 58px;
    padding: 0 8px;
    border-bottom: dotted 1px #ccc;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.layour-l .money-list li i {
    font-size: 20px;
    color: #004e98;
}
.layour-l .money-list li a:hover {
    color: #004e98;
    text-decoration: underline;
}
.layour-l .lay-title {
    text-align: center;
    padding: 20px 0;
    border-bottom: dotted 1px #ccc;
}
.layour-l .lay-title h2 {
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 5px;
}
.layour-l .lay-title span {
    font-size: 14px;
    color: #888;
}
.layour-l .details-con {
    font-size: 14px;
    line-height: 28px;
    padding: 20px 0;
}
.layour-l .details-share {
    padding: 30px 0;
    font-size: 14px;
}
.layour-l .details-share a.share {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    background: #d6d6d6;
    color: #fff;
}
.layour-l .details-share a.share.share_sina:hover {
    background: #fd6365;
}
.layour-l .details-share a.share.share_qqkongjian:hover {
    background: #f5be3f;
}
.layour-l .details-share a.share.share_weixin:hover {
    background: #8ac51b;
}
.layour-l .details-share a.share.share_qq:hover {
    background: #45b8e2;
}
.layour-l .proplem-qa {
    padding: 0 10px;
}
.layour-l .proplem-qa dl {
    border-bottom: dotted 1px #ccc;
    padding: 15px 5px;
}
.layour-l .proplem-qa dl dt {
    font-size: 16px;
    cursor: pointer;
    background: url(images/sg.jpg) right center no-repeat;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.layour-l .proplem-qa dl dd {
    display: none;
    font-size: 14px;
    padding: 8px 0 3px;
    color: #666;
}
.layour-l .proplem-qa dl.active dt {
    background: url(images/sm.jpg) right center no-repeat;
    color: #004e98;
}
.layour-l .proplem-qa dl.active dd {
    display: block;
}
.layour-l .news-list li {
    border-bottom: dotted 1px #ccc;
    padding: 20px 0 15px;
}
.layour-l .news-list li a:hover {
    color: #004e98;
    text-decoration: underline;
}
.layour-l .news-list li p {
    padding: 5px 0;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.layour-l .news-list li span {
    padding-right: 5px;
    display: block;
    font-size: 14px;
    text-align: right;
    color: #888;
}
.layour-l .notice {
    margin-top: 30px;
    margin-bottom: 35px;
}
.layour-l .notice li {
    margin-bottom: 20px;
    overflow: hidden;
}
.layour-l .notice li div.g-cf div.g-fl {
    float: left;
}
.layour-l .notice li div.g-cf div.g-fl span {
    width: 60px;
    display: block;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}
.layour-l .notice li div.g-cf div.g-fl span.mon {
    height: 22px;
    line-height: 22px;
    background-color: #004e98;
    font-size: 11px;
    font-family: arial;
}
.layour-l .notice li div.g-cf div.g-fl span.date {
    height: 38px;
    line-height: 38px;
    background-color: #f7f7f7;
    color: #444;
    font-size: 24px;
    font-family: arial;
    font-weight: bold;
    transition: color .3s;
    -ms-transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
}
.layour-l .notice li div.g-cf div.g-fr {
    float: none;
    margin-left: 80px;
    line-height: 24px;
    padding-top: 5px;
}
.layour-l .notice li div.g-cf div.g-fr h2 {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.layour-l .notice li div.g-cf div.g-fr h2 a {
    font-size: 16px;
    color: #444;
    font-weight: normal;
}
.layour-l .notice li div.g-cf div.g-fr h2 a:hover {
    color: #004e98;
    text-decoration: underline;
}
.layour-l .notice li div.g-cf div.g-fr p a {
    color: #888;
}
.layour-l .notice li div.g-cf div.g-fr p a:hover {
    color: #444;
}
.layour-l .notice li div.g-cf a {
    transition: color .3s;
    -ms-transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
}
.layour-l .details-related {
    position: relative;
}
.layour-l .details-related .related-tit {
    display: block;
    font-size: 18px;
    font-weight: normal;
    border-bottom: solid 1px #eee;
    padding-bottom: 5px;
}
.layour-l .details-related a:hover {
    color: #004e98;
    text-decoration: underline;
}
.layour-l .details-related li {
    padding: 15px 0;
    line-height: 24px;
}
.layour-l .details-related li h3 {
    font-size: 18px;
    font-weight: normal;
    padding-bottom: 10px;
}
.layour-l .details-related li p {
    font-size: 14px;
    color: #666;
}
.layour-l .details-related li .related-fen {
    position: relative;
    text-align: right;
    padding-right: 2%;
    font-size: 14px;
}
.layour-l .details-related li .related-fen .share-box {
    text-align: left;
    position: absolute;
    top: 30px;
    right: -5%;
    z-index: 10;
    background: #fff;
    padding: 5px 10px;
    border: solid 1px #e2e2e2;
    display: none;
}
.layour-l .details-related li .related-fen .share-box .x,
.layour-l .details-related li .related-fen .share-box .y {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 10px;
    border-style: solid dashed dashed dashed;
}
.layour-l .details-related li .related-fen .share-box .x {
    border-style: solid;
    top: -20px;
    left: 20px;
    border-color: transparent transparent #C9E9C0 transparent;
}
.layour-l .details-related li .related-fen .share-box .y {
    border-style: solid;
    top: -19px;
    left: 20px;
    border-color: transparent transparent #fff transparent;
}
.layour-l .details-related li .related-fen .share-box .x,
.layour-l .details-related li .related-fen .share-box .y {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 10px;
    border-style: solid dashed dashed dashed;
}
.layour-l .details-related li .related-fen .share-box .x {
    border-style: solid;
    top: -20px;
    left: 20px;
    border-color: transparent transparent #C9E9C0 transparent;
}
.layour-l .details-related li .related-fen .share-box .y {
    border-style: solid;
    top: -19px;
    left: 20px;
    border-color: transparent transparent #fff transparent;
}
.layour-l .details-related li .related-fen .share-box em {
    font-size: 12px;
    display: block;
    width: 80px;
    margin: 5px 0;
    font-style: normal;
}
.layour-l .details-related li .related-fen .share-box em a i {
    display: inline-block;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
}
.layour-l .details-related li .related-fen .share-box em a:hover {
    text-decoration: none;
}
.layour-l .details-related li .related-fen .share-box em a.share_sina i {
    background: #fd6365;
}
.layour-l .details-related li .related-fen .share-box em a.share_qqkongjian i {
    background: #f5be3f;
}
.layour-l .details-related li .related-fen .share-box em a.share_weixin i {
    background: #8ac51b;
}
.layour-l .details-related li .related-fen .share-box em a.share_qq i {
    background: #45b8e2;
}
.layour-l .details-related li .related-fen .share-box em {
    font-size: 12px;
    display: block;
    width: 80px;
    margin: 5px 0;
    font-style: normal;
}
.layour-l .details-related li .related-fen .share-box em a i {
    display: inline-block;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
}
.layour-l .details-related li .related-fen .share-box em a:hover {
    text-decoration: none;
}
.layour-l .details-related li .related-fen .share-box em a.share_sina i {
    background: #fd6365;
}
.layour-l .details-related li .related-fen .share-box em a.share_qqkongjian i {
    background: #f5be3f;
}
.layour-l .details-related li .related-fen .share-box em a.share_weixin i {
    background: #8ac51b;
}
.layour-l .details-related li .related-fen .share-box em a.share_qq i {
    background: #45b8e2;
}
.layour-l .details-related li + li {
    border-top: dotted 1px #eee;
}
.layour-l .details-related .more-other {
    font-size: 14px;
    background: #f7f7f7;
    text-align: center;
    height: 36px;
    line-height: 36px;
}
/*右侧菜单*/
.layour-r {
    background: #fff;
    padding: 10px 20px;
    margin-left: 15px;
}
.layour-r .moeny-menu li {
    height: 58px;
    line-height: 58px;
    padding: 0 5px;
    border-bottom: solid 1px #eee;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.layour-r .moeny-menu li a {
    display: block;
}
.layour-r .moeny-menu li a i {
    float: right;
    color: #004e98;
}
.layour-r .moeny-menu li a.active,
.layour-r .moeny-menu li a:hover {
    color: #004e98;
}
.layour-r .menuk li h3 {
    border-top: 1px solid #e2e2e2;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    font-weight: normal;
}
.layour-r .menuk li h3 a {
    display: block;
}
.layour-r .menuk li h3 a:hover,
.layour-r .menuk li h3 a.hover {
    color: #004e98;
}
.layour-r .menuk li h3 a:hover i,
.layour-r .menuk li h3 a.hover i {
    color: #004e98;
}
.layour-r .menuk li h3 i {
    float: right;
    color: #d1d1d1;
}
.layour-r .menuk li ul {
    display: none;
    padding: 0 0 15px 0;
}
.layour-r .menuk li ul li {
    color: #ccc;
    padding-left: 15px;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
}
.layour-r .menuk li ul li.height {
    height: auto;
    line-height: 18px;
}
.layour-r .menuk li ul li a {
    color: #444;
}
.layour-r .menuk li ul li a:hover,
.layour-r .menuk li ul li a.hover {
    color: #004e98;
}
.layour-r .menuk li ul li a:hover {
    text-decoration: underline;
}
.layour-r .menuk li:first-child h3 {
    border-top: none;
}
.layour-r .menu-week {
    height: 30px;
    border-bottom: solid 1px #eee;
    padding: 10px 0;
}
.layour-r .menu-week h2 {
    float: left;
    font-size: 18px;
}
.layour-r .menu-week ul {
    float: right;
    width: 100px;
}
.layour-r .menu-week ul li {
    float: left;
    width: 50px;
    text-align: center;
    font-size: 16px;
    background: url(images/le.gif) no-repeat right center;
    color: #888;
    cursor: pointer;
}
.layour-r .menu-week ul li.hover {
    color: #004e98;
}
.layour-r .content-week {
    clear: both;
    padding: 10px 0 0 0;
}
.layour-r .content-week li {
    font-size: 16px;
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.layour-r .content-week li b {
    display: inline-block;
    padding: 2px 7px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: lighter;
    background: #ccc;
    color: #fff;
}
.layour-r .content-week li b.hotbg {
    background-color: #004e98;
}
.layour-r .content-week li + li {
    border-top: dotted 1px #e2e2e2;
}
.advert-r {
    width: 380px;
    border: solid 1px #eee;
    border-top: solid 2px #004e98;
    margin: 20px 0 0 15px;
}
.advert-r a {
    display: block;
    width: 380px;
    position: relative;
}
.advert-r a span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    line-height: 20px;
    width: 41px;
    height: 20px;
    color: #fff;
    background: url(images/addr.png) no-repeat;
}
.advert-r a img {
    width: 100%;
}
/*分页组件*/
.page {
    padding: 40px 0;
    text-align: center;
}
.page ul li a.pure-button {
    margin: 0 2px;
    height: auto;
    border-radius: 3px;
    font-size: 14px;
    color: #444;
    padding: 0.5em 1.2em;
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
}
.page ul li a.pure-button:hover,
.page ul li a.pure-button:focus {
    text-decoration: none;
    filter: alpha(opacity=100);
    background: #004e98;
    color: #fff;
    border: 1px solid #004e98;
}
.page ul li a.prev,
.page ul li a.next {
    text-shadow: none;
}
.page ul li a.pure-button-active,
.page ul li a.pure-button:active {
    background: #004e98;
    border: 1px solid #004e98;
    box-shadow: none;
    color: #fff;
}
.page ul li a.disabled {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #e2e2e2;
    cursor: default;
}
.page ul li a.disabled:hover,
.page ul li a.disabled:focus,
.page ul li a.disabled:active {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #e2e2e2;
    cursor: default;
}
/*机构金融 立即申请服务*/
.apply-container {
    font-size: 16px;
    line-height: 2.0;
    border-top: 1px solid #e2e2e2;
    padding-top: 12px;
}
.apply-wrapper {
    margin: 0 auto;
    width: 60%;
    border: 1px solid #d0d0d0;
    text-align: center;
    border-radius: 7px;
    color: #004e98;
}
.apply-wrapper:hover {
    background-color: #f7f7f7;
}
.apply-wrapper a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
/*申请弹出框*/
.formtab {
    padding: 15px 0;
}
.formtab .item {
    position: relative;
    margin-bottom: 15px;
    line-height: 28px;
    overflow: hidden;
}
.formtab .item span {
    display: block;
    float: left;
}
.formtab .item span.left {
    width: 100px;
    margin-right: 20px;
    font-size: 14px;
    text-align: right;
}
.formtab .item span.left i {
    font-style: normal;
    color: #e30000;
    font-weight: bold;
    margin-right: 5px;
}
.formtab .item span.inputxt input {
    height: 24px;
    line-height: 24px;
    width: 340px;
    border: 1px solid #dedede;
    border-radius: 3px;
    padding: 5px;
    font-size: 14px;
    color: #444;
}
.formtab .item span.inputxt input:focus {
    order-color: #004e98;
}
.formtab .item span.select {
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    height: 35px;
    line-height: 35px;
    background-color: #fff;
    position: relative;
    padding-left: 13px;
}
.formtab .item span.select i {
    position: absolute;
    top: 0;
    right: 6px;
    z-index: 18;
    background-color: #fff;
}
.formtab .bdt {
    margin-bottom: 15px;
}
.formtab select {
    border: none;
    width: 98px;
}
.formtab textarea {
    line-height: 24px;
    width: 340px;
    border: 1px solid #dedede;
    border-radius: 3px;
    padding: 5px;
    font-size: 14px;
    color: #444;
    height: auto;
}
.formfoot {
    text-align: center;
}
.formfoot input {
    width: 154px;
    height: 30px;
    background-color: #0080cc;
    font-size: 15px;
    color: #fff;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}
.formfoot input:active {
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.leftWordNum {
    position: absolute;
    top: 34px;
    left: 32px;
}
