123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- /*@wanfu*/
- /*设置快速跳转div的宽,高,底线*/
- #subNav,#shortcutBar,#selectConditionBar{
- height:50px;
- wight:100%;
- line-height:50px;
- margin:0px 20px;
- border-bottom:2px solid #f4f5f7;
- font-size:14px;
- font-family: "microsoft yahei";
- }
- #subNav span{
- display:block;
- float:left;
- color:#4c637b;
- height:50px;
- padding:0px 10px;
- cursor:pointer;
- }
- #subNav span:hover{
- border-bottom:2px solid #36aeea;
- }
- #subNav span.sub{
- border-bottom:2px solid #36aeea;
- }
- /*设置快速跳转div中ul的左margin*/
- #shortcutBar ul{
- margin-left:0px;
- }
- #shortcutBar .homepage{
- color:#0088CC;
- }
- #shortcutBar .homepage2{
- color:#4c637b;
- }
- /*设置快速跳转div中ul中li的上内边距,左浮动*/
- #shortcutBar ul li{
- padding-top:18px;
- padding-right:5px;
- float:left;
- }
- #selectConditionBar span{
- float:left;
- color:#4c637b;
- }
- /*设置审核通过,审核不通过,未审核的链接的左内边距*/
- #selectConditionBar a{
- float:left;
- padding-left:10px;
- padding-right:10px;
- display:block;
- height:50px;
- outline:none;
- text-decoration:none;
- color:#4c637b;
- font-size:14px;
- font-family: "microsoft yahei"
- }
- #selectConditionBar a:nth-child(2){
- border-bottom:2px solid #36aeea;
- cursor:pointer;
- }
- #selectConditionBar a:hover{
- border-bottom:2px solid #36aeea;
- cursor:pointer;
- }
- /* 设置批量按钮和搜索框位置*/
- #searchBar{
- height:74px;
- padding:0px 20px;
- margin:0px;
- }
- /*批量通过和批量不通过两个按钮样式*/
- #searchBar .batch_btn{
- float:left;
- width:120px;
- height:32px;
- margin-top:20px;
- margin-right:10px;
- border:1px solid #36aeea;
- border-radius:5px;
- background:white;
- color:#36aeea;
- }
- #searchBar form{
- position:relative;
- float:right;
- left:5px;
- height:54px;
- width:265px;
- }
- /* 搜索输入框 */
- #searchBar input{
- height:22px;
- width:200px!important;
- margin-top:20px;
- line-height:22px;
- color:#444444;
- width:220px;
- background-color:#F3F3F3!important;
- border-radius:5px!important;
- border:none;
- font-size:12px;
- padding-left:20px;
- padding-right:40px;
- }
- /* 搜索按钮 */
- #searchBar img{
- position:absolute;
- margin-top:26px;
- margin-left:-30px;
- }
- /* 设置表格左右边距 */
- #tableList{
- padding:0px 20px;
- }
- /*
- *资质审核表上面,广告主信息的设置
- *details.ftl
- */
- #tableList div{
- margin:0px -20px;
- padding:20px;
- border-top:1px solid #D5DADF;
- }
- #tableList div span{
- margin-right:10px;
- }
- /* 设置表格行的边框 */
- #tableList tr{
- border:1px solid #D5DADF;
- }
- /* 设置表头th的高背景色垂直上下居中 */
- #tableList th{
- height: 80px;
- border:none;
- vertical-align:middle;
- text-align:center;
- color:#444444;
- }
- /* 设置行tr的背景色 */
- #tableList tr{
- background-color:#ffffff;
- }
- /* 设置行tr hover时的背景色 */
- #tableList tr:hover{
- background-color:#f3f3f3;
- }
- /* 设置td的高字体颜色居中 */
- #tableList td{
- height:60px;
- text-align:center;
- color:#444444;
- }
- /* 设置审核通过,审核不通过按钮的样式 */
- #tableList button{
- height:34px;
- width:80px;
- border-radius:5px;
- border:1px solid #d4d9df;
- }
- #tableList .labeled{
- background:#4c637b;
- color:#ffffff;
- }
- #tableList .unlabeled{
- background:#ffffff;
- color:#444444;
- }
- /* 设置审核通过,审核不通过按钮hover的样式 */
- #tableList button:hover{
- background:#4c637b;
- }
- /* 设置导出excel按钮的样式位置 */
- #footBar button{
- float: left;
- margin-left:20px;
- margin-top: 30px;
- border-radius:5px 5px 5px 5px;
- border:none;
- width:170px;
- height:34px;
- color:white;
- background:#67ba2f;
- text-align:center;
- }
- /* 设置导出excel按钮hover的样式位置 */
- #footBar button:hover{
- background:#4c637b;
- }
- /* 设置审核通过,审核不通过按钮的样式 */
- #tableList table tbody tr td .checked{
- background:#67ba2f;
- }
- /* 设置导出excel按钮hover的样式位置 */
- #footBar button:hover{
- background:#4c637b;
- }
- /* 设置页数的位置 */
- #paged{
- margin-top:30px;
- float:right;
- }
- #paged div{
- margin:0px;
- }
|