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

/* 音乐播放器容器 - 电脑样式 */
#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:59.416666666666664%;z-index:999;position:absolute;left:40.583333333333336%;top:63.5px;}   @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.133333333333333%;z-index:999;position:absolute;top:15px;left:86.39166666666667%;}} #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:86px;display:block;left:56.53333333333334%;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:129px;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_11_1762507780444{width:100%;height:224px;position:absolute;top:0%;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#banner_style_11_1762507780444{height:215px;}}   @media screen and (max-width:640px) {#banner_style_11_1762507780444{width:100%;height:179px;position:absolute;top:0px;left:0%;}}  #banner_style_11_1762507780444 .twoBgSet {border-width:0px;font-size:16px;padding-top:20px;padding-bottom:20px;padding-right:0px;padding-left:0px;background:transparent;} #banner_style_11_1762507780444 .titProSet {font-size:34px;box-shadow:transparent 0px 4px 12px ;border-width:0px;border-style:solid;text-shadow:#1e3a8a 0px 4px 12px;line-height:34px;background:transparent;} @media screen and (max-width:640px) { #banner_style_11_1762507780444 .twoBgSet {font-size:16px;}} @media screen and (max-width:640px) { #banner_style_11_1762507780444 .titProSet {font-size:24px;}} #layout_1762507780442{height:224px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1762507780442{height:215px;}}   @media screen and (max-width:640px) {#layout_1762507780442{height:179px;}} #layout_1762507780442 > .view_contents{overflow:visible;} 



 #text_style_15_1761275331527{width:83.4983498349835%;position:absolute;left:8.25082508250825%;top:33px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_15_1761275331527{left:4.620462046204622%;width:90.75907590759076%;top:22px;}}   @media screen and (max-width:640px) {#text_style_15_1761275331527{width:96%;top:0px;left:2%;}} #text_style_15_1761275331527 > .view_contents{overflow:visible;}  #text_style_15_1761275331527 .infoTextSet {line-height:24px;color:#666666;} #text_style_15_1761275331527 .titleSet {font-size:18px;font-weight:normal;color:#1e3a8a;}

 #button_style_01_1761275396493{width:52.8052805280528%;position:absolute;left:8.25082508250825%;top:130px;}   @media screen and (min-width:641px) and (max-width:1200px) {#button_style_01_1761275396493{left:4.62046204620462%;width:42.62295081967213%;top:134px;}}   @media screen and (max-width:640px) {#button_style_01_1761275396493{width:130px;position:absolute;top:0px;left:28.688524590163937%;}} #button_style_01_1761275396493 > .view_contents{overflow:visible;}  #button_style_01_1761275396493 .btnaSet {color:#ffffff;background:#f97316;border-width:0px;}
 #div_a_includeBlock_1761275035056{width:303px;height:210px;box-sizing:border-box;position:absolute;top:72px;left:74.75%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1761275035056{box-sizing:border-box;left:66.494708994709%;top:42px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1761275035056{width:100%;height:300px;box-sizing:border-box;top:0px;left:0%;display:none;}} #div_a_includeBlock_1761275035056 > .view_contents{overflow:visible;}  #div_a_includeBlock_1761275035056  {} #div_a_includeBlock_1761275035056 >.a_includeBlockView {box-shadow:#e5e5e5 0px 0px 12px ;}


 #text_style_15_1761275544134{width:83.4983498349835%;position:absolute;left:8.25082508250825%;top:33px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_15_1761275544134{left:4.950495049504951%;width:90.0990099009901%;top:25px;}}   @media screen and (max-width:640px) {#text_style_15_1761275544134{width:96%;top:0px;left:2%;}} #text_style_15_1761275544134 > .view_contents{overflow:visible;}  #text_style_15_1761275544134 .infoTextSet {line-height:24px;color:#e5e5e5;} #text_style_15_1761275544134 .titleSet {font-size:18px;font-weight:normal;color:#ffffff;}

 #image_style_13_1_1761275684389{width:88.44884488448845%;position:absolute;left:8.25082508250825%;top:140px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_13_1_1761275684389{left:2%;width:96%;top:119px;}}   @media screen and (max-width:640px) {#image_style_13_1_1761275684389{width:96%;position:absolute;top:0px;left:2%;}} #image_style_13_1_1761275684389 > .view_contents{overflow:visible;}  #image_style_13_1_1761275684389 .btnSet {padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;} #image_style_13_1_1761275684389 .modSet {padding-top:0px;padding-bottom:0px;background:transparent;padding-left:0px;padding-right:0px;border-color:transparent;border-style:none;border-width:0px;} #image_style_13_1_1761275684389 .titleSet {line-height:16px;font-size:14px;padding-left:24px;padding-top:4px;color:#ffffff;} #image_style_13_1_1761275684389 .detailSet {font-size:14px;padding-top:2px;line-height:24px;color:#ffffff;padding-left:24px;} #image_style_13_1_1761275684389 .modSet:hover {background:rgba(154,138,120,0.1);} #image_style_13_1_1761275684389 .modSet:hover .titleSet {color:#333333;} #image_style_13_1_1761275684389 .modSet:hover .detailSet {color:#999999;background:transparent;} #image_style_13_1_1761275684389  {background:transparent;} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_13_1_1761275684389 .detailSet {padding-top:2px;font-size:12px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_13_1_1761275684389 .modSet {padding-top:28px;padding-bottom:24px;padding-left:10px;padding-right:12px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_13_1_1761275684389 .titleSet {font-size:16px;padding-top:0px;}} @media screen and (max-width:640px) { #image_style_13_1_1761275684389 .titleSet {font-size:14px;}} @media screen and (max-width:640px) { #image_style_13_1_1761275684389 .detailSet {font-size:12px;line-height:20px;padding-top:10px;}} @media screen and (max-width:640px) { #image_style_13_1_1761275684389 .modSet {padding-top:20px;padding-bottom:20px;padding-right:20px;padding-left:16px;}}
 #div_a_includeBlock_1761275544001{width:303px;height:277px;box-sizing:border-box;position:absolute;top:315px;left:74.75%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1761275544001{box-sizing:border-box;height:315px;left:66.49305555555556%;top:270px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1761275544001{width:100%;height:300px;box-sizing:border-box;top:0px;left:0%;display:none;}} #div_a_includeBlock_1761275544001 > .view_contents{overflow:visible;}  #div_a_includeBlock_1761275544001  {} #div_a_includeBlock_1761275544001 >.a_includeBlockView {box-shadow:#e5e5e5 0px 0px 12px ;background:#1e3a8a;}


 #text_style_15_1762424606730{width:100%;position:absolute;left:0%;top:10px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_15_1762424606730{left:2%;width:96%;top:0px;}}   @media screen and (max-width:640px) {#text_style_15_1762424606730{width:96%;top:22px;left:2%;}} #text_style_15_1762424606730 > .view_contents{overflow:visible;}  #text_style_15_1762424606730 .titleSet {color:#333333;}

 #image_style_22_1762424645856{width:100%;position:absolute;left:0%;top:66.9921875px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_22_1762424645856{left:0%;width:100%;}}   @media screen and (max-width:640px) {#image_style_22_1762424645856{width:96%;position:absolute;top:100px;left:2%;}} #image_style_22_1762424645856 > .view_contents{overflow:visible;}  #image_style_22_1762424645856 .modSet {background:#ffffff;border-style:none;border-width:0px;border-color:transparent;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;} #image_style_22_1762424645856 .btnSet {background:#be2d32;border-radius:initial;padding-top:6px;padding-bottom:6px;margin-left:15px;margin-right:15px;margin-bottom:15px;} #image_style_22_1762424645856 .titleSet {font-size:16px;font-weight:normal;padding-left:0px;padding-right:0px;padding-top:0px;padding-bottom:0px;line-height:28px;text-align:center;background:#1e3a8a;color:#ffffff;margin-bottom:8px;} #image_style_22_1762424645856 .detailSet {font-size:14px;padding-left:0px;padding-right:0px;line-height:1.75em;margin-bottom:0px;text-align:center;} #image_style_22_1762424645856 .modSet:hover {box-shadow:transparent 0px 0px 0px ;padding-bottom:6px;padding-top:12px;border-color:#bf0000;padding-right:12px;padding-left:12px;} #image_style_22_1762424645856 .modSet.selectedmodSet {box-shadow:transparent 0px 0px 0px ;padding-bottom:6px;padding-top:12px;border-color:#bf0000;padding-right:12px;padding-left:12px;} #image_style_22_1762424645856 .btnSet:hover {margin-bottom:0px;} @media screen and (max-width:640px) { #image_style_22_1762424645856 .titleSet {font-size:14px;}} @media screen and (max-width:640px) { #image_style_22_1762424645856 .detailSet {font-size:12px;}} @media screen and (max-width:640px) { #image_style_22_1762424645856 .btnSet {font-size:12px;}}

 #image_style_01_1762425236167{width:67.3913043478261%;height:128px;position:absolute;left:0%;top:401.5078125px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762425236167{left:0%;width:66.21160409556313%;top:258.00001525878906px;height:116px;}}   @media screen and (max-width:640px) {#image_style_01_1762425236167{width:96%;height:67px;top:540px;left:2%;}} #image_style_01_1762425236167 > .view_contents{overflow:visible;} 
 #div_a_includeBlock_1762424545986{width:72.8%;height:530px;box-sizing:border-box;position:absolute;top:20px;left:0.013885498046875%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1762424545986{box-sizing:border-box;height:374.00001525878906px;width:62.0%;left:2%;top:42px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1762424545986{width:100%;height:934px;box-sizing:border-box;top:0px;left:0%;display:block;}} 


 #image_style_22_1762425367754{width:100%;position:absolute;left:0%;top:54px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_22_1762425367754{left:0%;width:100%;top:27px;}}   @media screen and (max-width:640px) {#image_style_22_1762425367754{width:96%;position:absolute;top:35px;left:2%;}} #image_style_22_1762425367754 > .view_contents{overflow:visible;}  #image_style_22_1762425367754 .modSet {background:#ffffff;border-style:none;border-width:0px;border-color:transparent;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;} #image_style_22_1762425367754 .btnSet {background:#be2d32;border-radius:initial;padding-top:6px;padding-bottom:6px;margin-left:15px;margin-right:15px;margin-bottom:15px;} #image_style_22_1762425367754 .titleSet {font-size:16px;font-weight:normal;padding-left:0px;padding-right:0px;padding-top:0px;padding-bottom:0px;line-height:28px;text-align:center;background:#1e3a8a;color:#ffffff;margin-bottom:8px;} #image_style_22_1762425367754 .detailSet {font-size:14px;padding-left:0px;padding-right:0px;line-height:1.75em;margin-bottom:0px;text-align:center;} #image_style_22_1762425367754 .modSet:hover {box-shadow:transparent 0px 0px 0px ;padding-bottom:6px;padding-top:12px;border-color:#bf0000;padding-right:12px;padding-left:12px;} #image_style_22_1762425367754 .modSet.selectedmodSet {box-shadow:transparent 0px 0px 0px ;padding-bottom:6px;padding-top:12px;border-color:#bf0000;padding-right:12px;padding-left:12px;} #image_style_22_1762425367754 .btnSet:hover {margin-bottom:0px;} @media screen and (max-width:640px) { #image_style_22_1762425367754 .titleSet {font-size:14px;}} @media screen and (max-width:640px) { #image_style_22_1762425367754 .detailSet {font-size:12px;}} @media screen and (max-width:640px) { #image_style_22_1762425367754 .btnSet {font-size:12px;}}

 #text_style_15_1762425413863{width:100%;position:absolute;left:0%;top:36px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_15_1762425413863{width:96%;left:4.09556313993174%;top:0px;}}   @media screen and (max-width:640px) {#text_style_15_1762425413863{width:96%;top:0px;left:0%;}} #text_style_15_1762425413863 > .view_contents{overflow:visible;} 

 #image_style_22_1762425899560{width:100%;position:absolute;left:0%;top:425.00000762939453px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_22_1762425899560{width:100%;left:0%;top:326px;}}   @media screen and (max-width:640px) {#image_style_22_1762425899560{width:96%;position:absolute;top:529.0000152587891px;left:2%;}} #image_style_22_1762425899560 > .view_contents{overflow:visible;}  #image_style_22_1762425899560 .modSet {background:#ffffff;border-style:none;border-width:0px;border-color:transparent;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;} #image_style_22_1762425899560 .btnSet {background:#be2d32;border-radius:initial;padding-top:6px;padding-bottom:6px;margin-left:15px;margin-right:15px;margin-bottom:15px;} #image_style_22_1762425899560 .titleSet {font-size:16px;font-weight:normal;padding-left:0px;padding-right:0px;padding-top:0px;padding-bottom:0px;line-height:28px;text-align:center;background:#1e3a8a;color:#ffffff;margin-bottom:8px;} #image_style_22_1762425899560 .detailSet {font-size:14px;padding-left:0px;padding-right:0px;line-height:1.75em;margin-bottom:0px;text-align:center;} #image_style_22_1762425899560 .modSet:hover {box-shadow:transparent 0px 0px 0px ;padding-bottom:6px;padding-top:12px;border-color:#bf0000;padding-right:12px;padding-left:12px;} #image_style_22_1762425899560 .modSet.selectedmodSet {box-shadow:transparent 0px 0px 0px ;padding-bottom:6px;padding-top:12px;border-color:#bf0000;padding-right:12px;padding-left:12px;} #image_style_22_1762425899560 .btnSet:hover {margin-bottom:0px;} @media screen and (max-width:640px) { #image_style_22_1762425899560 .titleSet {font-size:14px;}} @media screen and (max-width:640px) { #image_style_22_1762425899560 .detailSet {font-size:12px;}} @media screen and (max-width:640px) { #image_style_22_1762425899560 .btnSet {font-size:12px;}}

 #text_style_01_1768196671418{width:50%;font-size:16px;color:#333;line-height:1.75;font-family:Microsoft YaHei,微软雅黑;position:absolute;left:1.4902307352888475%;top:751.4713439941406px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1768196671418{left:2%;width:96%;}}   @media screen and (max-width:640px) {#text_style_01_1768196671418{width:96%;font-size:12px;color:#333;line-height:2;font-family:Microsoft YaHei,微软雅黑;position:absolute;top:0px;left:2%;}}  #text_style_01_1768196671418>.view_contents {text-align:left;text-decoration:underline;}
 #div_a_includeBlock_1762425367367{width:72.66666666666667%;height:940px;box-sizing:border-box;position:absolute;top:583px;left:0.013885498046875%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1762425367367{box-sizing:border-box;width:62.01058201058201%;top:412.4792060852051px;height:627px;left:1.9984569246806794%;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1762425367367{width:100%;height:792px;box-sizing:border-box;top:636px;left:0%;display:block;}} 

 #image_style_01_1762425367757{width:40.416666666666664%;height:91px;position:absolute;left:0.013885498046875%;top:871.4791870117188px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762425367757{left:2.314814814814815%;top:638.4792060852051px;width:382.04166666790843px;}}   @media screen and (max-width:640px) {#image_style_01_1762425367757{width:96.00000000000001%;height:70px;top:1076.0000305175781px;left:1.999999999999993%;}} #image_style_01_1762425367757 > .view_contents{overflow:visible;} 

 #image_style_01_1762425993419{width:40.21164021164021%;height:91px;position:absolute;left:0.013885498046875%;top:1183px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762425993419{width:40.21164021164021%;left:1.9984569246806794%;top:879.4792060852051px;height:78px;}}   @media screen and (max-width:640px) {#image_style_01_1762425993419{width:96.00000000000001%;height:50px;top:1345.0000305175781px;left:1.999999999999993%;}} #image_style_01_1762425993419 > .view_contents{overflow:visible;}  #layout_diy_1761274500{height:1523px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_diy_1761274500{height:1039.479206085205px;}}   @media screen and (max-width:640px) {#layout_diy_1761274500{height:1428px;}} #layout_diy_1761274500 > .view_contents{overflow:visible;max-width:1200px;} 
 #layout_1761285355141{height:8.16666699999999px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761285355141{height:38px;}}   @media screen and (max-width:640px) {#layout_1761285355141{height:32px;}} #layout_1761285355141 > .view_contents{overflow:visible;max-width:1200px;} 



 #text_style_15_1761202529363{width:26.916666666666668%;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:58.58333333333333%;z-index:1000;position:absolute;top:53px;left:30.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:51px;box-sizing:border-box;position:absolute;top:239px;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:50px;}}   @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:Microsoft YaHei,微软雅黑;position:absolute;left:83.83333333333334%;top:253.5px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1762238242921{left:80.48511576626241%;width:19.514884233737597%;top:259px;}}   @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;}}
 #div_a_includeBlock_1761202311466{width:1200px;height:309.3775634765625px;box-sizing:border-box;position:absolute;top:1.3775634765625px;left:0.006947835286458334%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1761202311466{box-sizing:border-box;width:96%;left:2.0105820105820107%;height:305px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1761202311466{width:100%;height:135px;box-sizing:border-box;top:19px;left:0%;}} #div_a_includeBlock_1761202311466 > .view_contents{overflow:visible;} 

 #copyright_style_01_1761202728350{width:75.66666666666667%;position:absolute;top:253.5px;left:0%;z-index:2;}   @media screen and (min-width:641px) and (max-width:1200px) {#copyright_style_01_1761202728350{width:67.4074074074074%;left:2.0105820105820107%;top:253.5px;}}   @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_1765441175596{width:32.083333333333336%;height:88px;position:absolute;top:0px;left:1.622393290201823%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_canvasBg_1765441175596{}}   @media screen and (max-width:640px) {#div_a_canvasBg_1765441175596{width:100%;height:88px;position:absolute;display:none;top:0px;left:0%;}}  #comm_layout_footer{height:310.375px;z-index:1;}   @media screen and (min-width:641px) and (max-width:1200px) {#comm_layout_footer{height:313px;z-index:1;}}   @media screen and (max-width:640px) {#comm_layout_footer{height:184.166667px;z-index:100;}} #comm_layout_footer > .view_contents{max-width:1200px;overflow:visible;}  #comm_layout_footer  {background:#27292d;}

    	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_11{width:100%; height:100%; position:relative;}
