/*自定义属性 颜色*/
:root {
    --web-theme-color: 8, 54, 78;
    /* 网站主题色 #08364E; */
    --web-bgcolor-color: 255,250,240;
    /* 网站背景色 #EDE3CC; */
    --web-logo-color: 255, 189, 128;
    /* 网站标志色 #FFBD80; */
    --web-disclaimer-color: 94, 124, 139;
    /* 网站免责声明色 #5E7C8B; */
    --web-prompt-color: 102,102,102;
    /* 网站提示色 #666666; 
    --link-hover-color: 255, 38, 38;*/
    /* 链接悬停色 #FF2626; */
    --button-hover-color: 255, 189, 128;
    /* 按钮悬停色 #FFBD80; */
    --option-one-bgcolor: 195, 200, 190;
    /* 选项一背景色 #C3C8BE; */
    /*--ranking-one-bgcolor: 179, 109, 97;*/

    --common-white-color: 255, 255, 255;
    /* 常用白色 #FFFFFF; */
    --common-black-color: 0, 0, 0;
    /* 常用黑色 #000000; */

    --system-warning-color: 192, 0, 0;
    /* 系统警示色 #C00000; */

    --index-coursecolumn-color: 88, 28, 18;
    /* 首页课程表栏目色 #581C12; */
    --index-coursetitle-color: 162, 81, 60;
    /* 首页课程表标题色 #A2513C; */
    --search-frame-bgcolor: 197, 70, 74;
    /* 搜索框背景色 #C5464A; */
}

/*全局*/
* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent
}

/*网页*/
html {
    width: 100%;
    height: 100%;
    font-size: 10px;
    /* 设置 rem 单位比例 */
    background-color: rgba(var(--web-bgcolor-color), 1);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased
}

body {
    width: 100%;
    max-width: 2400px;
    color: rgba(var(--web-theme-color), 1);
    text-align: left;
    font-size: 1.3rem;
    padding: 0;
    margin: 0 auto;
}

/* 超链接 样式*/
a {
    cursor: pointer;
    text-decoration: none;
    color: rgba(var(--web-theme-color), 1);
    color: var(--color);
    transition: color 0.3s ease-in-out;
    /* 过渡效果 */
    -webkit-transition: color 0.3s ease-in-out;
    /* Safari */
}

/* 超链接 悬浮 焦点样式*/
a:hover,
a:focus {
    text-decoration: none;
    color: rgba(var(--link-hover-color), 1);
}

/* 视频节目列表 悬浮样式*/
.vlist_style {
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    /* 过渡效果 */
    -webkit-transition: box-shadow 0.3s ease-in-out;
    /* Safari */
}

.vlist_style:hover {
    box-shadow: 0rem 0.2rem 0.6rem rgba(var(--web-theme-color), 1);
}

/* 按钮 悬浮样式*/
.button_style {
    color: rgba(var(--web-theme-color), 1);
    font-weight: bold;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(var(--web-theme-color), 1);
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    /* 过渡效果 */
    -webkit-transition: color 0.3s ease-in-out;
    /* Safari */
    transition: background-color 0.3s ease-in-out;
    /* 过渡效果 */
    -webkit-transition: background-color 0.3s ease-in-out;
    /* Safari */
    transition: box-shadow 0.3s ease-in-out;
    /* 过渡效果 */
    -webkit-transition: box-shadow 0.3s ease-in-out;
    /* Safari */
}

.button_style:hover {
    color: rgba(var(--common-white-color), 1);
    background-color: rgba(var(--button-hover-color), 1);
    box-shadow: 0rem 0.2rem 0.6rem rgba(var(--web-theme-color), 1);
}

.button_style_yes,
.button_style_yes:hover {
    color: rgba(var(--common-white-color), 1);
    font-weight: bold;
    background-color: rgba(var(--web-theme-color), 1);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(var(--web-theme-color), 1);
    overflow: hidden;
}

/* 按钮透明度 */
.button_opacity_05 {
    opacity: 0.5;
}

/* 导航栏 */
#header {
    width: 100%;
    height: 5.2rem;
    max-width: 2400px;
    padding: 0.5rem 0;
    margin: 0px auto;
    left: 0px;
    top: 0px;
    z-index: 999;
}

.header_default {
    position: relative;
    background-color: rgba(var(--common-white-color), 1);
    box-shadow: 0px 0px 0.6rem rgba(var(--web-theme-color), 1);
}

