
/*----------------------电脑板式样式----------------------*/

/* 音乐播放器容器 - 电脑样式 */
#floatingMusicPlayer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    border: 1px solid rgba(224, 224, 224, 0.8);
    transition: all 0.3s ease;
}

/* 播放器标题 */
#floatingMusicPlayer .player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#floatingMusicPlayer .player-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

#floatingMusicPlayer .player-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}

#floatingMusicPlayer .player-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transform: rotate(90deg);
}

/* 音乐信息 */
#floatingMusicPlayer .music-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#floatingMusicPlayer .music-cover {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

#floatingMusicPlayer .music-cover i {
    color: white;
    font-size: 28px;
}

#floatingMusicPlayer .music-text h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.3px;
}

#floatingMusicPlayer .music-text p {
    margin: 0;
    font-size: 13px;
    color: #666;
    letter-spacing: 0.2px;
}

/* 控制按钮区域 */
#floatingMusicPlayer .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

#floatingMusicPlayer .main-controls {
    display: flex;
    align-items: center;
    /* 替代 gap: 12px; */
}

#floatingMusicPlayer .control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
}

/* 替代 gap 的 margin 设置 */
#floatingMusicPlayer .prev-next-btn {
    background: rgba(0, 0, 0, 0.04);
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0 6px; /* 替代 gap */
}

#floatingMusicPlayer .play-pause-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin: 0 6px; /* 替代 gap */
}

#floatingMusicPlayer .play-pause-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

#floatingMusicPlayer .prev-next-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* 进度条 */
#floatingMusicPlayer .progress-container {
    margin-bottom: 14px;
}

#floatingMusicPlayer .progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

#floatingMusicPlayer .progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: height 0.2s;
}

#floatingMusicPlayer .progress-bar:hover {
    height: 8px;
}

#floatingMusicPlayer .progress-filled {
    height: 100%;
    background: linear-gradient(to right, #667eea, #764ba2);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s;
}

/* 音量控制 */
#floatingMusicPlayer .volume-container {
    display: flex;
    align-items: center;
    /* 替代 gap: 10px; */
}

#floatingMusicPlayer .volume-icon {
    color: #666;
    font-size: 16px;
    width: 20px;
    margin-right: 10px; /* 替代 gap */
}

#floatingMusicPlayer .volume-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

#floatingMusicPlayer .volume-level {
    height: 100%;
    background: linear-gradient(to right, #667eea, #764ba2);
    width: 70%;
    border-radius: 2px;
    transition: width 0.1s;
}

/* 播放器最小化状态 */
#floatingMusicPlayer.minimized {
    width: 64px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#floatingMusicPlayer.minimized .player-header,
#floatingMusicPlayer.minimized .music-info,
#floatingMusicPlayer.minimized .progress-container,
#floatingMusicPlayer.minimized .volume-container,
#floatingMusicPlayer.minimized .prev-next-btn {
    display: none;
}