.bannerStyle_11 .main_visual{height:100%; overflow:hidden; position:relative; }
.bannerStyle_11 .main_image{height:100%; overflow:hidden; position:relative;}
.bannerStyle_11 .main_image ul{width:100%; height:100%; overflow:hidden;}
.bannerStyle_11 .main_image li{position: relative; float:left; width:100%; height: 100%;  }
.bannerStyle_11 .main_image li .img_box{position: relative; display:block; width:100%; height: 100%;  overflow: hidden;}
.bannerStyle_11 .main_image li .img_box img{width: auto; height: 100%;display: block;margin: 0 auto;}
.bannerStyle_11 .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; border:1px solid rgba(255,255,255,.5); background: rgba(0,0,0,.5); color: #fff;}
.bannerStyle_11 .title{ font-size: 20px;}
.bannerStyle_11 .subTitle{ line-height: 2; font-size: 14px; margin-bottom: 5px;white-space: pre-wrap;}
.bannerStyle_11 .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_11 .flicking_con{width:100%; position: absolute; bottom: 10px; text-align: center;}
.bannerStyle_11 .flicking_con .dot{ border:1px solid rgba(255,255,255,.8); margin: 0 2px; border-radius: 100px; overflow:hidden; display:inline-block; width: 0; height: 0;padding: 4px 4px; position:relative;}
.bannerStyle_11 .flicking_con .cur_two{ background: rgba(255,255,255,.8); }
.bannerStyle_11 .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: #999;padding: 0 14px;font-family: simsun,'宋体',simhei,'黑体';box-sizing: border-box;cursor:pointer;}
.bannerStyle_11 .arrowLef{ left: 0;}
.bannerStyle_11 .arrowRight{ right: 0;}
.bannerStyle_11 .arrow .awesome-font{display: none;}
.bannerStyle_11 .arrow .awesome-font:before{padding: 0 3px;box-sizing: border-box;}

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

				@media screen and (min-width: 1025px){/*pc*/
		#banner_style_11_1762507780444 .main_image .info{width: 1200px;}
		}
		@media screen and (max-width: 1024px){/*ipad*/
		#banner_style_11_1762507780444 .main_image .info{width: 96%;}
		}
		@media screen and (max-width: 768px){/*mobi*/
		#banner_style_11_1762507780444 .main_image .info{width: 75%;}
		}
                    



        #banner_style_11_1762507780444 .main_image li img{width: 100%;height: auto;}    @media screen and (min-width:641px) and (max-width:1200px) {
        #banner_style_11_1762507780444 .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%);}    }
    @media screen and (max-width:640px) {
        #banner_style_11_1762507780444 .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%);}    }
.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: inherit;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;}
}

	.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_1761275396493 .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_1761275396493 .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_1761275396493 .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);}}
	.imgStyle_13_1{ width:100%; }
