lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | /* Reset the container */ |
| 2 | .container { |
| 3 | width: 970px !important; |
| 4 | max-width: none !important; |
| 5 | } |
| 6 | |
| 7 | .container .navbar-header, |
| 8 | .container .navbar-collapse { |
| 9 | margin-right: 0; |
| 10 | margin-left: 0; |
| 11 | } |
| 12 | |
| 13 | /* Always float the navbar header */ |
| 14 | .navbar-header { |
| 15 | float: left; |
| 16 | } |
| 17 | |
| 18 | /* Undo the collapsing navbar */ |
| 19 | .navbar-collapse { |
| 20 | display: block !important; |
| 21 | height: auto !important; |
| 22 | padding-bottom: 0; |
| 23 | overflow: visible !important; |
| 24 | } |
| 25 | |
| 26 | .navbar-toggle { |
| 27 | display: none; |
| 28 | } |
| 29 | .navbar-collapse { |
| 30 | border-top: 0; |
| 31 | } |
| 32 | |
| 33 | .navbar-brand { |
| 34 | margin-left: -15px; |
| 35 | } |
| 36 | |
| 37 | /* Always apply the floated nav */ |
| 38 | .navbar-nav { |
| 39 | float: left; |
| 40 | margin: 0; |
| 41 | } |
| 42 | .navbar-nav > li { |
| 43 | float: left; |
| 44 | } |
| 45 | .navbar-nav > li > a { |
| 46 | padding: 15px; |
| 47 | } |
| 48 | |
| 49 | /* Redeclare since we override the float above */ |
| 50 | .navbar-nav.navbar-right { |
| 51 | float: right; |
| 52 | } |
| 53 | |
| 54 | /* Undo custom dropdowns */ |
| 55 | .navbar .navbar-nav .open .dropdown-menu { |
| 56 | position: absolute; |
| 57 | float: left; |
| 58 | background-color: #fff; |
| 59 | border: 1px solid #ccc; |
| 60 | border: 1px solid rgba(0, 0, 0, .15); |
| 61 | border-width: 0 1px 1px; |
| 62 | border-radius: 0 0 4px 4px; |
| 63 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); |
| 64 | box-shadow: 0 6px 12px rgba(0, 0, 0, .175); |
| 65 | } |
| 66 | .navbar-default .navbar-nav .open .dropdown-menu > li > a { |
| 67 | color: #333; |
| 68 | } |
| 69 | .navbar .navbar-nav .open .dropdown-menu > li > a:hover, |
| 70 | .navbar .navbar-nav .open .dropdown-menu > li > a:focus, |
| 71 | .navbar .navbar-nav .open .dropdown-menu > .active > a, |
| 72 | .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, |
| 73 | .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { |
| 74 | color: #fff !important; |
| 75 | background-color: #008AD7 !important; |
| 76 | } |
| 77 | .navbar .navbar-nav .open .dropdown-menu > .disabled > a, |
| 78 | .navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover, |
| 79 | .navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus { |
| 80 | color: #999 !important; |
| 81 | background-color: transparent !important; |
| 82 | } |
| 83 | |
| 84 | body { |
| 85 | min-width: 970px; |
| 86 | padding-bottom: 30px; |
| 87 | } |
| 88 | |
| 89 | .lead { |
| 90 | font-size: 16px; |
| 91 | } |
| 92 | |
| 93 | .page-header { |
| 94 | margin-bottom: 30px; |
| 95 | } |
| 96 | .page-header .lead { |
| 97 | margin-bottom: 10px; |
| 98 | } |
| 99 | h1, .h1 { |
| 100 | font-size: 20px; |
| 101 | } |
| 102 | h2, .h2 { |
| 103 | font-size: 18px; |
| 104 | } |
| 105 | h3, .h3 { |
| 106 | font-size: 18px; |
| 107 | } |
| 108 | label{ |
| 109 | font-weight: normal; |
| 110 | } |
| 111 | h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{ |
| 112 | font-weight: bold; |
| 113 | } |
| 114 | |
| 115 | .label-primary { |
| 116 | background-color: #018AD8; |
| 117 | } |
| 118 | |
| 119 | .arrow-down { |
| 120 | bottom:0; |
| 121 | border-width: 8px 4px 0; |
| 122 | width: 0; |
| 123 | height: 0; |
| 124 | border-color: #018AD8 transparent transparent; |
| 125 | border-style: solid; |
| 126 | } |
| 127 | |
| 128 | .absolute-center { |
| 129 | position: absolute; |
| 130 | left: 49%; |
| 131 | } |
| 132 | |
| 133 | .info-title.label { |
| 134 | padding: 0.3em 0.7em 0.3em; |
| 135 | } |
| 136 | |
| 137 | .margin-top-10 {margin-top: 10px;} |
| 138 | .margin-top-15 {margin-top: 15px;} |
| 139 | .margin-top-20 {margin-top: 20px;} |
| 140 | .margin-top-50 {margin-top: 50px;} |
| 141 | .margin-top-80 {margin-top: 80px;} |
| 142 | .margin-top-160 {margin-top: 160px;} |
| 143 | |
| 144 | .margin-bottom-10{margin-bottom: 10px;} |
| 145 | .margin-bottom-20{margin-bottom: 20px;} |
| 146 | .margin-bottom-50{margin-bottom: 50px;} |
| 147 | |
| 148 | .margin-left-10{margin-left: 10px;} |
| 149 | .margin-left-15{margin-left: 15px;} |
| 150 | .margin-left-3em{margin-left: 3em;} |
| 151 | |
| 152 | .margin-right-20{margin-right: 20px;} |
| 153 | |
| 154 | .padding-top-10{padding-top: 10px;} |
| 155 | |
| 156 | .padding-right-10{padding-right: 10px;} |
| 157 | .padding-right-15{padding-right: 15px;} |
| 158 | .padding-right-90 { |
| 159 | padding-right: 90px; |
| 160 | } |
| 161 | |
| 162 | .line-height-20{line-height: 20px;} |
| 163 | .line-height-30{line-height: 30px;} |
| 164 | .line-height-40{line-height: 40px;} |
| 165 | .line-height-60{line-height: 60px;} |
| 166 | |
| 167 | .width-60{width: 60px;} |
| 168 | |
| 169 | .font-weight-bold{ |
| 170 | font-weight: bold; |
| 171 | } |
| 172 | |
| 173 | .smsUnreadCount { |
| 174 | width: 30px; |
| 175 | height: 20px; |
| 176 | line-height: 20px; |
| 177 | padding: 2px; |
| 178 | top: -13px; |
| 179 | left: 20px; |
| 180 | position: absolute; |
| 181 | text-align: center; |
| 182 | z-index: 10; |
| 183 | background: url("../pic/png_new_sms_bg.png") no-repeat scroll 0 -5px transparent; |
| 184 | color: white; |
| 185 | } |
| 186 | |
| 187 | .tooltip { |
| 188 | width: auto; |
| 189 | min-width: 5px; |
| 190 | position: absolute; |
| 191 | padding: 6px; |
| 192 | display: none; |
| 193 | color: #fff; |
| 194 | background-color: #4B4B4B; |
| 195 | border-radius: 4px; |
| 196 | -moz-border-radius: 4px; |
| 197 | -webkit-border-radius: 4px; |
| 198 | box-shadow: 0 3px 5px #999; |
| 199 | -moz-box-shadow: 0 3px 5px #999; |
| 200 | -webkit-box-shadow: 0 3px 5px #999; |
| 201 | margin-top: 5px; |
| 202 | *+margin-top:0px; |
| 203 | } |
| 204 | |
| 205 | #statusBar span{ |
| 206 | margin-right: 10px; |
| 207 | } |
| 208 | |
| 209 | #statusBar span.smsUnreadCount{ |
| 210 | margin-left: 0; |
| 211 | } |
| 212 | |
| 213 | #statusBar .statusItem{ |
| 214 | color: #696E72; |
| 215 | font-weight: bold; |
| 216 | line-height: 35px; |
| 217 | vertical-align: middle; |
| 218 | } |
| 219 | |
| 220 | #statusBar #wifi_status{ |
| 221 | width: 36px; |
| 222 | display: inline-block; |
| 223 | } |
| 224 | |
| 225 | #statusBar #wifi_status i{ |
| 226 | width: 36px; |
| 227 | height: 24px; |
| 228 | line-height: 24px; |
| 229 | display: inline-block; |
| 230 | } |
| 231 | |
| 232 | #statusBar .icon_connection{ |
| 233 | width: 50px; |
| 234 | display: inline-block; |
| 235 | } |
| 236 | |
| 237 | #statusBar .wifi_connected{ |
| 238 | width: 42px; |
| 239 | height: 30px; |
| 240 | background:url("../pic/pic_wifi_connect.png") no-repeat scroll center 2px transparent; |
| 241 | } |
| 242 | |
| 243 | #statusBar .rj45_connected{ |
| 244 | width: 42px; |
| 245 | height: 30px; |
| 246 | background:url("../pic/pic_rj45_connect.png") no-repeat scroll center 2px transparent; |
| 247 | } |
| 248 | |
| 249 | #statusBar .connecting{ |
| 250 | width: 36px; |
| 251 | height: 30px; |
| 252 | background:url("../pic/pic_connecting.gif") no-repeat scroll center 3px transparent; |
| 253 | } |
| 254 | |
| 255 | #statusBar .disconnect{ |
| 256 | width: 42px; |
| 257 | height: 30px; |
| 258 | background:url("../pic/pic_disconnect.png") no-repeat scroll center 3px transparent; |
| 259 | } |
| 260 | |
| 261 | #statusBar .connectionNone{ |
| 262 | height: 30px; |
| 263 | background:url("../pic/pic_connection.png") no-repeat scroll center 3px transparent; |
| 264 | } |
| 265 | |
| 266 | #statusBar .connectionUp{ |
| 267 | height: 30px; |
| 268 | background:url("../pic/pic_connection.png") no-repeat scroll center -27px transparent; |
| 269 | } |
| 270 | |
| 271 | #statusBar .connectionDown{ |
| 272 | height: 30px; |
| 273 | background:url("../pic/pic_connection.png") no-repeat scroll center -57px transparent; |
| 274 | } |
| 275 | |
| 276 | #statusBar .connectionBoth{ |
| 277 | height: 30px; |
| 278 | background:url("../pic/pic_connection.png") no-repeat scroll center -87px transparent; |
| 279 | } |
| 280 | |
| 281 | #statusBar .signal{ |
| 282 | width: 40px; |
| 283 | height: 30px; |
| 284 | display: inline-block; |
| 285 | } |
| 286 | |
| 287 | #statusBar .signal_none{ |
| 288 | width: 30px; |
| 289 | height: 30px; |
| 290 | background:url("../pic/res_signal.png") no-repeat scroll 6px -268px transparent; |
| 291 | } |
| 292 | |
| 293 | #statusBar .signal0{ |
| 294 | height: 30px; |
| 295 | background:url("../pic/res_signal.png") no-repeat scroll center -3px transparent; |
| 296 | } |
| 297 | |
| 298 | #statusBar .signal1{ |
| 299 | height: 30px; |
| 300 | background:url("../pic/res_signal.png") no-repeat scroll center -45px transparent; |
| 301 | } |
| 302 | |
| 303 | #statusBar .signal2{ |
| 304 | height: 30px; |
| 305 | background:url("../pic/res_signal.png") no-repeat scroll center -92px transparent; |
| 306 | } |
| 307 | |
| 308 | #statusBar .signal3{ |
| 309 | height: 30px; |
| 310 | background:url("../pic/res_signal.png") no-repeat scroll center -140px transparent; |
| 311 | } |
| 312 | |
| 313 | #statusBar .signal4{ |
| 314 | height: 30px; |
| 315 | background:url("../pic/res_signal.png") no-repeat scroll center -185px transparent; |
| 316 | } |
| 317 | |
| 318 | #statusBar .signal5{ |
| 319 | height: 30px; |
| 320 | background:url("../pic/res_signal.png") no-repeat scroll center -227px transparent; |
| 321 | } |
| 322 | |
| 323 | #statusBar .wifi_status0{ |
| 324 | background: url("../pic/wlan.png") no-repeat scroll 0 4px transparent; |
| 325 | } |
| 326 | |
| 327 | #statusBar .wifi_status1{ |
| 328 | background: url("../pic/wlan.png") no-repeat scroll 0 -20px transparent; |
| 329 | } |
| 330 | |
| 331 | #statusBar .wifi_status2{ |
| 332 | background: url("../pic/wlan.png") no-repeat scroll 0 -45px transparent; |
| 333 | } |
| 334 | |
| 335 | #statusBar .wifi_status3{ |
| 336 | background: url("../pic/wlan.png") no-repeat scroll 0 -70px transparent; |
| 337 | } |
| 338 | |
| 339 | #statusBar .wifi_status4{ |
| 340 | background: url("../pic/wlan.png") no-repeat scroll 0 -95px transparent; |
| 341 | } |
| 342 | |
| 343 | #statusBar .wifi_status5{ |
| 344 | background: url("../pic/wlan.png") no-repeat scroll 0 -120px transparent; |
| 345 | } |
| 346 | |
| 347 | #statusBar .wifi_status6{ |
| 348 | background: url("../pic/wlan.png") no-repeat scroll 0 -145px transparent; |
| 349 | } |
| 350 | |
| 351 | #statusBar .wifi_status7{ |
| 352 | background: url("../pic/wlan.png") no-repeat scroll 0 -170px transparent; |
| 353 | } |
| 354 | |
| 355 | #statusBar .wifi_status8{ |
| 356 | background: url("../pic/wlan.png") no-repeat scroll 0 -195px transparent; |
| 357 | } |
| 358 | |
| 359 | #statusBar .wifi_status9{ |
| 360 | background: url("../pic/wlan.png") no-repeat scroll 0 -220px transparent; |
| 361 | } |
| 362 | |
| 363 | #statusBar .wifi_status10{ |
| 364 | background: url("../pic/wlan.png") no-repeat scroll -40px 4px transparent; |
| 365 | } |
| 366 | |
| 367 | #statusBar .wifi_status11{ |
| 368 | background: url("../pic/wlan.png") no-repeat scroll -40px -20px transparent; |
| 369 | } |
| 370 | |
| 371 | #statusBar .wifi_status12{ |
| 372 | background: url("../pic/wlan.png") no-repeat scroll -40px -45px transparent; |
| 373 | } |
| 374 | |
| 375 | #statusBar .wifi_status13{ |
| 376 | background: url("../pic/wlan.png") no-repeat scroll -40px -70px transparent; |
| 377 | } |
| 378 | |
| 379 | #statusBar .wifi_status14{ |
| 380 | background: url("../pic/wlan.png") no-repeat scroll -40px -95px transparent; |
| 381 | } |
| 382 | |
| 383 | #statusBar .wifi_status15{ |
| 384 | background: url("../pic/wlan.png") no-repeat scroll -40px -120px transparent; |
| 385 | } |
| 386 | |
| 387 | #statusBar .wifi_status16{ |
| 388 | background: url("../pic/wlan.png") no-repeat scroll -40px -145px transparent; |
| 389 | } |
| 390 | |
| 391 | #statusBar .wifi_status17{ |
| 392 | background: url("../pic/wlan.png") no-repeat scroll -40px -170px transparent; |
| 393 | } |
| 394 | |
| 395 | #statusBar .wifi_status18{ |
| 396 | background: url("../pic/wlan.png") no-repeat scroll -40px -195px transparent; |
| 397 | } |
| 398 | |
| 399 | #statusBar .wifi_status19{ |
| 400 | background: url("../pic/wlan.png") no-repeat scroll -40px -220px transparent; |
| 401 | } |
| 402 | |
| 403 | #statusBar .wifi_status20{ |
| 404 | background: url("../pic/wlan.png") no-repeat scroll -78px 5px transparent; |
| 405 | } |
| 406 | |
| 407 | #statusBar .wifi_status21{ |
| 408 | background: url("../pic/wlan.png") no-repeat scroll -78px -20px transparent; |
| 409 | } |
| 410 | |
| 411 | #statusBar .wifi_status22{ |
| 412 | background: url("../pic/wlan.png") no-repeat scroll -78px -45px transparent; |
| 413 | } |
| 414 | |
| 415 | #statusBar .wifi_status23{ |
| 416 | background: url("../pic/wlan.png") no-repeat scroll -78px -70px transparent; |
| 417 | } |
| 418 | |
| 419 | #statusBar .wifi_status24{ |
| 420 | background: url("../pic/wlan.png") no-repeat scroll -78px -95px transparent; |
| 421 | } |
| 422 | |
| 423 | #statusBar .wifi_status25{ |
| 424 | background: url("../pic/wlan.png") no-repeat scroll -78px -120px transparent; |
| 425 | } |
| 426 | |
| 427 | #statusBar .wifi_status26{ |
| 428 | background: url("../pic/wlan.png") no-repeat scroll -78px -145px transparent; |
| 429 | } |
| 430 | |
| 431 | #statusBar .wifi_status27{ |
| 432 | background: url("../pic/wlan.png") no-repeat scroll -78px -170px transparent; |
| 433 | } |
| 434 | |
| 435 | #statusBar .wifi_status28{ |
| 436 | background: url("../pic/wlan.png") no-repeat scroll -78px -195px transparent; |
| 437 | } |
| 438 | |
| 439 | #statusBar .wifi_status29{ |
| 440 | background: url("../pic/wlan.png") no-repeat scroll -78px -220px transparent; |
| 441 | } |
| 442 | |
| 443 | #statusBar .wifi_status30{ |
| 444 | background: url("../pic/wlan.png") no-repeat scroll -116px 5px transparent; |
| 445 | } |
| 446 | |
| 447 | #statusBar .wifi_status31{ |
| 448 | background: url("../pic/wlan.png") no-repeat scroll -116px -20px transparent; |
| 449 | } |
| 450 | |
| 451 | #statusBar .wifi_status32{ |
| 452 | background: url("../pic/wlan.png") no-repeat scroll -116px -45px transparent; |
| 453 | } |
| 454 | |
| 455 | #statusBar .wifi_status_off{ |
| 456 | background:url('../pic/wlan_off.png') no-repeat; |
| 457 | } |
| 458 | |
| 459 | /* Overlay */ |
| 460 | #loading { |
| 461 | display: none; |
| 462 | } |
| 463 | |
| 464 | #result-overlay { |
| 465 | display: none; |
| 466 | } |
| 467 | |
| 468 | #result_wording h2{ |
| 469 | font-size: 20px; |
| 470 | margin-top: 5px; |
| 471 | margin-bottom: 8px; |
| 472 | } |
| 473 | |
| 474 | #result-overlay #result-image { |
| 475 | height: 75px; |
| 476 | margin: 0 auto; |
| 477 | width: 75px; |
| 478 | } |
| 479 | |
| 480 | #result-overlay .overlay-success { |
| 481 | background: url("../pic/res_succ.png") no-repeat scroll 0 0 transparent; |
| 482 | } |
| 483 | |
| 484 | #result-overlay .overlay-error { |
| 485 | background: url("../pic/res_failure.png") no-repeat scroll 0 0 transparent; |
| 486 | } |
| 487 | |
| 488 | #loading_container{padding-bottom: 15px;} |
| 489 | |
| 490 | #loading_container a { |
| 491 | outline: none; |
| 492 | } |
| 493 | |
| 494 | #progress { |
| 495 | display: none; |
| 496 | } |
| 497 | |
| 498 | |
| 499 | .ko-grid-search{ |
| 500 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); |
| 501 | margin-top: 3px; |
| 502 | margin-right: 15px; |
| 503 | width: 155px; |
| 504 | height: 30px; |
| 505 | line-height: 30px; |
| 506 | padding-right: 5px; |
| 507 | display: inline-block; |
| 508 | border: 1px solid #a1a1a1 ; |
| 509 | border-radius: 5px; |
| 510 | -moz-border-radius: 5px; |
| 511 | -webkit-border-radius: 5px; |
| 512 | -khtml-border-radius: 5px; |
| 513 | -ms-border-radius: 5px; |
| 514 | -o-border-radius: 5px; |
| 515 | } |
| 516 | |
| 517 | .ko-grid-search input{ |
| 518 | border: 0; |
| 519 | -webkit-box-shadow: none; |
| 520 | box-shadow: none; |
| 521 | border: none; |
| 522 | height: 20px; |
| 523 | line-height: 20px; |
| 524 | padding: 5px 0; |
| 525 | background: none; |
| 526 | outline: none; |
| 527 | display: inline; |
| 528 | } |
| 529 | |
| 530 | .ko-grid-search input.focusIn[type="text"]{ |
| 531 | width: 100px; |
| 532 | padding: 2px 0; |
| 533 | margin: 0; |
| 534 | color: #767676; |
| 535 | background: none; |
| 536 | border: none; |
| 537 | box-shadow: none; |
| 538 | } |
| 539 | |
| 540 | #frmPhoneBook #ko_grid_search_txt{ |
| 541 | width: 100px; |
| 542 | padding: 2px 0; |
| 543 | color: #767676; |
| 544 | font-style:italic; |
| 545 | } |
| 546 | |
| 547 | #smsListForm #searchInput{ |
| 548 | width: 100px; |
| 549 | padding: 2px 0; |
| 550 | color: #767676; |
| 551 | font-style:italic; |
| 552 | } |
| 553 | |
| 554 | #ko_grid_search_txt::-ms-clear { |
| 555 | display: none; |
| 556 | } |
| 557 | |
| 558 | .ko-grid-search input.focusIn[type="text"], input.focusIn[type="password"] ,textarea:focus{ |
| 559 | border-color:none; |
| 560 | outline: 0; |
| 561 | /* IE6-9 */ |
| 562 | -webkit-box-shadow:none; |
| 563 | -moz-box-shadow: none; |
| 564 | box-shadow: none; |
| 565 | } |
| 566 | |
| 567 | .checkbox { |
| 568 | width: 16px; |
| 569 | height: 16px; |
| 570 | margin-top: 0; |
| 571 | margin-bottom: 0; |
| 572 | cursor: pointer; |
| 573 | vertical-align: middle; |
| 574 | display: inline-block; |
| 575 | background:url("../pic/tickbox.png") no-repeat; |
| 576 | } |
| 577 | |
| 578 | .checkbox:hover { |
| 579 | display: inline-block; |
| 580 | } |
| 581 | |
| 582 | .checkbox input { |
| 583 | display: none; |
| 584 | } |
| 585 | |
| 586 | .checkbox_selected { |
| 587 | background:url("../pic/tickbox_in.png") no-repeat; |
| 588 | } |
| 589 | |
| 590 | p.checkbox.disable{ |
| 591 | background:url("../pic/tickbox_disable.png") no-repeat; |
| 592 | } |
| 593 | |
| 594 | p.checkbox.checked_disable{ |
| 595 | background:url("../pic/tickbox_in_disable.png") no-repeat; |
| 596 | } |
| 597 | |
| 598 | .header-bottom { |
| 599 | padding-bottom: 10px; |
| 600 | border-bottom: 1px solid #d3d3d3; |
| 601 | } |
| 602 | |
| 603 | .popover_title{ |
| 604 | font-size: 14px; |
| 605 | font-weight: normal; |
| 606 | line-height: 18px; |
| 607 | margin: 0; |
| 608 | padding: 8px 14px; |
| 609 | border-bottom: 1px solid #ebebeb; |
| 610 | border-radius: 5px 5px 0 0; |
| 611 | background-color: #f7f7f7; |
| 612 | } |
| 613 | |
| 614 | .popover_content{ |
| 615 | margin-top: 1em; |
| 616 | padding: 0 8px 8px 8px; |
| 617 | } |
| 618 | |
| 619 | .popover_row label.error{ |
| 620 | width: 100%; |
| 621 | text-align: left; |
| 622 | } |
| 623 | |
| 624 | .form-title{ |
| 625 | margin-bottom: 20px; |
| 626 | border-bottom: 1px solid #eee; |
| 627 | } |
| 628 | |
| 629 | #footer{ |
| 630 | /*margin-top: 40px; |
| 631 | background: #eeeeee;*/ |
| 632 | height: 60px; |
| 633 | line-height: 60px; |
| 634 | text-align: center; |
| 635 | } |
| 636 | |
| 637 | #smsChatRoom { |
| 638 | width: 100%; |
| 639 | font-size: 12px; |
| 640 | padding-left: 0; |
| 641 | float: left; |
| 642 | display: none; |
| 643 | } |
| 644 | |
| 645 | #smsChatRoom #chosenUserSelect{ |
| 646 | width: 690px; |
| 647 | } |
| 648 | |
| 649 | #chosenUser { |
| 650 | padding: 10px; |
| 651 | background-color: #D4DAE2; |
| 652 | box-shadow: 0 -3px 8px #ddd; |
| 653 | } |
| 654 | |
| 655 | #chosenUser1{ |
| 656 | margin-top: 0; |
| 657 | } |
| 658 | |
| 659 | #chatlist { |
| 660 | padding-left: 10px; |
| 661 | padding-top: 10px; |
| 662 | background-color: white; |
| 663 | position: relative; |
| 664 | min-height: 240px; |
| 665 | box-shadow: 0 -3px 8px #D4DAE2; |
| 666 | *display: inline; |
| 667 | } |
| 668 | |
| 669 | #chatlist a{ |
| 670 | text-decoration: underline; |
| 671 | color: blue; |
| 672 | } |
| 673 | |
| 674 | #chatpanel { |
| 675 | height: 250px; |
| 676 | border: 1px solid #e1e1e1; |
| 677 | overflow-x: hidden; |
| 678 | overflow-y: hidden; |
| 679 | background-color: white; |
| 680 | } |
| 681 | |
| 682 | #chatpanel .clear-container { |
| 683 | width: 100%; |
| 684 | height: 250px; |
| 685 | border: 1px solid #e1e1e1; |
| 686 | border-top: none; |
| 687 | border-left: none; |
| 688 | position: relative; |
| 689 | overflow-x: hidden; |
| 690 | overflow-y: auto; |
| 691 | } |
| 692 | |
| 693 | #inputpanel { |
| 694 | height: 142px; |
| 695 | padding: 10px 0; |
| 696 | position: relative; |
| 697 | } |
| 698 | |
| 699 | .chatform { |
| 700 | margin: 0; |
| 701 | height: 120px; |
| 702 | } |
| 703 | |
| 704 | textarea { |
| 705 | resize: none; |
| 706 | } |
| 707 | |
| 708 | .chatform .chattextinput textarea { |
| 709 | height: 110px; |
| 710 | line-height:normal; |
| 711 | font-size: 14px; |
| 712 | color: #696e72; |
| 713 | overflow: auto; |
| 714 | } |
| 715 | |
| 716 | #sendSmsErrorLi{ |
| 717 | color: #CC0000; |
| 718 | } |
| 719 | |
| 720 | .chatfun { |
| 721 | padding-top: 8px; |
| 722 | } |
| 723 | |
| 724 | .chatfun ul.ext { |
| 725 | float: left; |
| 726 | } |
| 727 | |
| 728 | .chatfun ul.ext li { |
| 729 | float: left; |
| 730 | padding-left: 10px; |
| 731 | margin-right: 20px; |
| 732 | } |
| 733 | |
| 734 | .chatfun ul.btn { |
| 735 | float: right; |
| 736 | } |
| 737 | |
| 738 | .chatfun ul.btn li { |
| 739 | float: left; |
| 740 | margin-right: 10px; |
| 741 | } |
| 742 | |
| 743 | .chatfun ul.btn li button { |
| 744 | padding: 1px 0; |
| 745 | } |
| 746 | |
| 747 | .grid-talk .main-wrap { |
| 748 | margin-right: 36px; |
| 749 | _margin-right: 18px; |
| 750 | } |
| 751 | |
| 752 | .grid-talkf .main-wrap { |
| 753 | margin-left: 36px; |
| 754 | _margin-left: 18px; |
| 755 | } |
| 756 | |
| 757 | .col-main { |
| 758 | float: left; |
| 759 | width: 100%; |
| 760 | min-height: 1px; |
| 761 | } |
| 762 | |
| 763 | |
| 764 | .progress-content{ |
| 765 | text-align: center |
| 766 | } |
| 767 | |
| 768 | .progress-bar-container{ |
| 769 | width:400px; height:32px; |
| 770 | margin:0 auto; |
| 771 | padding:1px; |
| 772 | border:1px #CCC solid; |
| 773 | text-align: left; |
| 774 | position:relative; |
| 775 | } |
| 776 | |
| 777 | .progress-bar{ |
| 778 | width:200px; |
| 779 | height:28px; |
| 780 | background:#429aff; |
| 781 | } |
| 782 | |
| 783 | .progress-bar-value{ |
| 784 | top:7px; |
| 785 | width:400px; |
| 786 | position:absolute; |
| 787 | text-align:center; |
| 788 | overflow:hidden; |
| 789 | font-weight:bold; |
| 790 | } |
| 791 | |
| 792 | .progress-prompt{ |
| 793 | font-size:small; |
| 794 | font-weight:bold; |
| 795 | padding-bottom: 15px; |
| 796 | } |
| 797 | |
| 798 | #simplemodal-overlay { |
| 799 | cursor: wait; |
| 800 | background-color: #000; |
| 801 | } |
| 802 | |
| 803 | #confirm,#popupSettingWindow{ |
| 804 | display: none; |
| 805 | } |
| 806 | |
| 807 | /* Overlay */ |
| 808 | #confirm-overlay { |
| 809 | cursor: wait; |
| 810 | background-color: #000; |
| 811 | } |
| 812 | |
| 813 | /* Container */ |
| 814 | #confirm-container { |
| 815 | width: 420px; |
| 816 | border: 2px solid #dddddd; |
| 817 | border-radius: 6px; |
| 818 | -webkit-border-radius: 6px; |
| 819 | -moz-border-radius: 6px; |
| 820 | text-align: left; |
| 821 | background: none repeat scroll 0 0 #fff; |
| 822 | } |
| 823 | |
| 824 | #confirm-container .header { |
| 825 | width: 100%; |
| 826 | height: 30px; |
| 827 | line-height: 30px; |
| 828 | color: #000; |
| 829 | font-weight: bold; |
| 830 | background-color: #eaeaea; |
| 831 | border-bottom: 1px solid #cbcbcb; |
| 832 | } |
| 833 | |
| 834 | #confirm-container .header span { |
| 835 | padding-left: 8px; |
| 836 | } |
| 837 | |
| 838 | #confirm-container .buttons { |
| 839 | padding: 10px 8px; |
| 840 | text-align: right; |
| 841 | } |
| 842 | |
| 843 | #confirm-container .message { |
| 844 | color: #000; |
| 845 | font-size: 14px; |
| 846 | } |
| 847 | |
| 848 | #confirm .message > i { |
| 849 | font-size: 0.9em; |
| 850 | } |
| 851 | |
| 852 | #confirm-message-container{ |
| 853 | margin: 10px 5px; |
| 854 | } |
| 855 | |
| 856 | #confirm .icon { |
| 857 | width: 50px; |
| 858 | margin: 0 0 0 10px; |
| 859 | vertical-align: top; |
| 860 | display: inline-block; |
| 861 | } |
| 862 | |
| 863 | #confirm .confirm-message { |
| 864 | width: 310px; |
| 865 | margin: 10px 10px 10px 0; |
| 866 | vertical-align: top; |
| 867 | display: inline-block; |
| 868 | } |
| 869 | |
| 870 | .simplemodal-wrap .form-title{ |
| 871 | font-size: 16px; |
| 872 | font-weight: bold; |
| 873 | } |
| 874 | |
| 875 | .cursorhand{ |
| 876 | cursor: pointer; |
| 877 | } |
| 878 | |
| 879 | .device-block{ |
| 880 | width: 100px; |
| 881 | margin: 0 24px 5px 0; |
| 882 | text-align: center; |
| 883 | text-decoration: none; |
| 884 | display: inline-block; |
| 885 | } |
| 886 | |
| 887 | .device-block-desc{ |
| 888 | padding-top: 100px; |
| 889 | width: 100px; |
| 890 | display: inline-block; |
| 891 | overflow: hidden; |
| 892 | vertical-align: middle; |
| 893 | text-align: center; |
| 894 | white-space: nowrap; |
| 895 | text-overflow: ellipsis; |
| 896 | background: url("../pic/mobile.png") no-repeat scroll 0 0 transparent; |
| 897 | } |
| 898 | |
| 899 | .expend-desc{ |
| 900 | padding-left: 2em; |
| 901 | } |
| 902 | |
| 903 | .arrow-right{ |
| 904 | padding-right: 30px; |
| 905 | background: url("../pic/direct-right.png") no-repeat scroll right center transparent; |
| 906 | } |
| 907 | |
| 908 | #pc_main_form .content { |
| 909 | padding-left: 2em; |
| 910 | } |
| 911 | |
| 912 | table.colorHoverTable thead tr { |
| 913 | height: 27px; |
| 914 | } |
| 915 | |
| 916 | .header-center th{ |
| 917 | text-align: center; |
| 918 | } |
| 919 | |
| 920 | #pc_time_limited_form table thead tr{ |
| 921 | background: none; |
| 922 | } |
| 923 | |
| 924 | #pc_time_limited_form table thead td{ |
| 925 | min-width: 4%; |
| 926 | } |
| 927 | |
| 928 | #pc_time_limited_form table tbody td{ |
| 929 | border: 1px solid #ccc; |
| 930 | height: 40px; |
| 931 | vertical-align: middle; |
| 932 | /*line-height: 40px;*/ |
| 933 | padding: 0; |
| 934 | border-collapse: collapse; |
| 935 | } |
| 936 | |
| 937 | #pc_time_limited_form table tbody td.active{ |
| 938 | background-color: red; |
| 939 | } |
| 940 | |
| 941 | #pc_time_limited_form table tbody td:first-child{ |
| 942 | width: 50px; |
| 943 | border-width: 0 1px 0 0; |
| 944 | } |
| 945 | |
| 946 | #pc_time_limited_form .pc_time_block{ |
| 947 | width: 20px; |
| 948 | height: 20px; |
| 949 | display: inline-block; |
| 950 | border: 1px solid #ccc; |
| 951 | } |
| 952 | |
| 953 | #pc_time_limited_form .time_td_hover{ |
| 954 | background: #eee; |
| 955 | } |
| 956 | |
| 957 | #pc_time_limited_form .forbid_time{ |
| 958 | background-color: red; |
| 959 | } |
| 960 | |
| 961 | #pc_children_group_form table td{ |
| 962 | line-height: 32px; |
| 963 | } |
| 964 | |
| 965 | .layout:after,.main-wrap:after,.col-sub:after,.col-extra:after { |
| 966 | content: '\20'; |
| 967 | display: block; |
| 968 | height: 0; |
| 969 | clear: both; |
| 970 | } |
| 971 | |
| 972 | .talk-item { |
| 973 | margin: 10px 0 5px 0; |
| 974 | } |
| 975 | |
| 976 | .talk-item .info-user { |
| 977 | width: 30px; |
| 978 | padding: 2px; |
| 979 | border: 1px solid #335A8B; |
| 980 | -webkit-border-radius: 5px; |
| 981 | -moz-border-radius: 5px; |
| 982 | border-radius: 5px; |
| 983 | background-color: #fff; |
| 984 | } |
| 985 | |
| 986 | .talk-item .info-user img { |
| 987 | width: 30px; |
| 988 | display: block; |
| 989 | } |
| 990 | |
| 991 | .talk-item .time { |
| 992 | height: 20px; |
| 993 | line-height: 20px; |
| 994 | clear: both; |
| 995 | } |
| 996 | |
| 997 | .talk-item .msg { |
| 998 | padding: 10px; |
| 999 | max-width: 560px; |
| 1000 | line-height: 180%; |
| 1001 | position: relative; |
| 1002 | -webkit-border-radius: 5px; |
| 1003 | -moz-border-radius: 5px; |
| 1004 | border-radius: 5px; |
| 1005 | word-break: break-all; |
| 1006 | word-wrap: break-word; |
| 1007 | color: #000; |
| 1008 | } |
| 1009 | |
| 1010 | .talk-item .msg s.arrow { |
| 1011 | width: 7px; |
| 1012 | height: 13px; |
| 1013 | bottom: 10px; |
| 1014 | display: block; |
| 1015 | position: absolute; |
| 1016 | background: url(../pic/a-direct.png) no-repeat; |
| 1017 | } |
| 1018 | |
| 1019 | .talk-b .msg_fail s.arrow{ |
| 1020 | bottom: 10px; |
| 1021 | display: block; |
| 1022 | width: 7px; |
| 1023 | height: 13px; |
| 1024 | left: 100%; |
| 1025 | position: absolute; |
| 1026 | background: url(../pic/c-direct.png) no-repeat; |
| 1027 | } |
| 1028 | |
| 1029 | .talk-item .msg_fail { |
| 1030 | padding: 10px; |
| 1031 | line-height: 180%; |
| 1032 | max-width: 560px; |
| 1033 | position: relative; |
| 1034 | -webkit-border-radius: 5px; |
| 1035 | -moz-border-radius: 5px; |
| 1036 | border-radius: 5px; |
| 1037 | word-break: break-all; |
| 1038 | word-wrap: break-word; |
| 1039 | color: #000; |
| 1040 | } |
| 1041 | |
| 1042 | .talk-b .msg_fail{ |
| 1043 | float: right; |
| 1044 | min-width: 70px; |
| 1045 | padding: 10px 10px 15px 10px; |
| 1046 | background: #ffdbdb; |
| 1047 | border: 1px solid #f46c6c; |
| 1048 | min-width: 350px; |
| 1049 | } |
| 1050 | |
| 1051 | .msg_fail pre{ |
| 1052 | border: medium none; |
| 1053 | line-height: 17px; |
| 1054 | margin: 0; |
| 1055 | overflow-x: auto; |
| 1056 | padding: 0; |
| 1057 | white-space: pre-wrap; |
| 1058 | word-wrap: break-word; |
| 1059 | color: #696e72; |
| 1060 | background: none repeat scroll 0 0 transparent; |
| 1061 | } |
| 1062 | |
| 1063 | #smsChatRoom .error { |
| 1064 | color: #CC0000; |
| 1065 | } |
| 1066 | |
| 1067 | .info-talk{ |
| 1068 | color: #87acd6; |
| 1069 | } |
| 1070 | |
| 1071 | .talk-a .info-talk { |
| 1072 | float: left; |
| 1073 | padding: 0 20% 10px 10px; |
| 1074 | min-width: 420px; |
| 1075 | _float: none; |
| 1076 | _padding-left: 26px; |
| 1077 | } |
| 1078 | |
| 1079 | .talk-a .msg { |
| 1080 | min-width: 350px; |
| 1081 | min-height: 20px; |
| 1082 | border: 1px solid #ccc; |
| 1083 | background: #eef2f4; |
| 1084 | } |
| 1085 | |
| 1086 | .talk-a .msg s.arrow { |
| 1087 | left: -7px; |
| 1088 | _left: -17px; |
| 1089 | } |
| 1090 | |
| 1091 | .talk-b { |
| 1092 | margin-right: 10px; |
| 1093 | _margin-right: 20px; |
| 1094 | } |
| 1095 | |
| 1096 | .talk-b .info-talk { |
| 1097 | float: right; |
| 1098 | min-width: 420px; |
| 1099 | padding: 0 10px 10px 20%; |
| 1100 | } |
| 1101 | |
| 1102 | .talk-b .msg { |
| 1103 | float: right; |
| 1104 | min-width: 350px; |
| 1105 | min-height: 20px; |
| 1106 | border: 1px solid #ADCAE3; |
| 1107 | padding: 10px 10px 10px 10px; |
| 1108 | background: #bce3f4; |
| 1109 | } |
| 1110 | |
| 1111 | .talk-c { |
| 1112 | margin-right: 20px; |
| 1113 | _margin-right: 30px; |
| 1114 | } |
| 1115 | |
| 1116 | .talk-b .info-talk { |
| 1117 | float: right; |
| 1118 | min-width: 420px; |
| 1119 | padding: 0 10px 10px 20%; |
| 1120 | } |
| 1121 | |
| 1122 | .talk-c .msg { |
| 1123 | float: right; |
| 1124 | min-width: 70px; |
| 1125 | padding: 10px 10px 15px 10px; |
| 1126 | border: 1px solid #ADCAE3; |
| 1127 | background: #bce3f4; |
| 1128 | } |
| 1129 | |
| 1130 | .talk-b .msg s.arrow { |
| 1131 | left: 100%; |
| 1132 | background: url("../pic/b-direct.png") no-repeat; |
| 1133 | } |
| 1134 | |
| 1135 | #smslist-main .smslist-btns.smsListFloatButs{ |
| 1136 | position: fixed; |
| 1137 | top: 0; |
| 1138 | width: 770px; |
| 1139 | height: 50px; |
| 1140 | padding: 6px 0 0 0; |
| 1141 | border: 1px solid #018AD8; |
| 1142 | display: block; |
| 1143 | z-index: 9999; |
| 1144 | background: #F5F9FE; |
| 1145 | background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F5F9FE), to(#018AD8) ); |
| 1146 | background: -ms-linear-gradient(top, #F5F9FE, #018AD8); |
| 1147 | background: -moz-linear-gradient(top, #F5F9FE, #018AD8); |
| 1148 | background: -o-linear-gradient(top, #F5F9FE, #018AD8); |
| 1149 | filter: progid:dximagetransform.microsoft.gradient(enabled='true', startColorstr='#FFF5F9FE', endColorstr='#FF018AD8', GradientType=0); |
| 1150 | } |
| 1151 | |
| 1152 | #popupSettingWindow .tag-popup-close{ |
| 1153 | height: 0; |
| 1154 | position: relative; |
| 1155 | z-index: 2000; |
| 1156 | } |
| 1157 | |
| 1158 | #popupSettingWindow .tag-popup-close a { |
| 1159 | float: right; |
| 1160 | display: block; |
| 1161 | top: 15px; |
| 1162 | right: 15px; |
| 1163 | width: 12px; |
| 1164 | height: 13px; |
| 1165 | font-size: 1px; |
| 1166 | background: url("../pic/select-sprite.png") no-repeat scroll right -11px transparent; |
| 1167 | position: absolute; |
| 1168 | } |
| 1169 | |
| 1170 | #innerTagPopup{ |
| 1171 | z-index: 250; |
| 1172 | width: 185px; |
| 1173 | line-height: 130%; |
| 1174 | border: 1px solid #D4DAE2; |
| 1175 | border-radius: 5px; |
| 1176 | position: absolute; |
| 1177 | background-color: #D4DAE2; |
| 1178 | box-shadow: 0 -3px 8px #DDDDDD; |
| 1179 | } |
| 1180 | |
| 1181 | #innerTagPopup label.error{ |
| 1182 | color: #CC0000; |
| 1183 | display: block; |
| 1184 | } |
| 1185 | |
| 1186 | #innerTagPopup .popup-wrapper { |
| 1187 | background: #fff; |
| 1188 | border: 2px solid #76b2de; |
| 1189 | padding: 5px; |
| 1190 | } |
| 1191 | |
| 1192 | #innerTagPopup .tag-popup-close a { |
| 1193 | float: right; |
| 1194 | display: block; |
| 1195 | width: 12px; |
| 1196 | height: 13px; |
| 1197 | font-size: 1px; |
| 1198 | background: url("../pic/select-sprite.png") no-repeat scroll right -11px transparent; |
| 1199 | } |
| 1200 | |
| 1201 | |
| 1202 | #home_control{ |
| 1203 | color: #fff; |
| 1204 | margin: 4px 0 0; |
| 1205 | } |
| 1206 | |
| 1207 | #home_control #change{ |
| 1208 | color: #ffffff; |
| 1209 | font-weight: bold; |
| 1210 | padding: 3px 15px; |
| 1211 | background-color: transparent; |
| 1212 | } |
| 1213 | |
| 1214 | #home_image{ |
| 1215 | height: 400px; |
| 1216 | color: #fff; |
| 1217 | } |
| 1218 | |
| 1219 | .label-font-normal label{ |
| 1220 | font-weight: normal; |
| 1221 | } |
| 1222 | |
| 1223 | #showDetailInfo ~ .popover{ |
| 1224 | min-width: 400px; |
| 1225 | } |
| 1226 | |
| 1227 | #showDetailInfo ~ .popover label{ |
| 1228 | font-size: 12px; |
| 1229 | line-height: 1.5em; |
| 1230 | word-wrap: break-word; |
| 1231 | } |
| 1232 | |
| 1233 | #h_qrcode { |
| 1234 | width: 115px; |
| 1235 | height: 115px; |
| 1236 | background-color: #ffffff; |
| 1237 | border: 1px solid #ffffff; |
| 1238 | } |
| 1239 | |
| 1240 | #h_wire_device { |
| 1241 | top: 38px; |
| 1242 | left: 130px; |
| 1243 | display:inline; |
| 1244 | margin-right:25px; |
| 1245 | font-size: 30px; |
| 1246 | display:inline-block; |
| 1247 | } |
| 1248 | |
| 1249 | #h_wireless_device { |
| 1250 | font-size: 30px; |
| 1251 | top: 105px; |
| 1252 | left: 60px; |
| 1253 | display:inline-block; |
| 1254 | } |
| 1255 | |
| 1256 | #h_network_type{ |
| 1257 | height: 30px; |
| 1258 | top: 183px; |
| 1259 | left: 415px; |
| 1260 | line-height: 30px; |
| 1261 | text-align: center; |
| 1262 | font-size: 18px; |
| 1263 | } |
| 1264 | |
| 1265 | .data-card #h_network_type{ |
| 1266 | top: 156px; |
| 1267 | left: 218px; |
| 1268 | } |
| 1269 | |
| 1270 | #h_network_type.no-btn { |
| 1271 | } |
| 1272 | |
| 1273 | #h_connect_btn{ |
| 1274 | width: 72px; |
| 1275 | height: 35px; |
| 1276 | display:inline-block; |
| 1277 | } |
| 1278 | |
| 1279 | .data-card #h_connect_btn{ |
| 1280 | top: 153px; |
| 1281 | left: 323px; |
| 1282 | } |
| 1283 | |
| 1284 | .h_connect_on{ |
| 1285 | background: url('../pic/dial-on.png') no-repeat scroll 0 0 transparent; |
| 1286 | } |
| 1287 | |
| 1288 | .h_connect_off{ |
| 1289 | background: url('../pic/dial-off.png') no-repeat scroll 0 0 transparent; |
| 1290 | } |
| 1291 | |
| 1292 | #h_internet_setting_div{ |
| 1293 | top: 222px; |
| 1294 | left: 418px; |
| 1295 | width: 170px; |
| 1296 | height: 35px; |
| 1297 | margin-top:20px; |
| 1298 | line-height: 35px; |
| 1299 | text-align: center; |
| 1300 | } |
| 1301 | |
| 1302 | .data-card #h_internet_setting_div{ |
| 1303 | top: 205px; |
| 1304 | left: 221px; |
| 1305 | } |
| 1306 | |
| 1307 | #h_internet_setting_btn{ |
| 1308 | width: 170px; |
| 1309 | height: 35px; |
| 1310 | line-height: 35px; |
| 1311 | padding-right: 25px; |
| 1312 | color: #fff; |
| 1313 | display: block; |
| 1314 | font-weight: bold; |
| 1315 | } |
| 1316 | |
| 1317 | #h_wifi_setting_div{ |
| 1318 | top: 318px; |
| 1319 | left: 418px; |
| 1320 | width: 170px; |
| 1321 | height: 35px; |
| 1322 | line-height: 35px; |
| 1323 | text-align: center; |
| 1324 | } |
| 1325 | |
| 1326 | #h_wifi_setting_btn{ |
| 1327 | width: 170px; |
| 1328 | height: 35px; |
| 1329 | line-height: 35px; |
| 1330 | padding-right: 25px; |
| 1331 | color: #fff; |
| 1332 | display: block; |
| 1333 | font-weight: bold; |
| 1334 | } |
| 1335 | |
| 1336 | #h_connect_status{ |
| 1337 | top: 272px; |
| 1338 | left: 670px; |
| 1339 | width: 25px; |
| 1340 | height: 25px; |
| 1341 | position: absolute; |
| 1342 | } |
| 1343 | |
| 1344 | .h_status_connected{ |
| 1345 | background: url('../pic/local-connected.png') no-repeat scroll 0 0 transparent; |
| 1346 | } |
| 1347 | |
| 1348 | .h_status_disconnected{ |
| 1349 | background: url('../pic/local-disconnected.png') no-repeat scroll 0 0 transparent; |
| 1350 | } |
| 1351 | |
| 1352 | .h_status_connecting{ |
| 1353 | background: url('../pic/local-connecting.png') no-repeat scroll 0 0 transparent; |
| 1354 | } |
| 1355 | |
| 1356 | .h_status_disconnecting{ |
| 1357 | background: url('../pic/local-disconnecting.png') no-repeat scroll 0 0 transparent; |
| 1358 | } |
| 1359 | |
| 1360 | .color_block{ |
| 1361 | width: 20px; |
| 1362 | height: 20px; |
| 1363 | line-height: 20px; |
| 1364 | border: 1px solid #ccc; |
| 1365 | vertical-align: middle; |
| 1366 | display: inline-block; |
| 1367 | } |
| 1368 | |
| 1369 | .color_block_desc{ |
| 1370 | line-height: 20px; |
| 1371 | vertical-align: middle; |
| 1372 | margin-left: 8px; |
| 1373 | display: inline-block; |
| 1374 | } |
| 1375 | |
| 1376 | .colorRed{ |
| 1377 | color: #CC0000; |
| 1378 | } |
| 1379 | |
| 1380 | .msg pre{ |
| 1381 | line-height: 17px; |
| 1382 | border: none; |
| 1383 | margin: 0; |
| 1384 | padding: 0; |
| 1385 | overflow-x: hidden; |
| 1386 | white-space: pre-wrap; |
| 1387 | word-wrap: break-word; |
| 1388 | color: #696e72; |
| 1389 | background: none; |
| 1390 | } |
| 1391 | |
| 1392 | .smslist-item-icon { |
| 1393 | width: 80px; |
| 1394 | height: 80px; |
| 1395 | margin-left: 10px; |
| 1396 | margin-top: -6px; |
| 1397 | } |
| 1398 | |
| 1399 | .smslist-item-name { |
| 1400 | max-width: 550px; |
| 1401 | color: #000; |
| 1402 | display: inline-block; |
| 1403 | overflow: hidden; |
| 1404 | } |
| 1405 | |
| 1406 | .smslist-item-name2 { |
| 1407 | color: #000; |
| 1408 | } |
| 1409 | |
| 1410 | .smslist-item-name-draftShowName{ |
| 1411 | display:inline; |
| 1412 | } |
| 1413 | |
| 1414 | .smslist-item-total-count-style{ |
| 1415 | float:left; |
| 1416 | width:50px; |
| 1417 | display:inline-block; |
| 1418 | color:#696e72; |
| 1419 | } |
| 1420 | |
| 1421 | .smslist-item-repeat { |
| 1422 | font-weight: bold; |
| 1423 | line-height: 18px; |
| 1424 | text-indent: 3px; |
| 1425 | color: #7D8DA3; |
| 1426 | } |
| 1427 | |
| 1428 | .smslist-item-repeat:hover { |
| 1429 | color: #207DDD; |
| 1430 | } |
| 1431 | |
| 1432 | .smslist-item{ |
| 1433 | border-bottom: 1px solid #e1e1e1; |
| 1434 | margin-bottom: 10px; |
| 1435 | } |
| 1436 | |
| 1437 | .repeat-icon { |
| 1438 | width: 18px; |
| 1439 | height: 18px; |
| 1440 | display: block; |
| 1441 | background: url("../pic/png_forward.png") no-repeat; |
| 1442 | } |
| 1443 | |
| 1444 | .repeat-icon:hover { |
| 1445 | width: 18px; |
| 1446 | height: 18px; |
| 1447 | display: block; |
| 1448 | background: url("../pic/png_forward_hover.png") no-repeat; |
| 1449 | } |
| 1450 | |
| 1451 | .sms-forward-icon { |
| 1452 | width: 18px; |
| 1453 | height: 18px; |
| 1454 | display: block; |
| 1455 | background: url("../pic/png_forward.png") no-repeat scroll; |
| 1456 | } |
| 1457 | |
| 1458 | .sms-forward-icon:hover { |
| 1459 | width: 18px; |
| 1460 | height: 18px; |
| 1461 | display: block; |
| 1462 | background: url("../pic/png_forward_hover.png") no-repeat scroll; |
| 1463 | } |
| 1464 | |
| 1465 | .smslist-item-delete { |
| 1466 | width: 18px; |
| 1467 | height: 18px; |
| 1468 | display: block; |
| 1469 | } |
| 1470 | |
| 1471 | .smslist-item-delete:hover { |
| 1472 | width: 18px; |
| 1473 | height: 18px; |
| 1474 | display: block; |
| 1475 | } |
| 1476 | |
| 1477 | .sms-add-contact-icon { |
| 1478 | width: 13px; |
| 1479 | height: 13px; |
| 1480 | display: inline-block; |
| 1481 | background: url("../pic/png_add_contact.png") no-repeat scroll 0 0 transparent; |
| 1482 | } |
| 1483 | |
| 1484 | .sms-add-contact-icon:hover { |
| 1485 | width: 13px; |
| 1486 | height: 13px; |
| 1487 | display: inline-block; |
| 1488 | background: url("../pic/png_add_contact_hover.png") no-repeat scroll 0 0 transparent; |
| 1489 | } |
| 1490 | |
| 1491 | .smslist-item-delete:hover .trash-icon { |
| 1492 | width: 18px; |
| 1493 | height: 18px; |
| 1494 | display: block; |
| 1495 | background: url("../pic/png_delete_hover.png") no-repeat; |
| 1496 | } |
| 1497 | |
| 1498 | .trash-icon { |
| 1499 | width: 18px; |
| 1500 | height: 18px; |
| 1501 | display: block; |
| 1502 | background: url("../pic/png_delete.png") no-repeat; |
| 1503 | } |
| 1504 | |
| 1505 | .smslist-item-resend { |
| 1506 | font-weight: bold; |
| 1507 | line-height: 22px; |
| 1508 | text-indent: 3px; |
| 1509 | color: #7D8DA3; |
| 1510 | } |
| 1511 | |
| 1512 | .sms-resend-icon { |
| 1513 | width: 18px; |
| 1514 | height: 18px; |
| 1515 | display: block; |
| 1516 | background: transparent url("../pic/png_resend1.png") no-repeat; |
| 1517 | } |
| 1518 | |
| 1519 | .smslist-item-resend:hover { |
| 1520 | color: #207DDD; |
| 1521 | } |
| 1522 | |
| 1523 | .smslist-item-resend:hover .sms-resend-icon{ |
| 1524 | background: transparent url("../pic/png_resend_hover.png") no-repeat; |
| 1525 | } |
| 1526 | |
| 1527 | .clock-icon { |
| 1528 | width: 18px; |
| 1529 | height: 30px; |
| 1530 | line-height: 30px; |
| 1531 | display: block; |
| 1532 | background: url("../pic/png_time.png") no-repeat; |
| 1533 | } |
| 1534 | |
| 1535 | .clock-icon:hover { |
| 1536 | width: 18px; |
| 1537 | height: 30px; |
| 1538 | line-height: 30px; |
| 1539 | display: block; |
| 1540 | background: url("../pic/png_time.png") no-repeat; |
| 1541 | } |
| 1542 | |
| 1543 | .smslist-item-new-count { |
| 1544 | width: 29px; |
| 1545 | height: 35px; |
| 1546 | line-height: 35px; |
| 1547 | margin-right: 5px; |
| 1548 | text-align: center; |
| 1549 | font-weight: bold; |
| 1550 | color: #ffffff; |
| 1551 | background: url("../pic/png_new_sms_bg.png") no-repeat scroll 0 0 transparent; |
| 1552 | } |
| 1553 | |
| 1554 | #mainContainer .width100p { |
| 1555 | width: 100%; |
| 1556 | } |
| 1557 | |
| 1558 | .height15 { |
| 1559 | height: 15px; |
| 1560 | line-height: 15px; |
| 1561 | } |
| 1562 | |
| 1563 | |
| 1564 | label.error{ |
| 1565 | color: #a94442; |
| 1566 | } |
| 1567 | |
| 1568 | #frmPassword label.error { |
| 1569 | white-space: nowrap; |
| 1570 | } |
| 1571 | |
| 1572 | .form-information{ |
| 1573 | margin-top: 10px; |
| 1574 | } |
| 1575 | |
| 1576 | .form-information p{ |
| 1577 | padding: 15px; |
| 1578 | } |
| 1579 | |
| 1580 | body[lang=en] .label-absolute{ |
| 1581 | height: 40px; |
| 1582 | } |
| 1583 | |
| 1584 | body[lang=en] .label-absolute > label{ |
| 1585 | top: 0; |
| 1586 | left: 40px; |
| 1587 | position: absolute; |
| 1588 | } |
| 1589 | |
| 1590 | .ko-grid-pageLinks { |
| 1591 | |
| 1592 | padding-left: 0; |
| 1593 | margin: 20px 0; |
| 1594 | border-radius: 4px; |
| 1595 | width: 100%; |
| 1596 | display: inline-block; |
| 1597 | } |
| 1598 | |
| 1599 | .ko-grid-pageLinks > a, |
| 1600 | .ko-grid-pageLinks > span { |
| 1601 | display: inline; |
| 1602 | position: relative; |
| 1603 | float: left; |
| 1604 | padding: 6px 12px; |
| 1605 | line-height: 1.42857143; |
| 1606 | text-decoration: none; |
| 1607 | color: #008AD7; |
| 1608 | background-color: #ffffff; |
| 1609 | border: 1px solid #dddddd; |
| 1610 | margin-left: -1px; |
| 1611 | } |
| 1612 | |
| 1613 | .ko-grid-pageLinks > a:first-child, |
| 1614 | .ko-grid-pageLinks > span:first-child { |
| 1615 | margin-left: 0; |
| 1616 | border-radius: 4px 0 0 4px; |
| 1617 | } |
| 1618 | |
| 1619 | .ko-grid-pageLinks > a:last-child, |
| 1620 | .ko-grid-pageLinks > span:last-child { |
| 1621 | margin-left: 0; |
| 1622 | border-radius: 0 4px 4px 0; |
| 1623 | } |
| 1624 | |
| 1625 | .ko-grid-pageLinks > a.ko-grid-pager-selected, |
| 1626 | .ko-grid-pageLinks > span.ko-grid-pager-selected, |
| 1627 | .ko-grid-pageLinks > a.ko-grid-pager-selected:hover, |
| 1628 | .ko-grid-pageLinks > span.ko-grid-pager-selected:hover { |
| 1629 | z-index: 2; |
| 1630 | cursor: default; |
| 1631 | color: #ffffff; |
| 1632 | background-color: #008AD7; |
| 1633 | border-color: #008AD7; |
| 1634 | } |
| 1635 | |
| 1636 | .ko-grid-pageLinks > a:hover, |
| 1637 | .ko-grid-pageLinks > span:hover { |
| 1638 | z-index: 2; |
| 1639 | background-color: #EEEEEE; |
| 1640 | border-color: #DDDDDD; |
| 1641 | } |
| 1642 | |
| 1643 | .ko-grid-pageLinks > span.ko-grid-pager-disabled, |
| 1644 | .ko-grid-pageLinks > span.ko-grid-pager-disabled:hover, |
| 1645 | .ko-grid-pageLinks > span.ko-grid-pager-disabled:focus, |
| 1646 | .ko-grid-pageLinks > a.ko-grid-pager-disabled, |
| 1647 | .ko-grid-pageLinks > a.ko-grid-pager-disabled:hover, |
| 1648 | .ko-grid-pageLinks > a.ko-grid-pager-disabled:focus { |
| 1649 | color: #777777; |
| 1650 | background-color: #ffffff; |
| 1651 | border-color: #dddddd; |
| 1652 | cursor: not-allowed; |
| 1653 | } |
| 1654 | |
| 1655 | .nav-tabs > li > a, .nav-tabs.nav-justified > li > a{ |
| 1656 | -webkit-border-radius: 0; |
| 1657 | -moz-border-radius: 0; |
| 1658 | border-radius: 0; |
| 1659 | } |
| 1660 | .nav-tabs > li > a, .nav-tabs > li > a:hover, .nav-tabs > li > a:focus{ |
| 1661 | color: #333333; |
| 1662 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); |
| 1663 | background-color: #f5f5f5; |
| 1664 | *background-color: #e6e6e6; |
| 1665 | background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); |
| 1666 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); |
| 1667 | background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); |
| 1668 | background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); |
| 1669 | background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); |
| 1670 | background-repeat: repeat-x; |
| 1671 | border: 1px solid #cccccc; |
| 1672 | *border: 0; |
| 1673 | border-color: #e6e6e6 #e6e6e6 #bfbfbf; |
| 1674 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 1675 | border-bottom-color: #b3b3b3; |
| 1676 | filter: progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); |
| 1677 | *zoom: 1; |
| 1678 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1679 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1680 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1681 | } |
| 1682 | |
| 1683 | .nav-tabs > li:first-child > a, .nav-tabs > li:first-child > a:hover, .nav-tabs > li:first-child > a:focus{ |
| 1684 | -webkit-border-radius: 4px 0 0 4px; |
| 1685 | -moz-border-radius: 4px 0 0 4px; |
| 1686 | border-radius: 4px 0 0 4px; |
| 1687 | } |
| 1688 | |
| 1689 | .nav-tabs > li:last-child > a, .nav-tabs > li:last-child > a:hover, .nav-tabs > li:last-child > a:focus{ |
| 1690 | -webkit-border-radius: 0 4px 4px 0; |
| 1691 | -moz-border-radius: 0 4px 4px 0; |
| 1692 | border-radius: 0 4px 4px 0; |
| 1693 | } |
| 1694 | |
| 1695 | .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus, |
| 1696 | .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus{ |
| 1697 | color: #ffffff; |
| 1698 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 1699 | background-color: #006dcc; |
| 1700 | *background-color: #0044cc; |
| 1701 | border-color: #0044cc #0044cc #002a80; |
| 1702 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 1703 | background-image: -moz-linear-gradient(top, #0088cc, #0044cc); |
| 1704 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); |
| 1705 | background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); |
| 1706 | background-image: -o-linear-gradient(top, #0088cc, #0044cc); |
| 1707 | background-image: linear-gradient(to bottom, #0088cc, #0044cc); |
| 1708 | background-repeat: repeat-x; |
| 1709 | filter: progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); |
| 1710 | } |
| 1711 | |
| 1712 | #result-overlay .simplemodal-data, #result-overlay .simplemodal-wrap, #result-overlay .alert{ |
| 1713 | border-radius: 8px; |
| 1714 | -moz-border-radius: 8px; |
| 1715 | -webkit-border-radius: 8px; |
| 1716 | box-shadow: 0 3px 5px #999; |
| 1717 | -moz-box-shadow: 0 3px 5px #999; |
| 1718 | -webkit-box-shadow: 0 3px 5px #999; |
| 1719 | } |
| 1720 | |
| 1721 | .form-note .notes-title { |
| 1722 | height: 30px; |
| 1723 | cursor: pointer; |
| 1724 | padding-bottom: 5px; |
| 1725 | background: url("../pic/res_help.png") no-repeat scroll left center transparent; |
| 1726 | } |
| 1727 | |
| 1728 | .form-note .notes-content { |
| 1729 | display: none; |
| 1730 | } |
| 1731 | |
| 1732 | .form-note .notes-dot { |
| 1733 | border-bottom: 1px solid #ffffff; |
| 1734 | } |
| 1735 | |
| 1736 | .form-body .form-note { |
| 1737 | border-radius: 4px; |
| 1738 | font-size: 12px; |
| 1739 | margin-bottom: 10px; |
| 1740 | margin-top: 20px; |
| 1741 | padding: 10px; |
| 1742 | background-color: #ededed; |
| 1743 | } |
| 1744 | |
| 1745 | .form-body .form-note li { |
| 1746 | line-height: 30px; |
| 1747 | list-style: none outside none; |
| 1748 | padding-left: 15px; |
| 1749 | background: url("../pic/res_point.png") no-repeat scroll 0 12px transparent; |
| 1750 | } |
| 1751 | |
| 1752 | .form-body .form-note li.no-style { |
| 1753 | background: none; |
| 1754 | } |
| 1755 | |
| 1756 | .border-color-transition {; |
| 1757 | -moz-transition: border-color .5s ease-in; |
| 1758 | -webkit-transition: border-color .5s ease-in; |
| 1759 | -o-transition: border-color .5s ease-in; |
| 1760 | -ms-transition: border-color .5s ease-in; |
| 1761 | transition: border-color .5s ease-in; |
| 1762 | } |
| 1763 | |
| 1764 | .attention-focus{ |
| 1765 | border-color: red; |
| 1766 | } |
| 1767 | |
| 1768 | .popover-title{ |
| 1769 | background-color: #eaeaea; |
| 1770 | border-bottom: 1px solid #cbcbcb; |
| 1771 | } |
| 1772 | |
| 1773 | .fixTableScroll { |
| 1774 | width:100%; |
| 1775 | overflow-x:auto; |
| 1776 | overflow-y:hidden; |
| 1777 | height:100%; |
| 1778 | overflow-scrolling: touch; |
| 1779 | } |
| 1780 | |
| 1781 | .fixTableScroll:hover { |
| 1782 | height:100%; |
| 1783 | } |
| 1784 | |
| 1785 | #h_internet_setting_btn:hover { |
| 1786 | background-image: url("../pic/internet_setting_hover.png"); |
| 1787 | } |
| 1788 | |
| 1789 | #h_wifi_setting_btn:hover { |
| 1790 | background-image: url("../pic/wlan_setting_hover.jpg"); |
| 1791 | } |
| 1792 | |
| 1793 | .connected_devices_container { |
| 1794 | float:left; |
| 1795 | width: 280px; |
| 1796 | height: 400px; |
| 1797 | margin-left:20px; |
| 1798 | text-align: center; |
| 1799 | border-radius:10px; |
| 1800 | cursor: pointer; |
| 1801 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #70EBE6, endColorstr = #059EC4); |
| 1802 | background: -webkit-linear-gradient(left top, #70EBE6 , #059EC4); /* Safari 5.1 - 6.0 */ |
| 1803 | background: -o-linear-gradient(bottom right, #70EBE6 , #059EC4); /* Opera 11.1 - 12.0 */ |
| 1804 | background: -moz-linear-gradient(bottom right, #70EBE6 , #059EC4); /* Firefox 3.6 - 15 */ |
| 1805 | background: linear-gradient(to bottom right, #70EBE6 , #059EC4); /* 标准的语法(必须放在最后)*/ |
| 1806 | } |
| 1807 | |
| 1808 | .connected_devices_container .item_icon{ |
| 1809 | height: 45%; |
| 1810 | background: url(../pic/new/device.png) center center no-repeat; |
| 1811 | } |
| 1812 | |
| 1813 | .home_h3{ |
| 1814 | font-size: 25px; |
| 1815 | -webkit-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 1816 | -moz-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 1817 | -ms-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 1818 | text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 1819 | text-align: center; |
| 1820 | } |
| 1821 | |
| 1822 | .network_control_container { |
| 1823 | float:left; |
| 1824 | width: 280px; |
| 1825 | height: 400px; |
| 1826 | margin-left:20px; |
| 1827 | border-radius:10px; |
| 1828 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #36A4FF, endColorstr = #0877D4); |
| 1829 | background: -webkit-linear-gradient(left top, #36A4FF , #0877D4); /* Safari 5.1 - 6.0 */ |
| 1830 | background: -o-linear-gradient(bottom right, #36A4FF , #0877D4); /* Opera 11.1 - 12.0 */ |
| 1831 | background: -moz-linear-gradient(bottom right, #36A4FF , #0877D4); /* Firefox 3.6 - 15 */ |
| 1832 | background: linear-gradient(to bottom right, #36A4FF , #0877D4); /* 标准的语法(必须放在最后)*/ |
| 1833 | } |
| 1834 | |
| 1835 | .network_control_container .item_icon{ |
| 1836 | height: 45%; |
| 1837 | background: url(../pic/new/router.png) center center no-repeat; |
| 1838 | } |
| 1839 | |
| 1840 | .internet_status_container{ |
| 1841 | float:left; |
| 1842 | width: 280px; |
| 1843 | height: 400px; |
| 1844 | margin-left:60px; |
| 1845 | border-radius:10px; |
| 1846 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #D014FE, endColorstr = #7109D5); |
| 1847 | background: -webkit-linear-gradient(left top, #D014FE , #7109D5); /* Safari 5.1 - 6.0 */ |
| 1848 | background: -o-linear-gradient(bottom right, #D014FE , #7109D5); /* Opera 11.1 - 12.0 */ |
| 1849 | background: -moz-linear-gradient(bottom right, #D014FE , #7109D5); /* Firefox 3.6 - 15 */ |
| 1850 | background: linear-gradient(to bottom right, #D014FE , #7109D5); /* 标准的语法(必须放在最后)*/ |
| 1851 | text-align: center; |
| 1852 | } |
| 1853 | |
| 1854 | .internet_status_container .item_icon_connect{ |
| 1855 | height: 45%; |
| 1856 | background: url(../pic/new/surfing1.png) center center no-repeat; |
| 1857 | } |
| 1858 | |
| 1859 | .internet_status_container .item_icon_disconnect{ |
| 1860 | height: 45%; |
| 1861 | background: url(../pic/new/surfing2.png) center center no-repeat; |
| 1862 | } |
| 1863 | |
| 1864 | .internet_status_container .data-card{ |
| 1865 | top: 180px; |
| 1866 | left: 636px; |
| 1867 | } |
| 1868 | |
| 1869 | .traffic_control_container{ |
| 1870 | float:left; |
| 1871 | width: 280px; |
| 1872 | height: 280px; |
| 1873 | margin-left:45px; |
| 1874 | border-radius:10px; |
| 1875 | color:#fff; |
| 1876 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #FCCA53, endColorstr = #F45406); |
| 1877 | background: -webkit-gradient(linear, 0 0, 0 100%, from(#FCCA53), to(#F45406)); |
| 1878 | background: -webkit-linear-gradient(left top, #FCCA53 , #F45406); /* Safari 5.1 - 6.0 */ |
| 1879 | background: -o-linear-gradient(bottom right, #FCCA53 , #F45406); /* Opera 11.1 - 12.0 */ |
| 1880 | background: -moz-linear-gradient(bottom right, #FCCA53 , #F45406); /* Firefox 3.6 - 15 */ |
| 1881 | background: -ms-linear-gradient(left, #FCCA53, #F45406); |
| 1882 | background: linear-gradient(to bottom right, #FCCA53 , #F45406); /* 标准的语法(必须放在最后)*/ |
| 1883 | |
| 1884 | } |
| 1885 | .device_info_container{ |
| 1886 | float:left; |
| 1887 | width: 580px; |
| 1888 | height: 280px; |
| 1889 | border-radius:10px; |
| 1890 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #B454F6, endColorstr = #0096D7); |
| 1891 | background: -webkit-linear-gradient(left top, #B454F6 , #0096D7); /* Safari 5.1 - 6.0 */ |
| 1892 | background: -o-linear-gradient(bottom right, #B454F6 , #0096D7); /* Opera 11.1 - 12.0 */ |
| 1893 | background: -moz-linear-gradient(bottom right, #B454F6 , #0096D7); /* Firefox 3.6 - 15 */ |
| 1894 | background: linear-gradient(to bottom right, #B454F6 , #0096D7); /* 标准的语法(必须放在最后)*/ |
| 1895 | } |
| 1896 | |
| 1897 | .device_info_container_hastraffic{ |
| 1898 | margin-left:20px; |
| 1899 | } |
| 1900 | |
| 1901 | .device_info_container_notraffic{ |
| 1902 | margin-left:210px; |
| 1903 | } |
| 1904 | |
| 1905 | .device_info_container a{ |
| 1906 | padding-right: 2em; |
| 1907 | margin-right:1em; |
| 1908 | color: #FFF; |
| 1909 | background: url(../pic/new/direct.png) right center no-repeat; |
| 1910 | } |
| 1911 | |
| 1912 | |
| 1913 | #smslist-table td{ |
| 1914 | vertical-align: middle; |
| 1915 | line-height: 1.2; |
| 1916 | } |
| 1917 | |
| 1918 | #simMsgList_container td{ |
| 1919 | vertical-align: middle; |
| 1920 | line-height: 1.2; |
| 1921 | } |
| 1922 | |
| 1923 | .smslist-item-msg pre{ |
| 1924 | overflow: hidden; |
| 1925 | text-overflow: ellipsis; |
| 1926 | border: none; |
| 1927 | padding: 0; |
| 1928 | margin:0; |
| 1929 | font-size: 14px; |
| 1930 | line-height: 1.2; |
| 1931 | white-space: nowrap; |
| 1932 | background-color: transparent; |
| 1933 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 1934 | } |
| 1935 | |
| 1936 | .smslist-btns { |
| 1937 | } |
| 1938 | |
| 1939 | #smsScrollLoading { |
| 1940 | margin: 25px auto; |
| 1941 | font-size: 22px; |
| 1942 | font-weight: bold; |
| 1943 | text-align: center; |
| 1944 | color: #7D8DA3; |
| 1945 | } |
| 1946 | |
| 1947 | #smsScrollLoadingBtn { |
| 1948 | margin: 25px auto; |
| 1949 | font-size: 22px; |
| 1950 | font-weight: bold; |
| 1951 | text-align: center; |
| 1952 | color: #7D8DA3; |
| 1953 | cursor: pointer; |
| 1954 | } |
| 1955 | |
| 1956 | #smslist_container{ |
| 1957 | position: relative; |
| 1958 | } |
| 1959 | |
| 1960 | #smslist_container table,#smslist_container table td,#smslist_container table th { |
| 1961 | padding: 0; |
| 1962 | margin: 0; |
| 1963 | border: none; |
| 1964 | } |
| 1965 | |
| 1966 | .smslist-item-checkbox{float: left; width: 20px;} |
| 1967 | .chosen-container-multi .chosen-choices li.search-field input[type="text"]{ |
| 1968 | height: auto; |
| 1969 | } |
| 1970 | |
| 1971 | .sms-table-content{ |
| 1972 | width: 450px; |
| 1973 | overflow: hidden; |
| 1974 | text-overflow: ellipsis; |
| 1975 | white-space: nowrap; |
| 1976 | } |
| 1977 | |
| 1978 | .showFullHeight{ |
| 1979 | white-space: normal; |
| 1980 | } |
| 1981 | |
| 1982 | #buttom-bubble{ |
| 1983 | width: 230px; |
| 1984 | height: auto; |
| 1985 | right: 0; |
| 1986 | bottom: 0; |
| 1987 | margin-right: 10px; |
| 1988 | position: fixed; |
| 1989 | z-index: 100; |
| 1990 | } |
| 1991 | |
| 1992 | #buttom-bubble .bubbleItem{ |
| 1993 | margin-top: 8px; |
| 1994 | border-radius: 10px 10px 0 0; |
| 1995 | position: relative; |
| 1996 | } |
| 1997 | |
| 1998 | #buttom-bubble h3{ |
| 1999 | padding: 8px 30px 8px 8px; |
| 2000 | background-color: #eaeaea; |
| 2001 | border: 2px solid #eaeaea; |
| 2002 | border-bottom: 0; |
| 2003 | border-radius: 8px 8px 0 0; |
| 2004 | margin-bottom: 0; |
| 2005 | font-size: 14px; |
| 2006 | } |
| 2007 | |
| 2008 | #buttom-bubble .bubbleItem.report h3{ |
| 2009 | color: #E47602; |
| 2010 | } |
| 2011 | |
| 2012 | #buttom-bubble h3 a.bubbleCloseBtn{ |
| 2013 | position: absolute; |
| 2014 | top: 10px; |
| 2015 | right: 10px; |
| 2016 | border: 1px solid #E2E2E2; |
| 2017 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4); |
| 2018 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4); |
| 2019 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4); |
| 2020 | } |
| 2021 | |
| 2022 | #buttom-bubble h3 a.bubbleCloseBtn:hover{ |
| 2023 | border: 1px solid #2063AB; |
| 2024 | } |
| 2025 | |
| 2026 | #buttom-bubble .bubbleCloseBtn{ |
| 2027 | width: 16px; |
| 2028 | height: 14px; |
| 2029 | display: block; |
| 2030 | background: url("../pic/res_delete.png"); |
| 2031 | } |
| 2032 | |
| 2033 | #buttom-bubble .bubbleContainer{ |
| 2034 | border: 2px solid #E2E2E2; |
| 2035 | padding: 2px 8px 8px 8px; |
| 2036 | line-height: 150%; |
| 2037 | overflow: hidden; |
| 2038 | border-top: 0; |
| 2039 | font-size: 12px; |
| 2040 | background: #F2F2F2; |
| 2041 | background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(white), to(#eaeaea) ); |
| 2042 | background: -ms-linear-gradient(top, white, #eaeaea); |
| 2043 | background: -moz-linear-gradient(top, white, #eaeaea); |
| 2044 | background: -o-linear-gradient(top, white,#eaeaea); |
| 2045 | filter: progid:dximagetransform.microsoft.gradient(enabled='true', startColorstr='#FFFFFFFF', endColorstr='#ffeaeaea', GradientType=0); |
| 2046 | } |
| 2047 | |
| 2048 | #buttom-bubble .bubbleContent{ |
| 2049 | max-height: 55px; |
| 2050 | overflow: hidden; |
| 2051 | line-height: 18px; |
| 2052 | word-break: break-all; |
| 2053 | word-wrap: break-word; |
| 2054 | } |
| 2055 | |
| 2056 | #buttom-bubble .bubbleDatetime{ |
| 2057 | padding-right: 10px; |
| 2058 | text-align: right; |
| 2059 | font-size: 10px; |
| 2060 | } |
| 2061 | |
| 2062 | #topContainer{ |
| 2063 | padding-top: 10px; |
| 2064 | padding-bottom: 10px; |
| 2065 | background-color: #EAEAEA; |
| 2066 | } |
| 2067 | |
| 2068 | .login-page-bg{ |
| 2069 | background: url("../pic/res_login-bg.png") repeat-x scroll 0 0 transparent; |
| 2070 | } |
| 2071 | |
| 2072 | #login-form-container{ |
| 2073 | border: 1px solid gray; |
| 2074 | border-radius: 8px; |
| 2075 | -moz-border-radius: 8px; |
| 2076 | -webkit-border-radius: 8px; |
| 2077 | background-color: white; |
| 2078 | box-shadow: 0 3px 5px #053984; |
| 2079 | -moz-box-shadow: 0 3px 5px #053984; |
| 2080 | -webkit-box-shadow: 0 3px 5px #053984; |
| 2081 | } |
| 2082 | |
| 2083 | #htmlContainer{ |
| 2084 | padding: 0; |
| 2085 | } |
| 2086 | |
| 2087 | #htmlContainer .form-title{ |
| 2088 | padding: 10px 15px 10px 15px; |
| 2089 | margin-bottom: 0; |
| 2090 | border-bottom: 1px solid #cbcbcb; |
| 2091 | background-color: #eaeaea; |
| 2092 | } |
| 2093 | |
| 2094 | #htmlContainer .content{ |
| 2095 | padding: 15px; |
| 2096 | } |
| 2097 | |
| 2098 | #simplemodal-data .alert{ |
| 2099 | border: 1px solid gray; |
| 2100 | border-radius: 8px; |
| 2101 | box-shadow: 0 6px 10px #053984; |
| 2102 | width: 400px; |
| 2103 | height: 150px; |
| 2104 | background-color: white; |
| 2105 | } |
| 2106 | |
| 2107 | .btn-primary{ |
| 2108 | background-color: #008AD7; |
| 2109 | } |
| 2110 | |
| 2111 | #pblist tr td { |
| 2112 | cursor: pointer; |
| 2113 | } |
| 2114 | |
| 2115 | #pblist tr td:first-child { |
| 2116 | cursor: default; |
| 2117 | } |
| 2118 | |
| 2119 | .form-buttons { |
| 2120 | margin-right: 20px; |
| 2121 | margin-bottom: 5px; |
| 2122 | text-align: right; |
| 2123 | } |
| 2124 | |
| 2125 | .align-right { |
| 2126 | text-align: right; |
| 2127 | } |
| 2128 | |
| 2129 | .margin-right-10 { |
| 2130 | margin-right: 10px; |
| 2131 | } |
| 2132 | |
| 2133 | .beautiful_bg #indexContainer{ |
| 2134 | } |
| 2135 | |
| 2136 | .header-row { |
| 2137 | background-color: #018ad8; |
| 2138 | border-left-width: 0; |
| 2139 | border-radius: 10px 10px 0 0; |
| 2140 | margin: -1px 0 30px -11px; |
| 2141 | width: 940px; |
| 2142 | color: white; |
| 2143 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #B454F6, endColorstr = #0096D7); |
| 2144 | background: -webkit-gradient(linear, 0 0, 0 100%, from(#B454F6), to(#0096D7)); |
| 2145 | background: -webkit-linear-gradient(left top, #B454F6 , #0096D7); /* Safari 5.1 - 6.0 */ |
| 2146 | background: -o-linear-gradient(bottom right, #B454F6 , #0096D7); /* Opera 11.1 - 12.0 */ |
| 2147 | background: -moz-linear-gradient(bottom right, #B454F6 , #0096D7); /* Firefox 3.6 - 15 */ |
| 2148 | background: -ms-linear-gradient(left, #B454F6, #0096D7); |
| 2149 | background: linear-gradient(to bottom right, #B454F6 , #0096D7); /* 标准的语法(必须放在最后)*/ |
| 2150 | } |
| 2151 | |
| 2152 | .header-row .form-title { |
| 2153 | border: none; |
| 2154 | margin-bottom: 0; |
| 2155 | text-align:center; |
| 2156 | } |
| 2157 | |
| 2158 | #innerContainer { |
| 2159 | width: 100%; |
| 2160 | margin: 35px auto; |
| 2161 | padding: 0 10px 20px 10px; |
| 2162 | border: 1px solid #fff; |
| 2163 | border-bottom:0px; |
| 2164 | border-radius: 10px; |
| 2165 | background: -webkit-linear-gradient(top, #F1F9FC , #fff); /* Safari 5.1 - 6.0 */ |
| 2166 | background: -o-linear-gradient(bottom, #F1F9FC , #fff); /* Opera 11.1 - 12.0 */ |
| 2167 | background: -moz-linear-gradient(bottom, #F1F9FC , #fff); /* Firefox 3.6 - 15 */ |
| 2168 | background: linear-gradient(to bottom, #F1F9FC , #fff); /* 标准的语法(必须放在最后)*/ |
| 2169 | } |
| 2170 | |
| 2171 | .form-title-multi h1 { |
| 2172 | margin-top: 10px; |
| 2173 | margin-bottom: 5px; |
| 2174 | } |
| 2175 | |
| 2176 | .form-title-multi p { |
| 2177 | margin-bottom: 0; |
| 2178 | } |
| 2179 | .mobile_version_link{ |
| 2180 | color: #A0AFCB; |
| 2181 | } |
| 2182 | |
| 2183 | #opmode_form .content { |
| 2184 | background-color: #FFFFFF; |
| 2185 | } |
| 2186 | |
| 2187 | #sms_unread_count a:hover { |
| 2188 | text-decoration: none; |
| 2189 | } |
| 2190 | |
| 2191 | .customfile-input { |
| 2192 | outline: none; |
| 2193 | position: absolute; |
| 2194 | height: 100px; |
| 2195 | cursor: pointer; |
| 2196 | background: transparent; |
| 2197 | border: 0; |
| 2198 | z-index: 999; |
| 2199 | opacity: 0; |
| 2200 | -moz-opacity: 0; |
| 2201 | filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 ); |
| 2202 | } |
| 2203 | |
| 2204 | .customfile { |
| 2205 | width: 400px; |
| 2206 | padding: 2px; |
| 2207 | border: 1px solid #444; |
| 2208 | line-height: 30px; |
| 2209 | background: #FAFAFA; |
| 2210 | background: -ms-linear-gradient(#FAFAFA, #CACACA); |
| 2211 | background: -moz-linear-gradient(#FAFAFA, #CACACA); |
| 2212 | background : -webkit-linear-gradient( #FAFAFA, #EAEAEA); |
| 2213 | cursor: pointer; |
| 2214 | overflow: hidden; |
| 2215 | -moz-border-radius: 7px; |
| 2216 | -webkit-border-radius: 7px; |
| 2217 | border-radius: 7px; |
| 2218 | position: relative; |
| 2219 | float: left; |
| 2220 | } |
| 2221 | |
| 2222 | .customfile-disabled { |
| 2223 | opacity: .5; |
| 2224 | filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 ); |
| 2225 | cursor: default; |
| 2226 | } |
| 2227 | |
| 2228 | .customfile-feedback { |
| 2229 | display: block; |
| 2230 | margin: 1px 1px 1px 5px; |
| 2231 | font-size: 1.2em; |
| 2232 | color: #767676; |
| 2233 | font-style: italic; |
| 2234 | } |
| 2235 | |
| 2236 | .customfile-feedback-populated { |
| 2237 | color: #111; |
| 2238 | padding-left: 20px; |
| 2239 | line-height: 24px; |
| 2240 | margin-top: 6px; |
| 2241 | width:290px; |
| 2242 | font-style: normal; |
| 2243 | font-weight: bold; |
| 2244 | background: url(../pic/pic-file.png) left 0px no-repeat; |
| 2245 | white-space:nowrap; |
| 2246 | display: block; |
| 2247 | overflow: hidden; |
| 2248 | text-overflow: ellipsis; |
| 2249 | } |
| 2250 | |
| 2251 | .customfile-button { |
| 2252 | border: 1px solid #999; |
| 2253 | background-color: #008AD7; |
| 2254 | color: #fff; |
| 2255 | float: right; |
| 2256 | padding: 0px 10px; |
| 2257 | text-align: center; |
| 2258 | text-decoration: none; |
| 2259 | font-size: 1em; |
| 2260 | -moz-border-radius: 5px; |
| 2261 | -webkit-border-radius: 5px; |
| 2262 | border-radius: 5px; |
| 2263 | } |
| 2264 | |
| 2265 | .customfile-hover .customfile-button,.customfile-focus .customfile-button { |
| 2266 | background-color: #3071A9; |
| 2267 | border-color: #285E8E; |
| 2268 | padding: 0px 10px; |
| 2269 | color: #fff; |
| 2270 | } |
| 2271 | |
| 2272 | .customfile-focus .customfile-button { |
| 2273 | outline: 1px dotted #ccc; |
| 2274 | } |
| 2275 | |
| 2276 | /*file type icons*/ |
| 2277 | .customfile-ext-jpg, .customfile-ext-gif, .customfile-ext-png, .customfile-ext-jpeg, .customfile-ext-bmp { background-image: url(../pic/pic-picture.png);} |
| 2278 | .customfile-ext-mp4, .customfile-ext-mov, .customfile-ext-swf, .customfile-ext-m4v { background-image: url(../pic/pic-film.png);} |
| 2279 | .customfile-ext-mp3, .customfile-ext-wav { background-image: url(../pic/pic-mp3.png);} |
| 2280 | .customfile-ext-zip, .customfile-ext-tar, .customfile-ext-sit { background-image: url(../pic/pic-rar.png);} |
| 2281 | |
| 2282 | input[type='file']:focus{ |
| 2283 | outline: none; |
| 2284 | } |
| 2285 | |
| 2286 | #smslist-checkAll, #simMsgList-checkAll { |
| 2287 | margin-left: -4px; |
| 2288 | } |
| 2289 | |
| 2290 | .not-allowed { |
| 2291 | color: #D1D1D1 !important; |
| 2292 | cursor: not-allowed; |
| 2293 | } |
| 2294 | |
| 2295 | .not-allowed:hover { |
| 2296 | outline: 0; |
| 2297 | text-decoration: none; |
| 2298 | } |
| 2299 | |
| 2300 | .not-allowed:focus { |
| 2301 | outline: 0; |
| 2302 | text-decoration: none; |
| 2303 | } |
| 2304 | |
| 2305 | .margin-top-5 { |
| 2306 | margin-top: 5px; |
| 2307 | } |
| 2308 | |
| 2309 | .colorLightBlue{ |
| 2310 | color: #09F; |
| 2311 | } |
| 2312 | |
| 2313 | .sd_invalid_notes ul li{ |
| 2314 | height: 2em; |
| 2315 | line-height: 2em; |
| 2316 | } |
| 2317 | |
| 2318 | .sd_invalid_notes .notes-content{ |
| 2319 | display: block; |
| 2320 | } |
| 2321 | |
| 2322 | #fileControlSection li { |
| 2323 | list-style: outside none none; |
| 2324 | display: inline; |
| 2325 | } |
| 2326 | |
| 2327 | |
| 2328 | .my_router_list,.net_surfing_list{ |
| 2329 | margin-top: 20px; |
| 2330 | } |
| 2331 | |
| 2332 | .my_router_list ul,.net_surfing_list ul,.statistics_list ul,.nav_right ul{ |
| 2333 | -webkit-padding-start: 0px; |
| 2334 | margin:0px; |
| 2335 | padding:0px; |
| 2336 | } |
| 2337 | |
| 2338 | .my_router_list li,.net_surfing_list li,.statistics_list li{ |
| 2339 | padding: 0 1em; |
| 2340 | list-style:none; |
| 2341 | } |
| 2342 | |
| 2343 | .my_router_list li,.my_router_list li a,.net_surfing_list li{ |
| 2344 | text-align: left; |
| 2345 | line-height: 2em; |
| 2346 | font-size: 18px; |
| 2347 | |
| 2348 | } |
| 2349 | |
| 2350 | .my_router_list li a{ |
| 2351 | display: block; |
| 2352 | color: #FFF; |
| 2353 | background: url(../pic/new/direct.png) right center no-repeat; |
| 2354 | -webkit-transition: all ease-in .3s; |
| 2355 | -moz-transition: all ease-in .3s; |
| 2356 | -ms-transition: all ease-in .3s; |
| 2357 | transition: all ease-in .3s; |
| 2358 | } |
| 2359 | |
| 2360 | .my_router_list li a:hover{ |
| 2361 | color: #FAFAFA; |
| 2362 | -webkit-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2363 | -moz-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2364 | -ms-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2365 | text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2366 | } |
| 2367 | |
| 2368 | .net_surfing_list li{ |
| 2369 | text-align: center; |
| 2370 | } |
| 2371 | |
| 2372 | .net_surfing_list i{ |
| 2373 | display: inline-block; |
| 2374 | width: 17px; |
| 2375 | height: 24px; |
| 2376 | margin-right: 15px; |
| 2377 | vertical-align: middle; |
| 2378 | } |
| 2379 | |
| 2380 | .net_surfing_list i.up{ |
| 2381 | background: url(../pic/new/direct_top.png); |
| 2382 | } |
| 2383 | |
| 2384 | .net_surfing_list i.down{ |
| 2385 | background: url(../pic/new/direct_down.png); |
| 2386 | } |
| 2387 | |
| 2388 | .statistics_list ul li{ |
| 2389 | padding: 0 20px; |
| 2390 | text-align: left; |
| 2391 | margin-top: 15px; |
| 2392 | font-size:18px; |
| 2393 | } |
| 2394 | |
| 2395 | .statistics_list ul li a{ |
| 2396 | color: #FFF; |
| 2397 | display: block; |
| 2398 | background: url(../pic/new/direct.png) right center no-repeat; |
| 2399 | -webkit-transition: all ease-in .3s; |
| 2400 | -moz-transition: all ease-in .3s; |
| 2401 | -ms-transition: all ease-in .3s; |
| 2402 | transition: all ease-in .3s; |
| 2403 | } |
| 2404 | |
| 2405 | .statistics_list ul li a:hover{ |
| 2406 | -webkit-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2407 | -moz-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2408 | -ms-text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2409 | text-shadow: 0px 1px 2px rgba(100, 100, 10, 0.5); |
| 2410 | } |
| 2411 | |
| 2412 | .type_items{ |
| 2413 | width:880px; |
| 2414 | height: 100px; |
| 2415 | text-align: center; |
| 2416 | margin:0 0 0 45px; |
| 2417 | -webkit-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2418 | -moz-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2419 | -ms-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2420 | box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2421 | -webkit-border-radius: 8px; |
| 2422 | -moz-border-radius: 8px; |
| 2423 | -ms-border-radius: 8px; |
| 2424 | border-radius: 10px; |
| 2425 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #B454F6, endColorstr = #0096D7); |
| 2426 | background: -webkit-linear-gradient(left top, #B454F6 , #0096D7); /* Safari 5.1 - 6.0 */ |
| 2427 | background: -o-linear-gradient(bottom right, #B454F6 , #0096D7); /* Opera 11.1 - 12.0 */ |
| 2428 | background: -moz-linear-gradient(bottom right, #B454F6 , #0096D7); /* Firefox 3.6 - 15 */ |
| 2429 | background: linear-gradient(to bottom right, #B454F6 , #0096D7); /* 标准的语法(必须放在最后)*/ |
| 2430 | } |
| 2431 | |
| 2432 | .type_items ul{ |
| 2433 | width: auto; |
| 2434 | -webkit-padding-start: 0px; |
| 2435 | margin:0px; |
| 2436 | padding:0px; |
| 2437 | } |
| 2438 | |
| 2439 | .type_items ul li{ |
| 2440 | display: inline-block; |
| 2441 | float:left; |
| 2442 | list-style:none; |
| 2443 | } |
| 2444 | |
| 2445 | .type_items a{ |
| 2446 | display: table-cell; |
| 2447 | width: 125px; |
| 2448 | height: 100px; |
| 2449 | color: #FFF; |
| 2450 | vertical-align: middle; |
| 2451 | -webkit-transition: all ease-in .3s; |
| 2452 | -moz-transition: all ease-in .3s; |
| 2453 | -ms-transition: all ease-in .3s; |
| 2454 | transition: all ease-in .3s; |
| 2455 | border-left: 1px solid; |
| 2456 | } |
| 2457 | |
| 2458 | .type_items a,.nav_right a:hover{ |
| 2459 | -webkit-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2460 | -moz-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2461 | -ms-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2462 | box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2463 | } |
| 2464 | |
| 2465 | .nav_right{ |
| 2466 | margin: 0 auto 0px -10px; |
| 2467 | text-align: center; |
| 2468 | |
| 2469 | } |
| 2470 | |
| 2471 | .nav_right ul{ |
| 2472 | width: auto; |
| 2473 | margin: 0 auto; |
| 2474 | } |
| 2475 | |
| 2476 | .nav_right ul li{ |
| 2477 | margin: 15px 20px 0 0; |
| 2478 | width:100%; |
| 2479 | list-style:none; |
| 2480 | } |
| 2481 | |
| 2482 | .nav_right .active a{ |
| 2483 | display: table-cell; |
| 2484 | width: 138px; |
| 2485 | height: 50px; |
| 2486 | color: #fff; |
| 2487 | font-weight:bold; |
| 2488 | vertical-align: middle; |
| 2489 | -webkit-transition: all ease-in .3s; |
| 2490 | -moz-transition: all ease-in .3s; |
| 2491 | -ms-transition: all ease-in .3s; |
| 2492 | transition: all ease-in .3s; |
| 2493 | -webkit-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2494 | -moz-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2495 | -ms-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2496 | box-shadow: 0px 8px 10px rgba(172, 172, 172, 0.5); |
| 2497 | background-color:rgb(66, 153, 237); |
| 2498 | } |
| 2499 | |
| 2500 | .nav_right a{ |
| 2501 | width: 138px; |
| 2502 | height: 50px; |
| 2503 | display: table-cell; |
| 2504 | color: #000; |
| 2505 | vertical-align: middle; |
| 2506 | -webkit-transition: all ease-in .3s; |
| 2507 | -moz-transition: all ease-in .3s; |
| 2508 | -ms-transition: all ease-in .3s; |
| 2509 | transition: all ease-in .3s; |
| 2510 | -webkit-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2511 | -moz-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2512 | -ms-box-shadow: 0px 2px 4px rgba(172, 172, 172, 0.5); |
| 2513 | box-shadow: 0px 8px 10px rgba(172, 172, 172, 0.5); |
| 2514 | background-color:rgb(182, 214, 232); |
| 2515 | } |
| 2516 | |
| 2517 | .sd-total { |
| 2518 | text-align: right; |
| 2519 | padding-right: 20px; |
| 2520 | } |
| 2521 | |
| 2522 | .icon-folder{ |
| 2523 | background: url("../pic/pic-folder.png") no-repeat; |
| 2524 | } |
| 2525 | |
| 2526 | .icon-pdf{ |
| 2527 | background: url("../pic/pic-pdf.png") no-repeat; |
| 2528 | } |
| 2529 | |
| 2530 | .icon-rar{ |
| 2531 | background: url("../pic/pic-rar.png") no-repeat; |
| 2532 | } |
| 2533 | |
| 2534 | .icon-mp3{ |
| 2535 | background: url("../pic/pic-mp3.png") no-repeat; |
| 2536 | } |
| 2537 | |
| 2538 | .icon-file{ |
| 2539 | background: url("../pic/pic-file.png") no-repeat; |
| 2540 | } |
| 2541 | |
| 2542 | .icon-film{ |
| 2543 | background: url("../pic/pic-film.png") no-repeat; |
| 2544 | } |
| 2545 | |
| 2546 | .icon-picture{ |
| 2547 | background: url("../pic/pic-picture.png") no-repeat; |
| 2548 | } |
| 2549 | |
| 2550 | .icon-doc{ |
| 2551 | background: url("../pic/pic-doc.png") no-repeat; |
| 2552 | } |
| 2553 | |
| 2554 | .icon-ppt{ |
| 2555 | background: url("../pic/pic-ppt.png") no-repeat; |
| 2556 | } |
| 2557 | |
| 2558 | .icon-xls{ |
| 2559 | background: url("../pic/pic-xls.png") no-repeat; |
| 2560 | } |
| 2561 | |
| 2562 | .icon-xml{ |
| 2563 | background: url("../pic/pic-xml.png") no-repeat; |
| 2564 | } |
| 2565 | |
| 2566 | .icon-download{ |
| 2567 | background: url("../pic/pic-download.png") no-repeat; |
| 2568 | } |
| 2569 | |
| 2570 | .mini-icon{ |
| 2571 | width: 20px; |
| 2572 | height: 20px; |
| 2573 | font-size: 16px; |
| 2574 | display: block; |
| 2575 | } |
| 2576 | |
| 2577 | .cursor-pointer { |
| 2578 | cursor: pointer; |
| 2579 | } |
| 2580 | |
| 2581 | #fileListSection th { |
| 2582 | text-align: center; |
| 2583 | } |
| 2584 | |
| 2585 | .margin-left-5 { |
| 2586 | margin-left: 5px; |
| 2587 | } |
| 2588 | |
| 2589 | .margin-top-2 { |
| 2590 | margin-top: 2px; |
| 2591 | } |
| 2592 | |
| 2593 | .push-right { |
| 2594 | text-align: right; |
| 2595 | } |
| 2596 | |
| 2597 | .data-card-language { |
| 2598 | top: -25px; |
| 2599 | right: 10px; |
| 2600 | position: absolute; |
| 2601 | display: block; |
| 2602 | } |