/* 通用配置 */
*{padding:0;margin:0;text-decoration: none;list-style:none;box-sizing: border-box;}
.hide{display: none;}
.flex{display: flex;}
.bet{justify-content: space-between;}
.one_row{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.content{height:100%;width: 1200px;min-width: 1200px;margin:0 auto;}
.flex_middle{align-items:center;}
.flex_center{justify-content: center;}
img{width:100%;height:100%;object-fit: cover;}
video{width:100%;height: 100%;object-fit: fill;}
.img,.video{display: block;}
a:hover>img{opacity: 0.8;}
body{width:100%;min-width: 1200px;}
.card{background-color: #fff;box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);padding:40px; }
:root{
    --main:#183a5d;
    --ast:#306aa6;
}
/* 分页 */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.pagination .current a,
.pagination .active a{
    background-color: var(--main);
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus{
    color:var(--main);
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus
{
    border-color: var(--main);
}
.pagination {
    width:100%;
    height: 42px;
    margin: 0 auto;
    display: inline-block;
    margin-top: 40px;
    text-align: right;}
.pagination > li {
    display: inline;
    width: auto;
    height: 30px;}
.pagination > li > a,
.pagination > li > span {
    padding: 6px 12px;
    line-height: 30px;
    border: none;
    background: transparent;}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 3;
    background-color: #eee;
    border-color: #ddd;}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #fff;}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: inherit;
    border-color: #ddd;}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;}
.pagination li a{
    border: 0;
    color: #333;
    font-size: 12px;
    line-height: 30px;
    background-color: transparent;}
.pagination .current a,
.pagination .active a{
    color: #fff;}





















/* 页头 */
header .top{
    height:100px;
    width:100%;
    background-color: #fff;
}
header .bottom{
  background-color: var(--main);
  height:50px;
}
/* logo */
#logo_container{
    padding:10px 0;
    max-width:260px;
    height:100px;
    margin-right: 10px;
}
#logo_container .img{
    width:100%;
    height:100%;
}
#logo_container .img img{
    object-fit: contain;
}
#logo_container .img:hover img{
    opacity: 1;
}
/* 标题 */
header .top .title{
    font-size: 26px;
    color:var(--main);
    height: 80px;
    margin:10px;
    overflow: hidden;
    line-height: 38px;
    max-width: 700px;
}
/*  导航 & 登录 */
#page_nav_container li{
    height: 50px;
    line-height:50px;
    width: 140px;
    text-align: center;
    position: relative;
}
#page_nav_container li>a{
    display: block;
    height: 100%;
    color:#fff;
    font-size: 16px;
    position: relative;
    transition: all 0.5s;
}
#page_nav_container a:hover,#page_nav_container a.active{
   background-color: var(--ast);
}
#page_nav_container #projectDesc i{
    display: inline-block;
    transform: rotate(90deg);
    font-size: 12px;
}
#page_nav_container #projectDesc .project_nav_content{
  position: absolute;
  width: 522px;
  height: 0px;
  background-color: white;
  z-index: 10;
  overflow: hidden;
  display: block;
  transition: height 0.5s;
  border-radius: 0 0 10px 10px;
  border: none;
}
#page_nav_container #projectDesc:hover .project_nav_content{
  height: 110px;
  border: 1px solid #ddd;
  border-top: none;
}
#projectDesc::before{
  content: "";
  width: 0;
  height: 0;
  border-bottom: 10px solid white;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  display: none;
  position: absolute;
  bottom: 0;
  left: 55px;
  z-index: 10;
}
#projectDesc:hover::before {
  display: block;
}
#projectDesc .project_nav_content>a{
  display: block;
  width: 33.33%;
  float: left;
  text-align: center;
  height: 50%;
  font-size: 16px;
  color:#333;
}
#projectDesc .project_nav_content>a:hover{
  background-color: var(--ast);
  color:#fff !important;
}
/* 登录 */
#login_container{
    height:100px;
    margin-left: auto;
}
#login_container .img{
    display: flex;
    height:30px;
    line-height: 30px;
}
#login_container .img img{
    width:30px;
    height:30px;
    border-radius: 50%;
}
#login_container .img .name{
    margin-left: 10px;
    max-width: 200px;
    color:#333;
}
#login_container .img:hover .name{
    color:#ddd;
}
#login_container .login{
    color:#333;
}
/* 页脚 */
footer{
    height:200px;
    background-color: var(--main);
}
footer .content{
    padding-top:45px;
    font-size: 14px;
    color:#fff;
}
footer .link_nav{
    margin-top:15px
}
footer .link_nav li{
    margin-right:50px;
    position: relative;
    height: 21px;
    line-height: 21px;
}
footer .link_nav li:not(:last-child)::before{
    position: absolute;
    content:"";
    display: block;
    width:1px;
    height:14px;
    background-color: #fff;
    right:-25px;
    top:3px;
}
footer .link_nav li a{
    color:#fff;
}
footer .link_nav li a:hover{
    color:#ccc
}
footer p{
    margin-top: 20px;
    margin-right: 20px;
}
footer p a{
    color:#fff
}
footer p a:hover{
    color:#ccc;
}
/* 页身 */
.main{
    width:100%;
    min-height: calc(100vh - 190px - 200px);
    z-index: 1;
}
/* 区域标题 */
.content_title{
    text-align: center;
}
.content_title .zh_name{
  color:#333;
  font-size: 38px;
  margin-bottom: 10px;
}
.content_title .en_name{
  font-size: 14px;
  color:#999;
}

