.el-carousel__button {
    width: 40px;
    height: 4px;
}
.el-carousel__container {
    height: 100%;
    min-width: 1200px;
}
.el-carousel__indicators--horizontal{
    bottom: 80px;   
}
.el-carousel__indicator.is-active button {
    background-color: #63aff7;
}
.el-carousel__arrow {
    display: none;
}
.el-carousel__button {
    background-color: #c7d2dd;
}
.carouselBox {
    width: 100%;
    min-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.carouselBox img {
    display: block;
    width: 100%;
    height: 100%;
}
.carouselBox .carousel-textBox {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 1;
}
.carouselBox .carousel-text-enter .carousel-text-title {
    font-size: 52px;
    color: #fff;
    line-height: 48px;
    margin-bottom: 28px;
    opacity: 1;
    min-height: 48px;
}
.carouselBox .carousel-text-enter .carousel-text-desc {
    overflow: hidden;
    -webkit-line-clamp: 2;
    font-size: 26px;
    text-align: center;
    color: #fff;
    opacity: 1;
}
.carouselBox .carousel-text-enter .ace-btn {
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 20px;
    margin-top: 40px;
    padding: 20px 50px;
    border-radius: 34px;
    background: linear-gradient(270deg, #15BBD6 0%, #3258FC 100%);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    transition: all 0.3s;
}
.carouselBox .carousel-text-enter .ace-btn:hover {
    background: #337dff;
}
.banner_content {
    position: relative;
}
.banner_content .bannerBox {
    display: block;
    height: 534px;
    background-image: url(/ipSource/images/carousels/bannerImage.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
.banner_content .events-container {
    height: 116px;
    width: 100%;
    border: 1px solid rgba(151, 151, 151, 0);
    position: absolute;
    bottom: -58px;
    left: 0;
    z-index: 99;
}
.events-container .events-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.event-item {
    width: 268px;
    padding: 10px;
    color: #333;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.6) 100%);
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
}
.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(125deg, #F59300 0%, #FA6C00 100%);
    border-radius: 4px;
}
.events-container .events-wrapper .active::before {
    -webkit-animation: extend 3s linear infinite;
    animation: extend 3s linear infinite;
}

.event-item .event-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin: 20px 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all .2s;
    transition: all .2s;
    white-space: nowrap;
}
.event-item .event-desc {
    font-size: 15px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.event-item .event-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}
@keyframes extend {
    0% {
        width: 1%;
    }
    100% { 
        width: 100%;
    }
}
/** */
.prod-container{
    padding-top: 80px;
}
.prod-container .prod{
    background: url(/ipSource/images/r.png) top right no-repeat;
}
/** 通用title 样式 */
.prod-container .title {
    text-align: center;
    padding: 20px 0 50px;
}
.prod-container .title .title_b {
    height: 40px;
    font-size: 34px;
    font-family: SourceHanSansCN-Medium, SourceHanSansCN;
    font-weight: 500;
    color: #333;
    line-height: 60px;
    position: relative;
}
.title_b::after {
    content: '';
    width: 40px;
    height: 4px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59300;
}

/** 产品特色 **/
.prod-container .prod-desc {
    background-size: 100% auto;
}
.prod-desc-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.prod-desc-container .prod-desc-item {
    flex: 1;
    width: 384px;
    max-width: 384px;
    height: 132px;
    margin-bottom: 32px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px rgba(0,21,78,0.05);
    border-radius: 4px;
    transition: all .3s;
    cursor: default;
}
.prod-desc-container .prod-desc-item:hover {
    transform: translateY(-8px);
}
.prod-desc-item .desc-itemBox {
    display: flex;
}
.prod-desc-item .desc-itemBox .desc-item-text {
    width: 274px;
    padding: 0 22px;
}
.desc-itemBox .desc-item-text .desc-item-title {
    padding: 24px 0 12px;
    font-size: 20px;
    font-weight: 600;
}
.desc-itemBox .desc-item-text .desc-item-explain {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
}
/** partner*/
.partner {
    margin-bottom: 40px;
}
.partner .partner-img {
    padding: 20px 0;
}

/* scene */
.prod-container .scene-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 108px;
}
.scene-container .sceneBox {
    flex: 1;
    height: 500px;
    position: relative;
}
.sceneBox .sceneBox-item {
    display: flex;
    color: #333;
    width: 300px;
    position: absolute;
    cursor: default;
    z-index: 3;
}
.sceneBox-item .sceneBox-item-img {
    flex: 1;
    text-align: center;
    transition: all .3s;
}
.sceneBox-item .sceneBox-item-text {
    flex: 1;
}
.sceneBox-item .sceneBox-item-text .item-text-title1 {
    font-size: 18px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    color: #333333;
    padding-top: 36px;
}
.sceneBox-item .sceneBox-item-text .item-text-title2 {
    font-size: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    color: #BFBFBF;
    padding-top: 4px;
}
.sceneBox .sceneBox-item:hover .sceneBox-item-img{
    transform: scale(1.2);
}

/* left */
.sceneBox-item.sceneBox-item-advert {
    top: 74px;
    right: -14px;
}
.sceneBox-item.sceneBox-item-gather {
    top: 162px;
    right: 146px;
}
.sceneBox-item.sceneBox-item-marketing {
    top: 392px;
    right: -154px;
}

.sceneBox-item.sceneBox-item-account {
    top: 284px;
    right: 62px;
}

/* right */
.sceneBox-item.sceneBox-item-deposit {
    top: 74px;
    left: -8px;
}
.sceneBox-item.sceneBox-item-game {
    top: 162px;
    left: 146px;
}
.sceneBox-item.sceneBox-item-question {
    top: 284px;
    left: 52px;
}
.sceneBox-item.sceneBox-item-app {
    top: 392px;
    left: -154px;
}

.scene-container .scene-img-content {
    flex: 1;
    height: 500px;
    position: relative;
}
.scene-img-content .scene-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
} 
.scene-img-content .cube {
    z-index: 2;
    top: 10%;
    left: 30%;
    -webkit-animation: jump 1s infinite;
    animation: jump 1s infinite;
}
.scene-img-content .cube_scene{
    z-index: 1;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}
/* 新闻资讯 */
.new-container {
    padding-bottom: 60px;
}
.new-container .new-title {
    margin-bottom: 44px;
}
.new-container .new-title h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    color: #333;
}
.new-container .new-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 14px;
    color: #fff;
    cursor: default;
}
.new-container .new-main {
    padding: 8px 0;
}
.new-container .new-main .el-collapse-item__header {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    background-color: transparent;
}
.new-container .new-main .el-collapse-item__header.is-active {
    background-color: #fff;
}
.new-container .new-main .el-collapse-item__header .new-main-time {
    position: absolute;
    right: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}
