xxgg.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. body{
  2. height:300px;
  3. overflow:hidden
  4. }
  5. .swiper {
  6. width: 40%;
  7. height: 98%;
  8. float:left;
  9. }
  10. .swiper-title{
  11. width:60%;
  12. color:#fff;
  13. padding-left:8px;
  14. overflow:hidden;
  15. white-space:nowrap;
  16. text-overflow:ellipsis;
  17. }
  18. .swiper-pagination-bullet{
  19. width:10px;
  20. height:11px;
  21. opacity:0.8;
  22. border:3px solid #ffd800;
  23. border-radius:5px;
  24. background-color:transparent;
  25. }
  26. .swiper-pagination-bullet-active{
  27. opacity:1;
  28. background:#ffd800
  29. }
  30. .imgItem{
  31. width:100%;
  32. height:100%;
  33. position:relative;
  34. }
  35. .imgItem img{
  36. position:absolute;
  37. top:50%;
  38. transform:translateY(-50%)
  39. }
  40. .sp-tab{
  41. color:#fff;
  42. background-color:transparent;
  43. }
  44. .sp-tab .sp-tab-menu{
  45. border-bottom:1px solid #fff
  46. }
  47. .sp-tab .sp-tab-menu li{
  48. color:#fff
  49. }
  50. .sp-tab .sp-tab-menu li.sp-tab-current{
  51. color:#ffd800;
  52. border-color:#ffd800
  53. }
  54. .newsList li{
  55. line-height:25px;
  56. }
  57. .newsList li span{
  58. display:inline-block;
  59. overflow:hidden;
  60. white-space:nowrap;
  61. text-overflow:ellipsis;
  62. }
  63. .newsList li .circle{
  64. width:10px;
  65. height:10px;
  66. border-radius:5px;
  67. background-color:#ffd800;
  68. margin-right:10px;
  69. position:relative;
  70. top:-7px;
  71. }