@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
}

body {
    /*background:#edf0f0;*/
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.swiper_banner {
    padding-top: 80px;
    padding-bottom: 150px;
}

.swiper_banner h1 {
    font-size: 36px;
    text-align: center;
    font-weight: normal;
}

.swiper_banner h2 {
    font-size: 18px;
    color: #535353;
    text-align: center;
    font-weight: normal;
    margin: 20px 0 60px;
}

.swiper_banner .swiper {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.current-swiper {
    width: 685px;
    height: 308px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 99;
}

.left-swiper {
    position: absolute;
    left: 117px;
    top: 52px;
    z-index: 1;
}

.right-swiper {
    position: absolute;
    right: 117px;
    left: auto;
    top: 52px;
    z-index: 1;
}

.nocurrent-swiper {
    width: 535px;
    height: 223px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.nocurrent-swiper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237, 240, 240, 0.5);
    z-index: 99;
}

.slide1 {
    background: url(../images/p1.png) no-repeat right 50%/100% 100% #fff;
    cursor: pointer;
}

.slide2 {
    background: url(../images/p2.png) no-repeat right 50%/100% 100% #e2e3e8;
    cursor: pointer;
}

.slide3 {
    background: url(../images/p3.png) no-repeat right 50%/100% 100% #f0faf9;
}

.title {
    padding-top: 70px;
    margin-left: 45px;
    height: 29px;
    line-height: 29px;
    font-size: 18px;
    color: #666;
}

.nocurrent-swiper .title {
    padding-top: 44px;
    margin-left: 30px;
    font-size: 16px;
    height: 25px;
    line-height: 25px;
}

.name {
    margin-left: 45px;
    height: 55px;
    display: inline-block;
    position: relative;
    line-height: 55px;
    padding-bottom: 9px;
    padding-right: 55px;
    border-bottom: 1px solid #dddddd;
    font-size: 36px;
    color: #333;
}

.nocurrent-swiper .name {
    height: 46px;
    line-height: 46px;
    font-size: 30px;
    padding-right: 46px;
    margin-left: 30px;
}

.name:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../images/curr_sectbg.png) no-repeat center center;
}

.nocurrent-swiper .name:before {
    width: 26px;
    height: 26px;
    background-size: 100% 100%;
}

.detail {
    margin-left: 45px;
    width: 275px;
    margin-top: 30px;
    padding-right: 5px;
    line-height: 24px;
    color: #bbb;
    font-size: 14px;
}

.nocurrent-swiper .detail {
    font-size: 12px;
    line-height: 20px;
    width: 235px;
    margin-left: 30px;
}

.swiper-button-prev {
    width: 46px;
    height: 46px;
    background: url(../images/curr_prev.png) no-repeat center center;
}

.swiper-button-next {
    width: 46px;
    height: 46px;
    background-size: auto;
    background-image: url(../images/curr_next.png);
}

.swiper-pagination-bullet {
    background-color: transparent;
    opacity: 1;
    margin: 0 6px !important;
    width: 45px;
    height: 9px;
    position: relative;
    outline: none;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    left: 50%;
    top: 20px;
}

.swiper-pagination-bullet span {
    width: 45px;
    height: 6px;
    background-color: rgba(3, 12, 76, 0.3);
    display: block;
    margin-top: 3px;
    border-radius: 15px;
}

.swiper-pagination-bullet i {
    background-color: #e60012;
    height: 5.5px;
    width: 45px;
    position: absolute;
    top: 3px;
    transform: scaleX(0);
    transform-origin: left;
    z-index: 3;
    left: 2px;
    transition-timing-function: linear;
    border-radius: 15px;
}

.swiper-pagination-bullet-active i {
    animation: middle 5s forwards;
}

@keyframes middle {
    0% {
        transform: scaleX(0);
        left: 0;
    }

    100% {
        transform: scaleX(1);
        left: 0;
    }
}