#floatingMusicPlayer.minimized .controls {
    margin: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#floatingMusicPlayer.minimized .play-pause-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0;
    box-shadow: none;
}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width:641px) and (max-width:1200px) {
    #floatingMusicPlayer {
        width: 300px;
        right: 15px;
        bottom: 15px;
        padding: 18px;
    }
    
    #floatingMusicPlayer .music-cover {
        width: 64px;
        height: 64px;
        margin-right: 14px;
    }
    
    #floatingMusicPlayer .play-pause-btn {
        width: 48px;
        height: 48px;
    }
    
    #floatingMusicPlayer.minimized {
        width: 60px;
        height: 60px;
    }
}
/*----------------------手机板式样式----------------------*/
@media screen and (max-width:640px) {
    #floatingMusicPlayer {
        width: calc(100% - 30px);
        max-width: 320px;
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translateX(-50%);
        padding: 16px;
        border-radius: 14px;
    }
    
    #floatingMusicPlayer .music-cover {
        width: 56px;
        height: 56px;
        margin-right: 12px;
    }
    
    #floatingMusicPlayer .music-text h4 {
        font-size: 15px;
    }
    
    #floatingMusicPlayer .play-pause-btn {
        width: 46px;
        height: 46px;
    }
    
    #floatingMusicPlayer .control-btn {
        width: 40px;
        height: 40px;
    }
    
    #floatingMusicPlayer.minimized {
        width: 56px;
        height: 56px;
        left: auto;
        right: 15px;
        transform: none;
    }
    
    /* 手机端调整按钮间距 */
    #floatingMusicPlayer .prev-next-btn,
    #floatingMusicPlayer .play-pause-btn {
        margin: 0 4px;
    }
}
body{ background-position:left top; }


 #div_blank_new01_1761188665931{width:100%;height:44px;box-sizing:border-box;position:absolute;top:0px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_blank_new01_1761188665931{box-sizing:border-box;}}   @media screen and (max-width:640px) {#div_blank_new01_1761188665931{width:24.752475247524753%;height:50px;box-sizing:border-box;top:0px;left:37.62376237623762%;display:none;}}  #div_blank_new01_1761188665931  {box-sizing:border-box;} #div_blank_new01_1761188665931 .modSet {background:#f2f2f2;background-color:#1e3a8a;} #div_blank_new01_1761188665931 .triangle_sub {border-bottom-color:#1e3a8a;} @media screen and (min-width:641px) and (max-width:1200px) { #div_blank_new01_1761188665931  {box-sizing:border-box;}} @media screen and (max-width:640px) { #div_blank_new01_1761188665931  {box-sizing:border-box;}}


 #image_logo_1761188752402{width:16.416666666666664%;height:62px;position:absolute;left:0%;top:60px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_logo_1761188752402{left:0%;width:22.712238147739804%;top:51px;}}   @media screen and (max-width:640px) {#image_logo_1761188752402{width:186px;height:58px;top:8px;left:2.0125%;}} 

 #dh_style_48_1761274871834{width:71%;z-index:999;position:absolute;left:28.999999999999996%;top:60px;}   @media screen and (min-width:641px) and (max-width:1200px) {#dh_style_48_1761274871834{z-index:999;left:36.82469680264609%;width:63.211480154355016%;top:51px;}}   @media screen and (max-width:640px) {#dh_style_48_1761274871834{width:10.4%;z-index:999;position:absolute;top:15px;left:85.8625%;}} #dh_style_48_1761274871834 > .view_contents{overflow:visible;}  #dh_style_48_1761274871834 .mainMenuSet {border-style:none;border-width:0px;font-weight:normal;line-height:55px;height:55px;} #dh_style_48_1761274871834 .subMenuSet:hover {background:#1e3a8a;color:#ffffff;border-color:transparent;} #dh_style_48_1761274871834 #subCurSet {background:#1e3a8a;color:#ffffff;border-color:transparent;} #dh_style_48_1761274871834 .thrMenuSet:hover {background:#ffffff;color:#005fbf;} #dh_style_48_1761274871834 #thrCurSet {background:#ffffff;color:#005fbf;} #dh_style_48_1761274871834 .subMenuSet {background:#ffffff;} #dh_style_48_1761274871834 .thrMenuSet {background:#ffffff;} #dh_style_48_1761274871834 .mainMenuSet:hover {color:#333333;border-color:#f97316;border-style:solid;font-weight:normal;height:55px;border-right:none !important;border-top:none !important;border-left:none !important;border-width:2px;line-height:55px;} #dh_style_48_1761274871834 #hot>a {color:#333333;border-color:#f97316;border-style:solid;font-weight:normal;height:55px;border-right:none !important;border-top:none !important;border-left:none !important;border-width:2px;line-height:55px;} #dh_style_48_1761274871834 #hot .aview {color:#333333;border-color:#f97316;border-style:solid;font-weight:normal;height:55px;border-right:none !important;border-top:none !important;border-left:none !important;border-width:2px;line-height:55px;} @media screen and (max-width:640px) { #dh_style_48_1761274871834 .subMenuSet {background:transparent;font-size:14px;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 .mainMenuSet:hover {color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 #hot>a {color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 #hot .aview {color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 .subMenuSet:hover {background:transparent;color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 #subCurSet {background:transparent;color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 .thrMenuSet:hover {background:transparent;color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 #thrCurSet {background:transparent;color:#ffffff;font-weight:bold;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 .thrMenuSet {background:transparent;font-size:14px;}} @media screen and (max-width:640px) { #dh_style_48_1761274871834 .mainMenuSet {font-size:14px;}}

 #lang_style_1_1761287554539{width:13.333333333333334%;position:absolute;left:86.66666666666667%;top:3px;display:block;}   @media screen and (min-width:641px) and (max-width:1200px) {#lang_style_1_1761287554539{left:82.15442392502756%;width:17.861080485115764%;display:block;}}   @media screen and (max-width:640px) {#lang_style_1_1761287554539{width:177px;top:0px;left:0.8196721311475414%;display:none;}}  #lang_style_1_1761287554539 .textSet {color:#ffffff;text-align:left;}

 #lang_style_12_1761288532820{width:21.083333333333336%;display:none;position:absolute;top:26.421875px;left:39.45833333333333%;}   @media screen and (min-width:641px) and (max-width:1200px) {#lang_style_12_1761288532820{width:67.46666666666667%;display:none;left:16.266666666666666%;top:26.421875px;}}   @media screen and (max-width:640px) {#lang_style_12_1761288532820{width:104px;display:block;left:53.6%;top:25px;}} #lang_style_12_1761288532820 > .view_contents{overflow:visible;} 
 #div_a_includeBlock_1761188665943{width:1200px;height:128px;box-sizing:border-box;position:absolute;top:0px;left:calc(50% - 600px);z-index:3;display:block;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1761188665943{box-sizing:border-box;width:96%;height:115px;left:2%;top:0px;display:block;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1761188665943{width:100%;height:74px;box-sizing:border-box;top:0px;left:0%;display:block;}} #div_a_includeBlock_1761188665943 > .view_contents{overflow:visible;}  #comm_layout_header{height:128px;z-index:9999;}   @media screen and (min-width:641px) and (max-width:1200px) {#comm_layout_header{height:118px;}}   @media screen and (max-width:640px) {#comm_layout_header{height:74px;}} #comm_layout_header > .view_contents{overflow:visible;max-width:none;} 


 #banner_style_17_1761198682101{width:100%;height:866px;position:absolute;top:0%;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#banner_style_17_1761198682101{height:331px;}}   @media screen and (max-width:640px) {#banner_style_17_1761198682101{width:100%;height:197px;position:absolute;top:0px;left:0%;display:none;}}  #banner_style_17_1761198682101 .crIco {padding-bottom:6px;padding-top:6px;padding-left:6px;padding-right:6px;margin-right:4px;margin-left:4px;} #banner_style_17_1761198682101 .twoBgSet {border-width:0px;border-style:none;border-top:none !important;border-right:none !important;border-bottom:none !important;border-left:none !important;text-align:center;} @media screen and (max-width:640px) { #banner_style_17_1761198682101 .crIco {padding-top:4px;padding-bottom:4px;padding-left:4px;padding-right:4px;}}

 #banner_style_17_1762858173123{width:100%;height:657px;position:absolute;top:10px;left:0%;display:none;}   @media screen and (min-width:641px) and (max-width:1200px) {#banner_style_17_1762858173123{height:331px;display:none;}}   @media screen and (max-width:640px) {#banner_style_17_1762858173123{width:100%;height:203px;position:absolute;top:0px;left:0%;display:block;}}  #banner_style_17_1762858173123 .crIco {padding-bottom:6px;padding-top:6px;padding-left:6px;padding-right:6px;margin-right:4px;margin-left:4px;} #banner_style_17_1762858173123 .twoBgSet {border-width:0px;border-style:none;border-top:none !important;border-right:none !important;border-bottom:none !important;border-left:none !important;text-align:center;} @media screen and (max-width:640px) { #banner_style_17_1762858173123 .crIco {padding-top:4px;padding-bottom:4px;padding-left:4px;padding-right:4px;}} #layout_diy_1760693432{height:905.166667px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_diy_1760693432{height:331px;}}   @media screen and (max-width:640px) {#layout_diy_1760693432{height:203px;}} 



 #image_style_12_1_1761889769254{width:33%;position:absolute;left:0%;top:0px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_12_1_1761889769254{width:32%;}}   @media screen and (max-width:640px) {#image_style_12_1_1761889769254{width:96%;top:0px;left:2%;}} #image_style_12_1_1761889769254 > .view_contents{overflow:visible;}  #image_style_12_1_1761889769254 .titProSet {font-size:24px;padding-top:10px;margin-bottom:20px;} #image_style_12_1_1761889769254 .defProSet {font-size:14px;color:#666666;padding-left:10px;padding-right:10px;line-height:28px;} #image_style_12_1_1761889769254 .btnSet {font-size:14px;height:40px;line-height:40px;color:#ffffff;background:#192d7a;border-style:none;margin-left:120px;margin-right:120px;margin-top:24px;} #image_style_12_1_1761889769254 .picSet {border-radius:initial;border-width:0px;border-style:solid;} #image_style_12_1_1761889769254 .modSet:hover .btnSet {background:#d71618;} #image_style_12_1_1761889769254 .modSet {background:#ffffff;padding-top:50px;padding-bottom:50px;box-shadow:#e5e5e5 0px 2px 12px ;border-color:#ffffff;border-top:none !important;border-right:none !important;border-left:none !important;border-width:1px;border-style:solid;} #image_style_12_1_1761889769254  {border-width:0px;border-color:transparent;border-top:none !important;border-right:none !important;border-left:none !important;} #image_style_12_1_1761889769254:hover {border-width:0px;border-style:none;border-color:transparent;border-bottom:none !important;} #image_style_12_1_1761889769254 .modSet:hover {border-width:3px;border-style:solid;border-color:#f97316;} #image_style_12_1_1761889769254 .modSet.selectedmodSet {border-width:3px;border-style:solid;border-color:#f97316;} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769254 .titProSet {font-size:20px;padding-top:5px;margin-bottom:25px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769254 .defProSet {font-size:14px;line-height:25px;padding-left:15px;padding-right:15px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769254 .btnSet {font-size:12px;margin-left:72px;margin-right:72px;line-height:36px;height:36px;margin-top:26px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769254 .modSet {padding-top:40px;padding-bottom:40px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769254 .titProSet {font-size:18px;padding-top:0px;margin-bottom:15px;line-height:30px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769254 .defProSet {font-size:12px;line-height:23px;padding-left:0px;padding-right:0px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769254 .btnSet {margin-left:12px;margin-right:162px;font-size:12px;line-height:28px;height:28px;margin-top:20px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769254 .modSet {padding-top:15px;padding-bottom:15px;padding-left:15px;padding-right:15px;}}

 #image_style_12_1_1761889769261{width:33%;position:absolute;left:33.5%;top:0px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_12_1_1761889769261{width:32%;}}   @media screen and (max-width:640px) {#image_style_12_1_1761889769261{width:96%;top:191.5px;left:2%;}} #image_style_12_1_1761889769261 > .view_contents{overflow:hidden;}  #image_style_12_1_1761889769261 .titProSet {font-size:24px;padding-top:10px;margin-bottom:20px;color:#ffffff;} #image_style_12_1_1761889769261 .defProSet {font-size:14px;color:#ffffff;padding-left:10px;padding-right:10px;line-height:28px;} #image_style_12_1_1761889769261 .btnSet {font-size:14px;height:40px;line-height:40px;color:#ffffff;background:#192d7a;border-style:none;margin-left:120px;margin-right:120px;margin-top:24px;} #image_style_12_1_1761889769261 .picSet {border-radius:initial;} #image_style_12_1_1761889769261 .modSet:hover .btnSet {background:#d71618;} #image_style_12_1_1761889769261 .modSet {background:transparent;padding-top:50px;padding-bottom:50px;border-width:1px;border-top:none !important;border-right:none !important;border-left:none !important;border-style:solid;border-color:#9ca3af;} #image_style_12_1_1761889769261  {background:#9ca3af;} #image_style_12_1_1761889769261 .modSet:hover {border-width:3px;border-style:solid;border-color:#f97316;} #image_style_12_1_1761889769261 .modSet.selectedmodSet {border-width:3px;border-style:solid;border-color:#f97316;} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769261 .titProSet {font-size:20px;padding-top:5px;margin-bottom:25px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769261 .defProSet {font-size:14px;line-height:25px;padding-left:15px;padding-right:15px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769261 .btnSet {font-size:12px;margin-left:72px;margin-right:72px;line-height:36px;height:36px;margin-top:26px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769261 .modSet {padding-top:40px;padding-bottom:40px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769261 .titProSet {font-size:18px;padding-top:0px;margin-bottom:15px;line-height:30px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769261 .defProSet {font-size:12px;line-height:23px;padding-left:0px;padding-right:0px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769261 .btnSet {margin-left:12px;margin-right:162px;font-size:12px;line-height:28px;height:28px;margin-top:20px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769261 .modSet {padding-top:15px;padding-bottom:15px;padding-left:15px;padding-right:15px;}}

 #image_style_12_1_1761889769267{width:33%;position:absolute;left:67%;top:0px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_12_1_1761889769267{width:32%;left:66.66789071680375%;top:0px;}}   @media screen and (max-width:640px) {#image_style_12_1_1761889769267{width:96%;top:359.5px;left:2%;}} #image_style_12_1_1761889769267 > .view_contents{overflow:visible;}  #image_style_12_1_1761889769267 .titProSet {font-size:24px;padding-top:10px;margin-bottom:20px;} #image_style_12_1_1761889769267 .defProSet {font-size:14px;color:#666666;padding-left:10px;padding-right:10px;line-height:28px;} #image_style_12_1_1761889769267 .btnSet {font-size:14px;height:40px;line-height:40px;color:#ffffff;background:#192d7a;border-style:none;margin-left:120px;margin-right:120px;margin-top:24px;} #image_style_12_1_1761889769267 .picSet {border-radius:initial;} #image_style_12_1_1761889769267 .modSet:hover .btnSet {background:#d71618;} #image_style_12_1_1761889769267 .modSet {background:#ffffff;padding-top:50px;padding-bottom:50px;box-shadow:#e5e5e5 0px 2px 12px ;border-width:1px;border-style:solid;border-color:#ffffff;border-right:none !important;border-top:none !important;border-left:none !important;} #image_style_12_1_1761889769267 .modSet:hover {border-width:3px;border-style:solid;border-color:#f97316;} #image_style_12_1_1761889769267 .modSet.selectedmodSet {border-width:3px;border-style:solid;border-color:#f97316;} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769267 .titProSet {font-size:20px;padding-top:5px;margin-bottom:25px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769267 .defProSet {font-size:14px;line-height:25px;padding-left:15px;padding-right:15px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769267 .btnSet {font-size:12px;margin-left:72px;margin-right:72px;line-height:36px;height:36px;margin-top:26px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_12_1_1761889769267 .modSet {padding-top:40px;padding-bottom:40px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769267 .titProSet {font-size:18px;padding-top:0px;margin-bottom:15px;line-height:30px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769267 .defProSet {font-size:12px;line-height:23px;padding-left:0px;padding-right:0px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769267 .btnSet {margin-left:12px;margin-right:162px;font-size:12px;line-height:28px;height:28px;margin-top:20px;}} @media screen and (max-width:640px) { #image_style_12_1_1761889769267 .modSet {padding-top:15px;padding-bottom:15px;padding-left:15px;padding-right:15px;}}
 #div_a_includeBlock_1761889769115{width:1200px;height:381px;box-sizing:border-box;position:absolute;top:46px;left:calc(50% - 600px);}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1761889769115{box-sizing:border-box;left:5%;top:41px;width:90%;height:408px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1761889769115{width:100%;height:574px;box-sizing:border-box;top:0px;left:0%;}} #div_a_includeBlock_1761889769115 > .view_contents{overflow:visible;}  #layout_1761889766413{height:434px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761889766413{height:475px;}}   @media screen and (max-width:640px) {#layout_1761889766413{height:610px;}} #layout_1761889766413 > .view_contents{overflow:visible;max-width:1200px;} 


 #titleText_style_05_1761231284093{width:100%;position:absolute;top:16px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#titleText_style_05_1761231284093{}}   @media screen and (max-width:640px) {#titleText_style_05_1761231284093{width:96%;position:absolute;top:0px;left:2%;}}  #titleText_style_05_1761231284093 .bigtitsSet {font-size:24px;line-height:1.75em;margin-bottom:0px;color:#1e3a8a;font-weight:normal;font-family:Arial;} #titleText_style_05_1761231284093 .minititsSet {line-height:1.75em;margin-top:0px;font-size:22px;color:#333333;} #titleText_style_05_1761231284093 .btnaSet {line-height:1.75em;} @media screen and (min-width:641px) and (max-width:1200px) { #titleText_style_05_1761231284093 .bigtitsSet {font-size:24px;}} @media screen and (min-width:641px) and (max-width:1200px) { #titleText_style_05_1761231284093 .minititsSet {font-size:22px;}} @media screen and (max-width:640px) { #titleText_style_05_1761231284093 .bigtitsSet {font-size:22px;line-height:2em;}} @media screen and (max-width:640px) { #titleText_style_05_1761231284093 .minititsSet {font-size:16px;line-height:1.3em;}} @media screen and (max-width:640px) { #titleText_style_05_1761231284093 .btnaSet {line-height:2em;}} #layout_1761206745310{height:80px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761206745310{}}   @media screen and (max-width:640px) {#layout_1761206745310{height:74px;}} #layout_1761206745310 > .view_contents{overflow:visible;max-width:1200px;} 


 #text_style_01_1761206726973{width:80%;font-size:16px;color:#333;line-height:1.75;font-family:Arial;position:absolute;top:0px;left:10%;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1761206726973{width:90%;left:4.973544973544974%;}}   @media screen and (max-width:640px) {#text_style_01_1761206726973{width:96%;font-size:12px;color:#333;line-height:2;top:0px;left:2%;}}  #text_style_01_1761206726973>.view_contents {text-align:left;font-size:14px;line-height:32px;text-indent:2em;} #layout_1761205140154{height:224px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761205140154{height:237px;}}   @media screen and (max-width:640px) {#layout_1761205140154{height:566px;}} #layout_1761205140154 > .view_contents{overflow:visible;max-width:1200px;} 


 #image_style_01_1761207124548{width:100%;height:235px;position:absolute;top:5px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1761207124548{width:96%;left:2.0105820105820107%;height:170px;}}   @media screen and (max-width:640px) {#image_style_01_1761207124548{width:96%;height:185px;top:0px;left:2%;}} #image_style_01_1761207124548 > .view_contents{overflow:visible;}  #layout_1761207124541{height:247px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761207124541{height:212px;}}   @media screen and (max-width:640px) {#layout_1761207124541{}} #layout_1761207124541 > .view_contents{overflow:visible;max-width:1200px;} 


 #button_style_01_1761206831347{width:13.333333333333334%;position:absolute;top:26px;left:43.333333333333336%;}   @media screen and (min-width:641px) and (max-width:1200px) {#button_style_01_1761206831347{}}   @media screen and (max-width:640px) {#button_style_01_1761206831347{width:42.62295081967213%;position:absolute;top:0px;left:28.688524590163937%;}} #button_style_01_1761206831347 > .view_contents{overflow:visible;}  #button_style_01_1761206831347 .btnaSet {color:#ffffff;background:#f97316;border-width:0px;} #layout_1761206812847{height:92px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761206812847{}}   @media screen and (max-width:640px) {#layout_1761206812847{}} #layout_1761206812847 > .view_contents{overflow:visible;max-width:1200px;} 


 #titleText_style_05_1761231371207{width:100%;position:absolute;top:68px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#titleText_style_05_1761231371207{left:calc(50% - 472.5px);top:59px;}}   @media screen and (max-width:640px) {#titleText_style_05_1761231371207{width:96%;position:absolute;top:31px;left:2%;}}  #titleText_style_05_1761231371207 .bigtitsSet {font-size:24px;line-height:1.75em;margin-bottom:0px;color:#1e3a8a;font-weight:normal;font-family:Arial;} #titleText_style_05_1761231371207 .minititsSet {line-height:1.75em;margin-top:0px;font-size:22px;color:#333333;} #titleText_style_05_1761231371207 .btnaSet {line-height:1.75em;} @media screen and (min-width:641px) and (max-width:1200px) { #titleText_style_05_1761231371207 .bigtitsSet {font-size:24px;}} @media screen and (min-width:641px) and (max-width:1200px) { #titleText_style_05_1761231371207 .minititsSet {font-size:22px;}} @media screen and (max-width:640px) { #titleText_style_05_1761231371207 .bigtitsSet {font-size:22px;line-height:2em;}} @media screen and (max-width:640px) { #titleText_style_05_1761231371207 .minititsSet {font-size:16px;line-height:1.3em;}} @media screen and (max-width:640px) { #titleText_style_05_1761231371207 .btnaSet {line-height:2em;}}

 #image_style_28_1761883409980{width:100%;position:absolute;top:146px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_28_1761883409980{left:4.973544973544974%;width:90%;}}   @media screen and (max-width:640px) {#image_style_28_1761883409980{width:96%;top:88px;left:2%;}} #image_style_28_1761883409980 > .view_contents{overflow:visible;}  #image_style_28_1761883409980 .modSet {border-width:1px;border-style:solid;border-color:#e5e5e5;background:#ffffff;} #image_style_28_1761883409980 .titleSet {font-family:Arial;font-size:14px;text-align:center;color:#333333;padding-bottom:19px;}