.imgStyle_13_1 *{ font-size:'微软雅黑'; }
.imgStyle_13_1 .imgTextUl{ display:flex; justify-content: space-between; flex-wrap: wrap; }
.imgStyle_13_1 .imgTextLi{ margin-bottom:2%;box-sizing: border-box;}
.imgStyle_13_1 .mia_li_item{box-sizing:border-box;overflow: hidden;height: 100%;}
.imgStyle_13_1 li{ width: 32%;}
.imgStyle_13_1 .imgTextLi .left{width: 130px;}
.imgStyle_13_1 .imgTBox{ text-align: left; float:left; display:inline-block;height: 100%;width: 100%;}
.imgStyle_13_1 .imgTBox>img{ display: inline-block; width:100%;box-sizing: border-box;height: 100%;}
.imgStyle_13_1 .imgTBox .bbx-new-font{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.imgStyle_13_1 .cont{ float:right; display:inline-block;width: calc(100% - 130px);}
.imgStyle_13_1 .name{  font-size:16px; line-height:2.5; padding:0 10px;word-break: break-word;}
.imgStyle_13_1 .subName{ font-size:12px; color:#666; padding: 0 10px;word-break: break-word;white-space: pre-wrap;}
.imgStyle_13_1 .left{position: relative;float: left;width: 130px;height: auto;}
.imgStyle_13_1 .image-box{position: absolute;left: 0;right: 0;top: 0;bottom: 0;overflow: hidden;}
.imgStyle_13_1 .cont .btn{padding-left: 10px;}
.imgStyle_13_1 .cont .btnSet{width: auto;height: 25px;line-height: 25px;display: block;border: 1px solid #7d7d7d;color: #333;text-align: center;margin-right: 40%;margin-top: 10px;word-break: break-all;overflow: hidden;}

@media screen and (max-width: 768px){
	.imgStyle_13_1 .imgTextLi{ width:100%;margin-bottom: 4%;}
	.imgStyle_13_1 .cont{width: calc(100% - 130px);}
	.imgStyle_13_1 .name{ font-size:16px;}
}
        /*pc*/
        #image_style_13_1_1761275684389  ul li{width: 100%;}
        #image_style_13_1_1761275684389  ul li.imgTextLi{margin-bottom:6%;}
        #image_style_13_1_1761275684389  ul li.imgTextLi .left{width: 48px;}
        #image_style_13_1_1761275684389  ul li.imgTextLi .cont{width: calc(100% - 48px);}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_13_1_1761275684389  ul li{width: 100%;}
        #image_style_13_1_1761275684389  ul li.imgTextLi{margin-bottom:0%;}
        #image_style_13_1_1761275684389  ul li.imgTextLi .left{width: 44px;}
        #image_style_13_1_1761275684389  ul li.imgTextLi .cont{width: calc(100% - 44px);}
                }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_13_1_1761275684389  ul li{width: 100%;}
        #image_style_13_1_1761275684389  ul li.imgTextLi{margin-bottom:2%;}
        #image_style_13_1_1761275684389 ul li.imgTextLi .left{float: left;}
        #image_style_13_1_1761275684389 ul li.imgTextLi .cont{float: right;text-align: left;}
                    #image_style_13_1_1761275684389  ul li.imgTextLi .left{width: 60px;}
            #image_style_13_1_1761275684389  ul li.imgTextLi .cont{width: calc(100% - 60px);}
                }
        
                    
        
    
	.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_1762424645856  ul li{width: 32.666666666667%;}
        #image_style_22_1762424645856  ul li.imgTextLi{margin-bottom:1%;}
                #image_style_22_1762424645856 .title .name{width: 100%;white-space:normal;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_22_1762424645856  ul li{width: 23.5%;}
        #image_style_22_1762424645856  ul li.imgTextLi{margin-bottom:2%;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_22_1762424645856  ul li{width: 49%;}
        #image_style_22_1762424645856  ul li.imgTextLi{margin-bottom:2%;}
        }
    .imgStyle{font-size:0;}
