<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------æ­¤æ&nbsp;·å¼æœªå…¨å±€å…±ç”¨æ&nbsp;·å¼ï¼Œæ‰€æœ‰pcç‰ˆçš®è‚¤éƒ½ä¼šå¼•ç”¨æ­¤æ&nbsp;·å¼ï¼Œï¼ˆä¼šå‘˜ä¸­å¿ƒåŠä¸‹æ³¨é¡µé¢ä¸å¼•ç”¨ï¼‰-------*/
/* çº¢åŒ…æ&nbsp;·å¼ */
.parcel{
    height: 226px;
    width: 158px;
    position: fixed;
    right: 0px;
    background: url(/Content/common/web/images/parcel-icon.png?733ec2a48a) no-repeat center;
    top:60%;
    z-index: 1001;
    cursor: pointer;
    /* -webkit-animation:rubberBand 1s infinite linear ; */
}
.parcel-wrap{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
}
@media \0screen\,screen\9 {/* åªæ”¯æŒIE6ã€7ã€8 */
    .parcel-wrap{
      background-color:#000000;
      filter:Alpha(opacity=50);
      position:static; /* IE6ã€7ã€8åªèƒ½è®¾ç½®position:static(é»˜è®¤å±žæ€§) ï¼Œå¦åˆ™ä¼šå¯¼è‡´å­å…ƒç´&nbsp;ç»§æ‰¿Alphaå€¼ */
      *zoom:1; /* æ¿€æ´»IE6ã€7çš„haslayoutå±žæ€§ï¼Œè®©å®ƒè¯»æ‡‚Alpha */
    }
    .demo p{
      position: relative;/* è®¾ç½®å­å…ƒç´&nbsp;ä¸ºç›¸å¯¹å®šä½ï¼Œå¯è®©å­å…ƒç´&nbsp;ä¸ç»§æ‰¿Alphaå€¼ */
    }  
}
.parcel-box-wrap{
    height: 100%;
    width: 100%;
    position: relative;
}
.parcel-open-controller,.parcel-result-win-controller,.parcel-result-fail-controller{
    height: 100%;
    width: 100%;
}
.parcel-box{
    height: 490px;
    width: 402px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -201px;
    margin-top: -245px;
    
}
.parcel-open-btn{
    height: 162px;
    width: 162px;
    background: url(/Content/common/web/images/parcel-open-btn.png?0d398ac530) no-repeat center; 
    position: absolute;
    cursor: pointer;
    left: 118px;
    top: 40px;
    -webkit-animation: open 0.2s linear 0.5s infinite alternate;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    animation: open 0.2s linear 0.5s infinite alternate;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-tap-highlight-color: transparent;
}

/* open æŠ–åŠ¨åŠ¨ç”» */
@keyframes open {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

.parcel-box-wrap-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    
}
.parcel-open{
    background: url(/Content/common/web/images/parcel-open.png?f251e323d0) no-repeat center; 
}