/*----------------------电脑板式样式----------------------*/
#image_style_28_1761883409980{
	#image_style_28_1761883409980
}
/*----------------------平板板式样式----------------------*/
@media screen and (min-width:641px) and (max-width:1200px) {
	#image_style_28_1761883409980{
		
	}
}
/*----------------------手机板式样式----------------------*/
@media screen and (max-width:640px) {
	#image_style_28_1761883409980{
		
	}
} #layout_1761225570450{height:529px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761225570450{height:460px;}}   @media screen and (max-width:640px) {#layout_1761225570450{height:704px;}} #layout_1761225570450 > .view_contents{overflow:visible;max-width:1200px;}  #layout_1761225570450  {border-width:0px;border-style:solid;border-color:#dddddd;border-right:none !important;border-left:none !important;border-bottom:none !important;border-top:none !important;background-repeat:no-repeat!important;background-size:cover;background: url(https://cdn.yun.sooce.cn/6/62875/jpg/1761231001141c9f0f895fb98ab9159f51fd0297e236d.jpg?version=0);background-position:100% 100% !important;} #layout_1761225570450>.view_contents {border-width:0px;border-style:solid;border-left:none !important;border-right:none !important;border-top:none !important;border-color:#dddddd;}


 #titleText_style_05_1761231426588{width:100%;position:absolute;top:16px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#titleText_style_05_1761231426588{}}   @media screen and (max-width:640px) {#titleText_style_05_1761231426588{width:96%;position:absolute;top:0px;left:2%;}}  #titleText_style_05_1761231426588 .bigtitsSet {font-size:24px;line-height:1.75em;margin-bottom:0px;color:#1e3a8a;font-weight:normal;font-family:Arial;} #titleText_style_05_1761231426588 .minititsSet {line-height:1.75em;margin-top:0px;font-size:22px;color:#333333;} #titleText_style_05_1761231426588 .btnaSet {line-height:1.75em;} @media screen and (min-width:641px) and (max-width:1200px) { #titleText_style_05_1761231426588 .bigtitsSet {font-size:24px;}} @media screen and (min-width:641px) and (max-width:1200px) { #titleText_style_05_1761231426588 .minititsSet {font-size:22px;}} @media screen and (max-width:640px) { #titleText_style_05_1761231426588 .bigtitsSet {font-size:22px;line-height:2em;}} @media screen and (max-width:640px) { #titleText_style_05_1761231426588 .minititsSet {font-size:16px;line-height:1.3em;}} @media screen and (max-width:640px) { #titleText_style_05_1761231426588 .btnaSet {line-height:2em;}} #layout_1761231426581{height:98px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761231426581{}}   @media screen and (max-width:640px) {#layout_1761231426581{height:74px;}} #layout_1761231426581 > .view_contents{overflow:visible;max-width:1200px;} 


 #newsList_style_12_1761229552814{width:100%;position:absolute;top:21px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#newsList_style_12_1761229552814{top:23px;left:2%;width:96%;}}   @media screen and (max-width:640px) {#newsList_style_12_1761229552814{width:96%;top:0px;left:2%;}}  #newsList_style_12_1761229552814 .titleSet {font-size:21px;padding-bottom:0px;padding-top:0px;line-height:40px;} #newsList_style_12_1761229552814 .sortSet {background:#003f86;border-radius:40px;line-height:20px;height:20px;padding-top:0px;} #newsList_style_12_1761229552814 .detailSet {font-size:13px;padding-bottom:8px;} #newsList_style_12_1761229552814 .timesSet {padding-top:0px;} #newsList_style_12_1761229552814 .modSet {padding-top:8px;padding-left:10px;padding-bottom:2px;padding-right:10px;} #newsList_style_12_1761229552814 .modSet:hover .titleSet {color:#f97316;font-weight:normal;} @media screen and (min-width:641px) and (max-width:1200px) { #newsList_style_12_1761229552814 .modSet {padding-top:6px;padding-bottom:0px;}} @media screen and (min-width:641px) and (max-width:1200px) { #newsList_style_12_1761229552814 .titleSet {font-size:16px;line-height:28px;}} @media screen and (max-width:640px) { #newsList_style_12_1761229552814 .titleSet {font-size:14px;line-height:20px;}} @media screen and (max-width:640px) { #newsList_style_12_1761229552814 .detailSet {font-size:12px;}} @media screen and (max-width:640px) { #newsList_style_12_1761229552814 .imgSet {margin-bottom:0px;padding-bottom:0px;}} #layout_1761229552807{height:396px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761229552807{height:336px;}}   @media screen and (max-width:640px) {#layout_1761229552807{height:327px;}} #layout_1761229552807 > .view_contents{overflow:visible;max-width:1200px;}  #layout_1761229552807  {background-position:50% 50% !important;background-size:cover;background-attachment:fixed;background:#ffffff;}
 #layout_1761207144362{height:79px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761207144362{}}   @media screen and (max-width:640px) {#layout_1761207144362{}} #layout_1761207144362 > .view_contents{overflow:visible;max-width:1200px;} 



 #text_style_15_1761202529363{width:33.08333333333333%;position:absolute;left:0%;top:53px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_15_1761202529363{left:2%;width:36.93495038588755%;}}   @media screen and (max-width:640px) {#text_style_15_1761202529363{width:96%;position:absolute;top:0px;left:2%;display:none;}} #text_style_15_1761202529363 > .view_contents{overflow:visible;}  #text_style_15_1761202529363 .titleSet {color:#ffffff;} #text_style_15_1761202529363 .infoTextSet {color:#9ca3af;line-height:32px;}

 #footerCustom_footerDh_01_1761202695122{width:56.00000000000001%;z-index:1000;position:absolute;top:53px;left:34.333333333333336%;}   @media screen and (min-width:641px) and (max-width:1200px) {#footerCustom_footerDh_01_1761202695122{z-index:999;width:47.4090407938258%;left:39.27611631753032%;top:53px;}}   @media screen and (max-width:640px) {#footerCustom_footerDh_01_1761202695122{width:96%;z-index:999;top:0px;left:0%;display:none;}} #footerCustom_footerDh_01_1761202695122 > .view_contents{overflow:visible;}  #footerCustom_footerDh_01_1761202695122 .mainMenuSet {color:#f5f5f5;font-size:14px;line-height:30px;text-align:left;} #footerCustom_footerDh_01_1761202695122 .subMenuSet {text-align:left;color:#9ca3af;}

 #image_style_22_1761202703351{width:8.75%;position:absolute;left:91.25%;top:48.5px;z-index:2;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_22_1761202703351{width:10.033076074972437%;left:89.53452315325248%;top:53px;}}   @media screen and (max-width:640px) {#image_style_22_1761202703351{width:96%;top:0px;left:0%;display:none;}} #image_style_22_1761202703351 > .view_contents{overflow:visible;}  #image_style_22_1761202703351 .imgSet {} #image_style_22_1761202703351 .titleSet {font-size:14px;line-height:21px;font-style:normal;font-weight:normal;text-align:center;color:#ffffff;padding-top:10px;padding-bottom:0px;} #image_style_22_1761202703351 .modSet {padding-left:0px;padding-right:0px;}

 #div_blank_new01_1761202719372{width:100%;height:78px;box-sizing:border-box;position:absolute;top:255px;left:0%;z-index:1;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_blank_new01_1761202719372{box-sizing:border-box;width:100%;height:85px;top:277.5px;left:0%;}}   @media screen and (max-width:640px) {#div_blank_new01_1761202719372{width:66.006600660066%;height:80px;box-sizing:border-box;top:0px;left:0%;display:none;}}  #div_blank_new01_1761202719372  {box-sizing:border-box;border-right:none !important;border-bottom:none !important;border-left:none !important;border-style:solid;border-width:1px;border-color:#666666;} #div_blank_new01_1761202719372 .modSet {background:transparent;} @media screen and (min-width:641px) and (max-width:1200px) { #div_blank_new01_1761202719372  {box-sizing:border-box;}} @media screen and (max-width:640px) { #div_blank_new01_1761202719372  {box-sizing:border-box;}}

 #text_style_01_1762238242921{width:16.166666666666664%;font-size:16px;color:#333;line-height:1.75;font-family:Arial;position:absolute;left:83.83333333333334%;top:278.5px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1762238242921{left:80.48511576626241%;width:19.514884233737597%;top:298.5px;}}   @media screen and (max-width:640px) {#text_style_01_1762238242921{width:96%;font-size:12px;color:#333;line-height:2;top:97px;left:2%;}}  #text_style_01_1762238242921>.view_contents {font-size:12px;color:#e5e5e5;text-align:right;} @media screen and (max-width:640px) { #text_style_01_1762238242921>.view_contents {text-align:center;}}

 #music_style_01_1767515368864{width:320px;position:fixed;top:777.9583740234375px;left:calc(50% + 603.09375px);z-index:9999;display:block;}   @media screen and (min-width:641px) and (max-width:1200px) {#music_style_01_1767515368864{height:51px;display:block;width:33.33333333333333%;}}   @media screen and (max-width:640px) {#music_style_01_1767515368864{height:51px;display:block;width:84.21052631578947%;top:0px;left:0%;}} #music_style_01_1767515368864 > .view_contents{overflow:visible;} 
 #div_a_includeBlock_1761202311466{width:1200px;height:1298.9765625px;box-sizing:border-box;position:absolute;top:0px;left:calc(50% - 600px);}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1761202311466{box-sizing:border-box;width:96%;left:2.0105820105820107%;height:364px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1761202311466{width:100%;height:144px;box-sizing:border-box;top:0px;left:0%;}} #div_a_includeBlock_1761202311466 > .view_contents{overflow:visible;} 

 #copyright_style_01_1761202728350{width:75.25%;position:absolute;top:278.5px;left:0%;z-index:2;}   @media screen and (min-width:641px) and (max-width:1200px) {#copyright_style_01_1761202728350{width:67.4074074074074%;left:3.930224867724868%;top:288px;}}   @media screen and (max-width:640px) {#copyright_style_01_1761202728350{width:100%;top:27px;left:0%;}} #copyright_style_01_1761202728350 > .view_contents{overflow:visible;}  #copyright_style_01_1761202728350 .modSet {text-align:left;} @media screen and (min-width:641px) and (max-width:1200px) { #copyright_style_01_1761202728350 .modSet {text-align:left;}} @media screen and (max-width:640px) { #copyright_style_01_1761202728350 .modSet {text-align:center;}}

 #div_a_canvasBg_1765967085231{width:32.083333333333336%;height:88px;position:absolute;top:119.53131103515625px;left:53.790145874023445%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_canvasBg_1765967085231{}}   @media screen and (max-width:640px) {#div_a_canvasBg_1765967085231{width:100%;height:88px;position:absolute;display:none;top:0px;left:0%;}}  #comm_layout_footer{height:380px;z-index:300;}   @media screen and (min-width:641px) and (max-width:1200px) {#comm_layout_footer{height:365px;}}   @media screen and (max-width:640px) {#comm_layout_footer{height:144px;}} #comm_layout_footer > .view_contents{max-width:1200px;overflow:visible;}  #comm_layout_footer  {background:#27292d;}

            body, li, ul, ol, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{ font-family: Arial; }
    	body{-ms-text-size-adjust: 100% !important;-webkit-text-size-adjust: 100% !important;text-size-adjust: 100% !important;}
.blank_new01{width:100%;height:100%;}
.blank_new01 .roundcs{width:100%;height:100%;background:rgba(7,126,244,0.7);box-sizing: border-box;}
			.logoStyle *{box-sizing: border-box;}
