common.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  1. /************ CSS **************/
  2. /* 设置页面的元素 内边距和外边距为0, 和字体的样式 */
  3. *{
  4. padding: 0px;
  5. margin: 0px;
  6. font-family: "microsoft yahei";
  7. font-size:14px;
  8. font-style: normal;
  9. }
  10. body{
  11. width:100%;
  12. background-color:#f5f5f5;
  13. color:#444444;
  14. }
  15. a{
  16. color:#36aeea;
  17. text-decoration:none;
  18. cursor:pointer;
  19. }
  20. a:hover,a:visited,a:active,a:link{
  21. text-decoration:none;
  22. }
  23. li{
  24. list-style: none;
  25. }
  26. /************ head CSS **************/
  27. /* 设置头部背景宽度高度和最小宽度 */
  28. #headDiv{
  29. background-image:url(../images/home_page_background.jpg);
  30. position:absolute;
  31. top:0px;
  32. width:100%;
  33. height: 100px;
  34. min-width: 1300px;
  35. }
  36. /* 设置logo的位置和浮动 */
  37. #headDiv .logo{
  38. margin-left:26px;
  39. margin-top:22px;
  40. margin-bottom:18px;
  41. float:left;
  42. }
  43. /* 设置ul的位置和浮动 */
  44. #headDiv #menu{
  45. margin-left:35px;
  46. float:left;
  47. }
  48. /* 设置li文字水平垂直居中 */
  49. #headDiv #menu li{
  50. float:left;
  51. text-align: center;
  52. line-height:78px;
  53. }
  54. /* 设置a链接为块,高度宽度样式 */
  55. #headDiv #menu li a{
  56. display: block;
  57. height:78px;
  58. width: 89px;
  59. outline:none;
  60. color:#ffffff;
  61. }
  62. /* 设置链接hover时的背景和鼠标样式 */
  63. #headDiv #menu li a:hover,#headDiv #menu li a.menu_change{
  64. background-image:url(../images/tophover_bg.jpg);
  65. text-decoration: none;
  66. }
  67. /**设置LOGO位置**/
  68. #logoa{
  69. margin-top:13px;
  70. margin-left:30px;
  71. with:auto;
  72. display:inline-block;
  73. float:left;
  74. }
  75. .logo1{
  76. margin-right:20px;
  77. }
  78. .logo3{
  79. margin:3px 30px 0 20px;
  80. }
  81. /*******设置个人信息栏的样式*********/
  82. /* 设置信息栏的位置背景色,透明 */
  83. #divselect {
  84. position:relative;
  85. float:right;
  86. margin-top:15px;
  87. margin-right:1.5%;
  88. width: 240px;
  89. height:50px;
  90. border-radius: 5px;
  91. z-index:2;
  92. }
  93. #currentOpa{
  94. opacity:0.5;
  95. filter:alpha(Opacity=50);-moz-opacity:0.5;opacity: 0.5;/*设置50%半透明;*/
  96. background-color:#000000;
  97. border-radius: 5px;
  98. background-image: url(../images/ren.png);
  99. background-repeat:no-repeat;
  100. background-position:6% 50%;
  101. }
  102. /* 设置个人邮箱的位置背景 */
  103. #divselect cite {
  104. height: 50px;
  105. display: block;
  106. color: #fff;
  107. cursor: pointer;
  108. padding-left:50px;
  109. background: url(../images/triangle.png) no-repeat 90% 52%;
  110. padding-top:5px;
  111. }
  112. #divselect cite li{
  113. width:150px;
  114. white-space:nowrap;
  115. overflow:hidden;
  116. text-overflow:ellipsis;
  117. font-size: 12px;
  118. line-height:20px;
  119. }
  120. #divselect ul {
  121. margin-left:0px;
  122. width: 240px;
  123. display:none;
  124. }
  125. #divselect ul li {
  126. background-color:#344c67;
  127. text-align: center;
  128. border-bottom:solid #5c728a 1px;
  129. border-radius: 3px;
  130. width: 240px;
  131. }
  132. #divselect ul li a {
  133. display: block;
  134. height: 30px;
  135. line-height:30px;
  136. color: #fff;
  137. font-size: 12px;
  138. }
  139. #divselect ul li a:hover {
  140. background-color: #5b728a;
  141. border-radius: 3px;
  142. }
  143. /* 设置页面内容的位置宽度高度背景色和圆角 */
  144. #pagecontent{
  145. position:relative;
  146. margin-left: auto;
  147. margin-right: auto;
  148. margin-top:78px;
  149. width:97%;
  150. height:auto;
  151. background-color:#ffffff;
  152. border-radius:5px;
  153. min-width: 1300px;
  154. border:1px solid #e5e5e5;
  155. border-top:none;
  156. }
  157. #content{
  158. padding:20px;
  159. }
  160. #contentOther{
  161. padding:20px 20px 50px;
  162. }
  163. #cloneListP{
  164. font-size: 24px;
  165. }
  166. /* 面包屑 */
  167. #navDiv ul#navDiv_ul li{
  168. float:left;
  169. }
  170. #navDiv ul#navDiv_ul li a{
  171. color:#444444;
  172. }
  173. #navDiv ul#navDiv_ul li.navDiv_currentLi,#navDiv ul#navDiv_ul li a:hover{
  174. color:#36aeea;
  175. }
  176. /* 选择报表页面*/
  177. .selectBar span{
  178. float:left;
  179. }
  180. .selectBar a{
  181. float:left;
  182. width: auto;
  183. border-bottom: 2px solid #f4f5f7;
  184. text-align:center;
  185. padding:0 10px 20px;
  186. margin-bottom:20px;
  187. text-decoration: none;
  188. color:#444444;
  189. }
  190. .selectBar a:hover{
  191. border-bottom: 2px solid #36aeea;
  192. color: #36aeea;
  193. }
  194. .selectBar a.selectBar_all,.selectBar a.selectBar_change{
  195. border-bottom: 2px solid #36aeea;
  196. }
  197. #selectBar_industry,#selectBar_size,#selectBar_statusOther,#selectBar_clientaccount{
  198. padding-top:20px;
  199. }
  200. #selectBar_report,#selectBar_audit,#selectBar_apmac{
  201. margin-bottom:60px;
  202. }
  203. .selectBar,#navDiv,#myform,#navButtons,#navButtons_other,#button,#content_choose,#content_chooseOther,#placeDiv,#footBtn{
  204. clear:both;
  205. }
  206. #button{
  207. float:left;
  208. }
  209. /* 搜索框样式*/
  210. #searchValueDiv{
  211. float:right;
  212. }
  213. #searchValueDiv input[type='text'],#searchValueDivOther input[type='text']{
  214. padding-left:20px;
  215. background-color: #f3f3f3;
  216. border-radius:5px;
  217. width:280px;
  218. height:34px;
  219. line-height:34px;
  220. margin-bottom:20px;
  221. color:#444444;
  222. font-size:12px;
  223. }
  224. #serachData_img{
  225. width:30px;
  226. height:34px;
  227. cursor: pointer;
  228. background: url(../images/fangdajing.png) no-repeat 0 10px;
  229. border:none;
  230. display: flex;
  231. margin: -58px 0 0 263px;
  232. position: absolute;
  233. }
  234. #serachData_img:focus{
  235. outline:none;
  236. }
  237. /* 按钮样式*/
  238. .btn1,.btn2,.btn3,.btn-save,.btn-cancel,.btn_export,.btn-back,.btn-dimension,.btn-audit{
  239. height:34px;
  240. line-height:34px;
  241. border-radius:5px;
  242. font-size:12px;
  243. display: inline-block;
  244. text-align: center;
  245. cursor:pointer;
  246. }
  247. .btn1{
  248. width:150px;
  249. color:#ffffff;
  250. background-color:#36aeea;
  251. border:none;
  252. }
  253. .btn2{
  254. width:120px;
  255. color:#36aeea;
  256. background-color:#ffffff;
  257. border:1px solid #36aeea;
  258. margin-right:5px;
  259. }
  260. .btn2:hover{
  261. color:#ffffff;
  262. background-color:#36aeea;
  263. }
  264. .btn3{
  265. width:90px;
  266. color:#ffffff;
  267. background-color:#36aeea;
  268. margin-right:6px;
  269. }
  270. .btn-save{
  271. width:120px;
  272. color:#ffffff;
  273. background-color:#68ba31;
  274. border:none;
  275. margin-right:7px;
  276. }
  277. .btn-cancel{
  278. width:120px;
  279. color:#ffffff;
  280. background-color:#36aeea;
  281. border:none;
  282. }
  283. .btn_export{
  284. border:none;
  285. width:170px;
  286. color:#ffffff;
  287. background-color:#68ba31;
  288. }
  289. .btn-back{
  290. width:170px;
  291. color:#ffffff;
  292. background-color:#36aeea;
  293. margin-left:6px;
  294. }
  295. .btn-dimension{
  296. float:left;
  297. width:120px;
  298. margin-right:20px;
  299. color:#ffffff;
  300. background-color:#36aeea;
  301. }
  302. .btn3:hover,.btn-save:hover,.btn-cancel:hover,.btn_export:hover,.btn_export:active,.btn-back:hover,.btn-dimension:hover,#btn_formSubmit:hover,#btn_formExport:hover{
  303. color:#ffffff;
  304. background-color:#344c67;
  305. }
  306. .btn_export:visited{
  307. color:#ffffff;
  308. background-color:#68ba31;
  309. }
  310. .btn-audit{
  311. width:90px;
  312. color:#444444;
  313. background-color:#ffffff;
  314. border:1px solid #b9c5d9;
  315. margin-right:6px;
  316. }
  317. .btn-audit:hover,.btn-auditChange{
  318. color:#ffffff;
  319. background-color:#344c67;
  320. }
  321. /* 内容 */
  322. #content_choose{
  323. width:100%;
  324. height:34px;
  325. line-height:34px;
  326. padding:20px 0;
  327. }
  328. #content_choose #calendar_span{
  329. margin-right:16px;
  330. }
  331. #selectuls,#footBtn_other{
  332. clear:both;
  333. padding-top:20px;
  334. }
  335. #selectuls .son_selectul{
  336. margin-bottom:20px;
  337. }
  338. #content_choose ul,#content_chooseOther ul,#selectuls ul,#selectuls_report ul,#content_choose span#dateChoose_span,#dashboard_top_advertiser ul,#dashboard_chartContent .chart-up .pull-down ul{
  339. float:left;
  340. }
  341. #content_choose ul,#selectuls ul,#selectuls_report ul,#content_chooseOther ul{
  342. margin-right:20px;
  343. z-index:9999;
  344. }
  345. #date-checkbox{
  346. float:right;
  347. font-size:12px;
  348. height:34px;
  349. line-height:35px;
  350. }
  351. #date-checkbox span,.input-group .input-checkbox-span,.input-group .input-radio-span{
  352. margin-right:20px;
  353. position: relative;
  354. top: -2px;
  355. }
  356. #date-checkbox input,.input-group .input-checkbox,.input-group .input-radio{
  357. margin-right:5px;
  358. }
  359. .input-group .input-password{
  360. margin:0 5px 0 20px;
  361. }
  362. .input-group .input-password-span{
  363. position: relative;
  364. top: -2px;
  365. }
  366. #navButtons{
  367. padding-top:20px;
  368. }
  369. /* 下拉框样式 */
  370. ul .select_box{
  371. width:150px;
  372. height:34px;
  373. background:#F3F3F3 url(../images/triangle.png) no-repeat 130px;
  374. border:none;
  375. border-radius:5px!important;
  376. cursor: pointer;
  377. }
  378. ul .select_box span{
  379. display:block;
  380. line-height:34px;
  381. height:34px;
  382. overflow:hidden;
  383. margin-left:20px;
  384. font-size:12px;
  385. }
  386. span.spanVaildate{
  387. margin-left:20px;
  388. color:#ff0000;
  389. position: absolute;
  390. }
  391. span.help-inline{
  392. margin-left:20px;
  393. position: absolute;
  394. color:#444444;
  395. }
  396. span.spanVaildate_ul{
  397. margin-left:170px;
  398. color:#ff0000;
  399. position: absolute;
  400. }
  401. ul.mainChange{
  402. box-shadow:0 0 6px #ff0000;
  403. width:150px;
  404. }
  405. ul .son_ul{
  406. width:150px;
  407. color:#b8c6d6;
  408. background-color:#344c67!important;
  409. border-radius:5px!important;
  410. position: absolute;
  411. z-index:9999;
  412. }
  413. .son_ul_change{
  414. height:210px;
  415. overflow-y:scroll;
  416. overflow-x:hidden;
  417. }
  418. ul .son_ul li{
  419. padding-left:20px;
  420. height:35px;
  421. line-height:35px;
  422. border-radius:5px!important;
  423. font-size:12px;
  424. }
  425. ul .son_ul li:hover{
  426. background-color:#5b728a!important;
  427. }
  428. #content_choose span#dateChoose_span{
  429. margin:0 5px 0 -5px;
  430. }
  431. #content_choose span#dateChoose_span a{
  432. margin:5px;
  433. cursor: pointer;
  434. color:#36aeea;
  435. }
  436. #content_choose span#dateChoose_span a.dateChange{
  437. color:#344c67;
  438. }
  439. /* 日历样式 */
  440. span#calendar_span i,span#input-calendar i{
  441. position: absolute;
  442. margin-left:7px;
  443. }
  444. span#calendar_span input[type="text"],span#input-calendar input[type="text"]{
  445. padding-left:20px;
  446. font-size: 12px;
  447. padding: 0 0 0 25px;
  448. }
  449. span#calendar_span input[type="text"]{
  450. width:165px;
  451. height:30px;
  452. border-radius: 5px;
  453. }
  454. span#input-calendar input[type="text"]{
  455. width:275px;
  456. height:34px;
  457. border-radius: 3px;
  458. border: 1px solid #d4d9df;
  459. color:#444444;
  460. }
  461. /* 表单查询,导出按钮 */
  462. #btn_formSubmit,#btn_formExport{
  463. font-size:12px;
  464. border-radius: 5px;
  465. border:none;
  466. color: #fff;
  467. cursor: pointer;
  468. height: 34px;
  469. line-height: 34px;
  470. width:90px;
  471. }
  472. #btn_formSubmit{
  473. background:#36aeea none repeat scroll 0 0;
  474. }
  475. #btn_formExport{
  476. display: inline-block;
  477. text-align:center;
  478. background:#68ba31 none repeat scroll 0 0;
  479. position: relative;
  480. top:-1px;
  481. margin-left: 6px;
  482. }
  483. /* 表格 */
  484. table.tableFig{
  485. margin-top:20px;
  486. width:100%;
  487. }
  488. table.tableReport-advertiser,table.tableFigOther{
  489. width:100%;
  490. }
  491. table.tableUpdate{
  492. margin-top:36px;
  493. }
  494. table.tableReport{
  495. display:inline-table;
  496. margin-top:20px;
  497. }
  498. table.tableDimension{
  499. display: inline-table;
  500. padding-bottom:20px;
  501. }
  502. table.tableClientAccount{
  503. clear: both;
  504. margin-top: 54px;
  505. width: 700px;
  506. }
  507. table.tableFig,table.tableFig th,table.tableFig td,.uploadTable,.uploadTable th,.uploadTable td,table.tableReport,table.tableReport th,table.tableReport td,table.tableReport-advertiser,table.tableReport-advertiser th,table.tableReport-advertiser td,table.tableFigOther,table.tableFigOther th,table.tableFigOther td{
  508. border:thin solid #b9c5d9;
  509. }
  510. table.tableFig th,table.tableFigOther th{
  511. height:80px;
  512. border:none;
  513. background-color: #f3f3f3;
  514. }
  515. table.tableFig td,table.tableFigOther td{
  516. height:60px;
  517. border:none;
  518. border-top:thin solid #b9c5d9;
  519. }
  520. table.tableReport th,table.tableReport td{
  521. border:thin solid #b9c5d9;
  522. }
  523. table.tableReport-advertiser th{
  524. height:80px;
  525. background-color: #f3f3f3;
  526. }
  527. table.tableReport-advertiser td{
  528. height:60px;
  529. }
  530. table td{
  531. text-align: center;
  532. }
  533. table.tableFig td a.tableTdStyle,table.tableFigOther td a.tableTdStyle{
  534. text-decoration: underline;
  535. }
  536. table td a.tableTdStyle:hover{
  537. color:#36aeea;
  538. }
  539. table tr:hover,table.tableFig tr.trChange{
  540. background-color: #f3f3f3;
  541. }
  542. .checkboxStyleTh,.checkboxStyleTd{
  543. width:12px;
  544. height:12px;
  545. border-radius:3px 3px 3px 3px;
  546. border:thin solid #b9c5d9;
  547. margin:auto;
  548. cursor: pointer;
  549. }
  550. .checkboxStyle_change{
  551. border:thin solid #36aeea;
  552. background:url(../images/bluegou.png) 1px no-repeat;
  553. }
  554. /* 导出按钮 */
  555. #exportReport{
  556. margin-top:20px;
  557. }
  558. /* 分页 */
  559. #pageDiv{
  560. float:right;
  561. margin-top: -55px;
  562. }
  563. #pageDiv-other{
  564. float:right;
  565. }
  566. /* 创建,编辑页面样式 */
  567. #validateForm,#apmacListForm{
  568. clear:both;
  569. padding-top:20px;
  570. }
  571. .input-group{
  572. line-height:34px;
  573. margin-bottom:20px;
  574. }
  575. .input-group span.lbl-yes{
  576. color: #36aeea;
  577. }
  578. .input-group span.lbl-no{
  579. margin-left:7px;
  580. }
  581. .input-group input.input-text{
  582. width:280px;
  583. line-height:34px;
  584. height:34px;
  585. padding-left:20px;
  586. border-radius:3px !important;
  587. border:1px solid #d4d9df;
  588. font-size: 12px;
  589. color:#444444;
  590. }
  591. input.input-text-small{
  592. width:120px;
  593. line-height:34px;
  594. height:34px;
  595. padding-left:20px;
  596. border-radius:3px !important;
  597. border:1px solid #d4d9df;
  598. font-size: 12px;
  599. color:#444444;
  600. }
  601. .input-group input.input-text:focus,span#input-calendar input[type="text"]:focus,.input-group-td input.input-text-edit:focus{
  602. box-shadow: 0 0 6px #ff0000;
  603. }
  604. .input-group label.input-label{
  605. float:left;
  606. width:100px;
  607. }
  608. .input-group label.input-label-other{
  609. float:left;
  610. width:123px;
  611. }
  612. .input-group span.input-span{
  613. margin-left:10px;
  614. }
  615. .input-group label.input-label-apmac{
  616. margin-right: 20px;
  617. }
  618. .input-group ul#main_industryul,.input-group ul#main_advertiserul,.input-group ul#main_agentListUl,.input-group ul#main_operatorUl,.input-group ul.mainUl{
  619. margin-left:100px;
  620. }
  621. .input-group ul#main_perClickul,.input-group ul#main_perImpressionul{
  622. float:left;
  623. margin-right:20px;
  624. }
  625. .input-group ul#main_operatorListUl,.input-group ul#main_agentUl{
  626. float:left;
  627. margin-left:0px;
  628. margin-right:80px;
  629. }
  630. .input-group #upload-click{
  631. width:300px;
  632. height:34px;
  633. display:block;
  634. margin-left:123px;
  635. border: 1px solid #d5dadf;
  636. border-radius: 3px !important;
  637. font-size: 14px;
  638. line-height: 34px;
  639. text-align:center;
  640. text-dcoration:none;
  641. color:#36aeea;
  642. }
  643. .input-group #input-file,#all-input-file,.banner-file{
  644. display:none;
  645. }
  646. .input-group .uploadTable{
  647. width:500px;
  648. font-size:12px;
  649. margin-left:100px;
  650. }
  651. .input-group .uploadTable th{
  652. height:50px;
  653. }
  654. .input-group .uploadTable td{
  655. font-size:12px;
  656. }
  657. .input-group .uploadTable button.uploadOrView {
  658. background-color: #36aeea;
  659. border: 1px solid #36aeea;
  660. color: #ffffff;
  661. float: left;
  662. height: 30px;
  663. margin: -40px 0 0 290px;
  664. width: 40px;
  665. font-size:12px;
  666. }
  667. .input-group .uploadTable div.ace-file-input{
  668. height: 30px;
  669. line-height: 30px;
  670. margin: 10px 0 10px 53px;
  671. }
  672. .input-group .uploadTable div.ace-file-input label::before{
  673. z-index: 99;
  674. }
  675. .input-group .uploadTable div.ace-file-input label span{
  676. margin-left: -104px;
  677. position: absolute;
  678. z-index:9;
  679. }
  680. .input-group .uploadTable div.ace-file-input label.selected span {
  681. margin-left: -96px;
  682. }
  683. .input-group-td input.input-text{
  684. width:280px;
  685. line-height:30px;
  686. height:30px;
  687. padding-left:20px;
  688. border-radius:3px !important;
  689. border:1px solid #d4d9df;
  690. font-size: 12px;
  691. color:#444444;
  692. }
  693. .input-group-td{
  694. margin-bottom:10px;
  695. }
  696. #input-group-td-first{
  697. margin-top:10px;
  698. }
  699. .input-group-td input.input-text-edit{
  700. line-height:34px;
  701. height:34px;
  702. border:none;
  703. font-size: 12px;
  704. color:#444444;
  705. width:150px;
  706. border-radius:3px !important;
  707. background-color: transparent;
  708. }
  709. .input-group-td input.input-text-change{
  710. border:1px solid #d4d9df;
  711. background-color: #F3F3F3;
  712. }
  713. /*** 维度管理 ***/
  714. #dimension-chooseing{
  715. float:left;
  716. }
  717. #dimension-chooseing li,#dimension-selected li{
  718. width:150px;
  719. height:34px;
  720. line-height:34px;
  721. border:1px solid #d4d9df;
  722. margin-bottom:10px;
  723. text-align: center;
  724. cursor: pointer;
  725. }
  726. #dimension-selected{
  727. padding-top:10px;
  728. width:190px;
  729. height:274px;
  730. margin-left:170px;
  731. border:1px solid #d5dee8;
  732. }
  733. #dimension-selected li{
  734. margin-left:20px;
  735. }
  736. #dimension-selected input{
  737. float: right;
  738. border:none;
  739. width: 20px;
  740. height: 20px;
  741. margin-top:7px;
  742. cursor: pointer;
  743. }
  744. #dimension-selected input.movedel{
  745. background: url(../images/ui-icons_cd0a0a_256x240.png) -30px -190px;
  746. }
  747. #dimension-selected input.moveup{
  748. background: url(../images/ui-icons_cd0a0a_256x240.png) -158px -190px;
  749. }
  750. #dimension-selected input.movedown{
  751. background: url(../images/ui-icons_cd0a0a_256x240.png) -126px -190px;
  752. }
  753. #dimension-showspan{
  754. float:left;
  755. margin:131px 0 0 54px;
  756. color:red;
  757. display:block;
  758. }
  759. #selectuls .selectuls_finance_div,#selectuls .selectuls_finance_span{
  760. float:left;
  761. }
  762. #selectuls .selectuls_finance_div{
  763. height:34px;
  764. line-height:34px;
  765. }
  766. #selectuls .selectuls_finance_div #calendar_span,#selectuls #avail_money{
  767. margin-right:20px;
  768. }
  769. .input-group .input-checkboxsDiv{
  770. margin:-34px 0 0 123px;
  771. display: inline-block;
  772. }
  773. .input-checkboxsDiv .single_div{
  774. float:left;
  775. }
  776. .input-group .input-checkboxsDiv .single_div input.single_div_checkbox{
  777. float: left;
  778. position: relative;
  779. top: 10px;
  780. }
  781. .input-group .input-checkboxsDiv .single_div span.single_div_span{
  782. float: left;
  783. margin-left: 5px;
  784. position: relative;
  785. width: 150px;
  786. }
  787. .input-group .otherspan{
  788. margin-left:5px;
  789. }
  790. .input-group .area-direct{
  791. margin-right:5px;
  792. }
  793. /*** 媒体报表 ***/
  794. #content_dataFrame{
  795. height:150px;
  796. margin-bottom:20px;
  797. }
  798. #content_dataFrame .dataFrame_style,#content_dataFrame .dataFrame_last_style{
  799. float:left;
  800. width:19.2%;
  801. height:150px;
  802. color: #4c637b;
  803. font-size: 17px;
  804. cursor: pointer;
  805. border:1px solid #d5dee8;
  806. border-radius:5px;
  807. }
  808. #content_dataFrame .dataFrame_change{
  809. color: #ffffff;
  810. background-color:#36aeea;
  811. }
  812. #content_dataFrame .dataFrame_style{
  813. margin-right:0.8%;
  814. }
  815. #content_dataFrame .dataFrame_name{
  816. height:46px;
  817. line-height:46px;
  818. border-bottom:1px solid #d5dee8;
  819. padding-left:20px;
  820. }
  821. #content_dataFrame .dataFrame_data{
  822. height:103px;
  823. line-height:103px;
  824. text-align: center;
  825. font-size: 23px;
  826. font-weight:bold;
  827. }
  828. #chartDivs{
  829. z-index:9999;
  830. border:1px solid #d4d9df;
  831. overflow:visible;
  832. height:auto;
  833. }
  834. #content_chartLender{
  835. height:30px;
  836. line-height:30px;
  837. text-align: center;
  838. margin: 20px auto 0;
  839. width: 77%;
  840. }
  841. #content_chartLender div.chartLender_name{
  842. float:left;
  843. margin-right: 5%;
  844. cursor: pointer;
  845. }
  846. #content_chartLender .chartLender_box{
  847. float:left;
  848. width:12px;
  849. height:12px;
  850. text-align: center;
  851. font-size: 17px;
  852. background-color:#ffffff;
  853. border:1px solid #36aeea;
  854. border-radius:4px 4px 4px 4px;
  855. margin:9px 5px 0 0;
  856. }
  857. #content_chartLender .chartLender_change{
  858. background-color:#36aeea;
  859. }
  860. #hourrpt {
  861. height: 0;
  862. overflow: hidden;
  863. width: 90%;
  864. }
  865. /**** 素材审核 ****/
  866. .auditDiv{
  867. clear:both;
  868. padding-top:20px;
  869. }
  870. .auditDiv span{
  871. margin-right:20px;
  872. }
  873. /*** 后台财务管理-需求方充值 ***/
  874. #navFinances span{
  875. height:34px;
  876. line-height:34px;
  877. }
  878. /**** 后台客户账号管理-创建编辑账号 ****/
  879. .hideClientAccount{
  880. display:none;
  881. }
  882. /**** 后台热点管理-场景对应关系 ****/
  883. table.tableApmac{
  884. clear: both;
  885. margin-top:20px;
  886. width:700px;
  887. }
  888. table.tableApmac,table.tableApmac th,table.tableApmac td{
  889. border:thin solid #b9c5d9;
  890. }
  891. table.tableApmac th{
  892. height:60px;
  893. border:none;
  894. background-color: #f3f3f3;
  895. }
  896. table.tableApmac td{
  897. height:40px;
  898. border:none;
  899. border-top:thin solid #b9c5d9;
  900. }