/* 卡片标题 */
.card .card_title{
    width:100%;
    height:50px;
    border-bottom: 2px solid #e5e5e5;
}
.card .card_title .title{
    font-size: 24px;
    color:var(--ast);
    height:50px;
}
.card .card_title i{
    font-size: 24px;
    margin-right: 10px;
}
.card .card_body{
    margin-top: 40px;
}
/* banner 区域 */
.main .banner_area{
    width: 100%;
    height: 400px;
    position: relative;
}
.main .banner_area .img{
  width: 100%;
  height: 100%;
}
.main .banner_area .content{
    position: absolute;
    padding:30px;
    height: unset;
    background-color: #fff;
    left:50%;
    margin-left: -600px;
    z-index: 3;
    top:260px;
    box-shadow: 0px 0px 12px 0px 
		rgba(0, 0, 0, 0.08);
}
/* 视频区域 */
.main .video_area .btns{
  margin-top: 10px;
}
.main .video_area .btns a{
    display: block;
    color:#333;
    font-size: 16px;
    border:1px solid #d2d2d2;
    width: 200px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin:0 5px;
}
.main .video_area .btns a:first-child{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.main .video_area .btns a:last-child{
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.main .video_area .btns a.active,.main .video_area .btns a:hover{
    background-color: var(--ast);
    color:#fff;
}
.main .video_area .video{
    width: 580px;
    height: 364px;
    background-color: #ddd;
}
.main .video_area .empty_video{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 16px;
    background-color: #333;
}
.main .video_area .empty_video img{
    width: 80%;
    height: 50%;
    margin-bottom: 30px;
}
/* 实验信息 */
.main .info_area{
    width: 530px;
    height: 100%;
}
.main .info_area .title{
    font-size: 30px;
    color:#333;
    height: 80px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    margin-bottom: 7px;
}
.main .info_area .info{
    color:#333;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.main .info_area .info li{
    min-width: 15%;
    margin-bottom: 15px;
    margin-left: 20px;
    position: relative;
    margin-right: 20px;
}
.main .info_area .info li::before{
  content:"";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--main);
  border-radius: 50%;
  top: 50%;
  margin-top: -4px;
  left: -15px;
}
.main .info_area .desc{
    color:#333;
    line-height: 26px;
    min-height: 104px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    margin-bottom: 10px;
}
.info_area .btns>div>*{
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color:#fff;
    font-size: 16px;
    transition: all 0.5s;
    border: 1px solid transparent;
    margin-right: 10px;
}
.info_area .btns .enter{
    background-color:#008f59;
    width: 220px;
}
.info_area .btns a:hover{
    background-color: #ddd;
    color:var(--ast);
    border-color:var(--ast)
}
.info_area .btns .declaration{
    width: 120px;
    color:#fff;
    background-color: var(--ast);
}
.info_area .btns{
    flex-wrap: wrap;
    justify-content: space-between;
}
.info_area .btns a{
    width: 237px;
	height: 53px;
	/* background-color: #008f59; */
    border-radius: 26px;
    display: flex;
}
.info_area .btns a i{
    display: inline-block;
    width: 24px;
	height: 24px;
}
.info_area .btns span.nobtn{
    width: 237px;
    height: 53px;
    text-align: center;
    line-height: 53px;
    border-radius: 26px;
    display: inline-block;
}
.info_area .btns a.enter{
    justify-content: center;
    align-items: center;
    /* width: 60%; */
}
.info_area .btns a.enter i{
    background-image: url('../images/enter.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.info_area .btns a.bcdark{
    flex: 1;
	background-color: #183a5d;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.info_area .btns a.bcdark span{
    width: 70px;
    height: 31px;
    display: inline-block;
}
.info_area .btns .bcdark1 i{
    background-image: url('../images/book.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.info_area .btns .bcdark2 i{
    background-image: url('../images/course.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.info_area .btns a.bclight{
    /* width: 10%; */
	height: 32px;
	background-color: #306aa6;
    border-radius: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}
.info_area .btns .bclight1 i{
    background-image: url('../images/book.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.info_area .btns .bclight2 i{
    background-image: url('../images/boo1.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.info_area .btns .bcligh3 i{
    background-image: url('../images/system.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.info_area .btns .bcligh4 i{
    background-image: url('../images/text.png');
    background-repeat: no-repeat;
    background-size: cover;
}

/* 教学团队 */
.main .teacher_area{
    padding: 420px 0 30px 0;
}
.main .teacher_area .teacher_container .teacher{
    display: block;
    width: 260px;
    overflow: hidden;
    transition: all 0.5s;
    margin: 0px 20px;
}

.main .teacher_area .teacher_container .teacher:hover{
    box-shadow: 4px 4px 20px 0px #727171;
    border-radius: 10px;
}
.main .teacher_area .teacher_container .teacher .info{
    width: 100%;
    height:65px;
    line-height: 65px;
    color:#333;
    background-color:#eee;
    padding:0 5px;
    transition: all 0.5s;
}
.main .teacher_area .teacher_container .teacher .info .name{
    margin-right: 10px;
    font-size: 26px;
    max-width: 60%;
}
.main .teacher_area .teacher_container .teacher .info .type{
    font-size: 16px;
    color:#666;
    max-width: 38%;
}
.main .teacher_area .teacher_container{
    margin-top: 80px;
}
.main .teacher_area .teacher_container .teacher .img{
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.main .teacher_area .teacher_container .teacher img{
    transition: transform 0.5s;
}
.main .teacher_area .teacher_container .teacher:hover img{
    opacity: 0.8;
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}
.main .teacher_area .teacher_container .teacher:hover .info{
    background-color: var(--ast);
}
.main .teacher_area .teacher_container .teacher:hover .info .type,.main .teacher_area .teacher_container .teacher:hover .info .name{
    color:#fff;
}
.main .teacher_area .layui-carousel>[carousel-item]>* {
    background-color: unset;
}
.main .teacher_area .layui-carousel{
    background-color: unset;
}
.main .teacher_area .layui-carousel>[carousel-item]:before{
    content:unset;
}
.main .teacher_area .layui-carousel-ind ul{
    background-color: unset;
}
.main .teacher_area .layui-carousel-ind li {
    display: inline-block;
    background-color: #fff;
    border:1px solid var(--ast);
    width: 15px;
    height: 15px;
    border-radius: unset;
    margin: 0 5px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    border-radius: 50%;
}
.main .teacher_area .layui-carousel-ind li.layui-this {
    background-color: var(--ast);
}
.main .teacher_area .layui-carousel-ind{
    top: unset;
    bottom: 25px;
}

/* 公告区域 */
.notice_area{
    padding: 30px 0;
}
.notice_container{
    margin-top: 60px;
    padding:20px;
    background-color: #fff;
    border-radius: 20px;
}
.notice_container .itme{
    float: left;
    width:550px;
    position: relative;
    display: flex;
    height:30px;
    border-bottom: 1px solid #e5e5e5;
    margin-right: 50px;
    margin-bottom: 20px;
}
.notice_container .itme:nth-child(even){
    margin-right: 0;
}
.notice_container .itme::before{
    display: block;
    background-color: var(--ast);
    width:8px;
    height:8px;
    content:"";
    border-radius: 50%;
    position: absolute;
    top:6px;
}
.notice_container .itme h3.title{
    margin-left: 20px;
    font-size: 14px;
    max-width: 440px;
}
.notice_container .itme h3.title a{
    color:#666;
}
.notice_container .itme h3.title a:hover{
    color: var(--ast);
}
.notice_container .itme .date{
    margin-left: auto;
    font-size: 12px;
    color:#999;
    padding-top: 2px;
}
.notice_area .more_notice {
    display: block;
    position: relative;
    width:120px;
    height:36px;
    text-align: center;
    line-height: 36px;
    color:var(--ast);
    border:1px solid var(--ast);
    overflow: hidden;
}
.notice_area .more_notice em{
    color:var(--ast);
}
.notice_area .more_notice:hover{
    color:#fff;
    background-color: var(--ast);
}
.notice_area .more_notice:hover em{
    color:#fff;
}
/* 公告列表页 */
#notice{
    padding:60px 0 80px 0;
}
#notice .card{
    min-height: calc(100vh - 150px - 60px - 200px );
}
#notice .card .item{
    height:35px;
    width:100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}
#notice .card .item::before{
    display: block;
    position: absolute;
    top:6px;
    background-color: var(--ast);
    width: 8px;
    height:8px;
    content:'';
    border-radius: 50%;
}
#notice .card .item h4{
    margin-left: 20px;
    max-width: 800px;
}
#notice .card .item h4 a{
    color:#666
}
#notice .card .item h4 a:hover{
    color:var(--ast);
}
#notice .card .item .info{
    padding-top: 2px;
}
#notice .card .item .date{
    margin-right: 40px;
    font-size: 12px;
    color:#999;
}
#notice .card .item .views{
    margin-left: auto;
    font-size: 12px;
    color:#999;
    width: 90px;
}
#notice .card .item .views{
    margin-left: auto;
    font-size: 12px;
    color:#999
}
#notice .empty .img{
    width: 100%;
    height:600px
}
#notice .empty img{
    object-fit: contain;
}
/* 中心公告详情页 */
#noticeDetails{
    padding:60px 0 80px 0;
}
#noticeDetails .card{
    min-height: calc(100vh - 150px - 60px - 200px );
}
#noticeDetails .card .article_title{
    font-size: 24px;
    color:#333;
    width: 100%;
    text-align: center;
}
#noticeDetails .card .info {
    margin-top: 30px;
    font-size: 12px;
    color:#999;
    text-align: center;
}
#noticeDetails .card .info .date{
    margin-right: 15px;
}
#noticeDetails .card .info .views{
    margin-left: 15px;
}
#noticeDetails .card .details{
    width: 100%;
    margin-top: 40px;
    font-size: 16px;
    color:#333;
}
#noticeDetails .card .details P{
    line-height: 1.5em;
    text-indent: 2em;
    margin: 1em 0;
}
#noticeDetails .card .details img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}
/* 学情分析 */
.main .alasy_area{
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #f8f8f8;
}
.main .alasy_area .canvas{
    margin-top: 60px;
}
.main .alasy_area .canvas .box{
    width: 580px;
    background-color: #fff;
    border:1px solid #dcdcdc;
    padding:30px 30px 10px 30px;
    position: relative;
}
.main .alasy_area .canvas .box .title{
   font-size: 24px;
   color:var(--main);
   padding-left: 40px;
   position: relative;
}
.main .alasy_area .canvas .box .title::before{
    position: absolute;
    content:"";
    display: block;
    width: 24px;
    height: 24px;
    background-color:var(--main);
    left:0px;
    top: 4px;
}
.main .alasy_area .canvas .box .desc{
    position: absolute;
    right: 70px;
    bottom: 100px;
}
.main .alasy_area .canvas .box .desc>div{
    font-size: 14px;
    color:#333;
    margin-bottom: 20px;
}
.main .alasy_area .canvas .box .desc>div>span{
    font-size: 18px;
}
.main .alasy_area .canvas .box .desc .total{
    color:#333;
}
.main .alasy_area .canvas .box .desc .finish{
    color:var(--main);
}
.main .alasy_area .canvas .box .desc .unfinish{
    color:var(--ast);
}
/* 项目描述页面 */
#ProjectDesc{
    min-height: calc(100vh - 100px - 200px);
    padding:60px 0 80px 0;
}
#ProjectDesc .left_box{
    width: 220px;
    background-color: #f8f8f8;
}
#ProjectDesc .left_box .col_nav li{
    height: 60px;
    text-align: center;
    position: relative;
    line-height: 60px;
    border-bottom: 1px solid #ddd;
}
#ProjectDesc .left_box .col_nav li a{
    color:#333;
    font-size: 14px;
}
#ProjectDesc .left_box .col_nav li a:hover{
    color:#999;
}
#ProjectDesc .left_box .col_nav li a em{
    position: absolute;
    right: 50px;
    display: none;
    color:var(--ast);
}
#ProjectDesc .left_box .col_nav li a.active{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color:var(--ast);
    border-left:6px solid;
    border-color: var(--ast);
    padding-right:6px;
}
#ProjectDesc .left_box .col_nav li a.active em{
    display: inline-block;
}


