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

/* 音乐播放器容器 - 电脑样式 */
#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_11_1762507986691{width:100%;height:224px;position:absolute;top:0%;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#banner_style_11_1762507986691{height:215px;}}   @media screen and (max-width:640px) {#banner_style_11_1762507986691{width:100%;height:179px;position:absolute;top:0px;left:0%;}}  #banner_style_11_1762507986691 .twoBgSet {border-width:0px;font-size:16px;padding-top:20px;padding-bottom:20px;padding-right:0px;padding-left:0px;background:transparent;} #banner_style_11_1762507986691 .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_1762507986691 .twoBgSet {font-size:16px;}} @media screen and (max-width:640px) { #banner_style_11_1762507986691 .titProSet {font-size:24px;}} #layout_1762507986687{height:224px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1762507986687{height:215px;}}   @media screen and (max-width:640px) {#layout_1762507986687{height:179px;}} #layout_1762507986687 > .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_01_1762428106238{width:100%;font-size:16px;color:#333;line-height:1.75;font-family:Arial;position:absolute;left:0%;top:472px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1762428106238{width:100%;left:0%;top:797px;}}   @media screen and (max-width:640px) {#text_style_01_1762428106238{width:96%;font-size:12px;color:#333;line-height:2;top:916px;left:2%;}}  #text_style_01_1762428106238>.view_contents {line-height:24px;font-weight:bold;font-size:20px;}

 #image_style_01_1762428106240{width:100%;height:584px;position:absolute;left:0%;top:1356.65625px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762428106240{width:100%;left:0%;top:391px;height:375px;}}   @media screen and (max-width:640px) {#image_style_01_1762428106240{width:96%;height:251px;top:654px;left:2%;}} #image_style_01_1762428106240 > .view_contents{overflow:visible;} 

 #image_style_01_1762428410117{width:100%;height:443px;position:absolute;left:0%;top:522.9739379882812px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762428410117{width:100%;height:140px;left:0%;top:840px;}}   @media screen and (max-width:640px) {#image_style_01_1762428410117{width:96%;height:89px;top:951px;left:2%;}} #image_style_01_1762428410117 > .view_contents{overflow:visible;} 

 #text_style_01_1768011349199{width:100%;font-size:16px;color:#333;line-height:1.75;font-family:Arial;position:absolute;left:0%;top:0px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1768011349199{width:100%;}}   @media screen and (max-width:640px) {#text_style_01_1768011349199{width:96%;font-size:12px;color:#333;line-height:2;top:0px;left:0%;}}  #text_style_01_1768011349199>.view_contents {line-height:24px;font-weight:bold;font-size:20px;}

 #image_style_01_1768011404243{width:100%;height:418px;position:absolute;left:0%;top:32.994781494140625px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1768011404243{width:100%;height:140px;}}   @media screen and (max-width:640px) {#image_style_01_1768011404243{width:96%;height:89px;top:0px;left:0%;}} #image_style_01_1768011404243 > .view_contents{overflow:visible;} 

 #text_style_01_1762428343204{width:100%;font-size:16px;color:#333;line-height:1.75;font-family:Arial;position:absolute;left:0%;top:997.9947509765625px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1762428343204{width:96%;}}   @media screen and (max-width:640px) {#text_style_01_1762428343204{width:96%;font-size:12px;color:#333;line-height:2;top:0px;left:0%;}}  #text_style_01_1762428343204>.view_contents {line-height:24px;font-weight:bold;font-size:20px;}

 #image_style_01_1762428106243{width:34.78260869565217%;height:289px;position:absolute;left:0.564638046159897%;top:1072.9556884765625px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762428106243{width:37.883959044368595%;left:0%;top:37.5px;height:233px;}}   @media screen and (max-width:640px) {#image_style_01_1762428106243{width:96%;height:352px;top:39px;left:2%;}} #image_style_01_1762428106243 > .view_contents{overflow:visible;} 

 #text_style_15_1762428158577{width:56.52173913043478%;position:absolute;left:40.877073798627%;top:1072.9556884765625px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_15_1762428158577{width:57.508532423208194%;left:42.491467576791806%;top:37.5px;}}   @media screen and (max-width:640px) {#text_style_15_1762428158577{width:96%;top:405px;left:2%;}} #text_style_15_1762428158577 > .view_contents{overflow:visible;}  #text_style_15_1762428158577 .titleSet {color:#333333;}

 #text_style_01_1768202589266{width:76.43020594965675%;font-size:16px;color:#333;line-height:1.75;font-family:Microsoft YaHei,微软雅黑;position:absolute;left:0.009539361949370708%;top:2005.984375px;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1768202589266{width:96%;}}   @media screen and (max-width:640px) {#text_style_01_1768202589266{width:96%;font-size:12px;color:#333;line-height:2;font-family:Microsoft YaHei,微软雅黑;position:absolute;top:0px;left:0%;}}  #text_style_01_1768202589266>.view_contents {text-align:left;text-decoration:underline;font-weight:bold;}
 #div_a_includeBlock_1762428105976{width:72.8%;height:2257px;box-sizing:border-box;position:absolute;top:72px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1762428105976{box-sizing:border-box;width:62%;left:2%;top:42px;height:1101px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1762428105976{width:100%;height:1159px;box-sizing:border-box;top:50px;left:0%;}} 


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

 #image_style_13_1_1762764665296{width:88.44884488448845%;position:absolute;left:8.25082508250825%;top:177px;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_13_1_1762764665296{left:2%;width:96%;top:119px;}}   @media screen and (max-width:640px) {#image_style_13_1_1762764665296{width:96%;position:absolute;top:0px;left:2%;}} #image_style_13_1_1762764665296 > .view_contents{overflow:visible;}  #image_style_13_1_1762764665296 .btnSet {padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;} #image_style_13_1_1762764665296 .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_1762764665296 .titleSet {line-height:16px;font-size:14px;padding-left:24px;padding-top:4px;color:#ffffff;} #image_style_13_1_1762764665296 .detailSet {font-size:14px;padding-top:2px;line-height:24px;color:#ffffff;padding-left:24px;} #image_style_13_1_1762764665296 .modSet:hover {background:rgba(154,138,120,0.1);} #image_style_13_1_1762764665296 .modSet:hover .titleSet {color:#333333;} #image_style_13_1_1762764665296 .modSet:hover .detailSet {color:#999999;background:transparent;} #image_style_13_1_1762764665296  {background:transparent;} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_13_1_1762764665296 .detailSet {padding-top:2px;font-size:12px;}} @media screen and (min-width:641px) and (max-width:1200px) { #image_style_13_1_1762764665296 .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_1762764665296 .titleSet {font-size:16px;padding-top:0px;}} @media screen and (max-width:640px) { #image_style_13_1_1762764665296 .titleSet {font-size:14px;}} @media screen and (max-width:640px) { #image_style_13_1_1762764665296 .detailSet {font-size:12px;line-height:20px;padding-top:10px;}} @media screen and (max-width:640px) { #image_style_13_1_1762764665296 .modSet {padding-top:20px;padding-bottom:20px;padding-right:20px;padding-left:16px;}}
 #div_a_includeBlock_1762764665142{width:303px;height:341px;box-sizing:border-box;position:absolute;top:315px;left:74.75%;}   @media screen and (min-width:641px) and (max-width:1200px) {#div_a_includeBlock_1762764665142{box-sizing:border-box;height:315px;left:66.49305555555556%;top:270px;}}   @media screen and (max-width:640px) {#div_a_includeBlock_1762764665142{width:100%;height:300px;box-sizing:border-box;top:0px;left:0%;display:none;}} #div_a_includeBlock_1762764665142 > .view_contents{overflow:visible;}  #div_a_includeBlock_1762764665142  {} #div_a_includeBlock_1762764665142 >.a_includeBlockView {box-shadow:#e5e5e5 0px 0px 12px ;background:#1e3a8a;} #layout_diy_1761274500{height:2329px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_diy_1761274500{height:1143px;}}   @media screen and (max-width:640px) {#layout_diy_1761274500{height:1209px;}} #layout_diy_1761274500 > .view_contents{overflow:visible;max-width:1200px;} 
 #layout_1761285545537{height:39px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1761285545537{}}   @media screen and (max-width:640px) {#layout_1761285545537{}} #layout_1761285545537 > .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_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: Arial;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_1762507986691 .main_image .info{width: 1200px;}
		}
		@media screen and (max-width: 1024px){/*ipad*/
		#banner_style_11_1762507986691 .main_image .info{width: 96%;}
		}
		@media screen and (max-width: 768px){/*mobi*/
		#banner_style_11_1762507986691 .main_image .info{width: 75%;}
		}
                    



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

	.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{font-size:0;}
