﻿/*====== Table ========*/

.table {

  border-collapse: collapse;

  border-spacing: 0;

  width: 100%; }

  .table th {

    color: #8c8c8c;

    text-align: left;

    border-top: none !important; }

  .table td, .table th {

    padding: 16px;

    vertical-align: middle;

    border-top: 1px solid #ddd; 

    color: #5D5A5A;

    font-size: 14px; }



.table-bordered {

  border: 1px solid #ddd;

  border-collapse: separate;

  border-left: 0; }

  .table-bordered td, .table-bordered th {

    border-left: 1px solid #E9E9E9; }



.table-hover tbody tr:hover > td, .table-hover tbody .table tr:hover > th, .table .table-hover tbody tr:hover > th, .table-hover tbody .table-bordered tr:hover > th, .table-bordered .table-hover tbody tr:hover > th {

  background-color: #f5f5f5; }



.table-zebra tbody > tr:nth-child(even) > td, .table-zebra .table tbody > tr:nth-child(even) > th, .table .table-zebra tbody > tr:nth-child(even) > th, .table-zebra .table-bordered tbody > tr:nth-child(even) > th, .table-bordered .table-zebra tbody > tr:nth-child(even) > th {

  background-color: #EFEFEF;; }

.table.table-zebra td, .table.table-zebra th{

  border:none;

}


.table-view {

  position: relative; }

  .table-view .table-view-cell {

    width: 100%;

    position: relative;

    padding: 15px 0;

    overflow: hidden;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08); }

    .table-view .table-view-cell.hover:hover {

      background: #FAFAFA; }

      .table-view .table-view-cell:hover .table-view-operation {

        opacity: 1; }

    .table-view .table-view-cell .table-view-operation {

      position: absolute;

      top: 20px;

      right: 20px;

      font-size: 12px;

      opacity: 0;

      color: #999;

      -moz-transition: opacity 0.5s linear;

      -o-transition: opacity 0.5s linear;

      -webkit-transition: opacity 0.5s linear;

      transition: opacity 0.5s linear; }

      .table-view .table-view-cell .table-view-operation i {

        display: block; }

    .table-view .table-view-cell .media-object {

      margin-right: 10px;

      position: relative;

      overflow: hidden;

      text-align: center; }

      .table-view .table-view-cell .media-object img {

        max-width: 100%; }

    .table-view .table-view-cell .media-body .media-body-tit{

      color:#666;  }

    .table-view .table-view-cell .media-body .media-body-tit a {

      color: #000;

      font-size: 16px;

      margin-right: 5px; }

     .table-view .table-view-cell .media-body .media-body-tit span  {

        margin-top: 2px;

        display: inline-block;}

    .table-view .table-view-cell .media-body .media-body-sum {

      display: block;

      font-size: 12px;

      max-height: 38px;

      line-height: 18px;

      margin-top: 5px;

      color:#999;

      overflow: hidden; }

      .table-view .table-view-cell .media-body .media-body-sum a {

        color: #333; }

    .table-view .table-view-cell .media-body .media-footer {

      margin: 10px 0; }

      .table-view .table-view-cell .media-body .media-footer a {

        display: inline-block;

        position: relative; }

      .table-view .table-view-cell .media-body .media-footer img {

        width: 25px;

        height: 25px;

        border-radius: 50%;

        vertical-align: middle; }

      .table-view .table-view-cell .media-body .media-footer span {

        color: #999;

        font-size: 12px;

        vertical-align: middle; }

        .table-view .table-view-cell .media-body .media-footer span i {

          font-weight: 700;

          color: #666;

          display: inline-block;

          margin-left: 3px; }

      .table-view .table-view-cell .media-body .media-footer .media-name {

        color: #000;

        font-weight: 700;

        margin: 0 5px; }

      .table-view .table-view-cell .media-body .media-footer .media-span {

        margin: 0 10px;

        color: #E4E4E4; }

		/*====== Button ========*/
button[type="button"] {
  border: none;
}
.btn,
.label {
  display: inline-block;
  text-align: center;
  min-width: 48px;
  padding: 6px 20px;
  line-height: 20px;
  background: #E4E4E4;
  color: #666;
  border-radius: 2px;
  font-size: 1.4rem;
  white-space: nowrap;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  box-sizing: content-box;
}
.btn:hover {
  background-color: #CFCFCF;
}
.btn.btn-mini,
.label.label-mini {
  min-width: auto;
  padding: 3px 10px;
}
.btn.btn-large,
.label.label-large {
  min-width: auto;
  padding: 10px 48px;
  font-size: 1.6rem;
}
.btn.btn-disabled,
.btn.btn-disabled:hover {
  background: rgba(255, 255, 255, .26);
  opacity: .5;
}
.label-gray,
.label-gray:hover {
  background: #E4E4E4;
}
.btn-primary,
.label-primary {
  background: #329BFF;
  color: #fff;
}
.btn-primary:hover {
  background: #1078DB;
}
.btn-primary-border {
  padding: 5px 20px;
  background: none;
  border: 1px solid #329BFF;
  color: #329BFF;
}
.btn-primary-border:hover {
  background: rgba(50,155,255, .16);
}
.btn-success,
.label-success {
  background: rgba(48, 200, 200, 1);
  color: #fff;
}
.btn-success:hover {
  background: rgba(28, 180, 180, 1);
}
.btn-success-border {
  padding: 5px 20px;
  background: none;
  border: 1px solid rgba(48, 200, 200, 1);
  color: rgba(48, 200, 200, 1);
}
.btn-success-border:hover {
  background: rgba(48, 200, 200, .16);
}
.btn-large.btn-primary-border,
.btn-large.btn-success-border,
.btn-large.btn-warning-border,
.btn-large.btn-danger-border,
.btn-large.btn-violet-border,
.btn-large.btn-grey-border {
  padding: 9px 46px;
}
.btn-warning,
.label-warning {
  background: rgba(243, 210, 97, 1);
  color: #fff;
}
.btn-warning:hover {
  background: rgba(237, 201, 21, 1);
}
.btn-warning-border {
  padding: 5px 20px;
  background: none;
  border: 1px solid rgba(243, 210, 97, 1);
  color: rgba(243, 210, 97, 1);
}
.btn-warning-border:hover {
  background: rgba(243, 210, 97, .16);
}
.btn-danger,
.label-danger {
  background: #FB474F;
  color: #fff;
}
.btn-danger:hover {
  background:#E03037;
}
.btn-danger-border {
  padding: 5px 20px;
  background: none;
  border: 1px solid #FB474F;
  color: #FB474F;
}
.btn-danger-border:hover {
  background:#E03037;
}
.btn-violet,
.label-violet {
  background: rgba(128, 137, 193, 1);
  color: #fff;
}
.btn-violet:hover {
  background: rgba(113, 121, 175, 1);
}
.btn-violet-border {
  padding: 5px 20px;
  background: none;
  border: 1px solid rgba(128, 137, 193, 1);
  color: rgba(128, 137, 193, 1);
}
.btn-violet-border:hover {
  background: rgba(128, 137, 193, .16);
}
.btn-grey,
.label-grey {
  background: rgba(102, 102, 102, 1);
  color: #fff;
}
.btn-grey:hover {
  background: rgba(90, 90, 90, 1);
}
.btn-grey-border {
  padding: 5px 20px;
  background: none;
  border: 1px solid rgba(102, 102, 102, 1);
  color: rgba(102, 102, 102, 1);
}
.btn-grey-border:hover {
  background: rgba(102, 102, 102, .16);
}
.btn-white {
  background: rgba(255, 255, 255, 1);
  color: #666;
}
.btn-white:hover {
  background: rgba(255, 255, 255, .8);
}
.btn.btn-block {
  padding: 10px;
  display: block;
  text-align: center;
  font-size: 1.6rem;
}
/* 鏂瑰舰鎸夐挳 begin*/
.btn.btn-square {
  min-width: auto;
  width: 32px;
  height: 32px;
  padding: 0;
  line-height: 32px;
}
.btn.btn-square.btn-mini {
  width: 25px;
  height: 25px;
  line-height: 25px;
}
.btn.btn-square .icon {
  margin-right: 0;
}
/* 鏂瑰舰鎸夐挳 end*/
/* 鍚獻CON鐨勬寜閽�begin*/
.btn .icon {
  display: inline-block;
  margin-right: 5px;
}
.btn .icon,
.btn span {
  vertical-align: middle;
  line-height: 0;
}
.icon.font-16 {
  font-size: 16px;
}
.icon.font-24 {
  font-size: 24px;
}
/* 鍚獻CON鐨勬寜閽�end*/
/* 鍦嗚 begin*/
.btn-radius,
.btn-radius-4 {
  border-radius: 4px;
}
.btn-raduis-16,
.btn-radius-16 {
  border-radius: 16px;
}
.btn-raduis-20 {
  border-radius: 20px;
}
.btn-radius-50 {
  border-radius: 50%;
}
/* 鍦嗚 end*/
.btn-groud {
  margin-top: 10px;
}
.btn-groud .btn {
  margin: 5px;
}
.btnSmall {
  padding: 2px 8px;
  vertical-align: middle;
}
.btn-withicon {
  border-radius: 4px;
}
.btn-withicon .icon {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 4px;
}
.btn-withicon span {
  vertical-align: middle;
}
.btn-withicon-large {
  font-size: 16px;
  border-radius: 4px;
  padding: 0 25px;
  height: 48px;
  line-height: 48px;
}
.btn-withicon-large .icon {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 6px;
}

@charset "UTF-8";
.main {
    width: 1080px;
    margin: 20px auto 0;
    padding: 0 0 100px;
}
.module-tit {
    font-size: 16px;
    color: #333;
    padding: 16px 0;
}
.module-tit.module-tit-border {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.module-tit .search-box {
    right: 0;
}
.module-tit .tab {
    display: inline-block;
    width: 116px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #fff;
    color: #999;
    border-radius: 4px;
}
.module-tit .tab:nth-child(1) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}
.module-tit .tab:nth-child(2) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}
.module-tit .tab.active {
    background: #E0E0E0;
    color: #333;
}
.module-tit .tab span {
    font-size: 16px;
}
.table {
    background: #FFF;
}
.table th {
    background: #FCFCFC;
    color: #333;
    text-align: center;
    box-shadow: 0px 1px 0px 0px #E8E8E8;
    font-weight: normal;
}
.table tr:hover{
    background: rgba(0, 0, 0, 0.02)
}
.table td {
    border-top: none;
    border-bottom: 1px solid #ECEBEB;
    text-align: center;
}
.table td
.table-view .table-view-cell {
    border: none;    /* padding: 0; */
    text-align: left;
}
/* =========== 推荐项目、投资人 =========== */
.finance-info{
    padding: 8px 0;
    text-align: center;
    background: rgba(49,155,255,0.16);
}
.finance-info > div{
    position: relative;
}
.finance-info .close-tip{
    position: absolute;
    top: 5px;
    right: 0;
}
.finance-top {
    position: relative;
    height: 340px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    bottom: -2px;
}
.bx-wrapper {
    margin: 0;
}
.recommend-box {
    position: relative;   
    margin: 0 -12px 0;
}
.recommend-box.recommend-agency {
    margin-top: 20px;   
}
.recommend-box .recommend-content {
    width: 100%!important;
}
.recommend-box .recommend-content .recommend-list {
    float: left;
    width: 33.33%;
    cursor: pointer;
}
.recommend-box .recommend-content .recommend-list-c {
 
    margin: 0 12px 24px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    border-radius: 4px;
}

.recommend-box .table-view {
    padding: 24px;
}
.recommend-box .table-view .table-view-cell .media-object {
    margin-right: 24px;
}
.recommend-box .table-view .table-view-cell .media-object img {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 4px;
}
.recommend-box .table-view .table-view-cell {
    padding: 0;
    border: none;
}
.recommend-box .table-view .table-view-cell .media-body .media-body-tit {
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.recommend-box .table-view .table-view-cell .media-body .media-body-tit a {
    font-size: 18px;
}
.recommend-box .table-view .table-view-cell .media-body .media-body-sum {
    margin-top: 2px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.recommend-box .table-view .table-view-cell .media-body .media-body-bottom {
    margin-top: 5px;
    color: #999;
}
.recommend-bottom {
    padding: 24px;
    border-top: 1px solid #ECEBEB;
}
.recommend-bottom  .recommend-bottom-ul {
    font-size: 0;
}
.recommend-bottom  .recommend-bottom-ul > li {
    display: inline-block;
    width: 33.33%;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}
.recommend-bottom  .recommend-bottom-ul > li .name {
    display: block;
    
    color: #999;
}
.recommend-bottom  .recommend-bottom-ul > li .num{
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.recommend-box .recommend-content .recommend-list-c .agency-sum {
    height: 44px;
    margin: 0 24px 24px 24px;
    color: #666;
    overflow: hidden;
}
.container .searchTypeList {
    float: left;
    padding: 8px 0 0px 0;
    width: 100%;
    min-height: 176px;
    height: auto;
}
.searchTypeList .list {
    position: relative;
    padding-top: 16px;
    float: left;
    height: auto;
    width: 100%;
	text-align:left;
}
.searchTypeList .list .p {
    float: left;
    width: 120px;
    
    font-size: 0;
}
.btn-link,
.btn-link:hover {
    color: #bdbdbd;
    background: none;
}
.searchTypeList .list .p a {
    background: none;
    vertical-align: middle;
    color: #333;
}
.searchTypeList .list .p:last-child a {
    margin-left: 5px;
    margin-bottom: 10px;
}
.searchTypeList .list p:last-child {
    width: calc(100% - 140px);
}
.searchTypeList .list p.search-list-show {
    position: absolute;
    height: 35px !important;
    margin-left: 120px;
    overflow: hidden;
}
.searchTypeList .list .p .btn-span{
    display: inline-block;
    padding: 6px 20px 0 0;
    font-size: 14px;
}
.searchTypeList .list .p .btn{
    min-width: inherit;
}
.searchTypeList .list .p a.active-span {
    background: #329BFF;
    color: #fff;
}
.searchTypeList .list .p a.active-span:hover {
    background-color: #1078DB;
}
.listContainer,
.investor-list {
    min-height: 500px;
    margin-top: 24px;
}
.investor-list .recommend-box .table-view .table-view-cell .media-object img{
    border-radius: 50%;
}
.listContainer .table-view .table-view-cell .media-body .media-body-sum{
    max-height: 20px;
}
.listContainer tbody tr{
    cursor: pointer;
}
.list-item-bottom p {
    margin-bottom: 10px;
}
.list-item-bottom p:last-child {
    margin: 0;
}
.list-item-bottom p span {
    color: #666666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.list-item-bottom span:first-child {
    width: 30%;
    color: #666;
}
.list-item-bottom span:last-child {
    width: 70%;
    text-align: right;
    color: #333;
}
.list-item-bottom span {
    display: inline-block;
}
.finance-expend {
    position: absolute;
    right: 0px;
    top: 21px;
    cursor: pointer;
    color: #666;
}
.finance-expend p:hover {
    color: #333;
}
/* 债券首页 */
.bx-wrapper .bx-controls-direction a{
    z-index: 9;
}
.investment-top {
    position: relative;
    height: 340px;
    margin: 0 auto 24px ;
    overflow: hidden;
}
.investment-top  .investment-img{
    height: 340px;
    background-repeat: no-repeat;
    background-position:center center;
    background-size: cover;
}
.investment-top  .investment-img > a{
    display: block;
    height: 100%;
}
.investment-top .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto{
    bottom: 5px;
}
.investment-module-box{
    margin: 0 -12px 0;
    padding-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.investment-module-box .investment-module{
    float: left;
    width: 33.33%;
}
.investment-module-box .investment-module .investment-module-c{
    margin: 0 12px 0;
    padding: 24px;
    border-radius: 4px;
    color: #fff;
} 
.investment-module-box .investment-module .investment-module-c a{
    display: block;
    color: #fff;
}
.investment-module-box .investment-module:nth-child(1) .investment-module-c{
    background: #50B9FF;
}
.investment-module-box .investment-module:nth-child(2) .investment-module-c{
    background: #329BFF;
}
.investment-module-box .investment-module:nth-child(3) .investment-module-c{
    background: #147DE1;
   
}
.investment-module-box .investment-left{
    float: left;
    margin-right: 24px;
    font-size: 40px;
}
.investment-module-box .investment-right h2{
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 22px;
}
.investment-hot{
    margin-top: 72px;
}
.investment-hot h3{
    position: relative;
    margin-bottom: 56px;
    text-align: center;
    font-weight: normal;
    font-size: 24px;
    color: #333;
}
.investment-hot h3 .more{
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 14px;
    font-weight: normal;
}
.investment-hot .img-view{
    background-repeat: no-repeat;
    background-size: cover;
    
    height: 194px;
}
.investment-sum{
   margin: 24px;
}
.investment-sum h4{
    font-size: 18px;
    font-weight: normal;
}
.investment-sum p{
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.investment-hot .recommend-box .recommend-content:nth-child(3n) .recommend-list-c{
    /* margin-right: 24px; */
}
.agency-view {
    font-size: 0;
    margin: 0 -12px 72px;
}
.agency-view li{
    width: 20%;
    display:inline-block;
}
.agency-view li .agency-view-c{
    margin:0 12px;
    /* text-align: center; */
}
.agency-view li:last-child .agency-view-c{
    margin-right: 0;
}
.agency-view li img{
    width: 197px;
    height: 197px;
    /* max-width: 100%; */
}


html {

    font-size: 62.5%;

    height: 100%;

}

body {

    margin: 0;

    padding: 0;

    height: 100%;

    color: #333333;

    background-color: #FFF;


   

    line-height: 1.6;

}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {

    display: block;

}

blockquote, q {

    quotes: none;

}

blockquote:before, blockquote:after, q:before, q:after {

    content: '';

    content: none;

}

ins {

    text-decoration: none;

}

mark {

    color: #F66;

    font-weight: bold;

}

pre{

   white-space: pre-line; 

   font-family: "Ping Fang SC", "STHeiTi", "arial",  "SimSun", "Georgia", "Times", "Times New Roman", "serif"; 

}

ul {

    list-style: none;

}

del {

    text-decoration: line-through;

}

a {

    background: transparent;

    text-decoration: none;

    color: #333333;

    -webkit-tap-highlight-color: rgba(0,0,0,0);

}

textarea, input, select {

	font-family: SimSun,Arial,"Helvetica Neue",Helvetica;

    -webkit-tap-highlight-color: rgba(0,0,0,0);

    outline: 0 none;

}

textarea {

	overflow: auto;

	resize: none;

}

input:-webkit-autofill {

    -webkit-box-shadow: 0 0 0px 1000px white inset;

}

::-ms-clear { display: none; }

::-ms-reveal { display: none; }

i {

    font-style: normal;

}

b{

    font-weight: normal;

}

[hidefocus], summary {

    outline: 0;

}

img {

	border: none;

    vertical-align: middle;

}

table,tr,td {

    border-collapse: separate;

    border-spacing: 0;

    margin: 0;

    padding: 0;

    border: 0 none;

    outline: 0;

    font-weight: inherit;

    font-style: inherit;

    font-size: 100%;

    word-break: break-all;

    box-sizing: border-box;

    -moz-box-sizing: border-box;

}

tr, td{

    vertical-align: middle;

}



input::-webkit-input-placeholder {

    color: #999;

}

input:-moz-placeholder {

    color: #999;

}

input::-moz-placeholder {

    color: #999;

}

input:-ms-placeholder {

    color: #999;

}

.alert.hide{

    display:none

}

.alert{

    padding: 8px 0;

    text-align: center;

    background: azure;

}

.alert > div{

    position: relative;

    width: 1080px;

    margin-left: auto;

    margin-right: auto;

}

.alert .close-tip{

    position: absolute;

    top: 0;

    right: 100px;

}

.alert.warn{

    background: #fbe6d7;

}