#ProjectDesc .left_box .col_nav li:first-child{
    background-color: var(--main);
    font-size: 22px;
    color:#fff;
}







#ProjectDesc .right_box{
    width: 980px;
}
#ProjectDesc .card{
    width: 100%;
    min-height: calc(100vh - 140px - 300px);
}
#ProjectDesc .card .box{
    width: 85%;
}
#ProjectDesc .card .item .desc{
    margin-top: 40px;
    width: 100%;
    font-size: 16px;
    color:#333;
}
#ProjectDesc .card .item .desc p{
    line-height: 1.5em;
    text-indent: 2em;
    margin: 1em 0;
}
#projectDesc .card .item .desc img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}
#ProjectDesc .card .col_nav{
    width: 10%;
    border-left: 4px solid #eee;
    text-align: right;
    font-size: 16px;
    height: -webkit-fit-content;
    height: fit-content;
    height: -moz-fit-content;
}
#ProjectDesc .card .col_nav li{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
#ProjectDesc .card .col_nav li::before{
    position: absolute;
    content:"";
    display: block;
    border:1px solid #ddd;
    background-color: #a0a0a0;
    width:8px;
    height: 8px;
    border-radius: 50%;
    top:50%;
    left:-6px;
    margin-top: -4px;
}
#ProjectDesc .card .col_nav li:first-child::before,#ProjectDesc .card .col_nav li:last-child::before{
    width: 10px;
    height: 10px;
    background-color: #fff;
    left:-7px;
}
#ProjectDesc .card .col_nav li a.active{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color:var(--ast);
}
#ProjectDesc .card .col_nav li a.active::before{
    position: absolute;
    content:"";
    display: block;
    border:1px solid #ddd;
    background-color: var(--ast);
    width:10px;
    height: 10px;
    border-radius: 50%;
    top:50%;
    left:-7px;
    margin-top: -5px;
}
/* 在线讨论页 */
#discuss{
    padding:60px 0 80px 0;
}
#discuss .tips{
    color:#6c6c6c;
    font-size: 14px;
    line-height: 22px;
}
#discuss .tips .rule_btn{
    color:#333
}
#discuss .tips .rule_btn:hover{
    color:var(--ast)
}
#discuss .theme{
    margin-top: 40px;
    margin-bottom: 40px;
}
#discuss .theme input{
    width:380px;
    height:36px;
    border-radius: 4px;
    border: solid 1px #7f7f7f;
    padding: 5px 10px;
}
#discuss .theme input:focus{padding: 3px 9px;border: 2px solid}
#discuss .theme input:focus{ border-color:var(--ast);}
#discuss .theme button{
    width:140px;
    height:36px;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 20px;
}
#discuss .theme button{
    background-color: var(--ast);
}
#discuss .theme button:hover{
    cursor: pointer;
    opacity: 0.8;
}
/* 阅读规则样式 */
.modal_main_info {
width: 100%;
height: 100%;
padding: 40px; }
.modal_main_info h4 {
display: block;
text-align: center;
font-size: 18px;
font-weight: 800;
color: #333;
padding-bottom: 10px;
border-bottom: 1px solid #ddd; }
.modal_main_info .desc {
margin-top: 10px;
font-size: 14px;
line-height: 30px; }
.modal_main_info .footer {
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #ddd; }
#discuss .theme_contianer .item{
    margin-bottom: 40px;
}
/* 讨论区 讨论列表 */
#theme {
    margin-top: 20px; }
