You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.2 KiB
108 lines
2.2 KiB
.tradeTit {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.tradeTit p {
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
font-size: 22px;
|
|
line-height: 1.5;
|
|
color: #333;
|
|
}
|
|
.tradeTit p::before {
|
|
display: block;
|
|
content: "";
|
|
width: 4px;
|
|
height: 24px;
|
|
margin-right: 17px;
|
|
background-color: #f08200;
|
|
border-radius: 2px;
|
|
}
|
|
.tradeTit .tradeSearch {
|
|
display: flex;
|
|
}
|
|
.tradeTit .tradeSearch input {
|
|
width: 340px;
|
|
height: 50px;
|
|
padding: 0 20px;
|
|
border: 1px solid #D9D9D9;
|
|
border-right: 0;
|
|
font-size: 14px;
|
|
color: #999;
|
|
}
|
|
.tradeTit .tradeSearch .searchBtn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 120px;
|
|
height: 50px;
|
|
background: #f08200;
|
|
font-size: 14px;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
.commissionBlock {
|
|
background: #f7f7f7;
|
|
padding: 40px 0 60px;
|
|
}
|
|
.table-content {
|
|
background-color: #fff;
|
|
padding: 45px;
|
|
}
|
|
.table-content .table-title {
|
|
height: 45px;
|
|
line-height: 45px;
|
|
background-color: #f08200;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|
|
.table-content .layui-table td,
|
|
.table-content .layui-table th {
|
|
padding: 9px 6px;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.table-content .layui-table thead {
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
@media (max-width:1080px) {
|
|
.tradeTit {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin-bottom: 30px;
|
|
}
|
|
.tradeTit p {
|
|
font-size: 18px;
|
|
}
|
|
.tradeTit .tradeSearch {
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
}
|
|
.tradeTit .tradeSearch input {
|
|
width: calc(100% - 70px);
|
|
height: 40px;
|
|
/* margin-bottom: 20px; */
|
|
padding: 0 10px;
|
|
border-right: 1px solid #d9d9d9;
|
|
font-size: 12px;
|
|
}
|
|
.tradeTit .tradeSearch .searchBtn {
|
|
width: 60px;
|
|
height: 40px;
|
|
font-size: 12px;
|
|
}
|
|
.table-content{
|
|
padding: 20px;
|
|
}
|
|
.layui-table{
|
|
margin: 0;
|
|
}
|
|
}
|