.header_float {
    position: fixed;
    background: rgba(var(--common-white-color), 0) linear-gradient(rgba(var(--common-white-color), 0.6), rgba(var(--common-white-color), 0));
    box-shadow: rgba(var(--web-theme-color), 0) 0px 0px 0.6rem;
}

#header span {
    text-decoration: none;
    color: rgba(var(--web-theme-color), 1);
}

#header span:hover {
    text-decoration: none;
    font-weight: bold;
    color: rgba(var(--web-theme-color), 1);
}

#header div.header_nav {
    height: 5rem;
}

#head_occupy {
    width: 100%;
    height: 6rem;
    margin: 0;
    padding: 0;
}

/* 导航栏按钮 */
.header_navbtn {
    float: right;
    margin-top: 0.7rem;
    border: 0;
    width: auto;
    height: 4rem;
    margin-right: 12.5%;
}

#btn_menu {
    cursor: pointer;
    float: right;
    display: none;
    width: 3rem;
    height: 3rem;
    margin-top: 0.5rem;
}

#btn_lang {
    cursor: pointer;
    float: left;
    width: 3rem;
    height: 3rem;
    margin-top: 0.5rem;
}

#btn_search {
    cursor: pointer;
    float: left;
    width: 3rem;
    height: 3rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

/* 文字Logo */
#header span.logo {
    float: left;
    color: rgb(78 75 75);
    font-weight: bold;
    font-size: 2.9rem;
    line-height: 5rem;
    margin-left: 12.5%;
    text-shadow: 0rem 0.2rem 0.4rem rgb(142 143 137);
}

#header ul.header_navbar {
    list-style: none;
    float: right;
    line-height: 5rem;
    margin-right: 1rem;
}

.nav-barli-no {
    float: left;
    font-size: 2.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
}

.nav-barli-yes {
    float: left;
    font-weight: bold;
    font-size: 2.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    /*border-bottom: 0.3rem solid rgba(var(--web-theme-color), 0.8);*/
    padding-bottom: 0;
}

.nav-barli-yes:hover {
	cursor: pointer;
}

/* 正文内容 */
#container {
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    margin-left: 10%;
    margin-right: 10%;
    overflow: hidden;
}

/* 页脚栏*/
.footer {
    width: 98%;
    background-color: rgba(var(--common-white-color), 1);
    padding: 1rem 1% 3.5rem 1%;
    text-align: center;
    color: rgba(var(--web-theme-color), 1);
}

.footer_fixed {
    position: fixed;
    bottom: 0;
}

.footer_place {
    width: 100%;
    height: 0px;
    overflow: hidden;
    display: none;
}

.footer .Return {
    height: 1rem;
    position: relative;
    top: -3rem;
}

.footer .Return #btn_top {
    cursor: pointer;
    width: 3.6rem;
    height: 3.6rem;
    visibility: hidden;
}

.footer .Datetime {
    height: 1.6rem;
    position: relative;
    font-size: 1.5rem;
    top: -0.6rem;
}

.footer .Links {
    font-size: 1.6rem;
}

.footer .Links .first {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.footer .Links .plus+.plus:before {
    padding-left: 0.5rem;
    content: " | ";
    padding-right: 0.5rem;
    opacity: 0.4;
}

/*免责声明*/
.footer .Disclaimers {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: rgba(var(--web-disclaimer-color), 1);
}

/* 当可视区域小于1600px */
@media screen and (max-width: 1600px) {
    html {
        font-size: 9.33px;
    }

    body {
        font-size: 1.40rem;
    }
}

/* 当可视区域小于1280px */
@media screen and (max-width: 1280px) {
    html {
        font-size: 8.66px;
    }

    body {
        font-size: 1.50rem;
    }

    #header span.logo {
        margin-left: 7.5%;
    }

    #header .header_navbtn {
        margin-right: 7.5%;
    }

    #header ul.header_navbar {
        margin-right: 1rem;
    }

    #container {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
}

/* 当可视区域小于1080px */
@media screen and (max-width: 1080px) {
    html {
        font-size: 8px;
    }

    body {
        font-size: 1.63rem;
    }

    #header {
        padding: 0.5rem 0;
        height: 5rem;
        overflow: hidden;
    }

    #header span.logo {
        line-height: 5rem;
        margin-left: 5%;
    }

    #header .header_navbtn {
        margin-right: 5%;
    }

    #btn_menu {
        display: block;
        padding-left: 1rem;
    }

    #header ul.header_navbar {
        background-color: rgba(var(--common-white-color), 1);
        margin-top: 1.5rem;
        /*border-top: solid 1px rgba(var(--web-theme-color), 1);*/
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    #header ul.header_navbar li {
        float: none;
        padding: 0 1rem; 
	}
	#header ul.header_navbar li:hover {  
		cursor: pointer;
	}

    #container {
        width: 100%;
        margin: 0 0 1rem 0;
    }
}