#theme .item {
    padding: 40px 0 10px 0;
    border-bottom: 1px solid #ddd; }
#theme .item .title{
    height: 40px;
    margin-bottom: 10px;
}
#theme .item .summary{
    margin-bottom: 20px;
}
#theme .item .summary>p{
    color:#666;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}
#theme .item .theme_title {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;}
#theme .item .info {
   width: 20%;
text-align: right;}
#theme .item .img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
}
#theme .item .user_name {
    width: 160px;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666; }
#theme .item .date {
    margin-left: auto;
    color: #999; 
    text-align: right;
}
#theme .item .delete {
    margin-right: 30px; }
#theme .item .delete:hover {
    color: #f00; }
#theme .item .reply {
    color: #333; }
#discusspage{
    margin-top: 20px;
    text-align: right;
}
#discusspage a:hover{
    color:#ddd;
}
#discuss #theme .empty, #rating .empty{
    text-align: center;
    color:#999;
}
#rating .empty{
    margin-top: 20px;
}
#discuss #theme .empty .img, #rating .empty .img{
    height: 300px;
    margin-bottom: 20px;
}
#discuss #theme .empty .img img, #rating .empty .img img{
    object-fit: contain;
}
/* 讨论搜索 */
.theme .search_content {position: absolute;width: 380px;border: 1px solid #ddd;min-height: 40px;background-color: #fff;border-radius: 5%;display: none; }
.search_content a {display: block;width: 100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;padding: 10px; }
.serach_info {padding: 10px;color: #999;font-style: italic;position: relative;}
.serach_info .close{position: absolute;right:10px;}
.serach_info .close:hover{cursor: pointer;}
.serach_info .close:hover{
    color:var(--ast);
}
/* 数据加载 动效 */
.openWindow .loading{ margin-top: unset;color: #fff;height: 100%;padding: 0 10px;font-size: 20px;}
.loading { text-align: center;margin-top: 70px; color:#666;}
.loading em { display: inline-block; animation: refresh 1s linear infinite; margin-bottom: 10px; margin-right: 10px;}
@keyframes refresh { 
    from {transform: rotate(0deg); }
    to {transform: rotate(360deg); } 
}
/* 评价页面 */
#rating{
    padding:60px 0 80px 0;
}
#ratingSource {
    font-size: 14px;
    color: #999;
    width: 200px;
    text-align: center;
    position: absolute;
    top: 60px; }
#ratingSource .totalSource {
    font-size: 30px;
    width: 200px;
    text-align: center; 
}
#ratingSource .totalSource{
    color:var(--ast);
}
#ratingSource .totalSource span {
    font-size: 80px; }