.logoStyle { height:100%; width:100%; overflow: hidden; box-sizing: border-box;}
.logoStyle>a{overflow: hidden; width: 100%;height: 100%; display: block;}
.logoName{white-space: nowrap;}
.menuStyle_48{width:100%; position:relative;}
.menuStyle_48 *{box-sizing: border-box;}
.menuStyle_48 .miniMenu *,
.menuStyle_48 .menuUl li *{
	-webkit-transition-duration:.2s; -moz-transition-duration:.2s; -o-transition-duration:.2s; transition-duration:.2s;
	-webkit-transition-property:background,height,padding; -moz-transition-property:background,height,padding; -moz-transition-property:background,height,padding; transition-property:background,height,padding;
	-webkit-transition-timing-function:ease-out; -moz-transition-timing-function:ease-out; -o-transition-timing-function:ease-out; transition-timing-function:ease-out;
} 
.menuStyle_48 .dflex{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;justify-content: space-between;}
.menuStyle_48 ul,.menuStyle_48 li{padding:0;margin:0px;list-style:none}
.menuStyle_48 .menuLayout{position:relative; margin:0 auto;width:100%;}
.menuStyle_48 .menuLayout:after{content:''; display:block; clear:both;}
.menuStyle_48 .menuUl_box{position:relative; width:100%; text-align:center;}
.menuStyle_48 .menuUl{position:relative; width:100%; text-align:center;}
.menuStyle_48 .menuUl>li{position:relative;}
.menuStyle_48 .menuUl>li>div>div>a{ background: transparent position: relative; text-decoration:none; box-sizing:border-box; display:block;text-align:center; letter-spacing:normal; white-space:nowrap;  padding: 0; padding: 0 1em\0;color: inherit !important;font-size: inherit;line-height: inherit;font-weight: inherit;} 
.menuStyle_48 .menuUl .Onsub{border-bottom: 2px solid transparent;color: #333333; line-height:44px;font-size:16px;font-weight: bold;text-align:center!important;}
.menuStyle_48 .menuUl #hot>.Onsub{color:#FF5A14;border-color:#FF5A14;}
.menuStyle_48 .menuUl .Onsub:hover{color:#FF5A14;border-color:#FF5A14;}
.menuStyle_48 .menuUl>li>a span{display:block; width: 100%; text-align: center; color: rgba(0,0,0,.3); font-size: 12px;}
.menuStyle_48 .menuUl #hot>a span{color:inherit;}
.menuStyle_48 .menuLayout .miniMenu{display:none;}
.menuStyle_48 .menuUl02 {position: absolute; left: 50%; opacity: 0; display: none; height: 0; transform: translate(-50%,0); -webkit-transform: translate(-50%,0); -moz-transform: translate(-50%,0); -o-transform: translate(-50%,0);}
.menuStyle_48 .menuUl>li>#menuLogo{height: 85%;}
.menuStyle_48 .menuUl .rflex .menuDiv{display: inline-block;text-decoration: inherit;}
.menuStyle_48 .menuUl .rflex:hover .menuUl02{opacity: 1; display: block; height: auto;padding-top: 10px;}
.menuStyle_48 .menuUl.noHover .rflex:hover .menuUl02{display: none;}

.menuStyle_48 .menuUl02 .subMenu02 {position: relative;  color: #4d5158; font-size:14px; line-height: 40px; padding: 0 15px;background: #fff;}
.menuStyle_48 .menuUl02 .subMenu02#subCurSet{color:#FF5A14;}
.menuStyle_48 .menuUl02 .subMenu02>a { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;color: inherit; font-size:inherit; line-height: inherit;}
.menuStyle_48 .menuUl02 .subMenu02:hover {color:#FF5A14;background: #f5f5f5;}
.menuStyle_48 .menuUl02 .subMenu02>a .fa{float: right; line-height: inherit;}
.menuStyle_48 .menuUl02 .subMenu02:hover .menuUl03{display: block;}
.menuStyle_48 .menuUl02 .subMenu02:first-child{
	border-top-left-radius: 0px;border-top-right-radius: 0px;
}
.menuStyle_48 .menuUl02 .subMenu02:last-child{
	border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;
}
.menuStyle_48 .menuUl03{position: absolute; top: 0; left: 100%; display: none; }
.menuStyle_48 .menuUl03 .subMenu03{ line-height: 40px;margin-left: 10px;}
.menuStyle_48 .menuUl03 .subMenu03 a:hover{color:#FF5A14; background: #f5f5f5;}
.menuStyle_48 .menuUl03 .subMenu03>a{ color: #333333; background: #fff; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;padding: 0 15px;}
.menuStyle_48 .menuUl03 .subMenu03:first-child a{
	border-top-left-radius: 0px;border-top-right-radius: 0px;
}
.menuStyle_48 .menuUl03 .subMenu03:last-child a{
	border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;
}
.menuStyle_48 .menuUl .rflex:hover .menuUl02::before{
	content: '';
	border-top:5px solid transparent;
	border-left:5px solid transparent;
	border-right:5px solid transparent;
	border-bottom:5px solid #fff;
	position: absolute;
    top: 0px;
	transform: translateX(-50%);
}
.menuStyle_48 .menuUl02 .arrow:hover::before{
		content: '';
		border-top:5px solid transparent;
		border-left:5px solid #fff;
		border-right:5px solid transparent;
		border-bottom:5px solid transparent;
		position: absolute;
		right: -10px;
		top: 50%;
		transform: translateY(-50%);
}
.menuStyle_48 .rflex { position: relative;}
.menuStyle_48 .maxWidth{margin: auto;}

.menuStyle_48 .subBox{position: absolute; left: 0; width: 100%; background: rgba(238, 238, 238, 0.85); display: none;}
.menuStyle_48 .subBox .subBoxContent{padding: 15px; text-align: left; overflow: hidden;}
.menuStyle_48 .subBox .subBoxContent .subItems{overflow: hidden; display: none;}
.menuStyle_48 .subBox .sublm{float: left; width: calc(100% - 440px); min-height: 10px;}
.menuStyle_48 .subBox .sublm>div{clear: both; overflow: hidden; margin: 8px 0;}
.menuStyle_48 .subBox .subImgsbox{float: left; width: 440px; height: 160px;}
.menuStyle_48 .subBox .subImgsbox>a{display: block; height: 100%; float: right; width: calc((100% - 20px)/2); margin-left: 20px;}
.menuStyle_48 .subBox .subImgsbox>a:last-child{margin-left: 0;}
.menuStyle_48 .subBox .subImgsbox>a>div.subImg{ position: relative; height: 100%; overflow: hidden; background-repeat: no-repeat; background-size: cover !important;}
.menuStyle_48 .subBox .subImgsbox>a>div.subImg span{position: absolute; bottom: 0; left: 0; width: 100%; display: block; padding: 5px; background: rgba(255,255,255,.8); color: #333333; font-size: 12px;}
.menuStyle_48 .subBox p{overflow: hidden; float: left;}
.menuStyle_48 .subBox p:first-child{margin-right: 10px; width: 100px;}
.menuStyle_48 .subBox p:last-child{width: calc(100% - 110px);}
.menuStyle_48 .subBox .subMenu02{font-size: 14px; margin-bottom: 5px; clear: both; color: #333333; line-height: 28px;}
.menuStyle_48 .subBox .subMenu02#subCurSet{color: #FF5A14;}
.menuStyle_48 .subBox .subMenu02:hover,
.menuStyle_48 .subBox .subMenu02:active{color: #FF5A14;}
.menuStyle_48 .subBox .subMenu03{float: left; margin: 5px 20px 5px 0; font-size: 12px; color: #666;}
.menuStyle_48 .subBox .subMenu03:hover,
.menuStyle_48 .subBox .subMenu03:active{color: #FF5A14;}
.menuStyle_48 .subMenu03 #thrCurSet{color: #FF5A14; background: #f7f7f7;}

.menuStyle_48 .imgIco{vertical-align: middle; display:inline-block; overflow:hidden; position:relative; padding:15px;  box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box;}
.menuStyle_48 .imgIco img{width:auto; height:100%; vertical-align: top;  position:absolute; top:50%; left:50%;  transform:translateY(-50%) translateX(-50%); -webkit-transform:translateY(-50%) translateX(-50%); -moz-transform:translateY(-50%) translateX(-50%); -ms-transform:translateY(-50%) translateX(-50%); -o-transform:translateY(-50%);}
.menuStyle_48 .menuUl>li>a span.pageName{ vertical-align: middle; display: inline;}
@media screen and (max-width:640px) {
.menuStyle_48 .imgIco{ margin-right:10px;}
.menuStyle_48 .menuUl,
.menuStyle_48 .menuUl_box {display:none;}
.menuStyle_48 .menuScroll{height: calc(100% - 100px); width: 100%;}
.menuStyle_48 .menuScroll>.menuUlCopy{width:100%; height: 100%; overflow-x: hidden; overflow-y: scroll; }
.menuStyle_48 .menuLayout .miniMenu{display:block; position:relative; overflow:hidden; width: 100%; height:44px;}
.menuStyle_48 .miniMenu .leftBox{height: 100%;}
.menuStyle_48 .miniMenu .leftBox .sidebar{font-size:24px; line-height:44px; font-weight:normal;cursor:pointer;color:#4d5158; position:absolute; top:0; right:0px; width:44px; text-align:center;}
.menuStyle_48 .miniMenu .leftBox .sidebar .fa{font-size: inherit; line-height: inherit; color: inherit;}
.menuStyle_48 .miniMenu .leftBox .nav{width:100%; height:44px; }
.menuStyle_48 .miniMenu.Mslide .leftBox .nav{border-bottom: 1px solid rgba(0,0,0,.05);}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy{padding:0 0 0 30px; clear: both;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy .menuUlCopy{display: none;padding: 0;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy .menuUlCopy .menuUlCopy{width: calc(100% - 50px);}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy .menuUlCopy li a{padding-left: 30px;box-sizing: border-box;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy .menuUlCopy .menuUlCopy li{padding-left: 60px;box-sizing: border-box;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy .menuUlCopy .menuUlCopy li a{padding-left: 0px;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li{width:100%; overflow: hidden; color:#fff; font-size:12px; line-height:44px;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li a{width:calc(100% - 50px); float: left; display:block; text-align:left;color:inherit; text-decoration:none; font-size:inherit; line-height:inherit; height: inherit; white-space: nowrap;overflow: hidden; text-overflow: ellipsis;border-bottom:1px solid rgba(0,0,0,.2);margin-left:0!important;margin-right:0!important;}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li#hot>a{border-bottom: 1px solid #fff;} 
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li .fa{color: inherit; font-size: inherit; float: left; width: 50px; text-align: center; line-height: inherit; background: rgba(0, 0, 0, 0.1);}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li .fa:active{background: rgba(0,0,0,.3);}
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li.subMenuSet#subCurSet>a,
.menuStyle_48 .miniMenu .leftBox .menuUlCopy li#thrCurSet>a{border-bottom: 1px solid #fff;}
.menuStyle_48 .menuLayout .miniMenu.Mslide{height:100% !important; height:100vh !important; background:rgba(23, 25, 29, 0.95); position: fixed; width: 100%; top: 0; left: 0; -webkit-transition: all linear .3s; -moz-transition: all linear .3s; -o-transition: all linear .3s; transition: all linear .3s;}
.menuStyle_48 .menuLayout .miniMenu.Mslide .sidebar{color:#fff; background: rgba(0,0,0,.05);}
.menuStyle_48 .menuLayout .miniMenu.Mslide .nav a{display:none !important;}
}


	#dh_style_48_1761274871834.clearTransform{transform:none!important;}
	#dh_style_48_1761274871834 .menuUl02 .subMenu02>a .fa{position: absolute;top: 0;right: 8px;}
	

.lang-list.lang-list01 {
    padding: 8px 15px;
}
.lang-list.lang-list01  > span{
    padding: 0 5px;
}
.lang-list.lang-list01 > .lang-item {
    font-size:14px;
}
    #lang_style_1_1761287554539 .arrowDown{ border-top: 6px solid #333;}
			#lang_style_1_1761287554539 .lang-list{text-align: ;}
		    .langStyle02 .lang_main{ text-align: center;}
.langStyle02 .lang_content{ display: none; font-size: 14px; text-align: center; border: 1px solid #ccc; box-shadow: 0px 0px 10px rgba(0,0,0,.3); margin: 5px auto 0;background: #fff;}
.langStyle02 .imgArea{display: inline-block;vertical-align: middle;width: 20px;height: 20px;}
.langStyle02 .imgSet{margin-right: 3px;}
.langStyle02 .imgArea img{display: block;height: 100%;}
.langStyle02 .lang_content a{ display: block; line-height: 2;}
.langStyle02 .lang_content a:hover{ background: rgb(45,140,240); color: #fff;}
.langStyle02 .lang_main{ font-size: 16px; color: #333;}
.langStyle02 .top_box{ display: block;}
.langStyle02 .text{ display: inline-block; padding-right: 5px; vertical-align: middle;}
.langStyle02 .arrow{ width: 0; height: 0;  border-left: 5px solid transparent;  border-right: 5px solid transparent; display: inline-block;}
    #lang_style_12_1761288532820 .arrowDown{ border-top: 6px solid #333;}
		                .bannerStyle_17{width:100%; height:100%; position:relative;}
.bannerStyle_17 .main_visual{height:100%; overflow:hidden; position:relative; }
.bannerStyle_17 .main_image{height:100%; overflow:hidden; position:relative;}
.bannerStyle_17 .main_image ul{width:100%; height:100%; overflow:hidden;position: relative;}
.bannerStyle_17 .main_image li{position: absolute;top: 0;left: 0; width:100%; height: 100%;}
.bannerStyle_17 .main_image li .img_box{position: relative; display:block; width:100%; height: 100%;  overflow: hidden;}
.bannerStyle_17 .main_image li .img_box img{width: auto; height: 100%;display: block;margin: 0 auto;}
.bannerStyle_17 .info{ position: absolute; top: 50%; left: 50%; z-index:100; width: 75%;max-width: 100%; padding: 25px; box-sizing: border-box;  transform: translate(-50%,-50%); text-align: center; color: #fff;overflow: hidden;border: 1px solid rgba(255, 255, 255, .5);background: rgba(0, 0, 0, .5);}
.bannerStyle_17 .title{ font-size: 20px;}
.bannerStyle_17 .subTitle{ line-height: 2; font-size: 14px; margin-bottom: 5px;white-space: pre-wrap;}
.bannerStyle_17 .titProSet{color: #fff;}
.bannerStyle_17 .defProSet{color: #fff;}
.bannerStyle_17 .button{ display: inline-block; max-width: 100%; box-sizing: border-box; padding: 0 20px; margin-bottom: 5px; height: 35px; line-height: 32px; font-size: 16px; color: #fff; background: rgba(255,255,255,.3);}
.bannerStyle_17 .flicking_con{width:100%; position: absolute; bottom: 10px; text-align: center;z-index: 99;}
.bannerStyle_17 .flicking_con .dot{ border:1px solid rgba(255,255,255,.8); margin: 0 2px; border-radius: 10px; overflow:hidden; display:inline-block; width: 0; height: 0;padding: 2px 22px; position:relative;cursor: pointer;}
.bannerStyle_17 .flicking_con .dot .schedule{position: absolute;top: 0;left: 0;border-radius: 100px;width: 0;height: 100%;display: block;background-color: rgba(255,255,255,.8);}
.bannerStyle_17 .flicking_con .cur_two{ background: rgba(255,255,255,.8); }
.bannerStyle_17 .arrow{ position: absolute; top: 50%; z-index: 100; transform:translateY(-50%); -webkit-transform:translateY(-50%); -moz-transform:translateY(-50%); -o-transform:translateY(-50%);text-align: center;line-height: 1;font-size: 60px;color: #fff;padding: 0 14px;font-family: Arial;box-sizing: border-box;cursor:pointer;}
.bannerStyle_17 .arrowLef{ left: 0;}
.bannerStyle_17 .arrowRight{ right: 0;}
.bannerStyle_17 .arrow .awesome-font{display: none;}
.bannerStyle_17 .arrow .awesome-font:before{padding: 0 3px;box-sizing: border-box;}

@media screen and (max-width:640px) {
    .bannerStyle_17 .title{ font-size: 16px;}
    .bannerStyle_17 .subTitle{ font-size: 14px;}
    .bannerStyle_17 .button{ font-size: 14px; height: 24px; line-height: 21px; padding: 0 10px;}
    .bannerStyle_17 .info{ padding: 10px;}
    .bannerStyle_17 .arrow{font-size: 32px;padding: 0 6px;}
    .bannerStyle_17 .flicking_con .dot{ padding: 4px 4px;}
}

			#banner_style_17_1761198682101 .arrowSet{display:none!important;}
    			@media screen and (min-width: 1025px){/*pc*/
		#banner_style_17_1761198682101 .main_image .info{width: 75%;}
		}
		@media screen and (max-width: 1024px){/*ipad*/
		#banner_style_17_1761198682101 .main_image .info{width: 75%;}
		}
		@media screen and (max-width: 768px){/*mobi*/
		#banner_style_17_1761198682101 .main_image .info{width: 75%;}
		}
                    



            #banner_style_17_1761198682101 .bannerStyle_17 .main_image .img-item .img_0{background: url('https://cdn.yun.sooce.cn/6/62875/jpg/176282399843768c316eb06c3007eb4feef15eff72a8f.jpg?version=0') center top no-repeat;}
                #banner_style_17_1761198682101 .bannerStyle_17 .main_image .img-item .img_1{background: url('https://cdn.yun.sooce.cn/6/62875/jpg/17628239984390064d90cd29856f237cfbbe5f81c0381.jpg?version=0') center top no-repeat;}
                #banner_style_17_1761198682101 .bannerStyle_17 .ground_glass{}
    

    #banner_style_17_1761198682101 .bannerStyle_17 .main_image .img-item span{background-size:100% auto!important;}
    @media screen and (min-width:641px) and (max-width:1200px) {
    #banner_style_17_1761198682101 .bannerStyle_17 .main_image .img-item span{background-size:100% auto!important;}    }
@media screen and (max-width:640px) {
    #banner_style_17_1761198682101 .bannerStyle_17 .main_image .img-item span{background-size:auto 100%!important;}    }

        #banner_style_17_1761198682101 .main_image li img{width: 100%;height: auto;}    @media screen and (min-width:641px) and (max-width:1200px) {
        #banner_style_17_1761198682101 .main_image li img{width: 100%;height: auto;}    }
    @media screen and (max-width:640px) {
        #banner_style_17_1761198682101 .main_image li img{width: auto;height: 100%;margin: 0;position: relative;left: 50%;-webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);-ms-transform: translateX(-50%);-o-transform: translateX(-50%);transform: translateX(-50%);}    }


			#banner_style_17_1762858173123 .arrowSet{display:none!important;}
    			@media screen and (min-width: 1025px){/*pc*/
		#banner_style_17_1762858173123 .main_image .info{width: 75%;}
		}
		@media screen and (max-width: 1024px){/*ipad*/
		#banner_style_17_1762858173123 .main_image .info{width: 75%;}
		}
		@media screen and (max-width: 768px){/*mobi*/
		#banner_style_17_1762858173123 .main_image .info{width: 75%;}
		}
                    



            #banner_style_17_1762858173123 .bannerStyle_17 .main_image .img-item .img_0{background: url('https://cdn.yun.sooce.cn/6/62875/jpg/1762858111999a5f6de06ddc0a370b2cf63e1631303ff.jpg?version=1762858116') center top no-repeat;}
                #banner_style_17_1762858173123 .bannerStyle_17 .main_image .img-item .img_1{background: url('https://cdn.yun.sooce.cn/6/62875/jpg/1762858111999b1dfe6233e9dc2377bdab7b2d9a2c148.jpg?version=1762858116') center top no-repeat;}
                #banner_style_17_1762858173123 .bannerStyle_17 .ground_glass{}
    

    #banner_style_17_1762858173123 .bannerStyle_17 .main_image .img-item span{background-size:100% auto!important;}
    @media screen and (min-width:641px) and (max-width:1200px) {
    #banner_style_17_1762858173123 .bannerStyle_17 .main_image .img-item span{background-size:100% auto!important;}    }
@media screen and (max-width:640px) {
    #banner_style_17_1762858173123 .bannerStyle_17 .main_image .img-item span{background-size:100% auto!important;}    }

        #banner_style_17_1762858173123 .main_image li img{width: 100%;height: auto;}    @media screen and (min-width:641px) and (max-width:1200px) {
        #banner_style_17_1762858173123 .main_image li img{width: 100%;height: auto;}    }
    @media screen and (max-width:640px) {
        #banner_style_17_1762858173123 .main_image li img{width: 100%;height: auto;}    }
.imgStyle_12_1{ width:100%; }
.imgStyle_12_1 *{ font-size:'微软雅黑'; }
.imgStyle_12_1 .imgTextUl{ display:flex; justify-content: space-between; flex-wrap: wrap; }
.imgStyle_12_1 .imgTextLi{ width:calc(100% / 3); margin-bottom:2%;box-sizing: border-box;}
.imgStyle_12_1 .mia_li_item{box-sizing:border-box;overflow: hidden;height: 100%;}
.imgStyle_12_1 .imgTBoxArea{position: relative;float: left;width: 186px;left: 50%;transform: translateX(-50%);max-width: 100%;}
.imgStyle_12_1 .image-box{position: absolute;left: 0;right: 0;top: 0;bottom: 0;}
.imgStyle_12_1 .imgTBox{ text-align: center;height: 100%;width: 100%;}
.imgStyle_12_1 .imgTBox img.picFit{ display: inline-block; width:100%;height: 100%; box-sizing: border-box;border-radius: 100px;}
.imgStyle_12_1 .imgTBox .bbx-new-font{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    box-sizing: border-box;
}
.imgStyle_12_1 .cont{padding: 0 5px;clear: both;}
.imgStyle_12_1 .cont .name{ text-align: center; font-size:16px; line-height:2;word-break: break-word;}
.imgStyle_12_1 .cont .subName{ text-align: center; font-size:12px;word-break: break-word; white-space: pre-wrap;}
.imgStyle_12_1 .cont .btn{width: auto;height: 30px;display: block;border: 1px solid #7d7d7d;line-height: 28px;color: #333;text-align: center;margin-left: 25%;margin-right: 25%;margin-top: 10px;word-break: break-all;overflow: hidden;}

@media screen and (max-width: 768px){
    .imgStyle_12_1 .imgBt{ font-size:16px; line-height:2.5;}
    .imgStyle_12_1 .cont .btn{margin-left: 5%;margin-right: 5%;}
}
        /*pc*/
        #image_style_12_1_1761889769254  ul li{width: 100%;}
        #image_style_12_1_1761889769254  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769254  ul li.imgTextLi .imgTBoxArea{width: 48px;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_12_1_1761889769254  ul li{width: 100%;}
        #image_style_12_1_1761889769254  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769254  ul li.imgTextLi .imgTBoxArea{width: 72px;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_12_1_1761889769254  ul li{width: 100%;}
        #image_style_12_1_1761889769254  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769254  ul li.imgTextLi .imgTBoxArea{width: 55px;}
                    #image_style_12_1_1761889769254 ul li{width:100%;}
            #image_style_12_1_1761889769254 ul li.imgTextLi .imgTBoxArea{float: left;left:0;transform:none;}
            #image_style_12_1_1761889769254 ul li.imgTextLi .cont{width: calc(100% - 55px);float: right;box-sizing: border-box;clear:none;}
            #image_style_12_1_1761889769254 ul li.imgTextLi .cont .name{text-align:left;box-sizing: border-box;padding-left: 12px;}
            #image_style_12_1_1761889769254 ul li.imgTextLi .cont .subName{text-align:left;box-sizing: border-box;padding-left: 12px;}
                }
    
        /*pc*/
        #image_style_12_1_1761889769261  ul li{width: 100%;}
        #image_style_12_1_1761889769261  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769261  ul li.imgTextLi .imgTBoxArea{width: 48px;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_12_1_1761889769261  ul li{width: 100%;}
        #image_style_12_1_1761889769261  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769261  ul li.imgTextLi .imgTBoxArea{width: 72px;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_12_1_1761889769261  ul li{width: 100%;}
        #image_style_12_1_1761889769261  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769261  ul li.imgTextLi .imgTBoxArea{width: 55px;}
                    #image_style_12_1_1761889769261 ul li{width:100%;}
            #image_style_12_1_1761889769261 ul li.imgTextLi .imgTBoxArea{float: left;left:0;transform:none;}
            #image_style_12_1_1761889769261 ul li.imgTextLi .cont{width: calc(100% - 55px);float: right;box-sizing: border-box;clear:none;}
            #image_style_12_1_1761889769261 ul li.imgTextLi .cont .name{text-align:left;box-sizing: border-box;padding-left: 12px;}
            #image_style_12_1_1761889769261 ul li.imgTextLi .cont .subName{text-align:left;box-sizing: border-box;padding-left: 12px;}
                }
    
        /*pc*/
        #image_style_12_1_1761889769267  ul li{width: 100%;}
        #image_style_12_1_1761889769267  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769267  ul li.imgTextLi .imgTBoxArea{width: 48px;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_12_1_1761889769267  ul li{width: 100%;}
        #image_style_12_1_1761889769267  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769267  ul li.imgTextLi .imgTBoxArea{width: 72px;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_12_1_1761889769267  ul li{width: 100%;}
        #image_style_12_1_1761889769267  ul li.imgTextLi{margin-bottom:0.001%;}
        #image_style_12_1_1761889769267  ul li.imgTextLi .imgTBoxArea{width: 55px;}
                    #image_style_12_1_1761889769267 ul li{width:100%;}
            #image_style_12_1_1761889769267 ul li.imgTextLi .imgTBoxArea{float: left;left:0;transform:none;}
            #image_style_12_1_1761889769267 ul li.imgTextLi .cont{width: calc(100% - 55px);float: right;box-sizing: border-box;clear:none;}
            #image_style_12_1_1761889769267 ul li.imgTextLi .cont .name{text-align:left;box-sizing: border-box;padding-left: 12px;}
            #image_style_12_1_1761889769267 ul li.imgTextLi .cont .subName{text-align:left;box-sizing: border-box;padding-left: 12px;}
                }
    .titleStyle_5 .view_cont{position: relative;}
.titleStyle_5 .titletop{font-size: 28px;margin-bottom: 10px;position: relative;}
.titleStyle_5 .titlebottom{font-size: 16px;color: #999;margin-top: 10px;position: relative;}
.titleStyle_5 .btn_view {color: #333; display: inline-block;position: absolute;font-size: 14px;right: 0;top: 50%;transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-ms-transform: translateY(-50%);-o-transform: translateY(-50%);}
.titleStyle_5 .line_view{position: relative;font-size: 0;}
.titleStyle_5 .line_view .linelong{background-color: #eaeaea;width: 100%; height: 1px;position: absolute;top: 1px;left: 0;z-index: 1;}
.titleStyle_5 .line_view .lineshort{background-color: #53841D;width: 0;padding: 0 30px;height: 3px;position: relative;z-index: 99;display: inline-block;vertical-align: top;}
@media screen and (max-width: 768px){
	.titleStyle_5 .titletop{font-size: 18px;margin-bottom: 6px;}
	.titleStyle_5 .titlebottom{font-size: 12px;margin-top: 6px;}
	.titleStyle_5 .btn_view{font-size: 12px;}
	.titleStyle_5 .line_view .lineshort{height: 2px;padding: 0 20px;}
}
						#titleText_style_05_1761231284093 .titleStyle_5 .view_cont{text-align: center;}
			    .imgStyle{font-size:0;}
#image_style_01_1761207124548 .CompatibleImg img{width:100%; height:auto; margin-left:0px}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1761207124548 .CompatibleImg img{width:100%; height:auto; margin-left:0px}}@media screen and (max-width:640px) {#image_style_01_1761207124548 .CompatibleImg img{width:100%; height:100%}}	#image_style_01_1761207124548 a{
		cursor: default;
	}
	.imgStyle { height:100%; width:100%; overflow: hidden; box-sizing: border-box;}
	.imgStyle>a{overflow: hidden; width: 100%; height: 100%;}
	.imgStyle img{box-sizing: border-box;}
	@media screen and (max-width:1200px) {
			}
	@media screen and (max-width:767px) {
			}
.button_default01 { width: 100%; height:40px;line-height:40px; background: #fff; color: #000; box-sizing: border-box; border: 1px solid #000; font-size: 14px; cursor: pointer; transition: all ease-in .1s; -webkit-transition: all ease-in .1s; -moz-transition: all ease-in .1s; -o-transition: all ease-in .1s;white-space: pre;position: relative;}
    #button_style_01_1761206831347 .button_default .buttonImg {width:auto; height:100%; position:relative; top:0; left:50%;-webkit-transform:translate(-50%,0);-o-transform:translate(-50%,0);-moz-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);}@media screen and (min-width:641px) and (max-width:1200px) {#button_style_01_1761206831347 .button_default .buttonImg {width:auto; height:100%; position:relative; top:0; left:50%;-webkit-transform:translate(-50%,0);-o-transform:translate(-50%,0);-moz-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);}}@media screen and (max-width:640px) {#button_style_01_1761206831347 .button_default .buttonImg {width:auto; height:100%; position:relative; top:0; left:50%;-webkit-transform:translate(-50%,0);-o-transform:translate(-50%,0);-moz-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);}}
						#titleText_style_05_1761231371207 .titleStyle_5 .view_cont{text-align: center;}
			    .imgStyle_28{ width:100%; }
.imgStyle_28 *{ font-size:'微软雅黑'; }
.imgStyle_28 .imgTextUl{ display:flex; justify-content: space-between; flex-wrap: wrap; }
.imgStyle_28 .imgItems{margin-bottom:2%;box-sizing: border-box;}
.imgStyle_28 .mia_li_item{box-sizing:border-box;overflow: hidden;height: 100%;}
.imgStyle_28 li{ width: 24%;}
.imgStyle_28 .imgItems .left{width: 100%;}
.imgStyle_28 .imgTBox{ text-align: center; float:left; display:inline-block;height: 100%;width: 100%;}
.imgStyle_28 .imgTBox>img{display: inline-block;box-sizing: border-box;height: 100%;transition: all ease .3s;}
.imgStyle_28 .imgTBox>.bbx-new-font{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.imgStyle_28 .cont{ float:right; display:inline-block;width: 100%;}
.imgStyle_28 .title .name{width: 50%;float: left;font-size: 16px;font-weight: bold;vertical-align: bottom;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;word-break: break-word;padding: 5px 0;box-sizing: border-box;}
.imgStyle_28 .title .subName{width: 50%;float: right;font-size: 12px;text-align: right;line-height: 24px;color: #f00;vertical-align: bottom;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;word-break: break-word;padding: 5px 0;box-sizing: border-box;}
.imgStyle_28 .title{overflow: hidden;}
.imgStyle_28 .imgDetail{color: #666;font-size: 14px;white-space: pre-wrap;word-wrap: break-word;text-align: center;padding: 5px 0;}
.imgStyle_28 .left{position: relative;float: left;width: 100%;height: auto;background: #f6f6f6;overflow: hidden;box-sizing: border-box;}
.imgStyle_28 .imgCont{position: absolute;left: 50%;top: 0;bottom: 0;-webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);-o-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}
.imgStyle_28 .btn a {display: block;background: rgb(255,115,4);color: #fff;text-align: center;line-height: 2;}

@media screen and (max-width: 768px){
	.imgStyle_28 .title .name{width: 100%;}
	.imgStyle_28 .title .subName{width: 100%;float: left;text-align: left;}
}


        /*pc*/
        #image_style_28_1761883409980 .imgStyle_11 .imgCont{height: calc(100% - 30px)}        #image_style_28_1761883409980 ul li .ratio{margin-top: calc(100%); float: left;}
        #image_style_28_1761883409980  ul li{width: 23.5%;}
        #image_style_28_1761883409980  ul li.imgItems{margin-bottom:2%;}
        .imgShowBox{position: fixed; z-index: 99999; background-color: rgba(0, 0, 0, 0.4); top: 0; left: 0; width: 100%; height: 100%;}
        .imgShowBox img{ position: absolute; width: auto; max-width: 80%; border: 20px solid #fff;top: 50%; left: 50%; transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); -o-transform: translate(-50%,-50%); box-shadow: 0 0 10px rgba(0,0,0,.3);}
        .imgShowBox .bbx-new-font{ position: absolute; width: auto; max-width: 80%; border: 20px solid #fff;top: 50%; left: 50%; transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); -o-transform: translate(-50%,-50%); box-shadow: 0 0 10px rgba(0,0,0,.3);background: #fff;padding: 0 20px;}
        .imgShowBox.scroll{overflow-y:scroll;overflow-x:hidden;}
        .imgShowBox.scroll::-webkit-scrollbar {width: 6px; height: 6px; background: rgba(0,0,0,.05);}
        .imgShowBox.scroll::-webkit-scrollbar{width: 6px; height: 6px; background: rgba(0,0,0,.02);}
        .imgShowBox.scroll::-webkit-scrollbar-button{background: #f7f7f7; height: 0;}
        .imgShowBox.scroll::-webkit-scrollbar-corner{background: rgba(0,0,0,.05);}
        .imgShowBox.scroll::-webkit-scrollbar-thumb{background: rgba(255,255,255,.7); border-radius: 3px;}
        
        .imgShowBox.scroll img{top:5%; margin-bottom: 5%; transform: translate(-50%,0%); -webkit-transform: translate(-50%,0%); -moz-transform: translate(-50%,0%); -o-transform: translate(-50%,0%);}
        .pos_fixed{position: fixed; width: 100%;}
        .imgButton{position: fixed; width: 70%; max-width: 400px; bottom: 15%; left: 50%;
        	-webkit-transform: translateX(-50%);
        	-moz-transform: translateX(-50%);
        	-ms-transform: translateX(-50%);
        	-o-transform: translateX(-50%);
        	transform: translateX(-50%);
        	display: -webkit-flex; display: -moz-flex; display: flex; flex-wrap:nowrap; justify-content:space-between; align-items:center;}
        .imgButton span{display: inline-block; cursor:pointer; box-shadow: 0 0 6px rgba(0,0,0,.2);
        	-webkit-transition: all ease .3s;
        	-moz-transition: all ease .3s;
        	-ms-transition: all ease .3s;
        	-o-transition: all ease .3s;
        	transition: all ease .3s;
        }
        .imgButton span:hover{opacity: .8;}
        .imgButton span i{font-size: inherit; line-height: inherit; color:inherit;}
        .imgButton span.prevImg, .imgButton span.nextImg, .imgButton span.closeShowPic{ font-size: 40px; width: 50px; height:50px; line-height: 50px;  border-radius: 100%;font-family: serif; background-color: #fff; text-align: center; box-sizing: border-box;}
        .imgButton span.prevImg, .imgButton span.nextImg{font-size: 26px; width: 40px; height: 40px; line-height: 40px; text-align: center;}
        @media screen and (max-width: 1024px){.imgStyle_11 ul li{width: 24%;}}
        @media screen and (max-width: 1024px){/*ipad*/
        #image_style_28_1761883409980 .imgStyle_11 .imgCont{height: calc(100% - 30px)}        #image_style_28_1761883409980 ul li .ratio{margin-top: calc(100%); float: left;}
        #image_style_28_1761883409980  ul li{width: 23.5%;}
        #image_style_28_1761883409980  ul li.imgItems{margin-bottom:2%;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_28_1761883409980 .imgStyle_11 .imgCont{height: calc(100% - 30px)}        #image_style_28_1761883409980 ul li .ratio{margin-top: calc(100%); float: left;}
        #image_style_28_1761883409980  ul li{width: 49%;}
        #image_style_28_1761883409980  ul li.imgItems{margin-bottom:2%;}
        .imgShowBox img{border-width: 10px;}
        .imgShowBox.scroll img{top:5%; margin-bottom: 10vh;}
        }
    
						#titleText_style_05_1761231426588 .titleStyle_5 .view_cont{text-align: center;}
			    /*新闻列表样式*/
.boxNewsListStyle_12{position: relative; width:100%; height: 100%; clear: both;}
.boxNewsListStyle_12 *{transition: all ease .2s; -webkit-transition: all ease .2s; -moz-transition: all ease .2s; -o-transition: all ease .2s; box-sizing:border-box;}
.boxNewsListStyle_12>ul{ position:relative; width: 100%; height: 100%;}
.boxNewsListStyle_12 ul .li_mode{overflow: hidden;}
.boxNewsListStyle_12 ul .leftLi{display: none;}
.boxNewsListStyle_12 ul .leftLi0{display: block;}
.boxNewsListStyle_12 ul .newLeft{ position:relative; width:50%; float: left;}
.boxNewsListStyle_12 ul .newLeft .carousel{position: absolute;top: 50%;transform: translateY(-50%);-o-transform: translateY(-50%);-ms-transform: translateY(-50%);-moz-transform: translateY(-50%);-webkit-transform: translateY(-50%);font-family: Arial;line-height: 32px;z-index: 99;font-size: 24px;background: rgba(255,255,255,0.4);width: 32px;text-align: center;border-radius: 100px;}
.boxNewsListStyle_12 ul .newLeft .prevNews{left: 10px;padding-right: 2px;}
.boxNewsListStyle_12 ul .newLeft .nextNews{right: 10px;padding-left: 2px;}
.boxNewsListStyle_12 ul .li_mode .newPic{position:relative; width:100%; background: #eee; overflow:hidden;}
.boxNewsListStyle_12 ul .li_mode .newPic img{position:absolute; top:0; left:0; width:100%; height: auto;}
.boxNewsListStyle_12 ul .li_mode .newPic .zTm{margin-top:75%;}
.boxNewsListStyle_12 ul .li_mode .newCont{position: absolute; left: 0; bottom: 0%; width: 100%; height: auto; background: rgba(0,0,0,.4); padding: 8px;}
.boxNewsListStyle_12 ul .li_mode .newCont .newTitle{color: #fff; line-height: 28px; font-size: 14px; text-align: left; width: 100%;}
.boxNewsListStyle_12 ul .li_mode .newCont .newTitle a{color: inherit; line-height: inherit; font-size: inherit; display: block; text-align: inherit;}
.boxNewsListStyle_12 ul .li_mode .newCont .newDetail{font-size: 12px; line-height: 24px; color: #eee;}

/*右侧新闻列表*/
.boxNewsListStyle_12 ul .newRight{ width: 50%; float: left;}
.boxNewsListStyle_12 .newsScroll{ width:100%; height:100%; position: relative;overflow: hidden;}
.boxNewsListStyle_12 .news1{padding-left: 1%;box-sizing: border-box;}
.boxNewsListStyle_12 .newsLi{ position:relative; width:100%; left:0%; height:auto; padding-left:1%; padding-top:1%; border-bottom:1px solid #eee;box-sizing: border-box;}
.boxNewsListStyle_12 .newsLi .newsCont{ width:100%; box-sizing:border-box;}
.boxNewsListStyle_12 .newsLi .newsCont .newsName{ float:left; height: 24px; line-height: 24px;}
.boxNewsListStyle_12 .newsLi .newsCont .newsName .newSort{color:#fff; float:left; font-size:12px; white-space: nowrap; padding:0 1em; height: 24px; background:#4dc0f8; margin-right:10px;}
.boxNewsListStyle_12 .newsLi .newsCont .newsName a{ text-decoration:none; line-height:1.4; font-size:16px; color: #333;}
.boxNewsListStyle_12 .newsLi .newsCont .newsTitle{ font-size:14px;}
.boxNewsListStyle_12 .newsLi .newsCont .newsTitle .newTitle{padding-bottom: 8px;}
.boxNewsListStyle_12 .newsLi .newsCont .newsTimeSet{ float:left; clear:both;  width:15%; color:#aaa; font-size:14px; white-space:nowrap;}
.boxNewsListStyle_12 .newsLi .newsCont .newsTimeSet span{ white-space: nowrap;}
.boxNewsListStyle_12 .newsLi .newsCont .newsDetail_Right{ width:100%; padding-top: 1%; color:#aaa; font-size:14px; line-height:1.6;overflow:hidden; text-overflow:ellipsis; display:-webkit-box;-webkit-line-clamp:2; -webkit-box-orient:vertical;}
.boxNewsListStyle_12  .show_all{width:25%; margin-top:.5em;}
.boxNewsListStyle_12  .show_all a{display:block; margin-top:.4em; text-decoration:none; border:1px solid #ddd; text-align:center; padding:.4em; font-size:12px;  color:#666; }

.boxNewsListStyle_12 .cur_item{ background-color: #f2f2f2;}

@media screen and (max-width:991px){
.boxNewsListStyle_12 .newsLi .newsCont .newsTimeSet{ width:18%;}
.boxNewsListStyle_12 ul .li_mode .newCont .newDetail{font-size: 12px; line-height: 24px; color: #eee;}
}

@media screen and (max-width:768px){
.boxNewsListStyle_12 .news1{padding-right: 1%;}
.boxNewsListStyle_12 .newsLi{padding: 1%;}
	.boxNewsListStyle_12 .newsLi .newsCont .newsTimeSet{ width:25%;}
.boxNewsListStyle_12 ul .newLeft{ width:100%;  overflow: hidden;}
.boxNewsListStyle_12 ul .newRight{ width:100%; margin-top: 20px;}
}
	#newsList_style_12_1761229552814 .newDetail.pc {display:block;}
	#newsList_style_12_1761229552814 .newDetail.pad, #newsList_style_12_1761229552814 .newDetail.mobile {display:none;}
	#newsList_style_12_1761229552814 .newTitle.pc {display:block;}
	#newsList_style_12_1761229552814 .newTitle.pad, #newsList_style_12_1761229552814 .newTitle.mobile {display:none;}
	@media screen and (min-width:641px) and (max-width:1200px) {
		#newsList_style_12_1761229552814 .newDetail.pad {display:block;}
		#newsList_style_12_1761229552814 .newDetail.pc, #newsList_style_12_1761229552814 .newDetail.mobile {display:none;}
		#newsList_style_12_1761229552814 .newTitle.pad {display:block;}
		#newsList_style_12_1761229552814 .newTitle.pc, #newsList_style_12_1761229552814 .newTitle.mobile {display:none;}
	}
	@media screen and (max-width:640px) {
		#newsList_style_12_1761229552814 .newDetail.mobile {display:block;}
		#newsList_style_12_1761229552814 .newDetail.pc, #newsList_style_12_1761229552814 .newDetail.pad {display:none;}
		#newsList_style_12_1761229552814 .newTitle.mobile {display:block;}
		#newsList_style_12_1761229552814 .newTitle.pc, #newsList_style_12_1761229552814 .newTitle.pad {display:none;}
	}

    #newsList_style_12_1761229552814 .newPic a{height:100%;}
    #newsList_style_12_1761229552814 .newPic img{height: 100%;object-fit: cover;}
@media screen and (min-width: 1025px) {
			#newsList_style_12_1761229552814 .newLeft{width: 600px;}
		#newsList_style_12_1761229552814 .newRight{width: calc(100% - 600px);}
	}
@media screen and (min-width: 640px) and (max-width: 1024px) {
			#newsList_style_12_1761229552814 .newLeft{width: 500px;}
		#newsList_style_12_1761229552814 .newRight{width: calc(100% - 500px);}
	}
@media screen and (max-width: 640px) {
}

.textList_default15 .title_view{overflow: hidden;}
.textList_default15 .title{font-size: 16px;font-weight: bold;padding-bottom: 8px;}
.textList_default15 .btn_view{max-width: 40px;float: right;}
.textList_default15 .listBtn{box-sizing: border-box;border: 1px solid #999;color: #999;line-height: 22px;padding: 0px 3px;text-align: center;font-size: 20px;}
.textList_default15 .listBtn .text{display: inline-block;width: 16px;line-height: inherit;}
.textList_default15 .listBtn .text i{line-height: inherit;}
.textList_default15 .info{font-size: 14px;padding-bottom: 24px;}
.textList_default15 .info p{color: inherit;font-family: Arial;font-size: inherit;font-weight: inherit;font-style:inherit;text-decoration: inherit;line-height:inherit;}

@media screen and (max-width:640px) {
	.textList_default15 .title{font-size: 14px;padding-bottom: 4px;}
	.textList_default15 .info{font-size: 12px;padding-bottom: 16px;}
	.textList_default15 .listBtn{line-height: 20px;padding: 0px 2px;font-size: 18px;}
}

	.footerCustom_01{width:100%; position:relative;}
.footerCustom_01 *{box-sizing: border-box;}
.footerCustom_01 .miniMenu *,
.footerCustom_01 .menuUl li *{
	-webkit-transition-duration:.2s; -moz-transition-duration:.2s; -o-transition-duration:.2s; transition-duration:.2s;
	-webkit-transition-property:background,height,padding; -moz-transition-property:background,height,padding; -moz-transition-property:background,height,padding; transition-property:background,height,padding;
	-webkit-transition-timing-function:ease-out; -moz-transition-timing-function:ease-out; -o-transition-timing-function:ease-out; transition-timing-function:ease-out;
}
.footerCustom_01 .dflex{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center; -webkit-flex-wrap: wrap;  -moz-flex-wrap: wrap;  -ms-flex-wrap: wrap;  -o-flex-wrap: wrap;  flex-wrap: wrap; }
.footerCustom_01 .rflex{-webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1; float: left\0; white-space: nowrap; overflow: hidden;}
.footerCustom_01 ul,.footerCustom_01 li{padding:0;margin:0px;list-style:none}
.footerCustom_01 .menuLayout{position:relative; margin:0 auto;width:100%;}
.footerCustom_01 .menuLayout:after{content:''; display:block; clear:both;}
.footerCustom_01 .menuUl_box{position:relative; width:100%; text-align:center;}
.footerCustom_01 .menuUl{position:relative; width:100%; text-align:center;}
.footerCustom_01 .menuUl>li{position:relative;}
.footerCustom_01 .menuUl>li>a{ background: rgba(0,0,0,0.0); position: relative; text-decoration:none;font-size:16px; box-sizing:border-box; display:inline-block;width:100%; max-width: 100%; text-align:center; letter-spacing:normal; white-space:nowrap; color: #333d5f; line-height:44px; padding: 0; padding: 0 1em\0;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
.footerCustom_01 .menuUl>li>a span{display:block; width: 100%; text-align: center; color: rgba(0,0,0,.3); font-size: 12px;}
.footerCustom_01 .menuUl #hot>a span{color:inherit;}
.footerCustom_01 .menuUl02 {left: 50%;  width: 100%;}
.footerCustom_01 .menuUl>li>#menuLogo{height: 85%;}


.footerCustom_01 .menuUl02 .subMenu02 {position: relative;  color: #333d5f; font-size:14px; line-height: 28px;}
.footerCustom_01 .menuUl02 .subMenu02:hover >a {text-decoration: inherit;}
.footerCustom_01 .menuUl02 .subMenu02>a { display: inline-block;max-width: 100%; white-space: nowrap; overflow: hidden;color: inherit; font-size:inherit; line-height: inherit;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
.footerCustom_01 .menuUl02 .subMenu02>a .fa{float: right;padding-right: 6px; line-height: inherit;}
.footerCustom_01 .menuUl02 .subMenu02:hover .menuUl03{display: block;}
.footerCustom_01 .menuUl02 .subMenu02:first-child{
	border-top-left-radius: 0px;border-top-right-radius: 0px;
}
.footerCustom_01 .menuUl02 .subMenu02:last-child{
	border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;
}
.footerCustom_01 .menuUl03{position: absolute; top: 0; left: 100%; display: none; }
.footerCustom_01 .menuUl03 .subMenu03{ line-height: 40px;margin-left: 10px;}
.footerCustom_01 .menuUl03 .subMenu03>a{ color: #17233d; background: #333d5f; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;padding: 0 15px;}
.footerCustom_01 .menuUl03 .subMenu03:first-child a{
	border-top-left-radius: 0px;border-top-right-radius: 0px;
}
.footerCustom_01 .menuUl03 .subMenu03:last-child a{
	border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;
}
.footerCustom_01 .rflex { position: relative;}
.footerCustom_01 .maxWidth{margin: auto;}

.footerCustom_01 .subBox{position: absolute; left: 0; width: 100%; background: rgba(238, 238, 238, 0.85); display: none;}
.footerCustom_01 .subBox .subBoxContent{padding: 15px; text-align: left; overflow: hidden;}
.footerCustom_01 .subBox .subBoxContent .subItems{overflow: hidden; display: none;}
.footerCustom_01 .subBox .sublm{float: left; width: calc(100% - 440px); min-height: 10px;}
.footerCustom_01 .subBox .sublm>div{clear: both; overflow: hidden; margin: 8px 0;}
.footerCustom_01 .subBox .subImgsbox{float: left; width: 440px; height: 160px;}
.footerCustom_01 .subBox .subImgsbox>a{display: block; height: 100%; float: right; width: calc((100% - 20px)/2); margin-left: 20px;}
.footerCustom_01 .subBox .subImgsbox>a:last-child{margin-left: 0;}
.footerCustom_01 .subBox .subImgsbox>a>div.subImg{ position: relative; height: 100%; overflow: hidden; background-repeat: no-repeat; background-size: cover !important;}
.footerCustom_01 .subBox .subImgsbox>a>div.subImg span{position: absolute; bottom: 0; left: 0; width: 100%; display: block; padding: 5px; background: rgba(255,255,255,.8); color: #17233d; font-size: 12px;}
.footerCustom_01 .subBox p{overflow: hidden; float: left;}
.footerCustom_01 .subBox p:first-child{margin-right: 10px; width: 100px;}
.footerCustom_01 .subBox p:last-child{width: calc(100% - 110px);}
.footerCustom_01 .subBox .subMenu02{font-size: 14px; margin-bottom: 5px; clear: both; color: #17233d; line-height: 28px;}

.footerCustom_01 .imgIco{vertical-align: middle; display:inline-block; overflow:hidden; position:relative; padding:15px;  box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box;}
.footerCustom_01 .imgIco img{width:auto; height:100%; vertical-align: top;  position:absolute; top:50%; left:50%;  transform:translateY(-50%) translateX(-50%); -webkit-transform:translateY(-50%) translateX(-50%); -moz-transform:translateY(-50%) translateX(-50%); -ms-transform:translateY(-50%) translateX(-50%); -o-transform:translateY(-50%);}

.footerCustom_01 .showmobile{display: none;}
@media screen and (max-width:767px){
	.footerCustom_01 .showpc{display: none;}
	.footerCustom_01 .showmobile{display: block;}
}
	
#footerCustom_footerDh_01_1761202695122 .menuUl02 .subMenu02>a .fa{position: absolute;top: 0;right: 0;}

        /*pc*/
        #footerCustom_footerDh_01_1761202695122 .footerCustom_01 .menuUl>li{min-width: calc(100% / 4);max-width: calc(100% / 4);}
        @media screen and (max-width: 1024px){/*pad*/
            #footerCustom_footerDh_01_1761202695122 .footerCustom_01 .menuUl>li{min-width: calc(100% / 4);max-width: calc(100% / 4);}
        }
        @media screen and (max-width: 768px){/*mobi*/
            #footerCustom_footerDh_01_1761202695122 .footerCustom_01 .menuUl>li{min-width: calc(100% / 4);max-width: calc(100% / 4);}
        }
    .imgStyle_22{ width:100%; }
.imgStyle_22 *{ font-size:'微软雅黑'; }
.imgStyle_22 .imgTextUl{ display:flex; justify-content: space-between; flex-wrap: wrap; }
.imgStyle_22 .imgTextLi{margin-bottom:2%;box-sizing: border-box;}
.imgStyle_22 .mia_li_item{box-sizing:border-box;overflow: hidden;height: 100%;}
.imgStyle_22 li{ width: 24%;}
.imgStyle_22 .imgTextLi .left{width: 100%;}
.imgStyle_22 .imgTBox{ text-align: left; float:left; display:inline-block;height: 100%;width: 100%;}
.imgStyle_22 .imgTBox>img{ display: inline-block; width:100%;box-sizing: border-box;height: 100%;}
.imgStyle_22 .imgTBox>.bbx-new-font{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.imgStyle_22 .cont{ float:right; display:inline-block;width: 100%;}
.imgStyle_22 .title .name{width: 50%;float: left;font-size: 16px;font-weight: bold;vertical-align: bottom;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;word-break: break-word;padding: 5px 0;box-sizing: border-box;}
.imgStyle_22 .title .subName{width: 50%;float: right;font-size: 12px;text-align: right;line-height: 24px;color: #f00;vertical-align: bottom;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;word-break: break-word;padding: 5px 0;box-sizing: border-box;}
.imgStyle_22 .title{overflow: hidden;}
.imgStyle_22 .imgDetail{color: #666;font-size: 12px;margin-bottom: 5px;white-space: pre-wrap;}
.imgStyle_22 .left{position: relative;float: left;width: 100%;height: auto;}
.imgStyle_22 .image-box{position: absolute;left: 0;right: 0;top: 0;bottom: 0;overflow: hidden;}
.imgStyle_22 .btn a {display: block;background: rgb(255,115,4);color: #fff;text-align: center;line-height: 2;}

@media screen and (max-width: 768px){
	.imgStyle_22 .title .name{width: 100%;}
	.imgStyle_22 .title .subName{width: 100%;float: left;text-align: left;}
}


        /*pc*/
        #image_style_22_1761202703351  ul li{width: 100%;}
        #image_style_22_1761202703351  ul li.imgTextLi{margin-bottom:6%;}
                #image_style_22_1761202703351 .title .name{width: 100%;white-space:normal;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_22_1761202703351  ul li{width: 100%;}
        #image_style_22_1761202703351  ul li.imgTextLi{margin-bottom:3%;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_22_1761202703351  ul li{width: 49%;}
        #image_style_22_1761202703351  ul li.imgTextLi{margin-bottom:2%;}
        }
    
			.webPlayer { display: inline-block; position: relative; font-family: Arial; clear: both; /* margin-bottom: 10px; */ line-height: 1.4; font-size: 13px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); text-align: center; /* Chrome FIX for full screen */ }
.webPlayer a.smooth { transition: all 0.1s linear; -webkit-transition: all 0.1s linear; -moz-transition: all 0.1s linear; -o-transition: all 0.1s linear; }
.webPlayer.jp-video-full > .controls { position: absolute; left: 0; right: 0; bottom: 0; opacity: 0.8; z-index: 1000; }
.webPlayer.jp-video-full, .webPlayer.jp-video-full object, .webPlayer.jp-video-full video { position: fixed; top: 0; left: 0; right: 0; bottom: 0; display: block; z-index: 999; }
.webPlayer.jp-video-full > .playerScreen, .webPlayer.jp-video-full > .playerScreen > .video-play { z-index: 1000; }
.webPlayer .playerScreen { cursor: pointer; }
.webPlayer .playerScreen .video-play { display: block; position: absolute; z-index: 990; width: 100%; top: 0; left: 0; right: 0; bottom: 50px; background: url("../img/music/style_01/preimg.png") no-repeat center center; opacity: 0.4; background-color: rgba(0, 0, 0, 0.4); }
.webPlayer .controls { display: block; position: relative; height: 40px; background: #0b0b0b; color: #969696; padding: 5px 10px; z-index: 996; border: 1px solid #000000; }
.webPlayer .controls .leftblock { position: absolute; left: 3px; width: 50px; }
.webPlayer .controls .leftblock .play { display: block; width: 40px; height: 40px; background: url("../img/music/style_01/playerUI.png") no-repeat 0 1px; opacity: 0.8; }
.webPlayer .controls .leftblock .play:hover { opacity: 1; }
.webPlayer .controls .leftblock .pause { display: block; width: 40px; height: 40px; background: url("../img/music/style_01/playerUI.png") no-repeat -40px 1px; opacity: 0.8; }
.webPlayer .controls .leftblock .pause:hover { opacity: 1; }
.webPlayer .controls .progress { position: relative; display: block; margin: 0 130px 0 50px; text-align: left; }
.webPlayer .controls .progress span { font-size: 12px; margin-left: 1px; color: #f0f0f0; }
.webPlayer .controls .progress .progressbar { display: block; height: 4px; background-color: #3C3C3C; background: rgba(255, 255, 255, 0.05); margin: 2.5px 0; }
.webPlayer .controls .progress .progressbar .seekBar { position: relative; display: block; cursor: pointer; padding: 1px; background: rgba(255, 255, 255, 0.1); }
.webPlayer .controls .progress .progressbar .seekBar .playBar { display: block; height: 2px; padding: 0; background: #FFFFFF; }
.webPlayer .controls .progress .progressbar .seekBar a { display: block; position: absolute; top: -2px; width: 8px; height: 8px; border-radius: 5px; background: #ffffff; margin-left: -3px; }
.webPlayer .controls .progress .progressbar .seekBar a div { width: 8px; height: 8px; }
.webPlayer .controls .progress .time { display: block; position: absolute; width: 50px; font-size: 11px; }
.webPlayer .controls .progress .time.current { left: 1px; text-align: left; color: #f0f0f0; }
.webPlayer .controls .progress .time.duration { right: 0px; text-align: right; }
.webPlayer .controls .rightblock { position: absolute; right: 10px; width: 110px; top: 5px; }
.webPlayer .controls .rightblock .volumeText { display: block; position: absolute; bottom: -12px; text-align: center; width: 80px; font-size: 11px; }
.webPlayer .controls .rightblock .volumeBar { display: block; position: absolute; height: 4px; background-color: #3C3C3C; background: rgba(255, 255, 255, 0.05); width: 80px; top: 19px; left: 0; cursor: pointer; }
.webPlayer .controls .rightblock .volumeBar .currentVolume { position: relative; height: 2px; padding: 1px; }
.webPlayer .controls .rightblock .volumeBar .currentVolume .curvol { display: block; height: 2px; padding: 0; background: #FFFFFF; }
.webPlayer .controls .rightblock .volumeBar .currentVolume a { display: block; position: absolute; top: -2px; margin-left: -3px; width: 8px; height: 8px; border-radius: 5px; background: #ffffff; }
.webPlayer .controls .rightblock .volumeBar .currentVolume a div { display: block; width: 8px; height: 8px; }
.webPlayer .controls .rightblock .fullScreen { display: block; float: right; width: 16px; height: 16px; background: url("../img/music/style_01/playerUI.png") no-repeat 0 -50px; margin-top: 12px; opacity: 0.4; }
.webPlayer .controls .rightblock .fullScreen:hover { opacity: 0.8; }
.webPlayer .controls .rightblock .fullScreenOFF { display: block; float: right; width: 16px; height: 16px; background: url("../img/music/style_01/playerUI.png") no-repeat 0 -68px; margin-top: 12px; opacity: 0.4; }
.webPlayer .controls .rightblock .fullScreenOFF:hover { opacity: 0.8; }
.webPlayer.audioPlayer .progress { margin-right: 100px; }
.webPlayer.audioPlayer .rightblock { width: 85px; }
.webPlayer.audioPlayer .rightblock .volumeText { bottom: -42px; }
.webPlayer.audioPlayer .fullScreen { display: none; }
.webPlayer.audioPlayer .fullScreenOFF { display: none; }



.webPlayer.light {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.webPlayer.light .controls {
    background: #fff;
    border-color: #fff;
}
.webPlayer.light .controls .leftblock .play,
.webPlayer.light .controls .leftblock .pause,
.webPlayer.light .controls .rightblock .fullScreen,
.webPlayer.light .controls .rightblock .fullScreenOFF {
    background-image: url("../img/music/style_01/playerUI-dark.png");
}
.webPlayer.light .controls { color: #333 }
.webPlayer.light .controls .progress span { color:#333 }
.webPlayer.light .controls .progress .time.current { color: #333 }

.webPlayer.light .controls .progress .progressbar { background-color: #aaa; background: rgba(0, 0, 0, 0.05) }
.webPlayer.light .controls .progress .progressbar .seekBar .playBar { background: #888; }
.webPlayer.light .controls .progress .progressbar .seekBar a { background: #4285f4; }

.webPlayer.light .controls .rightblock .volumeBar { background-color: #aaa; background: rgba(0, 0, 0, 0.05) }
.webPlayer.light .controls .rightblock .volumeBar .currentVolume .curvol { background: #888; }
.webPlayer.light .controls .rightblock .volumeBar .currentVolume a { background: #4285f4; }.copyrightStyle01{text-align: center;color:#999;font-size: 14px;font-family: Arial;} 
.copyrightStyle01 .copyright_view{display: inline;padding-right: 10px;}
.copyrightStyle01 .icp_view{display: inline-block;padding-right: 10px;}
.copyrightStyle01 .lw_view{display: inline-block;}
.copyrightStyle01 .lw_icon{width: 18px;vertical-align: top;margin-right: 4px;}
.copyrightStyle01 .line_view a{color:inherit;}

@media screen and (max-width: 640px){
    .copyrightStyle01{font-size: 12px;line-height: 1.75;}
}
        
    