#image_style_01_1762425236167 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762425236167 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1762425236167 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1762425236167 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) {
			}

					@media screen and (min-width:1201px) {
				#image_style_01_1762425236167{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1762425236167{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1762425236167{height:auto;} 
			}
			
        /*pc*/
        #image_style_22_1762425367754  ul li{width: 24.25%;}
        #image_style_22_1762425367754  ul li.imgTextLi{margin-bottom:1%;}
                #image_style_22_1762425367754 .title .name{width: 100%;white-space:normal;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_22_1762425367754  ul li{width: 23.5%;}
        #image_style_22_1762425367754  ul li.imgTextLi{margin-bottom:2%;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_22_1762425367754  ul li{width: 49%;}
        #image_style_22_1762425367754  ul li.imgTextLi{margin-bottom:2%;}
        }
    
	
        /*pc*/
        #image_style_22_1762425899560  ul li{width: 24.25%;}
        #image_style_22_1762425899560  ul li.imgTextLi{margin-bottom:1%;}
                #image_style_22_1762425899560 .title .name{width: 100%;white-space:normal;}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_22_1762425899560  ul li{width: 23.5%;}
        #image_style_22_1762425899560  ul li.imgTextLi{margin-bottom:2%;}
        }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_22_1762425899560  ul li{width: 49%;}
        #image_style_22_1762425899560  ul li.imgTextLi{margin-bottom:2%;}
        }
    
#image_style_01_1762425367757 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762425367757 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1762425367757 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1762425367757 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) {
			}

					@media screen and (min-width:1201px) {
				#image_style_01_1762425367757{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1762425367757{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1762425367757{height:auto;} 
			}
			
#image_style_01_1762425993419 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762425993419 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1762425993419 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1762425993419 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) {
			}

					@media screen and (min-width:1201px) {
				#image_style_01_1762425993419{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1762425993419{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1762425993419{height:auto;} 
			}
			
	.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);}
        }
    
        /*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%;}
        }
    
			.copyrightStyle01{text-align: center;color:#999;font-size: 14px;font-family: "Microsoft YaHei",微软雅黑;} 
.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;}
}
        
    