#ratingBtn button {
    width: 200px;
    height: 60px;
    border: none;
    color: white;
    font-size: 24px;
    border-radius: 10px; 
    
}
#ratingBtn button{
    background-color: var(--ast);
}
#ratingBtn button:hover {
    cursor: pointer;
    opacity: 0.8; }
#ratingBtn {
    position: absolute;
    right: 40px;
    top: 160px;
    z-index: 9999; }
#rating #echarts_rating{
    position: relative; 
    height: 370px;
    margin-top:20px;
}
#rating_sort {
    width: 100%;
    height: 60px;
    background-color: #f8f8f8; }
#rating_sort .row_nav {
    height: 60px;
    line-height: 60px;
    display: flex; }
#rating_sort .row_nav > * {
    margin-right: 30px; }
#rating_sort span {
    display: block;
    color: #666;
    float: left;
    width: 90px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 16px; }
#rating_sort a {
    display: block;
    color: #999;
    font-size: 16px; }
#rating_sort a:hover,#rating_sort .active{
    color:var(--ast);
}
#rating_sort a.myComment {
    display: block;
    margin: 0 50px 0 auto;
    width: 180px;
    text-align: right; }
.rating_content .rating_item {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-top: 60px;
}
.rating_content .rating_item .avtor {
    width: 10%;
    font-size: 14px;
    flex-direction: column;
    padding-top: 13px;
}
.rating_content .rating_item .avtor .img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden; 
}
.rating_content .rating_item .avtor .name {
    width: 50px;
    margin-top: 10px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.star {
     }
.star span {
    font-size: 16px;
    color: #f89b38;
    display: block;
    height: 43px;
    line-height: 43px; }
.rating_content .rating_item .info {
    width: 90%; }
.rating_content .rating_item .info .rating_star {
    display: flex; }
.rating_content .rating_item .info .rating_star .desc {
    font-size: 14px;
    margin-left: 10px;
    color: #999;
    height: 43px;
    line-height: 43px;
}
.rating_content .rating_item .info .comment {
    color: #666;
    padding-top: 5px;
    width: 95%; }
.rating_content .rating_item .info .comment_img {
    padding-top: 20px; }
.rating_content .rating_item .info .big_img {
    background-color: #f8f8f8;
    margin-top: 40px;
    height: 450px;
    width: 880px;
    display: none;
    padding: 30px 90px;
    position: relative; }
.rating_content .rating_item .info .big_img em.close {
    font-size: 16px;
    color: #b4b3b3;
    position: absolute;
    top: 20px;
    right: 16px; }
.rating_content .rating_item .info .big_img em.next, .rating_content .rating_item .info .big_img em.prev {
    position: absolute;
    font-size: 30px;
    display: block;
    width: 62px;
    height: 62px;
    color: white;
    background-color: #b4b3b3;
    line-height: 62px; }
.rating_content .rating_item .info .big_img em.next {
    top: 194px;
    right: 16px;
    padding-left: 13px; }
.rating_content .rating_item .info .big_img em.prev {
    top: 194px;
    left: 16px;
    text-align: right;
    padding-right: 13px; }
.rating_content .rating_item .info .big_img em.next:hover, .rating_content .rating_item .info .big_img em.prev:hover {
    cursor: pointer;
    background-color: black;
    opacity: 0.6; }
.rating_content .rating_item .info .big_img em.close:hover {
    cursor: pointer;}
.rating_content .rating_item .info .big_img img {
    height: 100%;
    object-fit: contain;
    width: 100%;}
.rating_content .rating_item .info .comment_img .item {
    float: left;
    margin-right:10px;}
.rating_content .rating_item .info .comment_img .item:nth-child(5n+5){
    margin-right: 0;}
.rating_content .rating_item .info .comment_img .item .img {
display: block;
width: 188px;
height: 122px;
border: 1px solid #ccc;
padding: 10px; }
.rating_content .rating_item .info .status {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}
.rating_content .rating_item .info .status em {
font-size: 12px; }
.rating_content .rating_item .info .status a {
color: #999; }
.rating_content .rating_item .info .status a.active, .rating_content .rating_item .info .status a:hover{
    color:var(--ast);
}

.openWindow {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: none;
z-index: 99999;
background-color: rgba(0, 0, 0, 0.8); }
.comment_container {
position: relative;
width: 1065px;
margin: 200px auto;
height: 630px;
background-color: white;
padding: 40px; }
.comment_container > div {
display: flex;
margin-bottom: 20px; }
.comment_container .label {
width: 120px;
font-size: 20px;
text-align: right; }
.comment_container .requrie::before {
content: "*";
display: inline;
color: red;
margin-right: 10px; }
.comment_container > div > ul > li {
color: #666;
font-size: 16px; }
.comment_container > div > ul {
margin-top: -10px; }
.comment_container textarea {
width: 770px;
height: 140px;
padding: 10px; }
.comment_container .upload {
display: block;
width: 100px;
height: 60px;
text-align: center;
line-height: 60px;
font-size: 20px;
color: white;
background-color: #999; }
.comment_container .upload:hover {
opacity: 0.5; }
.comment_container #uploadTitle, .comment_container #my_uploadTitle {
line-height: 60px; }
.comment_container #imgLoad, .comment_container #my_imgLoad {
height: 60px;
padding-left: 10px;
position: relative; }
.comment_container #imgLoad > div, .comment_container #my_imgLoad > div {
float: left;
position: relative; }
.comment_container #imgLoad_count, .comment_container #my_imgLoad_count {
color: #999;
height: 60px;
line-height: 60px; }
.comment_container #imgLoad .uploadImg, .comment_container #my_imgLoad .uploadImg {
width: 100px;
height: 60px;
background-color: black;
margin-right: 10px; }
.comment_container #imgLoad em, .comment_container #my_imgLoad em {
display: none;
font-size: 20px;
width: 30px;
height: 30px;
position: absolute;
top: 18px;
left: 38px;
color: white; }
.comment_container #imgLoad > div:hover em, .comment_container #my_imgLoad > div:hover em {
cursor: pointer;
display: block; }
.comment_container .remark {
color: #999;
font-size: 14px;
margin: -10px 0 10px 120px; }
.comment_container .commit {
display: block;
width: 180px;
height: 60px;
color: white;
font-size: 24px;
margin: 20px 0 10px 120px;
border: none;
text-align: center;
line-height: 60px;
border-radius: 5px; 
background-color: var(--ast)
}
.comment_container .commit:hover {
opacity: 0.8; }
.openWindow em.close {
font-size: 30px;
color: #666;
position: absolute;
top: 20px;
right: 16px; 
}
.openWindow em.close:hover {
cursor: pointer; 
color: var(--ast)}
.readMore_title {
padding: 30px;
font-size: 18px; }
.readMore_content {
margin-left: 30px;
padding: 0 20px 0 0;
font-size: 14px;
color: #666;
width: 520px;
height: 388px;
overflow-y: scroll; }
.readMore_exit {
display: block;
width: 120px;
height: 40px;
background: #0058ac;
color: white;
border: none;
margin: 50px auto; }
.readMore_exit:hover {
cursor: pointer; }
.sort_container {
    position: relative; }