@-webkit-keyframes gogogo {
    0%{
        -webkit-transform: rotate(0deg);
    }
    50%{
        -webkit-transform: rotate(180deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
    }
}

.parcel-result-win{
    background: url(/Content/common/web/images/parcel-result-win.png?743ea31d75) no-repeat center; 
    height: 524px;
}
.win-money-box{
    position: absolute;
    height: 45px;
    line-height: 45px;
    width: 228px;
    text-align: center;
    top: 317px;
    font-size: 26px;
    color: #fff33f;
    left: 89px;
}

.win-money-box span{
    margin: 0 4px;
}
.parcel-result-win-btn{
    width: 155px;
    height: 45px;
    background: url(/Content/common/web/images/parcel-result-win-btn.png?8403ec3451) no-repeat center; 
    position: absolute;
    left: 130px;
    top: 380px;
    cursor: pointer;
}
.parcel-result-fail{
    background: url(/Content/common/web/images/parcel-result-fail.png?32ed617b9e) no-repeat center; 
    height: 524px;
}
.fail-money-box{
    position: absolute;
    height: 45px;
    line-height: 45px;
    width: 228px;
    text-align: center;
    top: 317px;
    font-size: 26px;
    color: #fff33f;
    left: 89px;
}
.parcel-result-fail-btn{
    width: 155px;
    height: 45px;
    background: url(/Content/common/web/images/parcel-result-win-btn.png?8403ec3451) no-repeat center; 
    position: absolute;
    left: 130px;
    top: 374px;
    cursor: pointer;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
.parcel-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes slideInDown{
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@keyframes rubberBand{
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    
    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        -ms-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }
    
    
    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        -ms-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        -ms-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
/* çº¢åŒ…æ&nbsp;·å¼ end*/

/* æ–°å¹´å¿«ä¹ æ&nbsp;·å¼ */
.happy-new-years{
    width: 442px;
    height: 234px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1001;
    
    background: url(/Content/common/web/images/happy-new-years-bg.png?80743800bd) no-repeat center; 
}
.new-years-btn{
    height: 36px;
    width: 36px;
    position: absolute;
    right: 66px;
    top:6px;
    cursor: pointer;
}



/* ä½“è‚²ç«žæŠ€ */
.head-menu,.width_main{
    position: relative;
}
.menu-child2{
    position: absolute;
    left:50%!important;
    width: 100%;
    min-height:179px;
    bottom:0;
    margin-bottom:-195px;
    margin-left:-513px;
    text-align: center;
    padding: 8px;
    z-index: 9999;
}
.menu-child2 .sports-bg{
    border: none; width:100%;min-height:179px;float: left;
}
.menu-child2 .sports-bg .sport{
    width: 33%;
    height: 179px;
    float: left;
}
.menu-child2 .sports-bg  a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: -179px;
    font-size:0;
}
.menu-child2 .sports-bg  a:hover{
    
}


/*å½©ç¥¨é€‰æ‹©æ&nbsp;·å¼*/
/*æ¸¸æˆä¸­å¿ƒ*/
.menu-child1 li {float:left;position:relative;}
.menu-child1 li span img { margin-left:6px;line-height:28px;margin-bottom:-2px;}
/* .menu-child1 h1 { width: 70px;height: 20px;font-size:16px;float:left;color:#fff;margin-top:20px;margin-left:10px;padding:2px;} */
.cut { float:left; width:1px;height:506px;background-color:#333030;background-color:rgba(255,255,255,0.15);position:absolute; top:34px;left:500px;}
.color {width:23px;height:23px;/*margin-bottom:28px;margin-top:5px;*/text-align:center;float:left;line-height:22px;font-size:15px;display:block;}

.menu-child1 li .game_1 span,
.menu-child1 li .game_6 span,
.menu-child1 li .game_51 span{display:block;}

.bottom-info-main .bottom-info .new-box-hidden {border-right:none;}

/*******Newæ¸¸æˆä¸­å¿ƒ*/
.gamelistCon li {float:left;line-height:30px;width:94px;height:94px;margin:0 0 28px 0;position:relative;}
.gamelistCon li a{display:block;width:94px;height:94px;text-align:center;}
.gamelistCon li span{font-size:12px;width:62px;height:28px;line-height:28px;text-align:center;display:block;color:#fff}

.gamelistCon li span.hot { background:url(/Content/mapping/haocai-blue/home/images/bg/h_bg.png?41cadb93da) no-repeat right center;}
.gamelistCon li font{display:inline-block;height:28px;width: 74px; overflow:hidden;}
.gamelistCon li a span{display:none;background:url(/Content/default/officialGames/images/new-ico.gif?8fa3e8dc04);width:34px;height:26px;position:absolute;top:0;right:0;}
/* .menu-child1 li .game_1 span,
.menu-child1 li .game_6 span,
.menu-child1 li .game_51 span{display:none;} */

.bottom-info-main .bottom-info .new-box-hidden {border-right:none;}
.gamelistMenu ul{width:1000px;}

.gamelistMenu ul li a i {
    position: absolute;
    top: 6px;
    left: -3px;
    width: 200px;
    height: 50px;
    z-index: 1;
}
/* .gamelistMenu ul li a i.new-VR {
    background: url(/Content/default/images/gameskin/new-VR-gif.gif?73e19af931) no-repeat center center;
} */
.gamelistMenu ul li a i.new-FFC {
    background: url(/Content/default/images/gameskin/new-FFC-gif.gif?6c31373dc1) no-repeat center center;
} 
.gamelistMenu ul li a i.new-JSC {
    background: url(/Content/default/images/gameskin/new-JSC-gif.gif?dde08b97cf) no-repeat center center;
}
.gamelistMenu ul li a i.new-WMC {
    background: url(/Content/default/images/gameskin/new-WMC-gif.gif?277b59f066) no-repeat center center;
}
.gamelistMenu ul li a i.new-PKS {
    background: url(/Content/default/images/gameskin/new-PKS-gif.gif?4bbc7499e7) no-repeat center center;
}
.gamelistMenu .hotgameCon ul li a span {
    position: absolute;
    top: 3px;
    right: -1px;
    left: auto;
    width: 36px !important;
    height: 13px;
}

.gamelistMenu .hotgameCon ul li a[class*="game_TPZY_"] span,
.gamelistMenu .hotgameCon ul li a.game_WMLHC span,.gamelistMenu .hotgameCon ul li a.game_WMFFC span ,
.gamelist-bg-lgVR .hotgameCon ul li a span,.gamelist-bg-lgJSC .hotgameCon ul li a span,.gamelist-bg-lgWMC .hotgameCon ul li a span,.gamelistMenu .hotgameCon ul li a.game_TPZY_FFC span,
.gamelistMenu .hotgameCon ul li a.game_TPZY_SFC span,.gamelistMenu .hotgameCon ul li a.game_137 span,.gamelistMenu .hotgameCon ul li a.game_136 span,.gamelistMenu .hotgameCon ul li a.game_TPZY_WFC span,
.gamelistMenu .hotgameCon ul li a.game_TPZY_1D5FC span,.gamelistMenu .hotgameCon ul li a.game_12SX span{
    background: url(/Content/default/images/gameskin/new.gif?5eeb60ace9) no-repeat center top;
    display: block;
}

.gamelistMenu .hot_game_toggle a{width:40px;height:25px;}
.hotgameCon ul{margin:0; width:100%;padding:11px 0}
.gamelistMenu .hotgameCon li{width:auto;height:100px;margin:0 5px;}
.gamelistMenu .hotgameCon a{width:66px;height:66px;padding:4px;}


/*ä¸‹æ‹‰èœå•æ”¹ä¸º10ä¸ª*/

.gamelistMenu{display:block;}
.gamelistMenu li{float: left; position: relative; width:200px; height:176px;}
.gamelistMenu li a{display: block; width: 200px; height: 176px; text-align: center;}
.gamelistMenu span{position: absolute; left: 0; bottom: 0; width: 100% !important; height: 100%;}
.gamelistMenu .gm-new-01{ background: url(/Content/default/images/gameskin/game-tit1.png?44b26f1c3a) no-repeat;}
.gamelistMenu .gm-new-02{ background: url(/Content/default/images/gameskin/game-tit2.png?f29f0e0b29) no-repeat;}
.gamelistMenu .gm-new-03{ background: url(/Content/default/images/gameskin/game-tit3.png?1c1787b31b) no-repeat;}
.gamelistMenu .gm-new-04{ background: url(/Content/default/images/gameskin/game-tit4.png?0df805c9bd) no-repeat;}
.gamelistMenu .gm-new-05{ background: url(/Content/default/images/gameskin/game-tit5.png?f82e5036f7) no-repeat;}
.gamelistMenu .gm-new-06{ background: url(/Content/default/images/gameskin/game-tit6.png?bde4972c25) no-repeat;}
.gamelistMenu .gm-new-07{ background: url(/Content/default/images/gameskin/game-tit7.png?9a1d73597c) no-repeat;}
.gamelistMenu .gm-new-08{ background: url(/Content/default/images/gameskin/game-tit8.png?97ed706c52) no-repeat;}
.gamelistCon {position:absolute; width:212%; height:160%; top:-30%; left:-50%; z-index: 10002; border-radius: 0 0 8px 8px; zoom: 1;}
.gamelist-bg-lgSSC{ background: url(/Content/default/images/gameskin/game-bg1-h.jpg?e06fb9c2d1) no-repeat center center;}
.gamelist-bg-lgFFC{ background: url(/Content/default/images/gameskin/game-bg2-h.jpg?41d290d51a) no-repeat center center;}
.gamelist-bg-lgPKS{ background: url(/Content/default/images/gameskin/game-bg3-h.jpg?691d88d3c9) no-repeat center center;}
.gamelist-bg-lgTYC{ background: url(/Content/default/images/gameskin/game-bg4-h.jpg?2c3039f211) no-repeat center center;}
.gamelist-bg-lgKLC{ background: url(/Content/default/images/gameskin/game-bg5-h.jpg?93c8ab6847) no-repeat center center;}
.gamelist-bg-lgDPC{ background: url(/Content/default/images/gameskin/game-bg6-h.jpg?e39958e903) no-repeat center center;}
.gamelist-bg-lgPCDD{ background: url(/Content/default/images/gameskin/game-bg7-h.jpg?0fdbae868d) no-repeat center center;}
.gamelist-bg-lgK3{ background: url(/Content/default/images/gameskin/game-bg8-h.jpg?56daa9e213) no-repeat center center;}
.gamelist-bg-lgVR{ background: url(/Content/default/images/gameskin/game-bg9-h.jpg?247abd582f) no-repeat center center;}
.gamelist-bg-lgJSC{ background: url(/Content/default/images/gameskin/game-bg10-h.jpg?d228075508) no-repeat center center;}
.gamelist-bg-lgWMC{ background: url(/Content/default/images/gameskin/game-bg11-h.jpg) no-repeat center center;}



.game-tit-FFC{background: url(/Content/default/images/gameskin/game-titFFC.png?7615dd0474) no-repeat center center}
.game-tit-PKS{background: url(/Content/default/images/gameskin/game-titPKS.png?a936560a82) no-repeat center center}
.game-tit-TYC{background: url(/Content/default/images/gameskin/game-titTYC.png?e08a32bced) no-repeat center center}
.game-tit-KLC{background: url(/Content/default/images/gameskin/game-titKLC.png?d03bcbce2a) no-repeat center center}
.game-tit-DPC{background: url(/Content/default/images/gameskin/game-titDPC.png?cdbe3f36c4) no-repeat center center}
.game-tit-PCDD{background: url(/Content/default/images/gameskin/game-titPCDD.png?fc6472c752) no-repeat center center}
.game-tit-K3{background: url(/Content/default/images/gameskin/game-titK3.png?3fa2bc911c) no-repeat center center}
.game-tit-VR{background: url(/Content/default/images/gameskin/game-titVR.png?beb433fbd5) no-repeat center center}
.game-tit-JSC{background: url(/Content/default/images/gameskin/game-titJSC.png?093e716d2f) no-repeat center center}
.game-tit-WMC{background: url(/Content/default/images/gameskin/game-titWMC.png?9d54d00543) no-repeat center center}
.game-tit-SSC{background: url(/Content/default/images/gameskin/game-titSSC.png?fd0e8d8973) no-repeat center center}


.gamelistMenu li a img{width:100%;height:100%;}
.gamelistMenu .hotgameCon a{background:url(/Content/mapping/haocai-red/home/images/game-icon-bg.png?85135d389c) no-repeat center center;background-size:100% 100%;}
.gamelistMenu .hotgameCon ul li a.game_WMLHC,.gamelistMenu .hotgameCon ul li a.game_WMFFC,
.gamelist-bg-lgVR .hotgameCon ul li a,.gamelist-bg-lgJSC .hotgameCon ul li a,.gamelistMenu .hotgameCon ul li a.game_TPZY_WFC,
.gamelistMenu .hotgameCon ul li a.game_TPZY_FFC,.gamelistMenu .hotgameCon ul li a.game_TPZY_SFC,.gamelistMenu .hotgameCon ul li a.game_137,.gamelistMenu .hotgameCon ul li a.game_136,.gamelistMenu .hotgameCon ul li a[class*="game_TPZY_"],
.gamelistMenu .hotgameCon ul li a.game_TPZY_1D5FC,.gamelistMenu .hotgameCon ul li a.game_12SX{
    background: url(/Content/mapping/haocai-red/home/images/game-icon-bg.gif?45ba898dcf) no-repeat center center;
}
/*ä¸‹æ‹‰èœå•æ”¹ä¸º9ä¸ª*/

.gamelistMenu-new li{width:333px; }
.gamelistMenu-new li a{ width: 333px; }
.gamelistMenu-new .gamelist-bg{    width: 120%;
    height: 160%;
    top: -30%;
    left: -10%;}
    
.gamelist-bg-SSC{ background: url(/Content/default/images/gameskin/game-bg1.jpg?e06fb9c2d1) no-repeat center center;}
.gamelist-bg-FFC{ background: url(/Content/default/images/gameskin/game-bg2.jpg?41d290d51a) no-repeat center center;}
.gamelist-bg-PKS{ background: url(/Content/default/images/gameskin/game-bg3.jpg?691d88d3c9) no-repeat center center;}
.gamelist-bg-TYC{ background: url(/Content/default/images/gameskin/game-bg4.jpg?2c3039f211) no-repeat center center;}
.gamelist-bg-KLC{ background: url(/Content/default/images/gameskin/game-bg5.jpg?93c8ab6847) no-repeat center center;}
.gamelist-bg-DPC{ background: url(/Content/default/images/gameskin/game-bg6.jpg?e39958e903) no-repeat center center;}
.gamelist-bg-PCDD{ background: url(/Content/default/images/gameskin/game-bg7.jpg?0fdbae868d) no-repeat center center;}
.gamelist-bg-K3{ background: url(/Content/default/images/gameskin/game-bg8.jpg?56daa9e213) no-repeat center center;}
.gamelist-bg-VR{ background: url(/Content/default/images/gameskin/game-bg9.jpg?247abd582f) no-repeat center center;}
.gamelist-bg-JSC{ background: url(/Content/default/images/gameskin/game-bg10.jpg?d228075508) no-repeat center center;}
.gamelist-bg-WMC{ background: url(/Content/default/images/gameskin/game-bg11.jpg?deddc89422) no-repeat center center;}

.game-titFFC{background: url(/Content/default/images/gameskin/game-titFFC-1.png?854280443a) no-repeat center center}
.game-titPKS{background: url(/Content/default/images/gameskin/game-titPKS-1.png?41599187aa) no-repeat center center}
.game-titTYC{background: url(/Content/default/images/gameskin/game-titTYC-1.png?e98494b092) no-repeat center center}
.game-titKLC{background: url(/Content/default/images/gameskin/game-titKLC-1.png?c15bd2c339) no-repeat center center}
.game-titDPC{background: url(/Content/default/images/gameskin/game-titDPC-1.png?d54ef9f210) no-repeat center center}
.game-titPCDD{background: url(/Content/default/images/gameskin/game-titPCDD-1.png?c617ced380) no-repeat center center}
.game-titK3{background: url(/Content/default/images/gameskin/game-titK3-1.png?2eaa2bd51e) no-repeat center center}
.game-titVR{background: url(/Content/default/images/gameskin/game-titVR-1.png?c462ee0848) no-repeat center center}
.game-titJSC{background: url(/Content/default/images/gameskin/game-titJSC.png?093e716d2f) no-repeat center center}
.game-titWMC{background: url(/Content/default/images/gameskin/game-titWMC-1.png?20180721) no-repeat center center}
.game-titSSC{background: url(/Content/default/images/gameskin/game-titSSC-1.png?6e19b37071) no-repeat center center}

/*ä¸‹æ‹‰èœå•æ”¹ä¸º12ä¸ª*/
.gamelistMenu li{ width:250px;height:145px;}
.gamelistMenu li a{ width:250px;height:145px;}
.gamelistMenu li a.last-bg{background:url(/Content/default/images/gameskin/gamelast-bg.jpg?4b8211f653)no-repeat}
.gamelistCon {
    position: absolute;
    width: 170%;
    height: 160%;
    top: -30%;
    left: -25%;
    z-index: 10002;
    border-radius: 0 0 8px 8px;
    zoom: 1;
}
.gamelistMenu ul li a i {
    position: absolute;
    top: 6px;
    left: 23px;
    width: 200px;
    height: 50px;
    z-index: 1;
}
.game-tit-FFC{background: url(/Content/default/images/gameskin/game-titFFC.png?7615dd0474) no-repeat center top}
.game-tit-PKS{background: url(/Content/default/images/gameskin/game-titPKS.png?a936560a82) no-repeat center top}
.game-tit-TYC{background: url(/Content/default/images/gameskin/game-titTYC.png?e08a32bced) no-repeat center top}
.game-tit-KLC{background: url(/Content/default/images/gameskin/game-titKLC.png?d03bcbce2a) no-repeat center top}
.game-tit-DPC{background: url(/Content/default/images/gameskin/game-titDPC.png?cdbe3f36c4) no-repeat center top}
.game-tit-PCDD{background: url(/Content/default/images/gameskin/game-titPCDD.png?fc6472c752) no-repeat center top}
.game-tit-K3{background: url(/Content/default/images/gameskin/game-titK3.png?3fa2bc911c) no-repeat center top}
.game-tit-VR{background: url(/Content/default/images/gameskin/game-titVR.png?beb433fbd5) no-repeat center top}
.game-tit-JSC{background: url(/Content/default/images/gameskin/game-titJSC.png?093e716d2f) no-repeat center top}
.game-tit-WMC{background: url(/Content/default/images/gameskin/game-titWMC.png?9d54d00543) no-repeat center top}
.game-tit-SSC{background: url(/Content/default/images/gameskin/game-titSSC.png?fd0e8d8973) no-repeat center top}
.game-titKS{background: url(/Content/default/images/gameskin/game-titKS.png) no-repeat center top}


.gamelistMenu-new ul li a i {
    top: 18px;
    left: 18px;
    width: 260px;
    height: 50px;
}
.gamelistMenu-new ul li a i.new-VR {
    background: url(/Content/default/images/gameskin/new-VR.gif?5bdaba27c3) no-repeat center center;
}
.gamelistMenu-new ul li a i.new-FFC {
    background: url(/Content/default/images/gameskin/new-FFC.gif?9024427c2d) no-repeat center center;
} 




.animated1 {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;}
.flipOutY1{
    -webkit-backface-visibility: visible!important;
    -moz-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    -moz-animation-name: flipOutY;
    -ms-animation-name: flipOutY;
    -o-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .25s;
    -moz-animation-duration: .25s;
    -ms-animation-duration: .25s;
    -o-animation-duration: .25s;
    animation-duration: .25s;
}

@-webkit-keyframes flipOutY {
    from {
      /*-webkit-transform: rotate3d(0, 1, 0, 180deg);
      transform:  rotate3d(0, 1, 0, 180deg);*/
      -webkit-transform:scale(0);
      -moz-transform:scale(0);
      -o-transform:scale(0);
      transform:scale(0);
      opacity: 0;
    }
    /*50% {
      -webkit-transform:rotate3d(0, 1, 0, 270deg);
      transform:  rotate3d(0, 1, 0, 270deg);
  
    }*/
    to {
      /*-webkit-transform: rotate3d(0, 1, 0, 360deg);
      transform:  rotate3d(0, 1, 0, 360deg);*/
      -webkit-transform:scale(1);
      -moz-transform:scale(1);
      -o-transform:scale(1);
      transform:scale(1);
       opacity: 1;
    }
  }
  
  
  @keyframes flipOutY {
    from {
      /*-webkit-transform: rotate3d(0, 1, 0, 180deg);
      transform:  rotate3d(0, 1, 0, 180deg);*/
      -webkit-transform:scale(0);
      -moz-transform:scale(0);
      -o-transform:scale(0);
      transform:scale(0);
      opacity: 0;
    }
    /*50% {
      -webkit-transform:rotate3d(0, 1, 0, 270deg);
      transform:  rotate3d(0, 1, 0, 270deg);
  
    }*/
    to {
      /*-webkit-transform: rotate3d(0, 1, 0, 360deg);
      transform:  rotate3d(0, 1, 0, 360deg);*/
      -webkit-transform:scale(1);
      -moz-transform:scale(1);
      -o-transform:scale(1);
      transform:scale(1);
       opacity: 1;
    }
  }
/*è½¬ç›˜æŠ½å¥–æ´»åŠ¨å…¥å£*/ 
.envelopes-box{
    width: 318px;
    height: 244px;
    background: url(/Content/common/web/images/envelopes.png?6f72d4d2e2) no-repeat center top;
    position: fixed;
    top:60%;
    left: 0;
    z-index: 800;
}
  .envelopes-link{
    width: 274px;
    height: 204px;
    display: inline-block;
    position: absolute;
   top: 31px;
}
  .envelopes-close{
    width: 31px;
    height: 31px;
    position: absolute;
    right: 54px;
}
/*pcç‰ˆçŒœä½&nbsp;å–œæ¬¢*/
.Appdownload-left{
    display: block;
    position: fixed;
    top:200px;
    left:0;
    z-index: 700;
}
.Appdownload-left img{
    border:  none;
    display: block;
}
.Appdownload-left a{
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.Appdownload-left a.close{
    position: absolute;
    top: 8px;
    right: 5px;
    z-index: 701;
    width: 24px;
    height: 24px;
    background: url(/Content/common/web/images/clo.png?31a28bed4a) center center no-repeat;
    cursor: pointer;
}



/*æ»šåŠ¨æ¡æ&nbsp;·å¼*/
body::-webkit-scrollbar{
	width:5px;
	height:5px;
}
body::-webkit-scrollbar-track{
	background: #f6f6f6;
	border-radius:2px;
}
body::-webkit-scrollbar-thumb{
	background: #aaa;
	border-radius:2px;
}
body::-webkit-scrollbar-thumb:hover{
	background: #747474;
}
body::-webkit-scrollbar-corner{
	background: #f6f6f6;
}

/*ç¬¬ä¸‰æ–¹æ¸¸æˆä¸‹æ‹‰èœå•*/
.menu-child4-box{
}
.menu-child4 {
    position: absolute;
    z-index: 1001;
    width: 1000px;
    left: 50%;
    margin-left: -500px;
    background: #fff;
    box-shadow: -3px 0px 28px -8px #000;
    overflow: hidden;
}
.menu-child4 .menu-item{
    position: relative;
    width: 25%;
    float: left;
    text-align: center;
    background: #fff;
    /* border-right: 1px solid #ccc; */
    box-sizing: border-box;
}
.menu-child4 .menu-item::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 1000px;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}
.menu-child4 .menu-item:last-child::after{
    border-right: none !important;
}

.menu-child4 .menu-item .tit{
    height: 50px;
    line-height: 50px;
    color: #6b6b6b;
    background: #ededed;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
}
.menu-child4 .menu-item .tit i{
    display: inline-block;
    width: 33px;
    height: 31px;
    margin-right: 10px;
    background: url(/Content/common/web/images/nav-ico.png?3234baef70) no-repeat;
    vertical-align: middle;
}
.menu-child4 .menu-item ul{
    min-height: 263px;
    box-sizing: border-box;
}
.menu-child4 .menu-item .tit i.CPYX-ico{
    background-position: 0 0;
}
.menu-child4 .menu-item .tit i.DZYX-ico{
    background-position: -40PX 0;
}
.menu-child4 .menu-item .tit i.TYJJ-ico{
    background-position: -78PX 0;
}
.menu-child4 .menu-item .tit i.QPYX-ico{
    background-position: -115PX 0;
}
.menu-child4 .menu-item ul li i {
    width: 58px;
    height: 58px;
    display: inline-block;
}
.menu-child4 .menu-item ul li a {
    height: 14px;
    display: inline-block;
    line-height: 14px;
    position: relative;
    top: -24px;
    left: 10px;
    font-weight: 900;
    font-size: 14px;   
}
.menu-child4 .menu-item ul li a:hover {
    color: red!important;
}
.child-CPYX {
    background: url(/Content/common/web/images/ul-one.png?3367a94a3b)center bottom no-repeat;
}
.child-DZYX {
    background: url(/Content/common/web/images/ul-two.png?3edeae3d34)center bottom no-repeat;
}
.child-TYJJ {
    background: url(/Content/common/web/images/ul-three.png?b910e44d17)center bottom no-repeat;
}
.child-QPYX {
    background: url(/Content/common/web/images/ul-four.png?1ebddb1b50)center bottom no-repeat;
}</pre></body></html>