#image_style_01_1762428106240 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762428106240 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1762428106240 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1762428106240 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_1762428106240{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1762428106240{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1762428106240{height:auto;} 
			}
			
#image_style_01_1762428410117 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762428410117 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1762428410117 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1762428410117 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_1762428410117{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1762428410117{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1762428410117{height:auto;} 
			}
			
#image_style_01_1768011404243 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1768011404243 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1768011404243 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1768011404243 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_1768011404243{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1768011404243{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1768011404243{height:auto;} 
			}
			
#image_style_01_1762428106243 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762428106243 .CompatibleImg img{width:100%; height:auto}}@media screen and (max-width:640px) {#image_style_01_1762428106243 .CompatibleImg img{width:100%; height:auto}}	#image_style_01_1762428106243 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_1762428106243{height:auto;}
			}
							@media screen and (min-width:641px) and (max-width:1200px) {
				#image_style_01_1762428106243{height:auto;}
			}
							@media screen and (max-width:640px) {
				#image_style_01_1762428106243{height:auto;} 
			}
			
	
	.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_1762764665296  ul li{width: 100%;}
        #image_style_13_1_1762764665296  ul li.imgTextLi{margin-bottom:6%;}
        #image_style_13_1_1762764665296  ul li.imgTextLi .left{width: 48px;}
        #image_style_13_1_1762764665296  ul li.imgTextLi .cont{width: calc(100% - 48px);}
                @media screen and (max-width: 1024px){/*ipad*/
        #image_style_13_1_1762764665296  ul li{width: 100%;}
        #image_style_13_1_1762764665296  ul li.imgTextLi{margin-bottom:0%;}
        #image_style_13_1_1762764665296  ul li.imgTextLi .left{width: 44px;}
        #image_style_13_1_1762764665296  ul li.imgTextLi .cont{width: calc(100% - 44px);}
                }
        @media screen and (max-width: 768px){/*mobi*/
        #image_style_13_1_1762764665296  ul li{width: 100%;}
        #image_style_13_1_1762764665296  ul li.imgTextLi{margin-bottom:2%;}
        #image_style_13_1_1762764665296 ul li.imgTextLi .left{float: left;}
        #image_style_13_1_1762764665296 ul li.imgTextLi .cont{float: right;text-align: left;}
                    #image_style_13_1_1762764665296  ul li.imgTextLi .left{width: 60px;}
            #image_style_13_1_1762764665296  ul li.imgTextLi .cont{width: calc(100% - 60px);}
                }
        
                    
        
    
	.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;}
}
        
    