/*巨幕*/
@import url("jumbotron.css");
/*主体内容*/
.table > thead > tr > th{border:none;background: #F7FCFF;color:#000F1D;}
.table > thead > tr > th:nth-child(3){text-align: center;}
.table > tbody > tr:first-child > td{border-top:none;}
.table > tbody > tr > td{color: #141416;}
.table > tbody > tr > td:nth-child(3){color:#169FE6;cursor:pointer;text-align: center}

/*响应式*/
@media screen and (min-width: 1200px){
    /*主要内容*/
    .table > thead > tr > th{font-size:2rem;}
    .table > tbody > tr > td{font-size: 1.8rem;}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /*主要内容*/
    .table > thead > tr > th{font-size:1.8rem;}
    .table > tbody > tr > td{font-size: 1.4rem;}
}
@media screen and (min-width: 500px) and (max-width: 991px) {
    /*主体内容*/
    .table > thead > tr > th{font-size:1.4rem;}
    .table > tbody > tr > td{font-size: 1.2rem;}
}
