common_style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. /************public-head CSS**************/
  2. /* 设置页面的元素 内边距和外边距为0, 和字体的样式 */
  3. *{
  4. padding: 0px;
  5. margin: 0px;
  6. font-family: "microsoft yahei";
  7. font-size:14px;
  8. }
  9. body{
  10. width:100%;
  11. background-color:#f5f5f5;
  12. }
  13. a:hover{
  14. text-decoration:none;
  15. }
  16. ul{
  17. margin:0px;
  18. }
  19. li{
  20. list-style: none;
  21. }
  22. /* 登陆页面 */
  23. body.login-layout {
  24. background:#fff
  25. }
  26. body.login-layout:before {
  27. display:none
  28. }
  29. .login-container {
  30. width:375px;
  31. margin:120px auto 0 auto
  32. }
  33. .login-layout #main-content {
  34. margin-left:0;
  35. min-height:100%
  36. }
  37. .login-layout input[type="text"],.login-layout input[type="password"],.login-layout input[type="datetime"],.login-layout input[type="datetime-local"],.login-layout input[type="date"],.login-layout input[type="month"],.login-layout input[type="time"],.login-layout input[type="week"],.login-layout input[type="number"],.login-layout input[type="email"],.login-layout input[type="url"],.login-layout input[type="search"],.login-layout input[type="tel"],.login-layout input[type="color"] {
  38. line-height:32px;
  39. height:32px;
  40. max-height:32px;
  41. margin-bottom:4px
  42. }
  43. .login-layout label {
  44. margin-bottom:11px
  45. }
  46. .login-layout .widget-box {
  47. visibility:hidden;
  48. position:absolute;
  49. overflow:hidden;
  50. width:100%;
  51. -moz-transform:scale(0,1) translate(-150px);
  52. -webkit-transform:scale(0,1) translate(-150px);
  53. -o-transform:scale(0,1) translate(-150px);
  54. -ms-transform:scale(0,1) translate(-150px);
  55. transform:scale(0,1) translate(-150px)
  56. }
  57. .login-layout .widget-box.visible {
  58. -moz-transform:scale(1,1) translate(0);
  59. -webkit-transform:scale(1,1) translate(0);
  60. -o-transform:scale(1,1) translate(0);
  61. -ms-transform:scale(1,1) translate(0);
  62. transform:scale(1,1) translate(0);
  63. visibility:visible;
  64. -moz-transition:all .3s ease;
  65. -ms-transition:all .3s ease;
  66. transition:all .3s ease;
  67. -o-transition:none;
  68. -webkit-transition:none;
  69. margin:30px 0 0 30px;
  70. }
  71. .login-layout .widget-box {
  72. border-bottom:0;
  73. box-shadow:none;
  74. padding:6px;
  75. background-color:#fff
  76. }
  77. .login-layout .widget-box .widget-main {
  78. background:#fff
  79. }
  80. .login-layout .widget-box .widget-main form {
  81. margin:0
  82. }
  83. .login-layout .widget-box .widget-body .toolbar>div>a {
  84. font-size:15px;
  85. font-weight:400;
  86. }
  87. #login-box .forgot-password-link {
  88. color:#FE9
  89. }
  90. #login-box .user-signup-link {
  91. margin-left: 0;
  92. color:#fff;
  93. text-shadow: 0 -1px 0 rgba(0,0,0,0.25)!important;
  94. }
  95. /* 设置头部背景宽度高度和最小宽度 */
  96. #headDiv{
  97. background-image:url(../images/home_page_background.jpg);
  98. position:absolute;
  99. top:0px;
  100. width:100%;
  101. height: 100px;
  102. min-width: 1300px;
  103. }
  104. /* 设置logo的位置和浮动 */
  105. #headDiv .logo{
  106. margin-left:26px;
  107. margin-top:22px;
  108. margin-bottom:18px;
  109. float:left;
  110. }
  111. /* 设置ul的位置和浮动 */
  112. #headDiv #menu{
  113. margin-left:35px;
  114. float:left;
  115. }
  116. /* 设置li文字水平垂直居中 */
  117. #headDiv #menu li{
  118. float:left;
  119. text-align: center;
  120. line-height:78px;
  121. }
  122. /* 设置a链接为块,高度宽度样式 */
  123. #headDiv #menu li a{
  124. display: block;
  125. height:78px;
  126. width: 89px;
  127. outline:none;
  128. color:#ffffff;
  129. text-decoration:none;
  130. cursor:pointer;
  131. }
  132. /* 设置链接访问之后的样式 */
  133. #headDiv #menu li a:visited{
  134. background-color:#344c68;
  135. }
  136. /* 设置链接hover时的背景和鼠标样式 */
  137. #headDiv #menu li a:hover,#headDiv #menu li a.menu_change{
  138. background-image:url(../images/tophover_bg.jpg);
  139. }
  140. /**设置LOGO位置**/
  141. #logoa{
  142. margin-top:13px;
  143. margin-left:30px;
  144. with:auto;
  145. display:inline-block;
  146. float:left;
  147. }
  148. .logo1{
  149. margin-right:20px;
  150. }
  151. .logo3{
  152. margin:3px 30px 0 20px;
  153. }
  154. /*******设置个人信息栏的样式*********/
  155. /* 设置信息栏的位置背景色,透明 */
  156. #divselect {
  157. position:relative;
  158. float:right;
  159. margin-top:15px;
  160. margin-right:1.5%;
  161. width: 240px;
  162. height:50px;
  163. border-radius: 5px;
  164. z-index:2;
  165. }
  166. #currentOpa{
  167. opacity:0.5;
  168. filter:alpha(Opacity=50);-moz-opacity:0.5;opacity: 0.5;/*设置50%半透明;*/
  169. background-color:#000000;
  170. border-radius: 5px;
  171. background-image: url(../images/ren.png);
  172. background-repeat:no-repeat;
  173. background-position:6% 50%;
  174. }
  175. /* 设置个人邮箱的位置背景 */
  176. #divselect cite {
  177. height: 50px;
  178. display: block;
  179. color: #fff;
  180. cursor: pointer;
  181. padding-left:50px;
  182. background: url(../images/triangle.png) no-repeat 90% 52%;
  183. padding-top:5px;
  184. }
  185. #divselect cite li{
  186. width:150px;
  187. white-space:nowrap;
  188. overflow:hidden;
  189. text-overflow:ellipsis;
  190. font-size: 12px;
  191. }
  192. #divselect cite li:first{
  193. }
  194. /* 设置个人信息下拉框 */
  195. #divselect ul {
  196. margin-left:0px;
  197. width: 240px;
  198. display:none;
  199. }
  200. #divselect ul li {
  201. background-color:#344c67;
  202. text-align: center;
  203. border-bottom:solid #5c728a 1px;
  204. border-radius: 3px;
  205. width: 240px;
  206. }
  207. #divselect ul li a {
  208. display: block;
  209. height: 30px;
  210. line-height:30px;
  211. color: #fff;
  212. font-size: 12px;
  213. }
  214. #divselect ul li a:hover {
  215. background-color: #5b728a;
  216. border-radius: 3px;
  217. }
  218. /* 设置页面内容的位置宽度高度背景色和圆角 */
  219. #pagecontent{
  220. position:relative;
  221. margin-left: auto;
  222. margin-right: auto;
  223. margin-top:78px;
  224. width:97%;
  225. height:auto;
  226. background-color:#ffffff;
  227. border-radius:5px;
  228. min-width: 1300px;
  229. border:1px solid #e5e5e5;
  230. border-top:none;
  231. }
  232. #content{
  233. padding:20px;
  234. }
  235. /* 切换页面 */
  236. #selectBar a{
  237. float:left;
  238. width: 78px;
  239. border-bottom: 2px solid #f4f5f7;
  240. color: #4c637b;
  241. text-align:center;
  242. padding-bottom:10px;
  243. text-decoration: none;
  244. }
  245. #selectBar a:hover{
  246. border-bottom: 2px solid #36aeea;
  247. color: #36aeea;
  248. }
  249. #selectBar a.selectBar_all{
  250. border-bottom: 2px solid #36aeea;
  251. }
  252. #navDiv,#dashboard_top_advertiser,#myform,#dashboard_diagram{
  253. clear:both;
  254. }
  255. #navDiv ul#navDiv_ul li{
  256. float:left;
  257. }
  258. #dashboard_top_advertiser{
  259. width:100%;
  260. padding-top:20px;
  261. }
  262. #dashboard_top_advertiser #left{
  263. float:left;
  264. width:60%;
  265. height:200px;
  266. }
  267. #dashboard_top_advertiser #right{
  268. float:left;
  269. width:38.3%;
  270. height:200px;
  271. margin-left:20px;
  272. }
  273. #dashboard_top_advertiser .up{
  274. height:50px;
  275. line-height:50px;
  276. width:100%;
  277. border:1px solid #d5dee8;
  278. border-bottom:none;
  279. }
  280. #dashboard_top_advertiser .up span{
  281. height:34px;
  282. line-height:34px;
  283. padding-left:20px;
  284. }
  285. #dashboard_top_advertiser .down{
  286. width:100%;
  287. height:140px;
  288. line-height:140px;
  289. border:1px solid #d5dee8;
  290. }
  291. #dashboard_top_advertiser #left .up ul#main_advertiserul{
  292. float:right;
  293. margin:8px 20px 0 0;
  294. }
  295. #dashboard_chartContent .chart-up .son_ul{
  296. margin-top:35px;
  297. }
  298. #dashboard_top_advertiser #left .dataFrame{
  299. float:left;
  300. width:30%;
  301. height:118px;
  302. border:1px solid #d5dee8;
  303. margin:10px 8px;
  304. border-radius:5px;
  305. }
  306. #dashboard_top_advertiser #left .dataFrame:hover{
  307. background-color:#36aeea;
  308. color:#fff;
  309. }
  310. #dashboard_top_advertiser #left .down #exposure{
  311. margin-left:19px;
  312. }
  313. #dashboard_top_advertiser #left .dataFrame .dataFrame_name{
  314. height:35px;
  315. line-height:35px;
  316. border-bottom:1px solid #d5dee8;
  317. padding:0 20px;
  318. }
  319. #dashboard_top_advertiser #left .dataFrame .dataFrame_name i{
  320. float:right;
  321. }
  322. #dashboard_top_advertiser #left .dataFrame .dataFrame_data{
  323. width:100%;
  324. height:82px;
  325. text-align:center;
  326. line-height:82px;
  327. }
  328. #dashboard_top_advertiser #right .down ul#main_advertiserul2{
  329. margin:54px 20px 0 20px;
  330. }
  331. .btn1{
  332. height:34px;
  333. line-height:34px;
  334. width:150px;
  335. border-radius:5px;
  336. font-size:12px;
  337. color:#ffffff;
  338. border:none;
  339. background-color:#36aeea;
  340. }
  341. #diagramHead{
  342. width:303px;
  343. margin:auto;
  344. height:34px;
  345. border-bottom:1px solid #d5dee8;
  346. padding-top:15px;
  347. }
  348. #diagramHead span{
  349. float:left;
  350. width:150px;
  351. height:34px;
  352. line-height:34px;
  353. text-align:center;
  354. cursor:pointer;
  355. background-color: white;
  356. }
  357. #diagramHead span:first-child{
  358. border-left:1px solid #d5dee8;
  359. border-top:1px solid #d5dee8;
  360. border-bottom:1px solid #ffffff;
  361. position: absolute;
  362. }
  363. #diagramHead span:last-child{
  364. border:1px solid #d5dee8;
  365. border-bottom:none;
  366. position: absolute;
  367. margin-left:150px;
  368. }
  369. #dashboard_chartContent{
  370. width:100%;
  371. height:500px;
  372. }
  373. #dashboard_chartContent .chart-up{
  374. height:66px;
  375. border:1px solid #d5dee8;
  376. }
  377. #dashboard_chartContent .chart-up .pull-down,#dashboard_chartContent .chart-up .time-period{
  378. height:50px;
  379. margin-top:20px important!;
  380. float:left;
  381. line-height:66px;
  382. }
  383. #dashboard_chartContent .chart-up .pull-down ul#main_advertiserul3{
  384. margin-top:16px;
  385. }
  386. #dashboard_chartContent .chart-up .pull-down span{
  387. float:left;
  388. width:80px;
  389. }
  390. #dashboard_chartContent .chart-up .time-period span{
  391. width:95px;
  392. }
  393. #dashboard_chartContent .chart-up .right{
  394. margin:10px 20px 0 0;
  395. float:right;
  396. line-height:25px;
  397. }
  398. #dashboard_chartContent .chart-up .right span.time{
  399. margin-left:12px;
  400. color:#344c67;
  401. cursor:pointer;
  402. }
  403. #dashboard_chartContent .chart-up .right span.time:nth-child(2){
  404. color:#36aeea;
  405. }
  406. #dashboard_chartContent .chart-up .right #right_radio span{
  407. margin-left:12px;
  408. }
  409. #dashboard_chartContent .chart-up .right #right_radio input[type='radio']{
  410. margin-top:-4px;
  411. }
  412. #dashboard_chartContent .chart-down{
  413. position:relative;
  414. border-bottom:1px solid #d5dee8;
  415. border-left:1px solid #d5dee8;
  416. border-right:1px solid #d5dee8;
  417. border-top:none;
  418. padding-top:20px;
  419. width:99.9%;
  420. }
  421. /*瓒嬪娍鍥撅細GM*/
  422. #dashboard_chartContent .chart-down-left{
  423. margin-left:20px;
  424. margin-bottom:10px;
  425. }
  426. /*娑堣垂 (鍏�*/
  427. #dashboard_chartContent .chart-down-right{
  428. position:absolute;
  429. top:20px;
  430. right:20px;
  431. }
  432. /* 浠ヤ笅鏄〃鏍肩殑璁剧疆 */
  433. #sheetContent{
  434. display:none;
  435. border-top:1px solid #d5dee8;
  436. border-bottom:1px solid #d5dee8;
  437. border-left:1px solid #d5dee8;
  438. border-right:1px solid #d5dee8;
  439. padding-bottom:70px;
  440. }
  441. #dashboard_table{
  442. width:97%;
  443. margin-left:20px;
  444. }
  445. #content_choose{
  446. width:100%;
  447. height:35px;
  448. line-height:35px;
  449. margin:10px 0;
  450. }
  451. #content_choose ul,#content_choose span#dateChoose_span,#dashboard_top_advertiser ul,#dashboard_chartContent .chart-up .pull-down ul{
  452. float:left;
  453. }
  454. #content_choose ul{
  455. margin-right:20px;
  456. z-index:9999;
  457. }
  458. #content_choose ul .select_box, #dashboard_top_advertiser ul .select_box,#dashboard_chartContent .chart-up .pull-down ul .select_box{
  459. width:150px;
  460. height:35px;
  461. background:#F3F3F3 url(../images/triangle.png) no-repeat 130px;
  462. border:none;
  463. border-radius:5px!important;
  464. cursor: pointer;
  465. }
  466. #dashboard_top_advertiser #left ul .select_box span{
  467. margin-left:0px;
  468. display:block;
  469. line-height:35px;
  470. height:35px;
  471. overflow:hidden;
  472. font-size:12px;
  473. }
  474. #content_choose ul .select_box span,#dashboard_top_advertiser #right ul .select_box span,#dashboard_chartContent .chart-up .pull-down ul .select_box span{
  475. display:block;
  476. line-height:35px;
  477. height:35px;
  478. overflow:hidden;
  479. margin-left:20px;
  480. font-size:12px;
  481. }
  482. #content_choose ul .son_ul, #dashboard_top_advertiser ul .son_ul,#dashboard_chartContent .chart-up .pull-down ul .son_ul{
  483. width:150px;
  484. color:white;
  485. background-color:#151E2B!important;
  486. border-radius:5px!important;
  487. position: absolute;
  488. z-index:9;
  489. }
  490. #content_choose ul .son_ul li, #dashboard_top_advertiser ul .son_ul li,#dashboard_chartContent .chart-up .pull-down ul .son_ul li{
  491. padding-left:20px;
  492. height:35px;
  493. line-height:35px;
  494. border-radius:5px!important;
  495. font-size:12px;
  496. }
  497. #content_choose ul .son_ul li:hover, #dashboard_top_advertiser ul .son_ul li:hover,#dashboard_chartContent .chart-up .pull-down ul .son_ul li:hover{
  498. background-color:#26303A!important;
  499. }
  500. #content_choose span#dateChoose_span{
  501. margin:0 5px 0 -5px;
  502. }
  503. #content_choose span#dateChoose_span a{
  504. margin:5px;
  505. cursor: pointer;
  506. color:#36aeea;
  507. }
  508. #content_choose span#dateChoose_span a.dateChange{
  509. color:#344c67;
  510. }
  511. span#calendar_span i{
  512. position: absolute;
  513. margin-left:5px;
  514. }
  515. span#calendar_span input[type="text"]{
  516. padding-left:20px;
  517. font-size: 12px;
  518. margin-top: 6px;
  519. padding: 0 0 0 25px;
  520. width:165px;
  521. }
  522. #btn_formSubmit{
  523. font-size:12px;
  524. background:#36aeea none repeat scroll 0 0;
  525. border-radius: 5px;
  526. border:1px solid ;
  527. color: #fff;
  528. cursor: pointer;
  529. height: 22px;
  530. line-height: 22px;
  531. margin: 6px 0 0 10px;
  532. position: absolute;
  533. width:90px;
  534. }
  535. #content_dataFrame{
  536. height:150px;
  537. }
  538. #content_dataFrame .dataFrame_style,#content_dataFrame .dataFrame_last_style{
  539. float:left;
  540. width:19.2%;
  541. height:150px;
  542. color: #4c637b;
  543. font-size: 17px;
  544. cursor: pointer;
  545. border:1px solid #d5dee8;
  546. border-radius:5px;
  547. }
  548. #content_dataFrame .dataFrame_change{
  549. color: #ffffff;
  550. background-color:#36aeea;
  551. }
  552. #content_dataFrame .dataFrame_style{
  553. margin-right:10px;
  554. }
  555. #content_dataFrame .dataFrame_name{
  556. height:46px;
  557. line-height:46px;
  558. border-bottom:1px solid #d5dee8;
  559. padding-left:20px;
  560. }
  561. #content_dataFrame .dataFrame_data{
  562. height:103px;
  563. line-height:103px;
  564. text-align: center;
  565. font-size: 23px;
  566. font-weight:bold;
  567. }
  568. #chartDivs{
  569. margin-top:20px;
  570. width: 99.8%;
  571. z-index:9999;
  572. border:1px solid #d4d9df;
  573. overflow:visible;
  574. height:auto;
  575. }
  576. #chartDivs div.linechart{
  577. min-width: 84%;
  578. height: 325px;
  579. margin: 0 auto;
  580. }
  581. #hourrpt {
  582. height: 0;
  583. overflow: hidden;
  584. width: 90%;
  585. }
  586. table.tableFig{
  587. margin-top:20px;
  588. width:100%;
  589. }
  590. table.tableFig,table.tableFig th,table.tableFig td{
  591. border:thin solid #b9c5d9;
  592. }
  593. table.tableFig th{
  594. height:80px;
  595. border:none;
  596. background-color: #F2F6FA;
  597. }
  598. table.tableFig td{
  599. height:60px;
  600. border:none;
  601. border-top:thin solid #b9c5d9;
  602. }
  603. table.tableFig td.tbodyTd{
  604. text-align: center;
  605. }
  606. table.tableFig tr:hover{
  607. background-color: #F2F6FA;
  608. }
  609. #exportReport{
  610. margin-top:20px;
  611. }
  612. #exportReport .btn_export{
  613. display:block;
  614. border-radius:5px 5px 5px 5px;
  615. border:none;
  616. line-height:34px;
  617. width:170px;
  618. height:34px;
  619. color:white;
  620. background:#68ba31;
  621. text-align:center;
  622. cursor: pointer;
  623. text-decoration: none;
  624. }
  625. #exportReport .btn_export:hover{
  626. background:#4c637b;
  627. text-decoration: none;
  628. color:white;
  629. }
  630. #pageDiv{
  631. float:right;
  632. margin-top: -55px;
  633. }
  634. #dashboard_pageDiv{
  635. float:right;
  636. margin-right: 20px;
  637. }
  638. #pageDiv li.active a,#dashboard_pageDiv li.active a{
  639. color:#ffffff;
  640. background-color:#0170C9!important;
  641. }