.sort_container:hover .sort_content {
display: block; }
.sort_content {
position: absolute;
bottom: -117px;
display: none;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
padding: 5px;
left: -10px;
width: 120%;
height: 134px;
z-index: 10; }
.sort_content:hover {
display: block; }
.sort_content a {
float: none; }
#report_view .layui-form-label{
    width: 120px;
    padding:9px 0;
    text-align: left;
}
#report_view .comment_container {
    height: 300px;
}
#report_view #commit_report{
    display: block;
    margin-top: 10px;
    color: #fff;
    width: max-content;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    border-radius: 5px;
    transition: all 0.5s;
}
#report_view #commit_report{
    background-color: var(--ast);
}
#report_view #commit_report:hover {
    background-color: #fff !important;
    border:1px solid;
}
#report_view #commit_report:hover {
    color: var(--ast);
    border-color: var(--ast);
}
.layui-form-radio>i:hover,.layui-form-radioed>i{
    color:var(--ast);
}
/* 实验指南 */
#guide .content .selectArea {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;  }
#guide .content .selectArea a {
    display: block;
    width: 110px;
    height: 30px;
    color: white;
    border: 1px solid white;
    text-align: center;
    line-height: 30px;
    margin: 15px 20px 0 0; 
}
#guide .content .selectArea a:hover {
    cursor: pointer;
    color: #ccc;
    border: 1px solid #ccc; 
}
#guide .select {
    display: flex;
    margin-left: 40px;
}
#guide .selectArea form {
    width: 500px; 
}
#guide .selectArea form .layui-form-item {
    width: 550px;
    height: 60px;
    margin: 0; 
}
#guide .selectArea form .layui-form-item .layui-form-label {
    float: left;
    display: block;
    padding: 0 0 0 0px;
    width: 270px;
    font-weight: 400;
    line-height: 60px;
    text-align: right;
    color: #333;
    height: 60px; 
}
#guide .selectArea form .layui-form-item .layui-input-block {
    margin-left: 270px;
    padding-top: 11px;
    width: 300px; 
}
#guide .guide_body {
    padding: 40px 20px; 
}
#guide .guide_body .desc h3 {
    color: #333;
    font-weight: 800;
    font-size: 24px;
    text-align: center; 
}
#guide .guide_body .desc p {
    margin-top: 40px;
    color: #666;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 20px; 
}
#guide .guide_body .stepContainer {
    margin-top: 50px; 
}
#guide .guide_body .stepContainer .step {
    margin-bottom: 30px; 
}
#guide .guide_body .stepContainer .step .step_title {
    color: #666;
    font-size: 18px;
    font-weight: 800;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px; 
}
#guide .guide_body .stepContainer .step .step_desc {
    padding-left: 40px;
    margin: 25px 25px 0 25px;
    border-left: 1px dashed #ddd; 
}
#guide .guide_body .stepContainer .step .step_desc .step_item {
    padding-bottom: 20px;
    position: relative; 
}
#guide .guide_body .stepContainer .step .step_desc .step_item h4 {
    font-size: 16px;
    color: #000014; 
}
#guide .guide_body .stepContainer .step .step_desc .step_item p {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 20px; 
}
#guide .guide_body .stepContainer .step .end {
    font-size: 12px;
    color: #999;
    width: 50px;
    text-align: center;
 }