.website_notice_rollcolumn {
    width: 100%;
    height: 3rem;
    background: linear-gradient(to top, rgba(var(--common-white-color), 0.8), rgba(var(--common-white-color), 0));
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.website_notice_rollcolumn .website_notice_rollcolumn_content {
    margin-top: 1rem;
    line-height: 2rem;
    display: inline-block;
    /* 文本块级元素转为内联块级 */
    white-space: nowrap;
    /* 不允许文本换行 */
    font-size: 1.6rem;
    /* 字体大小 */
    margin-right: 2rem;
    /* 右侧空隙，用于控制滚动速度 */
    animation: textScroll 20s linear infinite;
    /* 文本滚动动画 */
}

@keyframes textScroll {

    /* 初始状态 */
    0% {
        transform: translateX(100%);
    }

    /* 最终状态 */
    100% {
        transform: translateX(-100%);
    }
}

#spread_imagetext {
    cursor: pointer;
    position: relative;
    display: none;
}

#spread_imagetext_close {
    cursor: pointer;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.6rem;
    height: 1.6rem;
}

.split_line_one {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(var(--web-theme-color), 0.3);
}

.title_block_one {
    width: 100%;
    height: 5rem;
    margin-top: 5vh;
    color: rgb(86 86 58);
    line-height: 5rem;
    white-space: nowrap;
    overflow: hidden;
}

.title_block_one .title {
    font-size: 2.2rem;
    font-weight: bold;
    padding: 0 1.5rem;
}

.title_block_one .tips {
    color: rgba(var(--web-prompt-color), 1);
    font-size: 1.5rem;
    padding: 0 0.5rem;
}

.title_block_one .more {
    font-size: 2rem;
    font-weight: bold;
    height: 3.5rem;
    line-height: 3.5rem;
    float: right;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-right: 0.6rem;
}

.title_block_one .more img {
    float: right;
    width: 3.2rem;
    height: 3.2rem;
    margin-top: 0.2rem;
}

@media screen and (max-width: 468px) {
    .title_block_one {
        margin-top: 0;
    }
}

.title_block_two {
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    white-space: nowrap;
    overflow: hidden;
}

.title_block_two span {
    font-size: 2rem;
    padding-right: 0.6rem;
}

.title_block_two .title {
    font-size: 2.2rem;
    font-weight: bold;
    padding-left: 0.6rem;
    padding-right: 0rem;
}

.title_block_two .title_block_two_yes {
    font-size: 2rem;
    font-weight: bold;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    border-bottom: 0.3rem solid rgba(var(--web-theme-color), 0.8);
    padding-bottom: 0.3rem;

}

.title_block_two .more {
    font-size: 2rem;
    font-weight: bold;
    height: 3.5rem;
    line-height: 3.5rem;
    float: right;
    margin-top: 1rem;
    padding-right: 0.6rem;
}

.title_block_two .more img {
    float: right;
    width: 3.2rem;
    height: 3.2rem;
    margin-top: 0.2rem;
}

.title_block_two .switchlist {
    font-size: 2rem;
    font-weight: bold;
    height: 3.5rem;
    line-height: 3.5rem;
    float: right;
    margin-top: 1rem;
    padding-right: 0.6rem;
}

.title_block_two .switchlist img {
    float: right;
    width: 3rem;
    height: 3rem;
}

.position_one_route {
    width: 100%;
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding: 1rem 1rem;
    box-sizing: border-box;
}

