style.css 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. button{background:transparent;}
  2. html,body {
  3. width: 100%;
  4. height: 100%;
  5. font-family: "Microsoft YaHei";
  6. margin:0px;
  7. overflow: hidden;
  8. }
  9. body{ overflow-y:scroll; -webkit-overflow-scrolling:touch;}
  10. .wrapper{width: 64%;height: 100%;margin: 0 auto; padding-top: 100px;}
  11. .contioner{ overflow: hidden;}
  12. .wrap-img, .wrap-video, .wrap-model{ background: rgba(0,0,0,0.8); width: 100%; height: 100%; display: none; display: flex; justify-content: center; align-items: center;}
  13. .wrap-img img{ max-width: 100%; max-height: 100%; }
  14. .wrap-img > div, .wrap-video > video, .wrap-model > div{width: 100%; height: 100%;}
  15. .footer-title{ display: flex; justify-content: space-between; margin-top: 20px; }
  16. .footer-text{margin-top: 20px;}
  17. .footer-title h3 { font-size: 20px; color: #fff; font-weight: 600;}
  18. .wrap-iframe{ height: 100%; overflow-x:hidden; -webkit-overflow-scrolling:touch;}
  19. .wrap-iframe iframe, .wrap-model iframe { width: 100%; height: 99%;}
  20. .footer-btn button{ font-size: 14px; color: #fff; width: 90px; height: 32px; line-height: 32px; cursor: pointer; border-radius: 10px; border: solid 1px #fff; margin-right: 10px; }
  21. .footer-btn button.active{background: #19bbed; border: none;}
  22. .footer-text{ color: #fff; line-height: 120%; position: relative; text-align: justify;}
  23. .img-icon{background: url("https://super.4dage.com/data/388/hot/images/img-icon.png")no-repeat left top;}
  24. .video-icon{background: url("https://super.4dage.com/data/388/hot/images/video-icon.png")no-repeat left top;}
  25. .model-icon{background: url("https://super.4dage.com/data/388/hot/images/model-icon.png")no-repeat left top;}
  26. .iframe-icon{background: url("https://super.4dage.com/data/388/hot/images/iframe-icon.png")no-repeat left top;}
  27. .footer-btn i{ display: inline-block; position: relative; top: 4px; background-size: 100%; width: 18px; position: relative; height: 18px; margin-right: 5px;}
  28. .footer-mask{position: absolute;/* background: linear-gradient(rgba(61,61,61,0) 0%, rgba(61,61,61,0.9) 40%, rgba(61,61,61,1) 60%,rgba(61,61,61,0) 100%);*/ z-index: 10;bottom: -16px;left: 0;width: 100%;height: 50%;}
  29. .pinch-zoom-container{height: 100%;}
  30. @media screen and (max-width: 1600px) {
  31. .wrapper{ width: 76%; padding-top: 70px;}
  32. }
  33. @media screen and (max-width: 1000px) {
  34. .wrapper{ width: 86%; padding-top: 50px;}
  35. }
  36. @media screen and (max-width: 700px) {
  37. .footer-title h3{ font-size: 16px;}
  38. .footer-text{ font-size: 14px; margin-top: 10px; padding: 0 6px; line-height: 150%;}
  39. .footer-text p { text-indent: 28px;}
  40. .wrapper{ width: 94%; padding-top: 30px;}
  41. .footer-title{flex-direction:column-reverse; align-items:center; margin-top: 10px; }
  42. .footer-btn{margin-bottom: 10px;}
  43. .ui-icon-before:before{left: 4px;}
  44. }
  45. @media screen and (max-width: 600px) {
  46. .wrapper{ width: 100%; padding-top: 34px; }
  47. .o-slider--item{background: rgba(0,0,0,0.4);}
  48. }
  49. @media screen and (max-width: 400px) {
  50. }
  51. ::-webkit-scrollbar/*整体部分*/
  52. {
  53. width: 10px;
  54. height:10px;
  55. }
  56. ::-webkit-scrollbar-track/*滑动轨道*/
  57. {
  58. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  59. border-radius: 0px;
  60. background: rgba(0,0,0,0.1);
  61. }
  62. ::-webkit-scrollbar-thumb/*滑块*/
  63. {
  64. border-radius: 5px;
  65. -webkit-box-shadow: inset 0 0 5px rgba(192,192,192,0.2);
  66. background: rgba(192,192,192,0.2);
  67. }
  68. ::-webkit-scrollbar-thumb:hover/*滑块效果*/
  69. {
  70. border-radius: 5px;
  71. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  72. background: rgba(0,0,0,0.4);
  73. }