#guide .guide_body .stepContainer .step .step_desc .step_item .number {
    display: block;
    color: white;
    width: 21px;
    height: 21px;
    text-align: center;
    line-height: 21px;
    position: absolute;
    top: 0;
    left: -51px;
    z-index: 2; 
}
#guide .guide_body .stepContainer .step .step_desc .step_item::after {
    content: "";
    display: block;
    background-color: #fff;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 5px;
    left: -52px;
    transform: rotate(45deg);
    border:1px solid
}
#guide img{
    margin-bottom: 15px;
}
#guide .guide_body .stepContainer .step .step_desc .step_item::after{
   border-color: var(--ast);
}
#guide .guide_body .stepContainer .step .step_desc .step_item::before{
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 0px;
    left: -51px;
    z-index: 2;
    transform: rotate(45deg);
}
#guide .selectArea form .layui-form-item .layui-input-block .layui-this,
#guide .guide_body .stepContainer .step .step_desc .step_item::before{
    background-color: var(--ast);
}
#guide ul.guide_class li:first-child{
    padding-right: 0;
    padding-left: 17px;
    text-align: center;
}
#guide ul.guide_class li:last-child{
    padding-left: 4px;
    text-align: center;
}
#guide ul.guide_class li>a{
    width: 200px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 19px 0 0 19px;
    background-color: #fff;
    border: solid 1px #999999;
    color: #000;
}
#guide ul.guide_class li>a.guideBook{
    border-radius: 0px 19px 19px 0px;
    }
#guide ul.guide_class li>a.active{
    background-color: #3b5588;
    color: #fff;
}

#guide .card{
    /* background-color: #f0f5fc; */
    min-height: calc(100vh - 150px - 200px);
}
#guide .card{
    position: relative;
}
#guide .card .serachCount{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
#guide .card .serachCount i{
    width: 76px;
    height: 87px;
    display: inline-block;
    background-image: url('../images/guideNoCount.png');
    background-size: contain;
    background-repeat: no-repeat;
}
#guide .card .serachCount .noCount{
    display: inline-block;
    color: #909090;
    font-size: 22px;
}