.option_one_list {
    font-size: 1.8rem;
    line-height: 5rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.option_one_list .option_term_name {
    padding-left: 1rem;
    padding-right: 1rem;
    color: rgba(var(--web-theme-color), 1);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background-color: rgba(var(--option-one-bgcolor), 1);
    margin-bottom: 0.6rem;
    border-radius: 0.6rem;
}

.option_one_list .option_term_yes {
    color: rgba(var(--common-white-color), 1);
    background-color: rgba(var(--web-theme-color), 1);
    border-radius: 0.6rem;
}

.option_two_column {
    width: 100%;
    height: 5rem;
    font-size: 1.8rem;
    padding: 0.2rem 0;
    padding-left: 0.5rem;
    margin: 0.1rem 0;
    box-sizing: border-box;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.option_two_column::-webkit-scrollbar {
    display: none;
    /* Chrome Safari */
}

.option_two_column a {
    display: inline-block;
    margin-right: 0.5rem;
}

.option_two_column .option_term_name {
    line-height: 4.6rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: rgba(var(--web-theme-color), 1);
    white-space: nowrap;
    overflow: hidden;
    border-radius: 0.6rem;
}

.option_two_column .option_term_yes {
    color: rgba(var(--common-white-color), 1);
    background-color: rgba(var(--web-theme-color), 1);
    border-radius: 0.6rem;
}

/* 选项菜单 样式二 */


.video_one_list {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    overflow: hidden;
}

.video_one_item {
    float: left;
    width: 24%;
    text-align: center;
    margin: 0.5% 0.5%;
    overflow: hidden;
    border-radius: 0.6rem;
}

.video_one_item .videoi_one_img {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.video_one_item .videoi_one_img .one_img_phone {
	position: absolute;
    z-index: 100;
    transition: transform 1s ease; /* 平滑过渡效果 */ 
}

.video_one_item .videoi_one_img .one_img_phone:hover {  
  	transform: scale(1.000);  
	cursor: pointer;
}



/** index.jsp*/
.overlay {  
  position: fixed;  
  top: 0;   
  left: 0;   
  height: 100%;  
  width: 100%;  
  opacity: 0;  
  transition: opacity 0.5s ease;  
  background-color: rgba(0,0,0,0.93);  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  pointer-events: none; /* 防止蒙版阻挡点击事件 */
  z-index: -1;
}  
  
.overlay.active {  
  opacity: 1;
  z-index: 9999;
  pointer-events: auto; /* 当蒙版可见时允许点击事件 */  
}
.overlay .thumb {
	width: 300px;
}
.overlay .thumb:hover{
	cursor: pointer;
} 

#app_detail {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	position: fixed;
    z-index: 100;
    left: 10%;
    top: 7%;
    width: 20vw;
    height:85vh;    
}

#app_detail #appvender{
	border: 1px solid gray;
    color: lightgrey;
    background-color: rgb(54, 54, 54);
    border-radius: 1vw;
    padding:1vw;
    line-height: 4.2vh;
    font-size: 2.2vh;
    height:5vh;
}

#app_detail #appvender a{
	color:lightgrey;
}

#app_detail #appdesc{
	border: 1px solid gray;
    color: lightgrey;
    background-color: rgb(54, 54, 54);
    border-radius: 1vw;
    padding:1vw;
    line-height: 4.2vh;
    font-size: 2.2vh;
    height:22vh;
    overflow-y: auto;
}
#app_detail #appfunc{
	border: 1px solid gray;
    color: lightgrey;
    background-color: rgb(54, 54, 54);
    border-radius: 1vw;
    padding:1vw;
    line-height: 4.2vh;
    font-size: 2.2vh;
    height:22vh;
    overflow-y: auto;
}

#app_detail #applink{
	border: 1px solid gray;
    color: lightgrey;
    background-color: rgb(54, 54, 54);
    border-radius: 1vw;
    padding:1vw;
    line-height: 4.5vh;
    font-size: 2.5vh;
    height:5vh;
}

#app_detail #applink .apk:hover{
	cursor: pointer;
}


.video_one_item .videoi_one_img .lazyloaded {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}

.video_one_item .videoi_one_img .videoi_one_time {
    color: rgba(var(--common-white-color), 0.8);
    text-shadow: 1px 2px 3px rgba(var(--web-theme-color), 0.8);
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.63rem;
    white-space: nowrap;
    overflow: hidden;
}

.video_one_item .videoi_one_img .videoi_one_num {
    opacity: 0.6;
    filter: alpha(opacity=60);
    color: rgba(var(--common-white-color), 1);
    background: rgba(var(--web-theme-color), 0.6);
    padding: 0.1rem 0.5rem;
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    font-size: 1.63rem;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 0.6rem;
}

.video_one_item .videoi_one_info {
	height: 5vh;
    line-height: 5vh;
    position: relative;
    padding: 0.6rem 0.5rem 0.5rem 0.5rem;
}

.video_one_item .videoi_one_info .app_function {
	margin-top: 2vw;
}

