@charset "UTF-8";
/* 今日交易特有样式 - 深度还原 Figma */
.trade-main {
  padding: 40px 0;
}
.trade-main .main-content-cols {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aside-header {
  height: 84px;
  background: -webkit-linear-gradient(top, #57a9ff, #1f5dfe);
  background: -moz-linear-gradient(top, #57a9ff, #1f5dfe);
  background: -o-linear-gradient(top, #57a9ff, #1f5dfe);
  background: linear-gradient(to bottom, #57a9ff, #1f5dfe);
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px 0 24px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 8px;
}
.aside-header .icon-arrow {
  width: 20px;
  height: 20px;
  background: url("../images/today_trade/icon_arrow_white.png") no-repeat center;
  -o-background-size: contain;
     background-size: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

.right-content {
  width: 1036px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
}
.right-content .content-header {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  height: 30px;
  line-height: 30px;
  margin-bottom: 20px;
}
.right-content .content-header .title {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.right-content .content-header .title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 22px;
  background: url("../images/icon_tt_border.png") center no-repeat;
  margin-right: 12px;
  border-radius: 2px;
}
.right-content .content-header .search-box .search-input-wrap {
  position: relative;
  width: 240px;
  height: 100%;
  border: 1px solid #dce3e9;
  border-radius: 19px;
  overflow: hidden;
}
.right-content .content-header .search-box .search-input-wrap input {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 19px; /* 改为胶囊形 */
  padding: 0 54px 0 11px;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.right-content .content-header .search-box .search-input-wrap input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.right-content .content-header .search-box .search-input-wrap input:-moz-placeholder {
  color: #aaaaaa;
}
.right-content .content-header .search-box .search-input-wrap input::-moz-placeholder {
  color: #aaaaaa;
}
.right-content .content-header .search-box .search-input-wrap input:-ms-input-placeholder {
  color: #aaaaaa;
}
.right-content .content-header .search-box .search-input-wrap input::placeholder {
  color: #aaaaaa;
}
.right-content .content-header .search-box .search-input-wrap .btn-search-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  cursor: pointer;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(top, #57a9ff, #1f5dfe);
  background: -moz-linear-gradient(top, #57a9ff, #1f5dfe);
  background: -o-linear-gradient(top, #57a9ff, #1f5dfe);
  background: linear-gradient(to bottom, #57a9ff, #1f5dfe);
  overflow: hidden;
}
.right-content .content-header .search-box .search-input-wrap .btn-search-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../images/today_trade/icon_search.png") center no-repeat;
}
.right-content .list-section .policies-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.right-content .list-section .policies-list .policy-item {
  border-bottom: 1px solid #f2f2f2;
}
.right-content .list-section .policies-list .policy-item .policy-link {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.right-content .list-section .policies-list .policy-item .policy-link:hover .policy-date,
.right-content .list-section .policies-list .policy-item .policy-link:hover .policy-title .text {
  color: #3c8cff;
}
.right-content .list-section .policies-list .policy-item .policy-link .policy-title {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.right-content .list-section .policies-list .policy-item .policy-link .policy-title .policy-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../images/index/icon_item_dot.svg") center no-repeat;
  -o-background-size: contain;
     background-size: contain;
  margin-right: 12px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.right-content .list-section .policies-list .policy-item .policy-link .policy-title .text {
  display: inline-block;
  font-size: 16px;
  color: #333;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.right-content .list-section .policies-list .policy-item .policy-link .policy-date {
  font-size: 14px;
  color: #999;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 20px;
  width: 200px;
  text-align: right;
}