| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- .pages li {
- list-style-type: none;
- width: 25px;
- height: 14px;
- background-color: rgba(128, 128, 128, .4);
- }
- .pages li:hover {
- box-shadow: 0 0 5px 2px white;
- }
- .pages li.active {
- background-color: orange;
- box-shadow: 0 0 5px 2px orange;
- }
- .pages {
- position: absolute;
- z-index: 999;
- }
- /*横屏滑动*/
- .pages.horizontal {
- right: -90px;
- transform: translateX(-50%);
- bottom: 5px;
- }
- .bannerContainer .pages.horizontal {
- display: none;
- }
- .pages.horizontal li {
- display: inline-block;
- margin-right: 10px;
- }
- .pages.horizontal li:last-child {
- margin-right: 0;
- }
- /*竖屏滑动*/
- /*.pages.vertical {
- right: 5px;
- top: 50%;
- transform: translateY(-50%);
- }
- .pages.vertical li {
- margin-bottom: 10px;
- }
- .pages.vertical li:last-child {
- margin-bottom: 0;
- }*/
- /*小轮播*/
- #container {
- width: 100%;
- height: 310px;
- overflow: hidden;
- }
- .sections,
- .section {
- height: 100%;
- }
- #container,
- .sections {
- position: relative;
- }
- .section {
- background-color: #000;
- background-size: 100% 100%;
- background-position: 50% 50%;
- text-align: center;
- color: white;
- }
- /*#section0 {
- background-image: url('../img/qiehuan.png');
- }
- #section1 {
- background-image: url('../img/qiehuan.png');
- }
- #section2 {
- background-image: url('../img/qiehuan.png');
- }
- #section3 {
- background-image: url('../img/qiehuan.png');
- }*/
- .section h3 {
- margin-top: -35px;
- width: 210px;
- background: rgba(128, 128, 128, .4)!important;
- font-size: 16px;
- padding: 10px;
- text-align: left;
- line-height: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .section img {
- width: 100%;
- height: 310px;
- }
- /*banner轮播*/
- .bannerContainer {
- width: 100%;
- overflow: hidden;
- }
- .bannerContainer img {
- width: 100%;
- height: 100%;
- display: block;
- font-size: 0;
- text-align: center;
- }
- /*
- #bannerContainer #section0 {
- background-image: url(../img/banner-img_0.png);
- }
- #bannerContainer #section1 {
- background-image:url(../img/banner-img_1.jpg);
- }
- #bannerContainer #section2 {
- background-image: url(../img/banner-img_2.jpg);
- }*/
- /*小轮播样式*/
- .carousel-inner>.item>a>img {
- width: 100%;
- height: 310px;
- }
- .carousel-indicators li {
- width: 25px;
- height: 14px;
- margin-right: 10px;
- border: none;
- border-radius: 0;
- background-color: rgba(128, 128, 128, .4);
- }
- .carousel-indicators {
- bottom: 0;
- right: 0;
- left: 72%;
- margin-bottom: 0px;
- line-height: 32px;
- }
- .carousel-indicators li.active {
- width: 25px;
- height: 14px;
- margin-right: 10px;
- border: none;
- border-radius: 0;
- background-color: orange;
- box-shadow: 0 0 5px 2px orange;
- }
- .carousel-caption {
- left: 0;
- right: 0;
- bottom: 0;
- padding-top: 0px;
- padding-bottom: 0px;
- }
- .carousel-caption p {
- width: 210px;
- font-size: 16px;
- padding: 10px;
- text-align: left;
- line-height: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
|