正在显示
50 个修改的文件
包含
1690 行增加
和
0 行删除
css/index.css
0 → 100644
| 1 | +html{ | ||
| 2 | + font-size: 100px; | ||
| 3 | +} | ||
| 4 | + | ||
| 5 | +html,body, .content{ | ||
| 6 | + width: 100%; | ||
| 7 | + background:#fafafa; | ||
| 8 | + overflow-x:hidden; | ||
| 9 | +} | ||
| 10 | +#newBridge .nb-icon-wrap-3 .nb-icon-wrap-3-right-center { | ||
| 11 | + display: none; | ||
| 12 | +} | ||
| 13 | + | ||
| 14 | +/*头部*/ | ||
| 15 | +.header{ | ||
| 16 | + height: .88rem; | ||
| 17 | + background: #ecf0f3; | ||
| 18 | + line-height: .88rem; | ||
| 19 | +} | ||
| 20 | + | ||
| 21 | +.header .logo{ | ||
| 22 | + height: .38rem; | ||
| 23 | + line-height: .38rem; | ||
| 24 | + width: 1.34rem; | ||
| 25 | + float: left; | ||
| 26 | + margin-left: .3rem; | ||
| 27 | + margin-top: .3rem; | ||
| 28 | +} | ||
| 29 | +.logo img{ | ||
| 30 | + height: 100%; | ||
| 31 | + width: 100%; | ||
| 32 | +} | ||
| 33 | +.header .telNum{ | ||
| 34 | + float: right; | ||
| 35 | + margin-right: .15rem; | ||
| 36 | + color: #333333; | ||
| 37 | +} | ||
| 38 | +.header .tellogo{ | ||
| 39 | + float: right; | ||
| 40 | + width: .2rem; | ||
| 41 | + height: .24rem; | ||
| 42 | + margin-right: 0.15rem; | ||
| 43 | + | ||
| 44 | +} | ||
| 45 | +.header .tellogo img{ | ||
| 46 | + height: 100%; | ||
| 47 | + width: 100%; | ||
| 48 | +} | ||
| 49 | + | ||
| 50 | + | ||
| 51 | +.publicity-img{ | ||
| 52 | + width:7.5rem; | ||
| 53 | + height:4.11rem; | ||
| 54 | +} | ||
| 55 | +.publicity-img img{ | ||
| 56 | + width:100%; | ||
| 57 | + height:100%; | ||
| 58 | +} | ||
| 59 | + | ||
| 60 | + | ||
| 61 | +.publicity-text{ | ||
| 62 | + | ||
| 63 | + background: #fafafa; | ||
| 64 | + padding:.8rem .3rem ; | ||
| 65 | + border:none; | ||
| 66 | + | ||
| 67 | +} | ||
| 68 | +.publicity-text span{ | ||
| 69 | + | ||
| 70 | + font-size: 15px; | ||
| 71 | + color: #333; | ||
| 72 | + border:none; | ||
| 73 | + | ||
| 74 | +} | ||
| 75 | +.character-outer{ | ||
| 76 | + background: #fafafa; | ||
| 77 | + margin-bottom: .8rem; | ||
| 78 | +} | ||
| 79 | +.character{ | ||
| 80 | + border: 1px solid #ccc; | ||
| 81 | + border-left: none; | ||
| 82 | + border-right: none; | ||
| 83 | + background: #fafafa; | ||
| 84 | + /*height: 2.4rem;*/ | ||
| 85 | + height: auto; | ||
| 86 | + margin: 0 .3rem; | ||
| 87 | + border-bottom: none; | ||
| 88 | + | ||
| 89 | +} | ||
| 90 | +.character-1,.character-2,.character-3,.character-4{ | ||
| 91 | + display: block; | ||
| 92 | + font-size: 15px; | ||
| 93 | + font-weight: bold; | ||
| 94 | + color: #333; | ||
| 95 | + height: .8rem; | ||
| 96 | + line-height: .8rem; | ||
| 97 | + | ||
| 98 | +} | ||
| 99 | +.character-1,.character-2,.character-3,.character-4{ | ||
| 100 | + border-bottom:1px solid #ccc; | ||
| 101 | +} | ||
| 102 | +.character-1 a,.character-2 a,.character-3 a,.character-4 a{ | ||
| 103 | + float: right; | ||
| 104 | + margin-right: .5rem; | ||
| 105 | + font-size: 24px; | ||
| 106 | + color:#333; | ||
| 107 | + font-weight: 100; | ||
| 108 | + | ||
| 109 | +} | ||
| 110 | + | ||
| 111 | + | ||
| 112 | +/*展开动画*/ | ||
| 113 | +#character-1-unfold,#character-2-unfold,#character-3-unfold,#character-4-unfold{ | ||
| 114 | + -webkit-animation: fadeInDown 1s 0s both; | ||
| 115 | + animation: fadeInDown 1s 0s both; | ||
| 116 | +} | ||
| 117 | + | ||
| 118 | + | ||
| 119 | +@-webkit-keyframes fadeInDown { | ||
| 120 | + 0% { | ||
| 121 | + opacity: 0; | ||
| 122 | + -webkit-transform: translate3d(0, -5%, 0); | ||
| 123 | + transform: translate3d(0, -5%, 0) | ||
| 124 | + } | ||
| 125 | + 100% { | ||
| 126 | + opacity: 1; | ||
| 127 | + -webkit-transform: none; | ||
| 128 | + transform: none | ||
| 129 | + } | ||
| 130 | +} | ||
| 131 | + | ||
| 132 | +@keyframes fadeInDown { | ||
| 133 | + 0% { | ||
| 134 | + opacity: 0; | ||
| 135 | + -webkit-transform: translate3d(0, -5%, 0); | ||
| 136 | + -ms-transform: translate3d(0, -5%, 0); | ||
| 137 | + transform: translate3d(0, -5%, 0) | ||
| 138 | + } | ||
| 139 | + 100% { | ||
| 140 | + opacity: 1; | ||
| 141 | + -webkit-transform: none; | ||
| 142 | + -ms-transform: none; | ||
| 143 | + transform: none | ||
| 144 | + } | ||
| 145 | +} | ||
| 146 | + | ||
| 147 | + | ||
| 148 | +@-webkit-keyframes rotateIn { | ||
| 149 | + 0% { | ||
| 150 | + -webkit-transform-origin: center; | ||
| 151 | + transform-origin: center; | ||
| 152 | + -webkit-transform: rotate3d(0, 0, 1, -200deg); | ||
| 153 | + transform: rotate3d(0, 0, 1, -200deg); | ||
| 154 | + opacity: 0 | ||
| 155 | + } | ||
| 156 | + 100% { | ||
| 157 | + -webkit-transform-origin: center; | ||
| 158 | + transform-origin: center; | ||
| 159 | + -webkit-transform: none; | ||
| 160 | + transform: none; | ||
| 161 | + opacity: 1 | ||
| 162 | + } | ||
| 163 | +} | ||
| 164 | + | ||
| 165 | +@keyframes rotateIn { | ||
| 166 | + 0% { | ||
| 167 | + -webkit-transform-origin: center; | ||
| 168 | + -ms-transform-origin: center; | ||
| 169 | + transform-origin: center; | ||
| 170 | + -webkit-transform: rotate3d(0, 0, 1, -200deg); | ||
| 171 | + -ms-transform: rotate3d(0, 0, 1, -200deg); | ||
| 172 | + transform: rotate3d(0, 0, 1, -200deg); | ||
| 173 | + opacity: 0 | ||
| 174 | + } | ||
| 175 | + 100% { | ||
| 176 | + -webkit-transform-origin: center; | ||
| 177 | + -ms-transform-origin: center; | ||
| 178 | + transform-origin: center; | ||
| 179 | + -webkit-transform: none; | ||
| 180 | + -ms-transform: none; | ||
| 181 | + transform: none; | ||
| 182 | + opacity: 1 | ||
| 183 | + } | ||
| 184 | +} | ||
| 185 | + | ||
| 186 | + | ||
| 187 | +/*展开*/ | ||
| 188 | +.character-1-unfold{ | ||
| 189 | + | ||
| 190 | + display: none; | ||
| 191 | + /*margin-left: .3rem;*/ | ||
| 192 | + margin-top: .8rem; | ||
| 193 | + margin-bottom: .8rem; | ||
| 194 | + /*margin-right: .3rem;*/ | ||
| 195 | + | ||
| 196 | +} | ||
| 197 | +.character-1-unfold .character-1-unfold-li1{ | ||
| 198 | + height: 2.09rem; | ||
| 199 | + /*margin-bottom: .8rem;*/ | ||
| 200 | +} | ||
| 201 | +.character-1-unfold .character-1-unfold-li1 span{ | ||
| 202 | + float: left; | ||
| 203 | + | ||
| 204 | + height: 1.29rem; | ||
| 205 | + width: 2.67rem; | ||
| 206 | +} | ||
| 207 | +.character-1-unfold .character-1-unfold-li1 span img{ | ||
| 208 | + height: 100%; | ||
| 209 | + width: 100%; | ||
| 210 | +} | ||
| 211 | +.character-1-unfold-li1-right{ | ||
| 212 | + float: right; | ||
| 213 | + width: 3.2rem; | ||
| 214 | + height:1.3rem; | ||
| 215 | +} | ||
| 216 | +.character-1-unfold-li1-right li:nth-child(1){ | ||
| 217 | + font-size: 13px; | ||
| 218 | + color: #333; | ||
| 219 | + font-weight: bold; | ||
| 220 | + | ||
| 221 | +} | ||
| 222 | +.character-1-unfold-li1-right li:nth-child(2),.character-1-unfold-li1-right li:nth-child(3){ | ||
| 223 | + font-size: 12px; | ||
| 224 | + color: #666; | ||
| 225 | + | ||
| 226 | +} | ||
| 227 | + | ||
| 228 | + | ||
| 229 | + | ||
| 230 | + | ||
| 231 | + | ||
| 232 | +.character-1-unfold .character-1-unfold-li2{ | ||
| 233 | + height: 1.79rem; | ||
| 234 | + margin-bottom: .8rem; | ||
| 235 | +} | ||
| 236 | +.character-1-unfold .character-1-unfold-li2 span{ | ||
| 237 | + float: right; | ||
| 238 | + | ||
| 239 | + height: 1.79rem; | ||
| 240 | + width: 3.01rem; | ||
| 241 | +} | ||
| 242 | +.character-1-unfold .character-1-unfold-li2 span img{ | ||
| 243 | + height: 100%; | ||
| 244 | + width: 100%; | ||
| 245 | +} | ||
| 246 | +.character-1-unfold-li2-right{ | ||
| 247 | + float: left; | ||
| 248 | + width: 3.2rem; | ||
| 249 | + height:1.3rem; | ||
| 250 | +} | ||
| 251 | +.character-1-unfold-li2-right li:nth-child(1){ | ||
| 252 | + font-size: 13px; | ||
| 253 | + color: #333; | ||
| 254 | + font-weight: bold; | ||
| 255 | + | ||
| 256 | +} | ||
| 257 | +.character-1-unfold-li2-right li:nth-child(2),.character-1-unfold-li2-right li:nth-child(3){ | ||
| 258 | + font-size: 12px; | ||
| 259 | + color: #666; | ||
| 260 | + | ||
| 261 | +} | ||
| 262 | + | ||
| 263 | + | ||
| 264 | + | ||
| 265 | + | ||
| 266 | +.character-1-unfold .character-1-unfold-li3{ | ||
| 267 | + height: 1.29rem; | ||
| 268 | + margin-bottom: .8rem; | ||
| 269 | +} | ||
| 270 | +.character-1-unfold .character-1-unfold-li3 span{ | ||
| 271 | + float: left; | ||
| 272 | + margin-top: -.5rem; | ||
| 273 | + height: 1.75rem; | ||
| 274 | + width: 2.83rem; | ||
| 275 | +} | ||
| 276 | +.character-1-unfold .character-1-unfold-li3 span img{ | ||
| 277 | + height: 100%; | ||
| 278 | + width: 100%; | ||
| 279 | +} | ||
| 280 | +.character-1-unfold-li3-right{ | ||
| 281 | + float: right; | ||
| 282 | + width: 3.2rem; | ||
| 283 | + height:1.3rem; | ||
| 284 | +} | ||
| 285 | +.character-1-unfold-li3-right li:nth-child(1){ | ||
| 286 | + font-size: 13px; | ||
| 287 | + color: #333; | ||
| 288 | + font-weight: bold; | ||
| 289 | + | ||
| 290 | +} | ||
| 291 | +.character-1-unfold-li3-right li:nth-child(2){ | ||
| 292 | + font-size:12px; | ||
| 293 | + color: #666; | ||
| 294 | + | ||
| 295 | +} | ||
| 296 | + | ||
| 297 | + | ||
| 298 | +.character-1-unfold .character-1-unfold-li4{ | ||
| 299 | + height: 1.79rem; | ||
| 300 | +} | ||
| 301 | +.character-1-unfold .character-1-unfold-li4 span{ | ||
| 302 | + float: right; | ||
| 303 | + | ||
| 304 | + margin-top: -.5rem; | ||
| 305 | + height: 2.24rem; | ||
| 306 | + width: 2.44rem; | ||
| 307 | +} | ||
| 308 | +.character-1-unfold .character-1-unfold-li4 span img{ | ||
| 309 | + height: 100%; | ||
| 310 | + width: 100%; | ||
| 311 | +} | ||
| 312 | +.character-1-unfold-li4-right{ | ||
| 313 | + float: left; | ||
| 314 | + width: 3.2rem; | ||
| 315 | + height:1.3rem; | ||
| 316 | +} | ||
| 317 | +.character-1-unfold-li4-right li:nth-child(1){ | ||
| 318 | + font-size:13px; | ||
| 319 | + color: #333; | ||
| 320 | + font-weight: bold; | ||
| 321 | +} | ||
| 322 | +.character-1-unfold-li4-right li:nth-child(2),.character-1-unfold-li4-right li:nth-child(3){ | ||
| 323 | + font-size:12px; | ||
| 324 | + color: #666; | ||
| 325 | + | ||
| 326 | +} | ||
| 327 | + | ||
| 328 | + | ||
| 329 | + | ||
| 330 | +.character-2-unfold{ | ||
| 331 | + display: none; | ||
| 332 | + margin-top: .8rem; | ||
| 333 | +} | ||
| 334 | +.character-2-unfold-ul1{ | ||
| 335 | + float: left; | ||
| 336 | +} | ||
| 337 | +.character-2-unfold-ul1 li{ | ||
| 338 | + width: .98rem; | ||
| 339 | + height: .98rem; | ||
| 340 | + margin-top: .9rem; | ||
| 341 | + margin-bottom: .9rem; | ||
| 342 | +} | ||
| 343 | +.character-2-unfold-ul1 li:nth-child(1){ | ||
| 344 | + margin-top: .2rem; | ||
| 345 | +} | ||
| 346 | +.character-2-unfold-ul1 li:nth-child(6){ | ||
| 347 | + margin-bottom: 0; | ||
| 348 | +} | ||
| 349 | +.character-2-unfold-ul1 li img{ | ||
| 350 | + width: 100%; | ||
| 351 | + height: 100%; | ||
| 352 | +} | ||
| 353 | +.character-2-unfold-ul2{ | ||
| 354 | + float: left; | ||
| 355 | + width: 5.3rem; | ||
| 356 | + margin-left: .4rem; | ||
| 357 | +} | ||
| 358 | +.character-2-unfold-ul2> p:nth-child(1), p:nth-child(4), p:nth-child(9), p:nth-child(12), p:nth-child(15), p:nth-child(18){ | ||
| 359 | + font-size: 13px; | ||
| 360 | + color: #333; | ||
| 361 | + font-weight: bold; | ||
| 362 | + margin-bottom: .24rem; | ||
| 363 | +} | ||
| 364 | +.character-2-unfold-ul2> p:nth-child(3), p:nth-child(8), p:nth-child(11), p:nth-child(14), p:nth-child(17),p:nth-child(21){ | ||
| 365 | + margin-bottom: .4rem; | ||
| 366 | + font-size: 12px; | ||
| 367 | +} | ||
| 368 | + | ||
| 369 | + | ||
| 370 | + | ||
| 371 | + | ||
| 372 | +.character-2-unfold .character-2-unfold-li1{ | ||
| 373 | + height: 2.09rem; | ||
| 374 | +} | ||
| 375 | +.character-2-unfold .character-2-unfold-li1 span{ | ||
| 376 | + float: left; | ||
| 377 | + | ||
| 378 | + height: .98rem; | ||
| 379 | + width: .98rem; | ||
| 380 | +} | ||
| 381 | +.character-2-unfold .character-2-unfold-li1 span img{ | ||
| 382 | + height: 100%; | ||
| 383 | + width: 100%; | ||
| 384 | +} | ||
| 385 | +.character-2-unfold-li1-right{ | ||
| 386 | + float: left; | ||
| 387 | + width: 5.5rem; | ||
| 388 | + height:1.3rem; | ||
| 389 | + margin-left: .4rem; | ||
| 390 | +} | ||
| 391 | +.character-2-unfold-li1-right li:nth-child(1){ | ||
| 392 | + font-size: 13px; | ||
| 393 | + color: #333; | ||
| 394 | + font-weight: bold; | ||
| 395 | + | ||
| 396 | +} | ||
| 397 | +.character-2-unfold-li1-right li:nth-child(2){ | ||
| 398 | + font-size: 12px; | ||
| 399 | + color: #666; | ||
| 400 | + margin-top: .1rem; | ||
| 401 | + | ||
| 402 | +} | ||
| 403 | + | ||
| 404 | + | ||
| 405 | + | ||
| 406 | + | ||
| 407 | + | ||
| 408 | + | ||
| 409 | + | ||
| 410 | +.character-3-unfold{ | ||
| 411 | + display: none; | ||
| 412 | + margin: .8rem .5rem; | ||
| 413 | + | ||
| 414 | +} | ||
| 415 | + | ||
| 416 | +.character-3-unfold .character-3-unfold-li1,.character-3-unfold .character-3-unfold-li2{ | ||
| 417 | + height: 1rem; | ||
| 418 | +} | ||
| 419 | +.character-3-unfold .character-3-unfold-li1 span:nth-child(1){ | ||
| 420 | + float: left; | ||
| 421 | + width: .26rem; | ||
| 422 | + height: .26rem; | ||
| 423 | +} | ||
| 424 | +.character-3-unfold .character-3-unfold-li1 span:nth-child(1) img,.character-3-unfold .character-3-unfold-li1 span:nth-child(3) img,.character-3-unfold .character-3-unfold-li2 span:nth-child(1) img,.character-3-unfold .character-3-unfold-li2 span:nth-child(3) img{ | ||
| 425 | + width: 100%; | ||
| 426 | + height: 100%; | ||
| 427 | +} | ||
| 428 | + | ||
| 429 | +.character-3-unfold .character-3-unfold-li1 span:nth-child(2){ | ||
| 430 | + float: left; | ||
| 431 | + width: 2rem; | ||
| 432 | + height: 1.6rem; | ||
| 433 | + margin-left: .3rem; | ||
| 434 | +} | ||
| 435 | +.character-3-unfold .character-3-unfold-li1 span:nth-child(3){ | ||
| 436 | + float: left; | ||
| 437 | + margin-left: .7rem; | ||
| 438 | + width: .26rem; | ||
| 439 | + height: .26rem; | ||
| 440 | +} | ||
| 441 | + | ||
| 442 | + | ||
| 443 | +.character-3-unfold .character-3-unfold-li1 span:nth-child(4){ | ||
| 444 | + float: left; | ||
| 445 | + width: 2rem; | ||
| 446 | + height: 1.6rem; | ||
| 447 | + margin-left: .3rem; | ||
| 448 | +} | ||
| 449 | + | ||
| 450 | + | ||
| 451 | + | ||
| 452 | + | ||
| 453 | +.character-3-unfold .character-3-unfold-li2 span:nth-child(1){ | ||
| 454 | + float: left; | ||
| 455 | + margin-top: .7rem; | ||
| 456 | + width: .26rem; | ||
| 457 | + height: .26rem; | ||
| 458 | + | ||
| 459 | +} | ||
| 460 | +.character-3-unfold .character-3-unfold-li2 span:nth-child(2){ | ||
| 461 | + float: left; | ||
| 462 | + width: 2rem; | ||
| 463 | + height: 1.6rem; | ||
| 464 | + margin-left: .3rem; | ||
| 465 | + margin-top: .7rem; | ||
| 466 | + | ||
| 467 | +} | ||
| 468 | +.character-3-unfold .character-3-unfold-li2 span:nth-child(3){ | ||
| 469 | + float: left; | ||
| 470 | + margin-left: .7rem; | ||
| 471 | + margin-top: .7rem; | ||
| 472 | + width: .26rem; | ||
| 473 | + height: .26rem; | ||
| 474 | +} | ||
| 475 | +.character-3-unfold .character-3-unfold-li2 span:nth-child(4){ | ||
| 476 | + float: left; | ||
| 477 | + width: 2rem; | ||
| 478 | + height: 1.6rem; | ||
| 479 | + margin-left: .3rem; | ||
| 480 | + margin-top: .7rem; | ||
| 481 | + | ||
| 482 | +} | ||
| 483 | + | ||
| 484 | + | ||
| 485 | + | ||
| 486 | +.character-4-unfold{ | ||
| 487 | + display: none; | ||
| 488 | + margin: .8rem .5rem; | ||
| 489 | +} | ||
| 490 | + | ||
| 491 | + | ||
| 492 | + | ||
| 493 | + | ||
| 494 | +.scene-1{ | ||
| 495 | + background:#fafafa; | ||
| 496 | + padding:.8rem .3rem .5rem .3rem; | ||
| 497 | + | ||
| 498 | +} | ||
| 499 | +.scene-1 p:nth-child(1){ | ||
| 500 | + font-size: 14px; | ||
| 501 | + font-weight:bold; | ||
| 502 | + color: #333; | ||
| 503 | + height: .28rem; | ||
| 504 | +} | ||
| 505 | +.scene-2{ | ||
| 506 | + background:#fafafa; | ||
| 507 | + padding-bottom:.5rem; | ||
| 508 | + | ||
| 509 | +} | ||
| 510 | +.scene-2 p:nth-child(1){ | ||
| 511 | + font-size: 13px; | ||
| 512 | + color: #666; | ||
| 513 | +} | ||
| 514 | + | ||
| 515 | +.scene-3{ | ||
| 516 | + width:100%; | ||
| 517 | + margin-left:auto; | ||
| 518 | + margin-right: auto; | ||
| 519 | + | ||
| 520 | +} | ||
| 521 | +.scene-3-inner{ | ||
| 522 | + width:100%; | ||
| 523 | + height: auto; | ||
| 524 | + text-align: center; | ||
| 525 | +} | ||
| 526 | +.scene-3-a{ | ||
| 527 | + | ||
| 528 | + font-size: 18px; | ||
| 529 | + color: #666; | ||
| 530 | + display:inline-block; | ||
| 531 | + text-align: left; | ||
| 532 | +} | ||
| 533 | +.scene-3-b{ | ||
| 534 | + | ||
| 535 | + font-size: 18px; | ||
| 536 | + color: #666; | ||
| 537 | + display:inline-block; | ||
| 538 | + text-align: left; | ||
| 539 | + margin-left: .5rem; | ||
| 540 | +} | ||
| 541 | +.scene-3-c{ | ||
| 542 | + | ||
| 543 | + font-size: 18px; | ||
| 544 | + color: #666; | ||
| 545 | + display:inline-block; | ||
| 546 | + text-align: left; | ||
| 547 | + margin-left: .5rem; | ||
| 548 | +} | ||
| 549 | + | ||
| 550 | +.case-1{ | ||
| 551 | + background:#ecf0f3; | ||
| 552 | + padding-top: .8rem; | ||
| 553 | + padding-bottom: .5rem; | ||
| 554 | + padding-left: .3rem; | ||
| 555 | +} | ||
| 556 | +.case-1 p{ | ||
| 557 | + color:#333; | ||
| 558 | + font-weight:bold; | ||
| 559 | + font-size:15px; | ||
| 560 | +} | ||
| 561 | + | ||
| 562 | + | ||
| 563 | +.case-2{ | ||
| 564 | + background:#ecf0f3; | ||
| 565 | + height: 100%; | ||
| 566 | +} | ||
| 567 | +.case-2 li:nth-child(1){ | ||
| 568 | + margin-bottom: .5rem; | ||
| 569 | + height: .42rem; | ||
| 570 | + line-height: .42rem; | ||
| 571 | + | ||
| 572 | +} | ||
| 573 | + | ||
| 574 | +.case-2 li:nth-child(1) span:nth-child(1){ | ||
| 575 | + float: left; | ||
| 576 | + margin-left:.3rem; | ||
| 577 | + height:.32rem; | ||
| 578 | + width: 1.01rem; | ||
| 579 | + | ||
| 580 | + | ||
| 581 | +} | ||
| 582 | + | ||
| 583 | +.case-2 li:nth-child(1) span:nth-child(2){ | ||
| 584 | + float: left; | ||
| 585 | + margin-left:.8rem; | ||
| 586 | + height:.41rem; | ||
| 587 | + line-height: .41rem; | ||
| 588 | + width: 0.94rem; | ||
| 589 | + margin-top: -.02rem; | ||
| 590 | + | ||
| 591 | + | ||
| 592 | +} | ||
| 593 | + | ||
| 594 | +.case-2 li:nth-child(1) span:nth-child(3){ | ||
| 595 | + float: left; | ||
| 596 | + margin-left:.8rem; | ||
| 597 | + height:.33rem; | ||
| 598 | + width: 1.56rem; | ||
| 599 | + | ||
| 600 | +} | ||
| 601 | + | ||
| 602 | +.case-2 li:nth-child(1) span:nth-child(4){ | ||
| 603 | + float: left; | ||
| 604 | + margin-left:.5rem; | ||
| 605 | + height:.36rem; | ||
| 606 | + width: 1.14rem; | ||
| 607 | + margin-top: -.07rem; | ||
| 608 | + | ||
| 609 | + | ||
| 610 | +} | ||
| 611 | +.case-2 li:nth-child(1) span:nth-child(1) img,.case-2 li:nth-child(1) span:nth-child(2) img,.case-2 li:nth-child(1) span:nth-child(3) img,.case-2 li:nth-child(1) span:nth-child(4) img{ | ||
| 612 | + height: 100%; | ||
| 613 | + width: 100%; | ||
| 614 | +} | ||
| 615 | + | ||
| 616 | + | ||
| 617 | + | ||
| 618 | + | ||
| 619 | +.case-2 li:nth-child(2){ | ||
| 620 | + margin-bottom: .5rem; | ||
| 621 | + height:.43rem ; | ||
| 622 | + | ||
| 623 | +} | ||
| 624 | +.case-2 li:nth-child(2) span:nth-child(1){ | ||
| 625 | + float: left; | ||
| 626 | + margin-left:.3rem; | ||
| 627 | + height:.26rem; | ||
| 628 | + width: 1.57rem; | ||
| 629 | + | ||
| 630 | +} | ||
| 631 | +.case-2 li:nth-child(2) span:nth-child(2){ | ||
| 632 | + float: left; | ||
| 633 | + margin-left:.2rem; | ||
| 634 | + height:.34rem; | ||
| 635 | + width: .88rem; | ||
| 636 | + | ||
| 637 | +} | ||
| 638 | +.case-2 li:nth-child(2) span:nth-child(3){ | ||
| 639 | + float: left; | ||
| 640 | + margin-left:.9rem; | ||
| 641 | + height:.31rem; | ||
| 642 | + width: 1.43rem; | ||
| 643 | + | ||
| 644 | +} | ||
| 645 | +.case-2 li:nth-child(2) span:nth-child(4){ | ||
| 646 | + float: left; | ||
| 647 | + margin-left:.6rem; | ||
| 648 | + height:.31rem; | ||
| 649 | + width: 1.03rem; | ||
| 650 | + | ||
| 651 | +} | ||
| 652 | +.case-2 li:nth-child(2) span:nth-child(1) img,.case-2 li:nth-child(2) span:nth-child(2) img,.case-2 li:nth-child(2) span:nth-child(3) img,.case-2 li:nth-child(2) span:nth-child(4) img{ | ||
| 653 | + height: 100%; | ||
| 654 | + width: 100%; | ||
| 655 | +} | ||
| 656 | + | ||
| 657 | + | ||
| 658 | +.case-2 li:nth-child(3){ | ||
| 659 | + margin-bottom: .8rem; | ||
| 660 | + height: .27rem; | ||
| 661 | + line-height: .27rem; | ||
| 662 | +} | ||
| 663 | +.case-2 li:nth-child(3) span:nth-child(1){ | ||
| 664 | + float: left; | ||
| 665 | + margin-left:.3rem; | ||
| 666 | + height:.24rem; | ||
| 667 | + width: 1.37rem; | ||
| 668 | + | ||
| 669 | +} | ||
| 670 | +.case-2 li:nth-child(3) span:nth-child(2){ | ||
| 671 | + float: left; | ||
| 672 | + margin-left:.4rem; | ||
| 673 | + height:.26rem; | ||
| 674 | + width: .98rem; | ||
| 675 | + | ||
| 676 | +} | ||
| 677 | +.case-2 li:nth-child(3) span:nth-child(3){ | ||
| 678 | + float: left; | ||
| 679 | + margin-left:.8rem; | ||
| 680 | + height:.26rem; | ||
| 681 | + width: 2.36rem; | ||
| 682 | + | ||
| 683 | +} | ||
| 684 | +.case-2 li:nth-child(3) span:nth-child(1) img,.case-2 li:nth-child(3) span:nth-child(2) img,.case-2 li:nth-child(3) span:nth-child(3) img{ | ||
| 685 | + height: 100%; | ||
| 686 | + width: 100%; | ||
| 687 | +} | ||
| 688 | + | ||
| 689 | + | ||
| 690 | + | ||
| 691 | +.company-1{ | ||
| 692 | + padding-top: .8rem; | ||
| 693 | + padding-bottom: .5rem; | ||
| 694 | + padding-left: .3rem; | ||
| 695 | +} | ||
| 696 | +.company-1 p{ | ||
| 697 | + color:#333; | ||
| 698 | + font-weight:bold; | ||
| 699 | + font-size: 15px; | ||
| 700 | +} | ||
| 701 | +.company-2{ | ||
| 702 | + background: #fafafa; | ||
| 703 | + margin:0 .3rem 0 .3rem; | ||
| 704 | + border: 1px solid #ccc; | ||
| 705 | + border-left: none; | ||
| 706 | + border-top:none; | ||
| 707 | + border-right: none; | ||
| 708 | + padding-bottom: .8rem; | ||
| 709 | +} | ||
| 710 | +.company-2 p{ | ||
| 711 | + font-size:13px; | ||
| 712 | + color: #666; | ||
| 713 | +} | ||
| 714 | +.technology{ | ||
| 715 | + width:100%; | ||
| 716 | + margin-left: auto; | ||
| 717 | + margin-right: auto; | ||
| 718 | + margin-top: .8rem; | ||
| 719 | + margin-bottom: .8rem; | ||
| 720 | + text-align: center; | ||
| 721 | +} | ||
| 722 | +.technology-1{ | ||
| 723 | + /*float: left;*/ | ||
| 724 | + display:inline-block; | ||
| 725 | + text-align: left; | ||
| 726 | +} | ||
| 727 | +.technology-1 li:nth-of-type(1){ | ||
| 728 | + font-size: 12px; | ||
| 729 | + color: #333; | ||
| 730 | + font-weight: bold; | ||
| 731 | +} | ||
| 732 | +.technology-1 li:nth-of-type(2){ | ||
| 733 | + margin-top: .3rem; | ||
| 734 | + font-size: 10px; | ||
| 735 | + color: #666; | ||
| 736 | +} | ||
| 737 | +.technology-1 li:nth-of-type(3){ | ||
| 738 | + font-size: 10px; | ||
| 739 | + color: #666; | ||
| 740 | + | ||
| 741 | +} | ||
| 742 | + | ||
| 743 | + | ||
| 744 | + | ||
| 745 | +.technology-2{ | ||
| 746 | + /*float: left;*/ | ||
| 747 | + margin-left: .3rem; | ||
| 748 | + display:inline-block; | ||
| 749 | + text-align: left; | ||
| 750 | +} | ||
| 751 | +.technology-2 li:nth-of-type(1){ | ||
| 752 | + font-size: 12px; | ||
| 753 | + color: #333; | ||
| 754 | + font-weight: bold; | ||
| 755 | +} | ||
| 756 | +.technology-2 li:nth-of-type(2){ | ||
| 757 | + margin-top: .3rem; | ||
| 758 | + font-size: 10px; | ||
| 759 | + color: #666; | ||
| 760 | +} | ||
| 761 | +.technology-2 li:nth-of-type(3){ | ||
| 762 | + font-size: 10px; | ||
| 763 | + color: #666; | ||
| 764 | + | ||
| 765 | +} | ||
| 766 | +.technology-3{ | ||
| 767 | + /*float: left;*/ | ||
| 768 | + margin-left: .3rem; | ||
| 769 | + display:inline-block; | ||
| 770 | + text-align: left; | ||
| 771 | +} | ||
| 772 | +.technology-3 li:nth-of-type(1){ | ||
| 773 | + font-size: 12px; | ||
| 774 | + color: #333; | ||
| 775 | + font-weight: bold; | ||
| 776 | +} | ||
| 777 | +.technology-3 li:nth-of-type(2){ | ||
| 778 | + margin-top: .3rem; | ||
| 779 | + font-size: 10px; | ||
| 780 | + color: #666; | ||
| 781 | +} | ||
| 782 | +.technology-3 li:nth-of-type(3){ | ||
| 783 | + font-size: 10px; | ||
| 784 | + color: #666; | ||
| 785 | + | ||
| 786 | +} | ||
| 787 | + | ||
| 788 | +.QRcode{ | ||
| 789 | + height: 2.12rem; | ||
| 790 | + width: 2.12rem; | ||
| 791 | + margin-left: .3rem; | ||
| 792 | + margin-bottom: .3rem; | ||
| 793 | +} | ||
| 794 | +.QRcode span{ | ||
| 795 | + height: 1.06rem; | ||
| 796 | + width: 1.06rem; | ||
| 797 | + | ||
| 798 | + | ||
| 799 | +} | ||
| 800 | +.QRcode span img{ | ||
| 801 | + width: 100%; | ||
| 802 | + height: 100%; | ||
| 803 | + | ||
| 804 | +} | ||
| 805 | + | ||
| 806 | +.sanmang{ | ||
| 807 | + margin-bottom: 1.05rem; | ||
| 808 | + margin-left: .3rem; | ||
| 809 | +} | ||
| 810 | +.sanmang p{ | ||
| 811 | + font-size:9px; | ||
| 812 | + color: #999; | ||
| 813 | +} | ||
| 814 | + | ||
| 815 | +.footer{ | ||
| 816 | + height: 1.05rem; | ||
| 817 | + line-height:1.05rem; | ||
| 818 | + position: fixed; | ||
| 819 | + width: 100%; | ||
| 820 | + bottom: 0; | ||
| 821 | + background:#000; | ||
| 822 | + filter:alpha(opacity=80); | ||
| 823 | + opacity: 0.8; | ||
| 824 | + -moz-opacity: 0.8; | ||
| 825 | + | ||
| 826 | +} | ||
| 827 | + | ||
| 828 | +.footer a:nth-of-type(1){ | ||
| 829 | + float: left; | ||
| 830 | + margin-left: .1rem; | ||
| 831 | + margin-top: .1rem; | ||
| 832 | + width: .3rem; | ||
| 833 | + height: .3rem; | ||
| 834 | + line-height: .3rem; | ||
| 835 | + background:url("../images/close.png") no-repeat center center; | ||
| 836 | + background-size:.3rem .3rem ; | ||
| 837 | + | ||
| 838 | +} | ||
| 839 | +.footer a:nth-of-type(1):active{ | ||
| 840 | + background:url("../images/close-pre.png") no-repeat center center; | ||
| 841 | + background-size:.3rem .3rem ; | ||
| 842 | +} | ||
| 843 | + | ||
| 844 | +/*免费体验*/ | ||
| 845 | + | ||
| 846 | +.footer a:nth-of-type(2){ | ||
| 847 | + float: left; | ||
| 848 | + font-size:15px; | ||
| 849 | + color: #3498db; | ||
| 850 | + margin-left: .8rem; | ||
| 851 | + background:url("../images/experience-normal.png") no-repeat left center; | ||
| 852 | + background-size:0.33rem 0.33rem; | ||
| 853 | + height: 1.05rem; | ||
| 854 | + line-height: 1.05rem; | ||
| 855 | + text-align: center; | ||
| 856 | + width: 2.4rem; | ||
| 857 | +} | ||
| 858 | +.footer a:nth-of-type(2):active{ | ||
| 859 | + color: #c2e0f2; | ||
| 860 | + background:url("../images/experience-pre.png") no-repeat left center; | ||
| 861 | + background-size:0.33rem 0.33rem; | ||
| 862 | +} | ||
| 863 | + | ||
| 864 | + | ||
| 865 | + | ||
| 866 | +/*竖线*/ | ||
| 867 | +.footer .line{ | ||
| 868 | + float: left; | ||
| 869 | + border: 1px solid #1a1a1a; | ||
| 870 | + height: .58rem; | ||
| 871 | + line-height: .58rem; | ||
| 872 | + /*color: #1a1a1a;*/ | ||
| 873 | + margin-top: .2rem; | ||
| 874 | + margin-left: .2rem; | ||
| 875 | + z-index: 1000; | ||
| 876 | +} | ||
| 877 | + | ||
| 878 | + | ||
| 879 | +/*在线咨询*/ | ||
| 880 | +.footer a:nth-of-type(3){ | ||
| 881 | + float: left; | ||
| 882 | + font-size: 15px; | ||
| 883 | + color: #3498db; | ||
| 884 | + margin-left: .7rem; | ||
| 885 | + background:url("../images/consult-normal.png") no-repeat left center; | ||
| 886 | + background-size:0.33rem 0.33rem; | ||
| 887 | + height: 1.05rem; | ||
| 888 | + line-height: 1.05rem; | ||
| 889 | + text-align: center; | ||
| 890 | + width: 2.5rem; | ||
| 891 | +} | ||
| 892 | +.footer a:nth-of-type(3):active{ | ||
| 893 | + color: #c2e0f2; | ||
| 894 | + background:url("../images/consult-pre.png") no-repeat left center; | ||
| 895 | + background-size:0.33rem 0.33rem; | ||
| 896 | +} | ||
| 897 | + | ||
| 898 | + | ||
| 899 | + | ||
| 900 | + | ||
| 901 | + |
css/reset.min.css
0 → 100644
| 1 | +@charset "utf-8"; | ||
| 2 | +/*!--CSS重置和样式初始化(参考Normalize.css) ~ --*/ | ||
| 3 | +body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, button, input, textarea, th, td { | ||
| 4 | + margin: 0; | ||
| 5 | + padding: 0 | ||
| 6 | +} | ||
| 7 | + | ||
| 8 | +body { | ||
| 9 | + font-size: 12px; | ||
| 10 | + font-style: normal; | ||
| 11 | + font-family: "\5FAE\8F6F\96C5\9ED1", Helvetica, sans-serif | ||
| 12 | +} | ||
| 13 | + | ||
| 14 | +small { | ||
| 15 | + font-size: 12px | ||
| 16 | +} | ||
| 17 | + | ||
| 18 | +h1 { | ||
| 19 | + font-size: 18px | ||
| 20 | +} | ||
| 21 | + | ||
| 22 | +h2 { | ||
| 23 | + font-size: 16px | ||
| 24 | +} | ||
| 25 | + | ||
| 26 | +h3 { | ||
| 27 | + font-size: 14px | ||
| 28 | +} | ||
| 29 | + | ||
| 30 | +h4, h5, h6 { | ||
| 31 | + font-size: 100% | ||
| 32 | +} | ||
| 33 | + | ||
| 34 | +ul, ol, li { | ||
| 35 | + list-style: none | ||
| 36 | +} | ||
| 37 | + | ||
| 38 | +a { | ||
| 39 | + text-decoration: none; | ||
| 40 | + background-color: transparent | ||
| 41 | +} | ||
| 42 | + | ||
| 43 | +a:hover, a:active { | ||
| 44 | + outline-width: 0; | ||
| 45 | + text-decoration: none | ||
| 46 | +} | ||
| 47 | + | ||
| 48 | +table { | ||
| 49 | + border-collapse: collapse; | ||
| 50 | + border-spacing: 0 | ||
| 51 | +} | ||
| 52 | + | ||
| 53 | +hr { | ||
| 54 | + border: 0; | ||
| 55 | + height: 1px | ||
| 56 | +} | ||
| 57 | + | ||
| 58 | +img { | ||
| 59 | + border-style: none | ||
| 60 | +} | ||
| 61 | + | ||
| 62 | +img:not([src]) { | ||
| 63 | + display: none | ||
| 64 | +} | ||
| 65 | + | ||
| 66 | +svg:not(:root) { | ||
| 67 | + overflow: hidden | ||
| 68 | +} | ||
| 69 | + | ||
| 70 | +html { | ||
| 71 | + -webkit-touch-callout: none; | ||
| 72 | + -webkit-text-size-adjust: 100% | ||
| 73 | +} | ||
| 74 | + | ||
| 75 | +input, textarea, button, a { | ||
| 76 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0) | ||
| 77 | +} | ||
| 78 | + | ||
| 79 | +article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { | ||
| 80 | + display: block | ||
| 81 | +} | ||
| 82 | + | ||
| 83 | +audio, canvas, progress, video { | ||
| 84 | + display: inline-block | ||
| 85 | +} | ||
| 86 | + | ||
| 87 | +audio:not([controls]), video:not([controls]) { | ||
| 88 | + display: none; | ||
| 89 | + height: 0 | ||
| 90 | +} | ||
| 91 | + | ||
| 92 | +progress { | ||
| 93 | + vertical-align: baseline | ||
| 94 | +} | ||
| 95 | + | ||
| 96 | +mark { | ||
| 97 | + background-color: #ff0; | ||
| 98 | + color: #000 | ||
| 99 | +} | ||
| 100 | + | ||
| 101 | +sub, sup { | ||
| 102 | + position: relative; | ||
| 103 | + font-size: 75%; | ||
| 104 | + line-height: 0; | ||
| 105 | + vertical-align: baseline | ||
| 106 | +} | ||
| 107 | + | ||
| 108 | +sub { | ||
| 109 | + bottom: -0.25em | ||
| 110 | +} | ||
| 111 | + | ||
| 112 | +sup { | ||
| 113 | + top: -0.5em | ||
| 114 | +} | ||
| 115 | + | ||
| 116 | +button, input, select, textarea { | ||
| 117 | + font-size: 100%; | ||
| 118 | + outline: 0 | ||
| 119 | +} | ||
| 120 | + | ||
| 121 | +button, input { | ||
| 122 | + overflow: visible | ||
| 123 | +} | ||
| 124 | + | ||
| 125 | +button, select { | ||
| 126 | + text-transform: none | ||
| 127 | +} | ||
| 128 | + | ||
| 129 | +textarea { | ||
| 130 | + overflow: auto | ||
| 131 | +} | ||
| 132 | + | ||
| 133 | +button, html [type="button"], [type="reset"], [type="submit"] { | ||
| 134 | + -webkit-appearance: button | ||
| 135 | +} | ||
| 136 | + | ||
| 137 | +button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { | ||
| 138 | + border-style: none; | ||
| 139 | + padding: 0 | ||
| 140 | +} | ||
| 141 | + | ||
| 142 | +button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { | ||
| 143 | + outline: 1px dotted ButtonText | ||
| 144 | +} | ||
| 145 | + | ||
| 146 | +[type="checkbox"], [type="radio"] { | ||
| 147 | + box-sizing: border-box; | ||
| 148 | + padding: 0 | ||
| 149 | +} | ||
| 150 | + | ||
| 151 | +[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { | ||
| 152 | + height: auto | ||
| 153 | +} | ||
| 154 | + | ||
| 155 | +[type="search"] { | ||
| 156 | + -webkit-appearance: textfield; | ||
| 157 | + outline-offset: -2px | ||
| 158 | +} | ||
| 159 | + | ||
| 160 | +[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { | ||
| 161 | + -webkit-appearance: none | ||
| 162 | +} | ||
| 163 | + | ||
| 164 | +::-webkit-input-placeholder { | ||
| 165 | + color: inherit; | ||
| 166 | + opacity: .54 | ||
| 167 | +} | ||
| 168 | + | ||
| 169 | +::-webkit-file-upload-button { | ||
| 170 | + -webkit-appearance: button; | ||
| 171 | + font: inherit | ||
| 172 | +} | ||
| 173 | + | ||
| 174 | +.clear:after { | ||
| 175 | + display: block; | ||
| 176 | + height: 0; | ||
| 177 | + content: ""; | ||
| 178 | + clear: both | ||
| 179 | +} | ||
| 180 | +/*去除浮动*/ | ||
| 181 | +.clear{ clear:both; overflow:hidden; zoom:1; float:none;} |
css/trials.css
0 → 100644
| 1 | +html,body{ | ||
| 2 | + height: auto; | ||
| 3 | +} | ||
| 4 | +.product_trial_formbox { | ||
| 5 | + width: 100%; | ||
| 6 | + overflow-x:hidden; | ||
| 7 | + | ||
| 8 | +} | ||
| 9 | +.product_trial_formbox_head{ | ||
| 10 | + width: 7.5rem; | ||
| 11 | +} | ||
| 12 | +.product_trial_formbox_head img{ | ||
| 13 | + width:100%; | ||
| 14 | + height: 100%; | ||
| 15 | +} | ||
| 16 | + | ||
| 17 | +.product_trial_formbox_content p{ | ||
| 18 | + margin-top: .5rem; | ||
| 19 | + font-size: .4rem; | ||
| 20 | + padding:.2rem .5rem; | ||
| 21 | + color:#666; | ||
| 22 | +} | ||
| 23 | +.product_trial_formbox_content { | ||
| 24 | + | ||
| 25 | + width: 100%; | ||
| 26 | + background: #fff; | ||
| 27 | + color: #333; | ||
| 28 | +} | ||
| 29 | +.detailForm{ | ||
| 30 | + margin-top: .5rem; | ||
| 31 | +} | ||
| 32 | + | ||
| 33 | +.product_trial_formbox_content input { | ||
| 34 | + width: 4.5rem; | ||
| 35 | + border: 1px #ccc solid; | ||
| 36 | + border-radius: .03rem; | ||
| 37 | + text-indent: .06rem; | ||
| 38 | + margin-bottom: .4rem; | ||
| 39 | + font-size: .3rem; | ||
| 40 | + background: #fdfdfd; | ||
| 41 | + line-height: .4rem; | ||
| 42 | + height:.8rem; | ||
| 43 | + -webkit-box-sizing: border-box; | ||
| 44 | + -moz-box-sizing: border-box; | ||
| 45 | + box-sizing: border-box; | ||
| 46 | + color: #666; | ||
| 47 | +} | ||
| 48 | + | ||
| 49 | +.product_trial_formbox_content label { | ||
| 50 | + margin-left: .8rem; | ||
| 51 | + font-size: .4rem; | ||
| 52 | +} | ||
| 53 | +.product_trial_formbox_content label:nth-of-type(4),label:nth-of-type(5){ | ||
| 54 | + margin-left: 1.1rem; | ||
| 55 | +} | ||
| 56 | + | ||
| 57 | +.submit_trail { | ||
| 58 | + width: 3.88rem; | ||
| 59 | + height: 1rem; | ||
| 60 | + margin-top: .4rem; | ||
| 61 | + margin-bottom: .8rem; | ||
| 62 | + background: #2ecc71; | ||
| 63 | + margin-left: 1.8rem; | ||
| 64 | + font-size: .4rem; | ||
| 65 | + line-height: 1rem; | ||
| 66 | + display: block; | ||
| 67 | + float: left; | ||
| 68 | + text-align: center; | ||
| 69 | + -moz-border-radius: 0.03rem; | ||
| 70 | + -webkit-border-radius: 0.03rem; /* Webkit browsers */ | ||
| 71 | + border-radius: 0.03rem; | ||
| 72 | + color: #fff; | ||
| 73 | + | ||
| 74 | +} | ||
| 75 | +.submit_trail:hover { | ||
| 76 | + background: #00b960; | ||
| 77 | +} |
images/1.png
0 → 100644
280.0 KB
images/advantage/advantage-1.png
0 → 100644
2.0 KB
images/advantage/advantage-2.png
0 → 100644
2.0 KB
images/advantage/advantage-3.png
0 → 100644
2.0 KB
images/advantage/advantage-4.png
0 → 100644
2.1 KB
images/apply-try.png
0 → 100644
5.4 KB
images/case/case-img-1.png
0 → 100644
3.9 KB
images/case/case-img-10.png
0 → 100644
7.6 KB
images/case/case-img-11.png
0 → 100644
10.5 KB
images/case/case-img-2.png
0 → 100644
6.3 KB
images/case/case-img-3.png
0 → 100644
8.5 KB
images/case/case-img-4.png
0 → 100644
7.9 KB
images/case/case-img-5.png
0 → 100644
12.1 KB
images/case/case-img-6.png
0 → 100644
3.4 KB
images/case/case-img-7.png
0 → 100644
5.7 KB
images/case/case-img-8.png
0 → 100644
4.0 KB
images/case/case-img-9.png
0 → 100644
12.6 KB
images/character/character-1-unfold-1.png
0 → 100644
7.8 KB
images/character/character-1-unfold-2.png
0 → 100644
17.2 KB
images/character/character-1-unfold-3.png
0 → 100644
10.2 KB
images/character/character-1-unfold-4.png
0 → 100644
22.0 KB
images/close-pre.png
0 → 100644
1.1 KB
images/close.png
0 → 100644
1.1 KB
images/consult-normal.png
0 → 100644
1.7 KB
images/consult-pre.png
0 → 100644
1.7 KB
images/experience-normal.png
0 → 100644
1.5 KB
images/experience-pre.png
0 → 100644
1.5 KB
images/logo.png
0 → 100644
4.4 KB
images/phone.png
0 → 100644
1.3 KB
images/product/character-2-unfold-1.png
0 → 100644
2.9 KB
images/product/character-2-unfold-2.png
0 → 100644
5.5 KB
images/product/character-2-unfold-3.png
0 → 100644
6.4 KB
images/product/character-2-unfold-4.png
0 → 100644
5.5 KB
images/product/character-2-unfold-5.png
0 → 100644
3.4 KB
images/product/character-2-unfold-6.png
0 → 100644
3.6 KB
images/publicity-img.png
0 → 100644
230.9 KB
images/qrcode.png
0 → 100644
12.3 KB
images/scene/scene-span-1.png
0 → 100644
2.2 KB
images/scene/scene-span-2.png
0 → 100644
2.3 KB
images/scene/scene-span-3.png
0 → 100644
2.4 KB
images/scene/scene-span-4.png
0 → 100644
2.4 KB
images/scene/scene-span-5.png
0 → 100644
2.3 KB
images/scene/scene-span-6.png
0 → 100644
2.0 KB
index.html
0 → 100644
| 1 | + <!DOCTYPE html> | ||
| 2 | +<html lang="en"> | ||
| 3 | +<head> | ||
| 4 | + <meta charset="UTF-8"> | ||
| 5 | + <meta name="viewport" | ||
| 6 | + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/> | ||
| 7 | + <title>学点云</title> | ||
| 8 | + <link rel="stylesheet" type="text/css" href="css/reset.min.css"> | ||
| 9 | + <link rel="stylesheet" type="text/css" href="css/index.css"> | ||
| 10 | +</head> | ||
| 11 | +<body> | ||
| 12 | +<div class="content"> | ||
| 13 | + | ||
| 14 | + <div class="header"> | ||
| 15 | + <div class="logo"> | ||
| 16 | + <img src="images/logo.png" alt="logo"> | ||
| 17 | + </div> | ||
| 18 | + <p class="telNum">4008-922-902</p> | ||
| 19 | + | ||
| 20 | + <span class="tellogo"> | ||
| 21 | + <img src="images/phone.png" alt="电话"> | ||
| 22 | + </span> | ||
| 23 | + | ||
| 24 | + </div> | ||
| 25 | + | ||
| 26 | + <div class="publicity-img"> | ||
| 27 | + <img src="images/publicity-img.png"/> | ||
| 28 | + | ||
| 29 | + </div> | ||
| 30 | + | ||
| 31 | + <div class="publicity-text"> | ||
| 32 | + <span>学点云为在线教育量身打造的一款完全基于浏览器的纯Web实时互动直播教学服务产品,提供以SaaS服务形式的多点音视频互动及课件同步教学的综合服务。</span> | ||
| 33 | + </div> | ||
| 34 | + | ||
| 35 | + <!--平台优势/产品特色/技术优势--> | ||
| 36 | + <div class="character-outer"> | ||
| 37 | + <div class="character"> | ||
| 38 | + <!--平台优势--> | ||
| 39 | + <div id="character-1" class="character-1 clear"> | ||
| 40 | + <span>平台优势</span> | ||
| 41 | + <a id="character-1-a" href="javascript: void(0)" >+</a> | ||
| 42 | + </div> | ||
| 43 | + <!--平台优势-展开--> | ||
| 44 | + <div id="character-1-unfold" class="character-1-unfold clear"> | ||
| 45 | + <li class="character-1-unfold-li1 clear"> | ||
| 46 | + <span><img src="images/character/character-1-unfold-1.png" alt="开放数据接口无缝集成系统"/></span> | ||
| 47 | + | ||
| 48 | + <ul class="character-1-unfold-li1-right"> | ||
| 49 | + <li>开放数据接口无缝集成系统</li> | ||
| 50 | + <li>提供APP, API, SDK</li> | ||
| 51 | + <li>多种方式集成到任意第三方平台</li> | ||
| 52 | + </ul> | ||
| 53 | + </li> | ||
| 54 | + | ||
| 55 | + | ||
| 56 | + <li class="character-1-unfold-li2"> | ||
| 57 | + <ul class="character-1-unfold-li2-right"> | ||
| 58 | + <li>互动体验媲美真实课堂</li> | ||
| 59 | + <li>超过100个产品功能</li> | ||
| 60 | + <li>增强互动体验,媲美真实课堂</li> | ||
| 61 | + </ul> | ||
| 62 | + <span><img src="images/character/character-1-unfold-2.png" alt="互动体验媲美真实课堂"/></span> | ||
| 63 | + | ||
| 64 | + </li> | ||
| 65 | + | ||
| 66 | + <li class="character-1-unfold-li3"> | ||
| 67 | + <span><img src="images/character/character-1-unfold-3.png" alt="全平台多终端实时互动"/></span> | ||
| 68 | + | ||
| 69 | + <ul class="character-1-unfold-li3-right"> | ||
| 70 | + <li>全平台多终端实时互动</li> | ||
| 71 | + <li>PC/安卓/ios等均可实时同步接入</li> | ||
| 72 | + </ul> | ||
| 73 | + </li> | ||
| 74 | + <li class="character-1-unfold-li4"> | ||
| 75 | + <span><img src="images/character/character-1-unfold-4.png" alt="高可靠性的全球直播体验"/></span> | ||
| 76 | + | ||
| 77 | + <ul class="character-1-unfold-li4-right"> | ||
| 78 | + <li>高可靠性的全球直播体验</li> | ||
| 79 | + <li>国内国外实时交流</li> | ||
| 80 | + <li>完美支持国内国外的数据穿透</li> | ||
| 81 | + </ul> | ||
| 82 | + </li> | ||
| 83 | + | ||
| 84 | + </div> | ||
| 85 | + | ||
| 86 | + | ||
| 87 | + <!--产品特色--> | ||
| 88 | + <div id="character-2" class="character-2 clear"> | ||
| 89 | + <span>产品特色</span> | ||
| 90 | + <a id="character-2-a" href="javascript: void(0)">+</a> | ||
| 91 | + </div> | ||
| 92 | + <!--产品特色-展开--> | ||
| 93 | + <div id="character-2-unfold" class="character-2-unfold clear"> | ||
| 94 | + <li class="character-2-unfold-li1 clear"> | ||
| 95 | + <span><img src="images/product/character-2-unfold-1.png" alt="音视频互动"/></span> | ||
| 96 | + | ||
| 97 | + <ul class="character-2-unfold-li1-right"> | ||
| 98 | + <li>音视频互动</li> | ||
| 99 | + <li>支持多路音视频实时互动,双向音视频实时交流,国际专线保证国内国外实时交流。</li> | ||
| 100 | + <!--<li>国际专线保证国内国外实时交流</li>--> | ||
| 101 | + </ul> | ||
| 102 | + </li> | ||
| 103 | + | ||
| 104 | + <li class="character-2-unfold-li1 clear"> | ||
| 105 | + <span><img src="images/product/character-2-unfold-2.png" alt="文档共享"/></span> | ||
| 106 | + | ||
| 107 | + <ul class="character-2-unfold-li1-right"> | ||
| 108 | + <li>文档共享</li> | ||
| 109 | + <li>可共享Word、PPT、Excel、PDF等文档,并支持动态PPT的共享;文档采用矢量转化技术,可任意缩放;并提供丰富的文档绘图工具进行标注操作。</li> | ||
| 110 | + <!--<li>持动态PPT的共享;</li>--> | ||
| 111 | + <!--<li>文档采用矢量转化技术,可任意缩放;</li>--> | ||
| 112 | + <!--<li>并提供丰富的文档绘图工具进行标注操作。</li>--> | ||
| 113 | + </ul> | ||
| 114 | + </li> | ||
| 115 | + | ||
| 116 | + <li class="character-2-unfold-li1 clear"> | ||
| 117 | + <span><img src="images/product/character-2-unfold-3.png" alt="在线白板"/></span> | ||
| 118 | + | ||
| 119 | + <ul class="character-2-unfold-li1-right"> | ||
| 120 | + <li>在线白板</li> | ||
| 121 | + <li>使用鼠标、手写板可实现实时在线绘制任意图形,并支持本地保存。</li> | ||
| 122 | + <!--<li>并支持本地保存。</li>--> | ||
| 123 | + </ul> | ||
| 124 | + </li> | ||
| 125 | + | ||
| 126 | + <li class="character-2-unfold-li1 clear"> | ||
| 127 | + <span><img src="images/product/character-2-unfold-4.png" alt="课堂讨论"/></span> | ||
| 128 | + | ||
| 129 | + <ul class="character-2-unfold-li1-right"> | ||
| 130 | + <li>课堂讨论</li> | ||
| 131 | + <li>支持课堂文字、表情、举手、课堂讨论等100多种互动体验,满足教师与学生课堂内讨论、问答的互动需求。</li> | ||
| 132 | + <!--<li>多种互动体验,满足教师与学生课堂内讨论、</li>--> | ||
| 133 | + <!--<li>问答的互动需求。</li>--> | ||
| 134 | + </ul> | ||
| 135 | + </li> | ||
| 136 | + | ||
| 137 | + <li class="character-2-unfold-li1 clear"> | ||
| 138 | + <span><img src="images/product/character-2-unfold-5.png" alt="屏幕共享"/></span> | ||
| 139 | + | ||
| 140 | + <ul class="character-2-unfold-li1-right"> | ||
| 141 | + <li>屏幕共享</li> | ||
| 142 | + <li>支持的屏幕共享功能,教师与学生可实现实时、同步、保真的高清画面。</li> | ||
| 143 | + <!--<li>步、保真的高清画面。</li>--> | ||
| 144 | + </ul> | ||
| 145 | + </li> | ||
| 146 | + | ||
| 147 | + <li class="character-2-unfold-li1 clear"> | ||
| 148 | + <span><img src="images/product/character-2-unfold-6.png" alt="媒体共享"/></span> | ||
| 149 | + | ||
| 150 | + <ul class="character-2-unfold-li1-right"> | ||
| 151 | + <li>媒体共享</li> | ||
| 152 | + <li>教师可实时共享任意大小、任意格式的视频或音乐文件,所有学生端可实时观看。</li> | ||
| 153 | + <!--<li>音乐文件,所有学生端可实时观看。</li>--> | ||
| 154 | + </ul> | ||
| 155 | + </li> | ||
| 156 | + | ||
| 157 | + </div> | ||
| 158 | + | ||
| 159 | + | ||
| 160 | + | ||
| 161 | + | ||
| 162 | + <!--技术优势--> | ||
| 163 | + <div id="character-3" class="character-3 clear"> | ||
| 164 | + <span>技术优势</span> | ||
| 165 | + <a id="character-3-a" href="javascript: void(0)">+</a> | ||
| 166 | + | ||
| 167 | + </div> | ||
| 168 | + <!--技术优势-展开--> | ||
| 169 | + <div id="character-3-unfold" class="character-3-unfold clear"> | ||
| 170 | + <li class="character-3-unfold-li1"> | ||
| 171 | + <span><img src="images/advantage/advantage-1.png" alt=""></span> | ||
| 172 | + <span>世界领先的专业音视频技术,支持超大并发直播。</span> | ||
| 173 | + <span><img src="images/advantage/advantage-2.png" alt=""></span> | ||
| 174 | + <span>采用超低延迟技术,提供实时性互动的强大保障。</span> | ||
| 175 | + </li> | ||
| 176 | + <li class="character-3-unfold-li2"> | ||
| 177 | + <span><img src="images/advantage/advantage-3.png" alt=""></span> | ||
| 178 | + <span>完全支持目前主流720P、1080P等高清分辨率。</span> | ||
| 179 | + <span><img src="images/advantage/advantage-4.png" alt=""></span> | ||
| 180 | + <span>独创的噪音抑制技术,高效的抑制背景嘈杂声、电流声、嘶声。</span> | ||
| 181 | + </li> | ||
| 182 | + </div> | ||
| 183 | + | ||
| 184 | + <!--场景应用--> | ||
| 185 | + <div id="character-4" class="character-4 clear"> | ||
| 186 | + <span>场景应用</span> | ||
| 187 | + <a id="character-4-a" href="javascript: void(0)">+</a> | ||
| 188 | + | ||
| 189 | + </div> | ||
| 190 | + <!--场景应用-展开--> | ||
| 191 | + <div id="character-4-unfold" class="character-4-unfold clear"> | ||
| 192 | + <div class="scene-2"> | ||
| 193 | + <p>学点云为您打造在线教育可靠战略伙伴,建立互联网教育品牌的信心之选</p> | ||
| 194 | + </div> | ||
| 195 | + <div class="scene-3 "> | ||
| 196 | + <div class="scene-3-inner"> | ||
| 197 | + <ul class="scene-3-a"> | ||
| 198 | + <li>外语一对一</li> | ||
| 199 | + <li>留学咨询</li> | ||
| 200 | + </ul> | ||
| 201 | + <ul class="scene-3-b"> | ||
| 202 | + <li>互动课堂</li> | ||
| 203 | + <li>活动直播</li> | ||
| 204 | + </ul> | ||
| 205 | + <ul class="scene-3-c"> | ||
| 206 | + <li>直播课堂</li> | ||
| 207 | + <li>企业内训</li> | ||
| 208 | + </ul> | ||
| 209 | + </div> | ||
| 210 | + </div> | ||
| 211 | + </div> | ||
| 212 | + </div> | ||
| 213 | + </div> | ||
| 214 | + | ||
| 215 | + | ||
| 216 | + <!--典型案例--> | ||
| 217 | + <div class="case-1"> | ||
| 218 | + <p>典型案例</p> | ||
| 219 | + | ||
| 220 | + </div> | ||
| 221 | + | ||
| 222 | + | ||
| 223 | + <div class="case-2"> | ||
| 224 | + <li class="clear"> | ||
| 225 | + <span><img src="images/case/case-img-1.png" alt="小站教育"></span> | ||
| 226 | + <span><img src="images/case/case-img-2.png" alt="VIPKID"></span> | ||
| 227 | + <span><img src="images/case/case-img-3.png" alt="一起作业"></span> | ||
| 228 | + <span><img src="images/case/case-img-4.png" alt="明博教育"></span> | ||
| 229 | + </li> | ||
| 230 | + <li class="clear"> | ||
| 231 | + <span><img src="images/case/case-img-5.png" alt="上海开放大学"></span> | ||
| 232 | + <span><img src="images/case/case-img-6.png" alt="云校"></span> | ||
| 233 | + <span><img src="images/case/case-img-7.png" alt="北京师范大学"></span> | ||
| 234 | + <span><img src="images/case/case-img-8.png" alt="淘宝教育"></span> | ||
| 235 | + </li> | ||
| 236 | + <li class="clear"> | ||
| 237 | + <span><img src="images/case/case-img-9.png" alt="线话英语"></span> | ||
| 238 | + <span><img src="images/case/case-img-10.png" alt="高思教育"></span> | ||
| 239 | + <span><img src="images/case/case-img-11.png" alt="大知科技"></span> | ||
| 240 | + </li> | ||
| 241 | + | ||
| 242 | + </div> | ||
| 243 | + | ||
| 244 | + | ||
| 245 | + <!--公司简介--> | ||
| 246 | + <div class="company-1"> | ||
| 247 | + <p>公司简介</p> | ||
| 248 | + | ||
| 249 | + </div> | ||
| 250 | + <div class="company-2-outer"> | ||
| 251 | + <div class="company-2"> | ||
| 252 | + <p>多年在线教育实时课堂系统研发经验</p> | ||
| 253 | + <p>十年以上客户服务的经验积累,拥有大型的SaaS运营平台</p> | ||
| 254 | + <p>自主研发且拥有完全知识产权的多媒体实时通信平台</p> | ||
| 255 | + </div> | ||
| 256 | + </div> | ||
| 257 | + | ||
| 258 | + <div class="technology clear"> | ||
| 259 | + <ul class="technology-1"> | ||
| 260 | + <li>冗余设备</li> | ||
| 261 | + <li>多级服务器部署</li> | ||
| 262 | + <li>CDN加速遍布全国</li> | ||
| 263 | + </ul> | ||
| 264 | + <ul class="technology-2"> | ||
| 265 | + <li>安全保障</li> | ||
| 266 | + <li>所有数据安全加密</li> | ||
| 267 | + <li>全方位保障直播安全</li> | ||
| 268 | + </ul> | ||
| 269 | + <ul class="technology-3"> | ||
| 270 | + <li>技术支持</li> | ||
| 271 | + <li>7x24小时运维服务</li> | ||
| 272 | + <li>7x18小时在线支持</li> | ||
| 273 | + </ul> | ||
| 274 | + </div> | ||
| 275 | + | ||
| 276 | + <div class="QRcode"> | ||
| 277 | + <span><img src="images/qrcode.png" alt="二维码"></span> | ||
| 278 | + </div> | ||
| 279 | + | ||
| 280 | + <div class="sanmang"> | ||
| 281 | + <p>© 2010 - 2015 三芒世纪(北京)科技有限公司</p> | ||
| 282 | + <p>京ICP备12014300号-1</p> | ||
| 283 | + </div> | ||
| 284 | + | ||
| 285 | + <div id="footer" class="footer clear"> | ||
| 286 | + <a href="javascript:void(0)"; onclick="document.getElementById('footer').style.display='none'"></a> | ||
| 287 | + <a href="productTrials.html" target=_blank>免费体验</a> | ||
| 288 | + <div class="line"></div> | ||
| 289 | + <a href="http://p.qiao.baidu.com/cps/chat?siteId=10187058&userId=22814208" target=_blank>在线咨询</a> | ||
| 290 | + | ||
| 291 | + </div> | ||
| 292 | + | ||
| 293 | + | ||
| 294 | +</div> | ||
| 295 | + | ||
| 296 | +<script type="text/javascript" src="js/index.js"></script> | ||
| 297 | +<!--统计代码--> | ||
| 298 | +<script> | ||
| 299 | + var _hmt = _hmt || []; | ||
| 300 | + (function() { | ||
| 301 | + var hm = document.createElement("script"); | ||
| 302 | + hm.src = "https://hm.baidu.com/hm.js?a10d3c3519698e7aa0dc1d57730d01a3"; | ||
| 303 | + var s = document.getElementsByTagName("script")[0]; | ||
| 304 | + s.parentNode.insertBefore(hm, s); | ||
| 305 | + })(); | ||
| 306 | +</script> | ||
| 307 | + | ||
| 308 | +</body> | ||
| 309 | +</html> |
js/index.js
0 → 100644
| 1 | +//->REM | ||
| 2 | +~function () { | ||
| 3 | + var desW = 750, | ||
| 4 | + winW = document.documentElement.clientWidth, | ||
| 5 | + ratio = winW / desW, | ||
| 6 | + oMain = document.querySelector('.main'); | ||
| 7 | + if (winW > desW) { | ||
| 8 | + oMain.style.margin = '0 auto'; | ||
| 9 | + oMain.style.width = desW + 'px'; | ||
| 10 | + return; | ||
| 11 | + } | ||
| 12 | + document.documentElement.style.fontSize = ratio * 100+ 'px'; | ||
| 13 | + | ||
| 14 | + | ||
| 15 | + //加减号 | ||
| 16 | + function Show_Hidden1(obj,obj2,obj3,obj4) { | ||
| 17 | + if(obj.style.display=="block") | ||
| 18 | + { | ||
| 19 | + obj.style.display='none'; | ||
| 20 | + obj2.style.borderBottom='1px solid #ccc'; | ||
| 21 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 22 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 23 | + obj3.innerHTML="+"; | ||
| 24 | + obj3.style.fontSize="24px"; | ||
| 25 | + obj3.style.width=".17rem" | ||
| 26 | + obj3.style.marginRight=".68rem"; | ||
| 27 | + obj4.style.borderTop='none'; | ||
| 28 | + } | ||
| 29 | + else | ||
| 30 | + { | ||
| 31 | + | ||
| 32 | + obj.style.display='block'; | ||
| 33 | + obj4.style.borderTop='1px solid #ccc'; | ||
| 34 | + obj2.style.borderBottom='none'; | ||
| 35 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 36 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 37 | + obj3.innerHTML="-"; | ||
| 38 | + obj3.style.fontSize="24px"; | ||
| 39 | + obj3.style.width=".17rem" | ||
| 40 | + obj3.style.marginRight=".55rem"; | ||
| 41 | + | ||
| 42 | + } | ||
| 43 | + } | ||
| 44 | + function Show_Hidden2(obj,obj2,obj3,obj4) { | ||
| 45 | + if(obj.style.display=="block") | ||
| 46 | + { | ||
| 47 | + obj.style.display='none'; | ||
| 48 | + obj2.style.borderBottom='1px solid #ccc'; | ||
| 49 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 50 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 51 | + obj3.innerHTML="+"; | ||
| 52 | + obj3.style.fontSize="24px"; | ||
| 53 | + obj3.style.width=".17rem" | ||
| 54 | + obj3.style.marginRight=".68rem"; | ||
| 55 | + obj4.style.borderTop='none'; | ||
| 56 | + } | ||
| 57 | + else | ||
| 58 | + { | ||
| 59 | + obj.style.display='block'; | ||
| 60 | + obj2.style.borderBottom='none'; | ||
| 61 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 62 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 63 | + obj3.innerHTML="-"; | ||
| 64 | + obj3.style.fontSize="24px"; | ||
| 65 | + obj3.style.width=".17rem" | ||
| 66 | + obj3.style.marginRight=".55rem"; | ||
| 67 | + obj4.style.borderTop='1px solid #ccc'; | ||
| 68 | + | ||
| 69 | + } | ||
| 70 | + } | ||
| 71 | + function Show_Hidden3(obj,obj2,obj3,obj4) { | ||
| 72 | + if(obj.style.display=="block") | ||
| 73 | + { | ||
| 74 | + obj.style.display='none'; | ||
| 75 | + obj2.style.borderBottom='1px solid #ccc'; | ||
| 76 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 77 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 78 | + obj3.innerHTML="+"; | ||
| 79 | + obj3.style.fontSize="24px"; | ||
| 80 | + obj3.style.marginRight=".68rem"; | ||
| 81 | + obj4.style.borderTop='none'; | ||
| 82 | + | ||
| 83 | + } | ||
| 84 | + else | ||
| 85 | + { | ||
| 86 | + obj.style.display='block'; | ||
| 87 | + obj2.style.borderBottom='none'; | ||
| 88 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 89 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 90 | + obj3.innerHTML="-"; | ||
| 91 | + obj3.style.width=".17rem" | ||
| 92 | + obj3.style.fontSize="24px"; | ||
| 93 | + obj3.style.marginRight=".55rem"; | ||
| 94 | + obj4.style.borderTop='1px solid #ccc'; | ||
| 95 | + | ||
| 96 | + } | ||
| 97 | + } | ||
| 98 | + function Show_Hidden4(obj,obj2,obj3,obj4) { | ||
| 99 | + if(obj.style.display=="block") | ||
| 100 | + { | ||
| 101 | + obj.style.display='none'; | ||
| 102 | + | ||
| 103 | + //加号动画 | ||
| 104 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 105 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 106 | + obj3.innerHTML="+"; | ||
| 107 | + | ||
| 108 | + obj3.style.fontSize="24px"; | ||
| 109 | + obj3.style.marginRight=".68rem"; | ||
| 110 | + obj2.style.borderBottom='1px solid #ccc'; | ||
| 111 | + | ||
| 112 | + } | ||
| 113 | + else | ||
| 114 | + { | ||
| 115 | + obj.style.display='block'; | ||
| 116 | + obj.style.marginBottom='0'; | ||
| 117 | + obj2.style.borderBottom='none'; | ||
| 118 | + obj3.style.webkitAnimation="rotateIn 1s 0s both"; | ||
| 119 | + obj3.style.animation="rotateIn 1s 0s both"; | ||
| 120 | + obj3.innerHTML="-"; | ||
| 121 | + obj3.style.width=".17rem"; | ||
| 122 | + obj3.style.fontSize="24px"; | ||
| 123 | + obj3.style.marginRight=".55rem"; | ||
| 124 | + // obj2.style.borderBottom='none'; | ||
| 125 | + | ||
| 126 | + | ||
| 127 | + } | ||
| 128 | + } | ||
| 129 | + | ||
| 130 | + //每一个整体 | ||
| 131 | + var character1=document.getElementById("character-1"); | ||
| 132 | + var character2=document.getElementById("character-2"); | ||
| 133 | + var character3=document.getElementById("character-3"); | ||
| 134 | + var character4=document.getElementById("character-4"); | ||
| 135 | + //加号 | ||
| 136 | + var characterA =document.getElementById("character-1-a"); | ||
| 137 | + var characterA2 =document.getElementById("character-2-a"); | ||
| 138 | + var characterA3 =document.getElementById("character-3-a"); | ||
| 139 | + var characterA4 =document.getElementById("character-4-a"); | ||
| 140 | + //展开部分 | ||
| 141 | + var characterUnfold=document.getElementById("character-1-unfold"); | ||
| 142 | + var characterUnfold2=document.getElementById("character-2-unfold"); | ||
| 143 | + var characterUnfold3=document.getElementById("character-3-unfold"); | ||
| 144 | + var characterUnfold4=document.getElementById("character-4-unfold"); | ||
| 145 | + | ||
| 146 | + | ||
| 147 | + | ||
| 148 | + character1.onclick=function onclick1() { | ||
| 149 | + Show_Hidden1(characterUnfold,character1,characterA,character2); | ||
| 150 | + | ||
| 151 | + } | ||
| 152 | + character2.onclick=function onclick2() { | ||
| 153 | + Show_Hidden2(characterUnfold2,character2,characterA2,character3); | ||
| 154 | + | ||
| 155 | + } | ||
| 156 | + character3.onclick=function onclick3() { | ||
| 157 | + Show_Hidden3(characterUnfold3,character3,characterA3,character4); | ||
| 158 | + | ||
| 159 | + } | ||
| 160 | + character4.onclick=function onclick4() { | ||
| 161 | + Show_Hidden4(characterUnfold4,character4,characterA4); | ||
| 162 | + | ||
| 163 | + } | ||
| 164 | + | ||
| 165 | + | ||
| 166 | +}(); |
js/rem.js
0 → 100644
| 1 | +//->REM | ||
| 2 | +~function () { | ||
| 3 | + var desW = 750, | ||
| 4 | + winW = document.documentElement.clientWidth, | ||
| 5 | + ratio = winW / desW, | ||
| 6 | + oMain = document.querySelector('.main'); | ||
| 7 | + if (winW > desW) { | ||
| 8 | + oMain.style.margin = '0 auto'; | ||
| 9 | + oMain.style.width = desW + 'px'; | ||
| 10 | + return; | ||
| 11 | + } | ||
| 12 | + document.documentElement.style.fontSize = ratio * 100 + 'px'; | ||
| 13 | +}(); |
productTrials.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="en"> | ||
| 3 | +<head> | ||
| 4 | + <meta charset="UTF-8"> | ||
| 5 | + <meta name="viewport" | ||
| 6 | + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
| 7 | + <title>学点云</title> | ||
| 8 | + <link rel="stylesheet" type="text/css" href="css/reset.min.css"> | ||
| 9 | + <link rel="stylesheet" href="css/trials.css"> | ||
| 10 | + | ||
| 11 | +</head> | ||
| 12 | +<body> | ||
| 13 | +<div class="product_trial_formbox"> | ||
| 14 | + <div class="product_trial_formbox_head"><img src="images/apply-try.png" alt="免费申请试用"></div> | ||
| 15 | + <div class="product_trial_formbox_content"> | ||
| 16 | + <p>留下您的联系方式,我们会有专人客服在一个工作日内和您联系。</p> | ||
| 17 | + <form action="" id="detailForm" class="detailForm" method="post"> | ||
| 18 | + | ||
| 19 | + | ||
| 20 | + <label>* 姓名:</label> | ||
| 21 | + <input name="user_name" type="text" autofocus="autofocus" value="" placeholder="输入您的姓名" title="请输入您的姓名"> | ||
| 22 | + <br> | ||
| 23 | + <label>* 手机:</label> | ||
| 24 | + <input name="phone_number" type="text" value="" placeholder="输入您的手机号码" title="输入您的手机号码"> | ||
| 25 | + <br> | ||
| 26 | + <label>* 邮箱:</label> | ||
| 27 | + <input name="email" type="text" value="" placeholder="输入您的邮箱地址" title="输入您的邮箱地址"> | ||
| 28 | + <br> | ||
| 29 | + <label>公司:</label> | ||
| 30 | + <input name="company" type="text" value="" placeholder="输入您的公司名称"> | ||
| 31 | + <br> | ||
| 32 | + <label>电话:</label> | ||
| 33 | + <input name="telphone" type="text" value="" placeholder="输入您的固定电话"> | ||
| 34 | + <br> | ||
| 35 | + <label> | ||
| 36 | + | ||
| 37 | + <a class="submit_trail" href="javascript:void(0)">立即申请</a></label> | ||
| 38 | + </form> | ||
| 39 | + </div> | ||
| 40 | +</div> | ||
| 41 | +<script type="text/javascript" src="js/rem.js"></script> | ||
| 42 | +</body> | ||
| 43 | +</html> |
-
请 注册 或 登录 后发表评论