.video_one_item .videoi_one_info span {
    font-size: 1.63rem;
    line-height: 2.445rem;
    display: inline-block;
    overflow: hidden;
}

.video_one_item .videoi_one_info .videoi_one_name:hover {
	cursor: pointer;
}

.video_one_item .videoi_one_info .videoi_one_name {
    width: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    color: rgb(134, 134, 134);
    text-overflow: ellipsis;
    text-shadow: 1px 2px 3px rgba(var(--common-white-color), 0.8);
}

.video_one_item .videoi_one_info .videoi_one_type {
    display: none;
    width: 88%;
    color: rgba(var(--web-theme-color), 0.4);
    text-align: left;
    position: absolute;
    margin: 4%;
    margin-top: 4%;
    flex-wrap: wrap;
}

.video_one_item .videoi_one_info .app_vender {
    display: none;
    width: 78%;
    color: rgba(var(--web-theme-color), 0.4);
    text-align: left;
    position: absolute;
    margin: 4%;
    margin-top: 54%;
    flex-wrap: wrap;
}

.video_one_item .videoi_one_info .app_link {
    display: none;
    width: 78%;
    color: rgba(var(--web-theme-color), 0.4);
    text-align: left;
    position: absolute;
    margin: 4%;
    margin-top: 65%;
    flex-wrap: wrap;
    font-weight: bold;
}

@media screen and (max-width: 1280px) {
    .video_one_item {
        width: 32.33%;
    }
}

@media screen and (max-width: 868px) {
    .video_one_item {
        width: 48%;
        margin: 1% 1%;
    }
    #app_detail {
		display: none;
	}
}


@media screen and (max-width: 468px) {
    .video_one_item {
        width: 96%;
        margin: 1% 2%;
        position: relative;
        min-height: calc(2.745rem * 3);
        border: 1px solid #c6c4c0;
    }

    .video_one_item .videoi_one_img {
        float: left;
        width: 40%;
        min-height: calc(2.745rem * 3);
    }

    .video_one_item .videoi_one_info {
        float: left;
        width: calc(60% - 1rem);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .video_one_item .videoi_one_info .videoi_one_name {
        font-size: 1.83rem;
        white-space: normal;
        line-height: 2.745rem;
        overflow: hidden;
        /*溢出内容隐藏*/
        text-overflow: ellipsis;
        /*文本溢出部分用省略号表示*/
        display: -webkit-box;
        /*特别显示模式*/
        -webkit-line-clamp: 2;
        /*行数*/
        line-clamp: 2;
        -webkit-box-orient: vertical;
        /*盒子中内容竖直排列*/
    }

    .video_one_item .videoi_one_info .videoi_one_type {
        display: block;
    }
    .video_one_item .videoi_one_info .app_vender {
        display: block;
    }
    .video_one_item .videoi_one_info .app_link {
        display: block;
        border: 1px solid #dadad9;
        width: 60%;
        height: 3rem;
        text-align: center;
        line-height: 3rem;
        border-radius: 1rem;
        background-color: white;
    }
    
    #app_detail {
		display: none;
	}
	
	.video_one_item .videoi_one_info .app_function {
		display: none;
	}
	
}


.video_ranking_one {
    display: inline-block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.vranking_one_table {
    float: left;
    width: 33.3333%;
    margin-bottom: 2rem;
}

.vranking_one_table .vranking_one_list {
    width: 94%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 1.5%;
    padding-right: 1.5%;
    border-radius: 0.6rem;
    background-color: #f6ebd2;
}

.vranking_one_table .vranking_one_list .vranking_one_item {
    height: 4rem;
    border-radius: 0.6rem;
    margin-bottom: 0.6rem;
}

.vranking_one_table .vranking_one_list .vranking_one_item .vranking_one_name {
    display: inline-block;
    width: 96%;
    line-height: 4rem;
    padding-left: 2%;
    padding-right: 2%;
    text-align: left;
    font-size: 1.83rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #8e8f8b;
}

.vranking_one_table .vranking_one_list .vranking_one_item .vranking_one_name .vranking_one_num {
    opacity: 0.6;
    font-size: 1.63rem;
    font-weight: lighter;
}



@media screen and (max-width: 868px) {
    .vranking_one_table {
        float: left;
        width: 50%;
    }
}

@media screen and (max-width: 468px) {
    .vranking_one_table {
        float: none;
        width: 100%;
    }
}




