.img-responsive{
    width: 100%;
    display: block;
}

@keyframes opacity2 {
    0% {
        opacity: 0
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes opacity2 {
    0% {
        opacity: 0
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes opacity2 {
    0% {
        opacity: 0
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacity3 {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes opacity3 {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes opacity3 {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes rotate2 {
    0% {
        /*opacity: 1;*/
    }
    50% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    75% {
        transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
    }
    100% {
        transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotate2 {
    0% {
        /*opacity: 1;*/
    }
    50% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    75% {
        transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
    }
    100% {
        transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
    }
}

@-moz-keyframes rotate2 {
    0% {
        /*opacity: 1;*/
    }
    50% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    75% {
        transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
    }
    100% {
        transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
    }
}

.anim-opacity2 {
    animation: 0.3s opacity2 0s both linear;
    -webkit-animation: 0.3s opacity2 0s both linear;
    -moz-animation: 0.3s opacity2 0s both linear;
}

.rotate2 {
    animation: 2.5s rotate2 infinite linear 1s;
    -webkit-animation: 2.5s rotate2 infinite linear 1s;
    -moz-animation: 2.5s rotate2 infinite linear 1s;
}

.anim-opacity3 {
    animation: 2.5s opacity3 1s infinite;
    -webkit-animation: 2.5s opacity3 1s infinite;
    -moz-animation: 2.5s opacity3 1s infinite;
}

/*.anim-opacity2{
	animation: 2s opacity2 0s infinite;
	-webkit-animation: 2s opacity2 0s infinite;
	-moz-animation: 2s opacity2 0s infinite;
}*/
@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInDown {
    /*-webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;*/
    animation: 0.5s bounceInDown 0s both linear;
    -webkit-animation: 0.5s bounceInDown 0s both linear;
    -moz-animation: 0.5s bounceInDown 0s both linear;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInLeft {
    animation: 0.8s bounceInLeft 0s both linear;
    -webkit-animation: 0.8s bounceInLeft 0s both linear;
    -moz-animation: 0.8s bounceInLeft 0s both linear;
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInRight {
    animation: 0.8s bounceInRight 0s both linear;
    -webkit-animation: 0.8s bounceInRight 0s both linear;
    -moz-animation: 0.8s bounceInRight 0s both linear;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation: 0.8s flipInY 0s both linear;
    -webkit-animation: 0.8s flipInY 0s both linear;
    -moz-animation: 0.8s flipInY 0s both linear;
}

#page{
    width: 100%;
    height: 100%;
}

.IMain {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    /*min-width: 1200px;*/
    font-family: "微软雅黑";
    /*background-color: #44546e;*/
    /*background-image: url(../../images/indexDynamic/IndexBj4.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center -80px;*/
    left: 0;
    box-sizing:border-box;
}
.IMain-two{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    min-width: 1200px;
    font-family: "微软雅黑";
    background-color: #44546e;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center -80px;
    left: 0;
}

.play-list{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    min-width: 1200px;
    font-family: "微软雅黑";
    background-color: #44546e !important;
    background-repeat: no-repeat !important;
    background-size: 100% !important;
}

.Main {
    width: 100%;
    height: auto;
    min-width: 1200px;
    padding-top: 90px;
    overflow: hidden;
    font-family: "微软雅黑";
    text-align: justify;
}

.IndexCntTxt {
    width: 523px;
    height: 292px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: 80px;
}

/*导航*/
.TopNav {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 0;
    min-width: 1000px;
}

.TopNav2 {
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.logo {
    width: 90px;
    height: 90px;
    /*padding-top: 6px;
    padding-left: 6px;
    float: left;*/
    position: absolute;
    top: 0;
    left: 0;
}

.logo img {
    width: 100%;
}

.Search {
    width: 90px;
    height: 90px;
    background: url(../../images/indexDynamic/Search_06.png) no-repeat center center;
    float: right;
    cursor: pointer;
}

.TopNav2 .Search {
    width: 90px;
    height: 90px;
    background: url(../../images/indexDynamic/Search2_03.png) no-repeat center center;
    float: right;
}

.NavList {
    height: 90px;
    float: right;
}

.NavList li {
    width: 126px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    color: #fff;
    float: left;
    font-size: 20px;
}

.NavList li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    color: #fff;
    font-family: "微软雅黑";
    font-weight: normal;
    font-size: 20px;
}

.TopNav2 .NavList li a {
    color: #05000e;
}

.NavList li.on {
    /*background: url(NavListBj_02.jpg) repeat-x left top;
    box-shadow: rgb(251, 232, 188) 0px 0px 26px inset;*/
    background: #ac9455;
}

.NavList li:hover {
    /*background: url(NavListBj_02.jpg) repeat-x left top;
    box-shadow: rgb(251, 232, 188) 0px 0px 26px inset;*/
    background: #ac9455;
}

.NavList li.on a {
    color: #fff;
}

.NavList li:hover a {
    color: #fff;
}

.SearchIpt {
    width: 716px;
    height: 46px;
    background-color: #fbfbfb;
    border: 1px solid #f3f3f3;
    background-image: url(../../images/indexDynamic/Search2_03.png);
    background-repeat: no-repeat;
    background-position: 14px center;
    position: absolute;
    top: -46px;
    left: 50%;
    margin-left: -388px;
    padding-left: 60px;
}

.SearchIpt input {
    width: 660px;
    height: 46px;
    border: none;
    font-size: 16px;
    float: left;
}

.SearchIpt .SearchClose {
    width: 46px;
    height: 46px;
    display: inline-block;
    background-image: url(../../images/indexDynamic/SearchClose.png);
    background-repeat: no-repeat;
    background-position: center center;
    float: right;
    cursor: pointer;
}

.IndexBj {
    width: 100%;
    height: 100%;
}

.LogoRight {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 10;
}

.BtmFooter {
    width: 100%;
    height: auto;
    position: absolute;
    right: 90px;
    bottom: 16px;
}

.BtmFooterMouse {
    width: 156px;
    height: 156px;
    /*margin-bottom: 24px;*/
    position: absolute;
    left: 50%;
    bottom: -30px;
    margin-left: -216px;
}

.BtmFooter2 .BtmFooterMouse {
    margin-left: -550px;
}

.BtmFooter .MouseImg {
    display: block;
}

.BtmFooterMouse dl {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 32px;
    left: 50%;
    margin-left: -26px;
}

.BtmFooterMouse dl dt {
    width: 52px;
    height: 52px;
    background: url(../../images/indexDynamic/MouseQ_04.png) no-repeat center center;
}

.BtmFooterMouse dl dd {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    background: url(../../images/indexDynamic/MouseIng_04.png) no-repeat center center;
}

.BtmFooter p {
    color: #fff;
    font-size: 12px;
    font-family: "Arial";
    line-height: 20px;
    text-align: right;
}

.BtmFooter p span {
    font-size: 16px;
    font-family: "微软雅黑";
    margin-left: 14px;
    font-weight: 600;
}

.down-div{
    width: 34px;
    height: 28px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    cursor: pointer;
}
.up-div{
    width: 34px;
    height: 28px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    cursor: pointer;
    animation: heart 1.3s ease-in-out 2.7s infinite alternate;
}
.item-img{
    background-position: center !important;
    background-size: cover !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
}
.item-img-screen{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:url("../../images/indexDynamic/play1.png") 0 0 no-repeat,
    url("../../images/indexDynamic/play2.png") 0 0 no-repeat;
    background-size: cover !important;
    /*background: rgba(0, 0, 0, 0.4);*/
}

/*导航*/

/*罗盘*/
.RouletteCnt {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /*position: absolute;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 50%;*/
    /*margin-left: -368px;*/
    z-index: 2;
}

.RouletteCntH {
    height: 120% \9;
}

.RouletteCnt2 {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
}

.RouletteLpbj {
    width: 688px;
    height: 688px;
    position: absolute;
    top: 62%;
    left: 50%;
    /* margin-top: -300px; */
    transform: translate(-50%, -50%);
}

.RouletteLpbjG {
    width: 800px;
    height: 800px;
    background: url(../../images/indexDynamic/LPbjG2.png) no-repeat center center;background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -58%;
    margin-top: -58%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome and Safari */
    -moz-backface-visibility: hidden; /* Firefox */
    -ms-backface-visibility: hidden; /* Internet Explorer */
    transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
}

@media screen and (max-width:699px) {
    .RouletteCnt {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -50%;
        z-index: 2;
    }

    /*.RouletteLpbj {*/
    /*    width: 345px;*/
    /*    height: 345px;*/
    /*    position: absolute;*/
    /*    top: 50px;*/
    /*    left: 26px;*/
    /*    !*margin-top: -300px;*!*/
    /*    margin-top:0px*/
    /*}*/

    .RouletteLpbjG {
        width: 360px;
        height: 360px;
        background: url(../../images/indexDynamicMobile/LPbjG2.png) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -58%;
        margin-top: -58%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; /* Chrome and Safari */
        -moz-backface-visibility: hidden; /* Firefox */
        -ms-backface-visibility: hidden; /* Internet Explorer */
        transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
    }
}

@media screen and (min-height: 100px) and (max-height:730px) {
    .RouletteLpbj {
        top: 54%;
    }
}

.RouletteLpbj2 {
    position: fixed;
    left: 50px;
    margin-top: -350px;
    z-index: 2;
    width: 650px;
    overflow: hidden;
}

.RouletteList {
    width: 684px;
    height: 684px;
    background: url(../../images/indexDynamic/Lp_03.png) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50%;
    margin-top: -50%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome and Safari */
    -moz-backface-visibility: hidden; /* Firefox */
    -ms-backface-visibility: hidden; /* Internet Explorer */
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    z-index: 99;
}

@media screen and (max-width:699px) {
    .RouletteList {
        width: 300px;
        height: 300px;
        background: url(../../images/indexDynamicMobile/Lp_03.png) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -50%;
        margin-top: -50%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; /* Chrome and Safari */
        -moz-backface-visibility: hidden; /* Firefox */
        -ms-backface-visibility: hidden; /* Internet Explorer */
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        -ms-perspective: 1000;
        perspective: 1000;
        transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        z-index: 99;
    }
}

@media screen and (min-width: 699px) and (min-height: 100px) and (max-height:850px) {
    .RouletteList {
        width: 684px;
        height: 684px;
        background: url(../../images/indexDynamic/Lp_03.png) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -50%;
        margin-top: -50%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; /* Chrome and Safari */
        -moz-backface-visibility: hidden; /* Firefox */
        -ms-backface-visibility: hidden; /* Internet Explorer */
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        -ms-perspective: 1000;
        perspective: 1000;
        transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        z-index: 99;
    }

    .RouletteLpbjG {
        width: 800px;
        height: 800px;
        background: url(../../images/indexDynamic/LPbjG2.png) no-repeat center center;background-size: 100% 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -58%;
        margin-top: -58%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; /* Chrome and Safari */
        -moz-backface-visibility: hidden; /* Firefox */
        -ms-backface-visibility: hidden; /* Internet Explorer */
        transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
    }
}

.RouletteList li {
    width: 384px;
    height: 182px;
    /*background: url(LineBj_03.png) no-repeat left top;*/
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
@media screen and (max-width:699px) {
    .RouletteList li {
        width: 154px;
        height: 102px;
        /*background: url(LineBj_03.png) no-repeat left top;*/
        line-height: 70px;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
}

.RouletteList li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.RouletteList li img {
    position: absolute;
    top: 50%;
    left: 50%;
    /*margin-left: -25%;
    margin-top: -25%;*/
}

.RouletteList li .RouletteListBJ {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../../images/indexDynamic/LpHover_03.png);
    background-repeat: no-repeat;
    background-position: left 2px;
    display: none;
    z-index: 0;
}

@media screen and (max-width:699px) {
    .RouletteList li .RouletteListBJ {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-image: url(../../images/indexDynamicMobile/LpHover_03.png);
        background-repeat: no-repeat;
        background-position: left 2px;
        display: none;
        z-index: 0;
    }
}

.RouletteList li.on .RouletteListBJ {
    display: block;
}

.RouletteList li .RouletteListImg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.RouletteList li.on {
    background-image: url(../../images/indexDynamic/LpHover_03.png);
    background-repeat: no-repeat;
    background-position: left 2px;
    z-index: 0;
}

@media screen and (max-width:699px) {
    .RouletteList li.on {
        background-image: url(../../images/indexDynamicMobile/LpHover_03.png);
        background-repeat: no-repeat;
        background-position: left 2px;
        z-index: 0;
    }
}

/*.RouletteList li.active{
	background-image: url(LpHover_03.png);
	background-repeat: no-repeat;
	background-position: left 2px;
}*/
/*.RouletteList li:hover{
	background-image: url(LpHover_03.png);
	background-repeat: no-repeat;
	background-position: left 2px;
}*/
/*.RouListLogo {*/
/*    width: 320px;*/
/*    height: auto;*/
/*    position: absolute;*/
/*    top: 315px;*/
/*    left: 180px;*/
/*    z-index: 9999;*/
/*}*/

.RouListLogo {
    width: 338px;
    height: auto;
    position: absolute;
    top: 315px;
    left:171px;
    z-index: 9999;
}

@media screen and (min-width:699px) and (max-height:768px) {
    .RouListLogo {
        width: 320px;
        height: auto;
        position: absolute;
        top: 230px;
        left: 180px;
        z-index: 9999;
    }
}

@media screen and (max-width:699px) {
    .RouListLogo {
        width: 420px;
        height: auto;
        position: absolute;
        top: 230px;
        left: -60px;
        z-index: 0;
    }
}

.RouListLogo li {
    width: 100%;
    height: 100%;
    /*background: url(LpNLogo.png) no-repeat left top;*/
}

.RouListLogo li a {
    display: block;
    width: 100%;
    height: 100%;
    /*padding-top: 9px;*/
    position: relative;
    margin-left: 1px;
    color:#fff
}

.RouListLogo li .RouLogo {
    max-width: 166px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.RouListLogo li .RouCont {
    width: 100%;
    height: auto;
    font-size: 26px;
    color: #fff;
    position: absolute;
    top: 68px;
    left: 0;
    text-align: center;
}

.RouListLogo li .RouBtn {
    display: block;
    width: 60px;
    height: 18px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 12px;
}

/*创投简介*/
.InsideBanner {
    width: 100%;
    height: 250px;
    position: relative;
}

.InsideBImg {
    width: 1200px;
    height: 250px;
    margin: 0 auto;
    position: relative;
}

.InsideBImg img {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -960px;
}

.InsideBList {
    width: 440px;
    height: 56px;
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -220px;
    box-shadow: 0 0 14px #fff;
    z-index: 1;
}

.InsideBList2 {
    width: 1100px;
    height: 56px;
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -550px;
    box-shadow: 0 0 14px #fff;
    z-index: 1;
}

.InsideBList li {
    width: 220px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: #7185a6;
    float: left;
}

.InsideBList li a {
    display: block;
    width: 220px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.InsideBList li.on {
    background: #ac9454;
}

.InsideBList li.on a {
    color: #fff;
}

.InsideBList li:hover {
    background: #ac9454;
}

.InsideBList li:hover a {
    color: #fff;
}

.InsideCnt, .CoerTeamCnt {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 74px;
    font-family: "微软雅黑";
    padding-bottom: 70px;
    border-bottom: 1px solid #d6d7d8;
}

.InsideCntTxt {
    width: 1020px;
    height: auto;
    margin: 0 auto;
}

.InsideCnt .InsideCntTitle {
    width: 1020px;
    height: 50px;
    line-height: 42px;
    margin: 0 auto;
    font-size: 18px;
    color: #404041;
    position: relative;
    margin-bottom: 36px;
}

.InsideCnt .InsideCntTitle span {
    display: block;
    width: 30px;
    border: 2px solid #404041;
    position: absolute;
    left: 2px;
    bottom: 0;
}

.InsideCntTxt p {
    font-size: 16px;
    color: #77787b;
    line-height: 30px;
    margin-bottom: 30px;
}

.InsideTxtImg {
    width: 1100px;
    height: auto;
    position: relative;
    margin: 0 auto;
    margin-bottom: 60px;
}

.InsideTxtImg img {
    width: 100%;
    height: auto;
}

.InsideTxtImg dl {
    width: 540px;
    height: 126px;
    background-color: rgba(184, 167, 124, 0.9);
    position: absolute;
}

.InsideTxtImg dl.Dleft {
    top: 58px;
    left: 40px;
}

.InsideTxtImg dl.Dright {
    top: 58px;
    right: 40px;
}

.InsideTxtImg dl dt {
    width: 168px;
    height: 126px;
    line-height: 126px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    float: left;
    font-weight: 600;
}

.InsideTxtImg dl dd {
    width: 300px;
    height: auto;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    padding-top: 38px;
    float: left;
    padding-left: 18px;
}

.InsidePrize {
    width: 1020px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.InsidePrize .InsideCntTitle {
    width: 1020px;
    height: 50px;
    line-height: 42px;
    margin: 0 auto;
    font-size: 18px;
    color: #404041;
    position: relative;
    margin-bottom: 20px;
}

.InsidePrize .InsideCntTitle span {
    display: block;
    width: 30px;
    border: 2px solid #404041;
    position: absolute;
    left: 0%;
    bottom: 0;
    margin-left: 0px;
}

.InPrizeList {
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
.year_title{line-height: 24px; /*52px*/
    color: #404041;
    font-size: 16px;
    padding: 30px 0px 10px; font-weight:bold;
    border-bottom: 1px solid #d6d7d8;}
.InPrizeList li {
    height: auto;
    line-height: 24px; /*52px*/
    color: #404041;
    font-size: 16px;
    padding: 10px 0px;
    /*float: left;*/
    /*display: inline-block;
    _zoom:1;
    *display:inline;*/
    /*vertical-align:top;*/
}

/*.InPrizeList li.Line{
	line-height: 24px;
}*/


/*footer*/
.Footer {
    width: 100%;
    height: auto;
    background: #f1f5f7;
    margin-top: 24px;
}

.FooterTopL {
    width: 1100px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 16px;
    margin-bottom: 12px;
}

.FooterTopList {
    width: 242px;
    margin-right: 8px;
    float: left;
}

.FooterTopList li {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #787878;
    line-height: 30px;
}

.FooterTopList li a {
    color: #787878;
}

.FooterTopList li.FListTitle {
    font-size: 18px;
    margin-bottom: 6px;
}

.FooterTopList li.FListTitle a {
    color: #404041;
    cursor: default;
}

.FooterTopList li a:hover {
    color: #404041;
}

.FooterTopLImg {
    display: block;
    float: right;
}

.FooterBtmL {
    width: 100%;
    height: auto;
    background: #e3e7e9;
}

.InsideFooter {
    width: 1100px;
    height: 54px;
    line-height: 54px;
    text-align: left;
    font-size: 14px;
    color: #787878;
    margin: 0 auto;
}

/*核心团队*/
.CoerTeamCnt {
    padding-top: 0;
}

.CoerTeamBanner {
    width: 1200px;
    height: 662px;
    margin: 0 auto;
    position: relative;
}

.CoerTeamBanner img {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -960px;
}

.CoerTeamList {
    width: 1200px;
    height: auto;
    overflow: hidden;
}

.CoerTeamList .TeamList {
    width: 890px;
    height: auto;
    padding-top: 36px;
    margin: 0 auto;
    overflow: hidden;
}

/*.CoerTeamList .TeamList01{padding-top: 36px;}
.CoerTeamList .TeamList02{padding-top: 36px;}
.CoerTeamList .TeamList03{padding-top: 224px;}
.CoerTeamList .TeamList04{padding-top: 156px;}*/
.CoerTeamList .TeamList li {
    width: 292px;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
    float: left;
    margin-right: 4px;
}

.CoerTeamList .TeamList li img {
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.CoerTeamList .TeamList li .TeamMb {
    width: 292px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: rgba(36,46,62,0.7);*/
}

.CoerTeamList .TeamList li .TeamMb p {
    font-size: 18px;
    color: #1b345c;
    width: 20px;
    text-align: center;
    line-height: 18px;
    padding-top: 26px;
    padding-left: 26px;
}

.TeamList li .TeamBtm {
    width: 100%;
    height: 0; /*126px*/
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(172, 148, 84, 0.8);
    transition: height 0.6s;
    -moz-transition: height 0.6s;
    -webkit-transition: height 0.6s;
    -o-transition: height 0.6s;
}

.TeamList li .TeamBtm h6 {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    /*margin-bottom: 10px;*/
    font-weight: bold;
}

.TeamList li .TeamBtm p {
    font-size: 15px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    padding: 0 12px;
    /*overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;*/
}

.CoerTeamList .TeamList li:hover img {
    transform: scale(1.08);
    -ms-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

.CoerTeamList .TeamList li:hover .TeamMb {
    display: none;
}

.CoerTeamList .TeamList li:hover .TeamBtm {
    height: 98px;
    padding-top: 10px;
    padding-bottom: 18px;
}

/*团队详情*/
.TeamMemberCnt {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 48px;
    /*border-bottom: 1px solid #dddddd;*/
    font-family: "微软雅黑";
}

.TeamMember {
    width: 1100px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    background: #dcddde;
}

.TeamMemberLeft {
    width: 366px;
    height: 100%;
    float: left;
}

.TeamMemberLeft .TeamMemberImg {
    width: 366px;
    height: auto;
    position: relative;
}

.TeamMemberLeft .TeamMemberImg img {
    width: 100%;
    height: auto;
}

.TeamMemberImg .TeamBtm {
    width: 100%;
    height: auto; /*126px*/
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ac9455;
    padding-top: 18px;
    padding-bottom: 30px;
}

.TeamMemberImg .TeamBtm h6 {
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    padding: 0 32px;
    font-weight: normal;
}

.TeamMemberImg .TeamBtm p {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    overflow: hidden;
    /*text-overflow:ellipsis;
    white-space: nowrap;*/
    padding: 0 32px;
}

.TeamMemberRight {
    width: 706px;
    height: auto;
    min-height: 458px;
    float: right;
    padding-top: 28px;
    padding-left: 28px;
    padding-bottom: 20px;
    background-color: #f8f8f8;
}

.TeamMemberRight .TeamMTitle {
    width: 100%;
    height: 50px;
    line-height: 42px;
    font-size: 20px;
    color: #3f3f3f;
    position: relative;
    font-weight: 600;
    margin-bottom: 6px;
}

.TeamMemberRight .TeamMTitle span {
    display: block;
    width: 30px;
    border: 2px solid #404040;
    position: absolute;
    left: 2px;
    bottom: 0;
}

.TeamMemberRight .TeamMTitle2 {
    width: 100%;
    line-height: 26px;
    font-size: 16px;
    color: #424242;
    margin-bottom: 30px;
	
	
}
.TeamMemberRight .TeamMTitle2 span{font-weight:normal;}
.TeamMemberRight .TeamMTitle3 {
    width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    color: #404041;
}

.TeamMemberRight p {
    color: #777779 !important;
    line-height: 26px;
    font-size: 16px !important;
    margin-bottom: 28px;
}

.HonorList {
    width: 682px;
    height: auto;
    padding-top: 24px;
}

.HonorList li {
    width: 680px;
    height: auto;
    line-height: 12px;
    color: #404041;
    font-size: 16px;
    border-bottom: 1px solid #bebcba;
    margin-bottom: 14px;
	clear:both;
}

.HonorList li span {
    display: inline-block;
    width: 112px;
    height: 50px;
    line-height: 50px;
    /* text-align: center; */
    font-size: 16px;
    color: #3e3e3e;
    float: left;
    overflow: hidden;
    padding-left: 28px;
}

.HonorList li p {
    float: left;
    width: 538px;
    height: auto;
    line-height: 50px;
    color: #424242 !important;
    font-size: 16px;
    overflow: hidden;
    margin-bottom: 0;
}

/*成员企业*/
.MbEnter {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 80px;
    /*border-bottom: 1px solid #dddddd;*/
}

.MbEnterCnt {
    width: 1100px;
    height: auto;
    margin: 0 auto;
}

.MbEnter .TeamMTitle {
    width: 1040px;
    height: 50px;
    line-height: 42px;
    font-size: 18px;
    color: #404041;
    position: relative;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 26px;
}

.MbEnter .TeamMTitle span {
    display: block;
    width: 30px;
    border: 2px solid #404041;
    position: absolute;
    left: 2px;
    bottom: 0;
}

.MbEnterTopLgMain {
    width: 1100px;
    height: auto;
    background: #fff;
    box-shadow: 0 6px 18px #cfcfcf;
    padding-top: 26px;
    margin-bottom: 24px;
}

.MbEnterTopLg {
    width: 913px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.MbEnterLgList {
    width: 972px;
    height: auto;
    overflow: hidden;
    padding-left: 10px;
}

.MbEnterLgList li {
    width: 196px;
    height: 96px;
    margin-right: 40px;
    border: 2px solid #c2aa6f;
    float: left;
    margin-bottom: 36px;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.MbEnterLgList li a {
    display: block;
    width: 192px;
    height: 92px;
    text-align: center;
    position: relative;
    line-height: 92px;
}

.MbEnterLgList li img {
    max-width: 170px;
    height: auto;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    vertical-align: middle;
}

.MbEnterLgList li:hover {
    box-shadow: 0 0 18px #c2aa6f;
}

.MbEnterLgList li:hover img {
    transform: scale(1.08);
    -ms-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

.MbEnterBtmLg {
    width: 1100px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px #2f3132;
    padding-bottom: 18px;
}

.MbBtmLgNav {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background: #fff;
    overflow: hidden;
    padding-left: 32px;
    margin-bottom: 24px;
}

.MbBtmLgNav li {
    padding: 0 23px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #05000e;
    float: left;
    cursor: pointer;
}

.MbBtmLgNav li.on {
    background: #c3aa66;
    color: #fff;
    box-shadow: 0 2px 10px #c3aa66;
}

.MbBtmLgNav li:hover {
    background: #c3aa66;
    color: #fff;
    box-shadow: 0 2px 10px #c3aa66;
}

.MbBtmLgCnt {
    width: 913px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.MbBtmLgTitle {
    width: 146px;
    height: 40px;
    background: #c3ab6e;
    box-shadow: 0 0 10px #c3ab6e;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 24px;
}

/*新闻动态*/
.NewsCont, .NewsDetails {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 80px;
    /*border-bottom: 1px solid #dddddd;*/
}

.NewsDetails {
    padding-top: 60px;
}

.NewsTxt {
    width: 1100px;
    height: auto;
    margin: 0 auto;
}

.NewsCntList {
    width: 1200px;
    height: auto;
    overflow: hidden;
    margin-bottom: 50px;
}

.NewsCntList li {
    width: 360px;
    height: 240px;
    float: left;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
    margin-bottom: 16px;
}

.NewsCntList li .NewsCntListTitle {
    font-size: 16px;
    color: #2f3132;
    width: 310px;
    height: 110px;
    position: absolute;
    top: 38px;
    left: 24px;
    z-index: 1;
    line-height: 32px;
}

.NewsCntList li .Time {
    width: 310px;
    height: 20px;
    position: absolute;
    left: 24px;
    bottom: 46px;
    overflow: hidden;
}

.NewsCntList li .Time span {
    display: inline-block;
    height: 20px;
    float: left;
    line-height: 20px;
    font-size: 14px;
}

.NewsCntList li .Time .TimeIcon {
    width: 20px;
    background: url(../../images/indexDynamic/TimeIcon_03.png) no-repeat center center;
}

.NewsCntList li .Time .TimeNew {
    width: 48px;
    text-align: center;
    color: #959498;
}

.NewsCntList li .Time .TimeMouse {
    width: 54px;
    text-align: center;
    background: #c2aa6f;
    color: #fff;
    border-radius: 10px;
}

.NewsCntList li .NewsCLBtn {
    width: 100%;
    height: 8px; /*36px*/
    position: absolute;
    left: 0;
    bottom: 0;
    /*background: linear-gradient(to right,#ac9455,#ffebb6);*/
    background: #ac9455;
    border-radius: 4px;
    transition: height 0.6s;
    -moz-transition: height 0.6s;
    -webkit-transition: height 0.6s;
    -o-transition: height 0.6s;
}

.NewsCntList li .NewsCLBtn img {
    position: absolute;
    top: 4px;
    left: 24px;
    display: none;
}

.NewsCntList li .NewsCntListImg {
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.NewsCntList li .NewsCL {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 2);
}

.NewsCntList li:hover .NewsCntListImg {
    transform: scale(1.08);
    -ms-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

.NewsCntList li:hover .NewsCntListTitle {
    color: #fff;
}

.NewsCntList li:hover .TimeNew {
    color: #fff;
}

.NewsCntList li:hover .NewsCL {
    background-color: rgba(0, 0, 0, 0.6);
}

.NewsCntList li:hover .NewsCLBtn {
    height: 36px;
    background: linear-gradient(to right, #ac9455, #ffebb6);
    border-radius: 0;
}

.NewsCntList li:hover .NewsCLBtn img {
    display: block;
}

.pager a, .pager span {
    width: 30px;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
}

.pager span.current {
    background-color: #8f7738;
}

.pager .pg-prev, .pager .pg-prev:hover {
    background-position: 0px -23px;
}

.pager .pg-next, .pager .pg-next:hover {
    background-position: -30px -23px;
}

.pager {
    margin-bottom: 0;
}

/*新闻详情*/
.NewsDetailsCnt {
    width: 880px;
    height: auto;
    margin: 0 auto;
    line-height: 30px;
    margin-bottom: 24px;
    color: #404041;
    font-size: 16px;
}

.NewsDetailsTitle {
    font-size: 24px;
    color: #404041;
    text-align: center;
    margin-bottom: 14px;
}

.NewsDetailsCnt .Time {
    width: 126px;
    height: 20px;
    margin: 0 auto;
    margin-bottom: 38px;
}

.NewsDetailsCnt .Time span {
    display: inline-block;
    height: 20px;
    float: left;
    line-height: 20px;
    font-size: 14px;
}

.NewsDetailsCnt table {
    font-size: 16px;
    max-width: 100% !important;
    min-width: 60% !important;
    margin-bottom: 12px;
}

.NewsDetailsCnt table tr td {
    line-height: 30px;
    border: 1px solid #ccc;
    padding-left: 4px;
}

.NewsDetailsCnt .Time .TimeIcon {
    width: 20px;
    background: url(../../images/indexDynamic/TimeIcon_03.png) no-repeat center center;
}

.NewsDetailsCnt .Time .TimeNew {
    width: 48px;
    text-align: center;
    color: #959498;
}

.NewsDetailsCnt .Time .TimeMouse {
    width: 54px;
    text-align: center;
    background: #c2aa6f;
    color: #fff;
    border-radius: 10px;
}

.NewsDetailsCnt img {
    max-width: 70% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    margin-bottom: 24px;
    padding-top: 12px;
}

.NewsDetailsCnt .ImgWidth {
    max-width: 100% !important;
}

.NewsDetailsCnt p {
    width: 880px;
    height: auto;
    line-height: 30px;
    margin: 0 auto;
    margin-bottom: 24px;
    color: #404041;
    font-size: 16px;
    clear: both;
}

.NewsDetailsCnt iframe {
    width: 616px;
    height: 396px;
}

.NewsDetailsCnt a {
    color: #c82922;
}

.NewsDetailsCnt table p {
    width: auto;
}

.NewsDetailsCnt ul, .NewsDetailsCnt ol {
    width: 880px;
    height: auto;
    margin: 0 auto;
}

/*创投学院*/
.College {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    /*border-bottom: 1px solid #dddddd;*/
}

#CollegeList {
    width: 100%;
    height: auto;
    margin-bottom: 22px;
}

.CollegeCnt {
    width: 1100px;
    height: 220px;
    position: relative;
    margin: 0 auto;
    border-bottom: 1px solid #69747a;
}

.CollegeCnt .CollegeCntImg {
    width: 1920px;
    height: 220px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -960px;
    overflow: hidden;
    border-bottom: 1px solid #69747a;
}

.CollegeCntImg img {
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    margin-top: -10%;
}

.CollegeCnt:hover img {
    transform: scale(1.08);
    -ms-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

.CollegeCnt .CollegeCntImg .CollegeCntMb {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.CollegeCntTxt {
    width: 1100px;
    height: 178px;
    position: absolute;
    top: 0;
    left: 50%;
    padding-top: 22px;
    margin-left: -550px;
}

.CollegeCntTxt .CollegeTitle {
    width: 80px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: #c2aa6f;
    border: 1px solid #c2aa6f;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.CollegeTxtCnt {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
}

.CollegeTxtCnt p {
    font-size: 22px;
    color: #becaca;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
}

.CollegeTxtBtn {
    display: block;
    width: 104px;
    height: 26px;
    margin: 0 auto;
    color: #fff;
    border: 1px solid #445875;
    line-height: 26px;
    text-align: center;
    font-size: 16px;
}

.CollegeCnt:hover .CollegeTxtBtn {
    background: #a29363;
    border: 1px solid #a29363;
}

/*联系我们*/
.Contact {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 34px;
    /*border-bottom: 1px solid #dddddd;*/
}

.OfficeLocation {
    width: 1160px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.OfLocationList {
    width: 1200px;
    height: auto;
    overflow: hidden;
    padding: 10px 0 10px 30px;
}

.OfLocationList li {
    width: 536px;
    height: 360px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 0 10px #77787b;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    margin-bottom: 26px;
    position: relative;
    cursor: pointer;
}

.OfLocationList li .OfLocationListImg {
    width: 534px;
    height: 210px;
    overflow: hidden;
    margin-bottom: 68px;
}

.OfLocationList li .OfLocationListImg img {
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.OfLocationList li dl {
    width: 100%;
    height: 100%;
}

.OfLocationList li dl dt {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.OfLocationList li dl dt img {
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.OfLocationList li dl dd {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 60px;
}

.OfLocationList li dl dd h6 {
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    color: #414244;
    font-weight: bold;
}

.OfLocationList li dl dd p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #77787b;
}

.OfLocationList li .OfLocationImg {
    width: 148px;
    height: 148px;
    border: 4px solid #fff;
    border-radius: 148px;
    overflow: hidden;
    position: absolute;
    top: 110px;
    left: 50%;
    margin-left: -74px;
    box-shadow: 0 0 10px #2f3132;
}

.OfLocationList li .OfLocationImg img {
    width: 100%;
    height: auto;
}

.OfLocationList li:hover .OfLocationListImg img {
    transform: scale(1.08);
    -ms-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

/*BP投递（邮箱）*/
.Delivery {
    width: 1100px;
    height: auto;
    margin: 0 auto;
}

.DeliveryTop {
    width: 1012px;
    height: auto;
    padding: 0 44px;
}

.DeliveryTop p {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #404041;
    line-height: 24px;
    margin-bottom: 4px;
}

.DeliveryTop p img {
    vertical-align: middle;
}

.DeliveryTop p.DeliveryTopM {
    margin-bottom: 20px;
}

.DeliveryTop .TeamMTitle {
    width: 100%;
    height: 50px;
    line-height: 42px;
    font-size: 18px;
    color: #414244;
    position: relative;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 30px;
}

.DeliveryTop .TeamMTitle2 {
    font-size: 28px;
    margin-top: 50px;
}

.DeliveryTop .TeamMTitle span {
    display: block;
    width: 30px;
    border: 2px solid #404041;
    position: absolute;
    left: 2px;
    bottom: 0;
}

.DeliveryTab {
    width: 1056px;
    height: auto;
    padding: 28px 22px;
    background: #fff;
}

.DeliveryTab table {
    width: 100%;
    height: auto;
}

.DeliveryTab table td {
    border: 2px solid #f0f4f5;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    color: #666666;
}

/*新闻采访联系*/
.Interview {
    width: 628px;
    height: auto;
    margin: 0 auto;
    padding: 30px 0;
    overflow: hidden;
}

.InterviewImg {
    width: 298px;
    height: 136px;
    float: left;
}

.InterviewCnt {
    width: 296px;
    height: 114px;
    float: right;
    padding-top: 22px;
}

.Interview h6 {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 6px;
    font-weight: bold;
}

.Interview p {
    font-size: 16px;
    line-height: 30px;
    color: #77787b;
}

.Interview p a {
    color: #3a3a3a;
    font-weight: 600;
}

.Interview p img {
    vertical-align: middle;
}

/*官方账号*/
.OfficialAccount, .RelatedLinks {
    width: 1100px;
    height: auto;
    margin: 0 auto;
}

.OfficialAccount img {
    display: block;
    width: 448px;
    height: auto;
    margin: 0 auto;
}

.RelatedLinks {
    padding: 30px 0;
}

.RelatedLinks .BtmFooterList {
    width: 1100px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.RelatedLinks .BtmFooterList li {
    width: 546px;
    height: 146px;
    float: left;
    padding-top: 4px;
    /*padding-left: 50px;*/
    border-right: 1px solid #000;
}

.RelatedLinks .BtmFooterList li:last-child {
    border: none;
}

.RelatedLinks .BtmFooterList li .BtmFooterListLogo {
    display: block;
    margin: 0 auto;
    margin-bottom: 12px;
}

.RelatedLinks .BtmFooterList li .BtmFooterListLogo.Img2 {
    margin-top: -14px;
}

.RelatedLinks .BtmFooterList li .BtmFooterListInter {
    display: block;
    margin: 0 auto;
}

.RelatedLinks .BtmFooterList li p {
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

.RelatedLinks .BtmFooterList li:hover p {
    color: #a78f5f;
}

/*搜索页面*/
.SearchCnt {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 34px;
    /*border-bottom: 1px solid #dddddd;*/
}

.SearchIPt {
    width: 1100px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.SearchIPtTop {
    width: 778px;
    height: 46px;
    background: #fbfbfb;
    border: 1px solid #f3f3f3;
    margin-bottom: 18px;
}

.SearchIPtTop input {
    width: 682px;
    height: 46px;
    border: none;
    font-size: 16px;
    float: left;
    background: none;
    padding: 0 24px;
}

.SearchIPtTop button {
    width: 46px;
    height: 46px;
    float: right;
    border: none;
    background: url(../../images/indexDynamic/Search2_03.png) no-repeat center center;
}

.SearchIPtResult {
    width: 100%;
    height: 70px;
    line-height: 70px;
    padding-left: 28px;
    font-size: 16px;
    color: #aeaeae;
    border-bottom: 1px solid #d9dadb;
    background: url(../../images/indexDynamic/SearchSj.png) no-repeat 12px center;
}

.SearchIPtResult span {
    color: #c82922;
}

.SearchIPtList {
    width: 100%;
    height: auto;
}

.SearchIPtList li {
    width: 100%;
    height: 70px;
    line-height: 70px;
    padding-left: 28px;
    font-size: 16px;
    color: #606060;
    border-bottom: 1px solid #d9dadb;
    background: url(../../images/indexDynamic/SearchD_05.png) no-repeat 12px center;
}

.SearchIPtList li a {
    color: #606060;
}

.SearchIPtList li:hover a {
    color: #05000e;
}

/*独角兽页面*/
/*#fullPage{
	width: 100%;
	height: auto;
}*/
.UnicornCnt {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1920px auto;
    position: relative;
}

.UnicornCnt01 {
    background-image: url(Unicorn01.jpg);
}

.UnicornCnt02 {
    background-image: url(Unicorn02.jpg);
}

.UnicornCnt03 {
    background-image: url(Unicorn03.jpg);
}

.UnicornCnt04 {
    background-image: url(Unicorn04.jpg);
}

.UnicornCnt05 {
    background-image: url(Unicorn05.jpg);
}

.UnicornCnt06 {
    background-image: url(Unicorn06.jpg);
}

.UnicornCnt07 {
    background-image: url(Unicorn07.jpg);
}

.UnicornCnt08 {
    background-image: url(Unicorn08.jpg);
}

.UnicornCnt09 {
    background-image: url(Unicorn09.jpg);
}

.UnicornCnt10 {
    background-image: url(Unicorn10.jpg);
}

.UnicornCntTxt {
    width: 340px;
    height: 280px;
    position: absolute;
    top: 50%;
    left: 720px;
    z-index: 4;
    margin-top: -140px;
}

.UnicornCntTxt h6 {
    font-family: "方正兰亭大黑_GBK", "微软雅黑";
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.UnicornCntTxt p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.UnicornCntTxt a {
    font-size: 18px;
    margin-top: 20px;
    display: block;
    width: 150px;
    height: 40px;
    border: 2px solid #fff;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
}
.video_div iframe{width: 100%; min-height: 500px;}

.classTxt{width:1100px; margin:0 auto;}
.classTxt .wucanTitle {
    height: 50px;
    line-height: 42px;
    font-size: 18px;
    color: #404041;
    position: relative;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 26px;
    clear: both;
    padding-top: 10px;
}

.classTxt .wucanTitle span {
    display: block;
    width: 30px;
    border: 2px solid #404041;
    position: absolute;
    left: 2px;
    bottom: 0;
}
.wucanover{width: 1100px; overflow: hidden; height: auto;}
.wucanlist{width: 1140px; margin-left:-10px;}
.wucanlist li{float: left; border:1px solid #E6E6E6; margin:0 10px 10px; padding: 10px 0; font-size: 20px; width: 258px; border-bottom: 6px solid #AC9455;}
.wucanlist li:hover{background-color:#AC9455; color: #fff; }
.wucanlist li:hover a{color: #fff;}
.wucanlist li:hover a h3 {}
.wucanlist li:hover .playimg div{ background-color: rgba(0,0,0,0.6);}
.wucanlist li:hover div.playimg div img{ opacity: 1;}
.wucanlist li h1{font-weight: bold; font-size: 20px; margin-bottom: 6px; padding: 0 10px;}
.wucanlist li h1 font{font-size:16px; font-weight:normal}
.wucanlist li h1 span{
    width: 54px; padding: 0 10px;
    text-align: center;
    background: #c2aa6f;
    color: #fff;
    border-radius: 10px;}
.wucanlist li h2{font-weight: normal; font-size: 16px; height: 52px; line-height: 26px; overflow: hidden;padding: 0 10px; margin-bottom: 6px;}
.wucanlist li div.playimg{  background: no-repeat center center; background-size: cover; height: 146px;}
.wucanlist li div.playimg div{width: 100; height: 100%; background-color: rgba(0,0,0,0.2); }
.wucanlist li div.playimg div img{ opacity: 0.5;}
.wucanlist li div img{max-width: 100%;}
.wucanlist li h3{font-weight: normal; font-size: 16px; height: 80px; line-height: 26px; overflow: hidden;padding: 0 10px; margin-top: 6px;}
.wucanlist li a:hover h3 {text-decoration: underline;}

.wucanlist li h3 span{ background: url(../../images/indexDynamic/wucan_go.png) no-repeat; display: inline-block; width: 30px; height: 26px;vertical-align:middle;}
.wucanlist li:hover h3 span{background-position: -30px 0px;}


#myCarousel {
    width: 100%;
    height: 100%;
}
.play-text{
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
}
.play-title{
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 20px 90px;
}

.play-intro{
    width: 90%;
    margin: 0 auto 7% auto;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}
.play-a{
    color: #fff; cursor:pointer;
}
.play-a:hover{
    color: #b18247 !important;
}
.carousel-control.left {
    background-image:none !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
    background-image:none !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

a:hover{
    text-decoration: none !important;
}

.img-left{
    width: 40px;
    height: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
    z-index: 1000;
}
.img-right{
    width: 40px;
    height: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    z-index: 1000;
}
.index-down{
    width: 31px;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    margin: 0 auto;
    z-index: 10000;
    cursor: pointer;
    animation: heart 1.3s ease-in-out 2.7s infinite alternate;
}
@keyframes heart{
    from{transform:translate(0,0)}
    to{transform:translate(0,6px)}
}
/*.thumbnail-scale{*/
/*    transition: all 5s;*/
/*    transform: scale(1.1);*/
/*}*/

@keyframes scaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        transform:scale(1);
        /*开始为原始大小*/
    }
    25% {
        transform:scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        transform:scale(1);
    }
    75% {
        transform:scale(1.1);
    }
}.thumbnail-scale {
     -webkit-animation-name:scaleDraw;
     /*关键帧名称*/
     -webkit-animation-timing-function:ease-in-out;
     /*动画的速度曲线*/
     -webkit-animation-iteration-count:infinite;
     /*动画播放的次数*/
     -webkit-animation-duration:50s;
     /*动画所花费的时间*/
 }

@media screen and (max-width: 1366px) {
    .play-text{
        bottom: 17%;
    }
}