﻿@charset "UTF-8";
/* 今日交易特有样式 - 深度还原 Figma */
.trade-main {
  padding-top: 0;
  padding-bottom: 40px;
  padding-left: 0px;
  padding-right: 0px;
}
.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: 100%;
  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 .table-section {
  border-radius: 8px;
  overflow: hidden;
}
.right-content .table-section .today-table {
  width: 100%;
  border-collapse: collapse;
}
.right-content .table-section .today-table thead th {
  padding: 13px 20px;
  line-height: 24px;
  background: #3c8cff;
  color: #fff;
  font-size: 16px;
}
.right-content .table-section .today-table tbody td {
  padding: 17px 20px;
  line-height: 24px;
  font-size: 15px;
  color: #444;
}
.right-content .table-section .today-table tbody td a {
  color: #333;
}
.right-content .table-section .today-table tbody td a:hover {
  color: #3c8cff;
}
.right-content .table-section .today-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.right-content .table-section .today-table tbody tr:hover {
  background-color: #f1f7ff;
}
.right-content .table-section .today-table .cell-inner {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.right-content .table-section .today-table .center {
  text-align: center;
}



.location {
  padding-left: 54px;
  background: url("../images/location_icon.png") 14px 50% no-repeat;
  margin: 14px 0 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 36px;
  color: #000;
}

.location > a {
  color: #000;
}
