标签 内容 内容长度 优化建议
网页标题(Title) 长沙电力职业技术学院 10 个字符 标题字符数量在合理范围
网页关键词(KeyWords) 关键字,获取失败 0 个字符 关键字数在合理范围
内容描述(Description) 内容描述,获取失败 0 个字符 描述内容长度在合理范围
页面 http://www.cseptc.net/ 检测结果
检测时间 2024-12-23 21:01:01
服务器IP 220.168.57.3
返回状态码 200
网页返回HEAD信息 HTTP/1.1 200 OK
Server: nginx
Date: Mon, 23 Dec 2024 13:01:01 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
X-XSS-Protection: 1; mode=block
Content-Encoding: gzip

网页代码查看

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>

<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="renderer" content="webkit" />


<!--<link rel="stylesheet" href="${prefix('v3/css/bootstrap.min.css')}" type="text/css" />-->
<!--<link rel="stylesheet" href="${prefix('v3/css/animate.css')}" type="text/css" /> 
<link rel="stylesheet" href="${prefix('v3/css/font-awesome.min.css')}" type="text/css" />
<link rel="stylesheet" href="${prefix('v3/css/font-opensans.css')}" type="text/css" /> 
<link rel="stylesheet" href="${prefix('v3/css/v3-framework.css')}" type="text/css" />
<link rel="stylesheet" href="${prefix('v3/css/v3-common.css')}" type="text/css" />
<link rel="stylesheet" href="${prefix('v3/css/v3-site.css')}" type="text/css" />-->
<link rel="stylesheet" href="/css/css.css"/>
<script type="text/javascript" src="/js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="/js/script.js"></script>
<script>
	var frontAppContext = '/zcms/';
	var siteID = "4";
</script>


<script src="/js/zcms_require.js" contextpath="/zcms/"></script>
<script>
	if (isIE && ieVersion < 9 || isIE8) {
		importJS('../v3/js/ie/html5shiv.js')
		if (!isIE6 && !isIE7) {
			importJS('../v3/js/ie/respond.min.js')
		}
		importJS('../v3/js/ie/excanvas.js')
	}
	if (/MSIE (6|7)\.0/.test(navigator.userAgent)) {
		importCSS('../v3/css/bootstrap-ie6.css')
		importJS('../v3/js/ie/bootstrap-ie6.js')
	}
	if (isIE && ieVersion < 9 || isIE8) {
		importCSS('../v3/css/v3-site-ie.css')
	}
	if (inTouch) {
		importJS('../v3/js/hammer.min.js')
	}
	importJS('../v3/js/responsiveslides.js')
</script>
  
  
  
  
 <script src="/js/jquery-1.11.3.min.js"></script>
 <meta name="keywords" content=""/>
  <meta name="description" content=""/>
  <script type="text/javascript" src="/js/script_sy_xylb.js"></script>
  <!--手机打开PC端跳手机端开始-->
 <script type="text/javascript">
    try {
        var urlhash = window.location.hash;
        if (!urlhash.match("fromapp")) {
            if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {
                window.location = "http://wap.cseptc.net/";
            }
        }
    }
    catch (err) {
    }
</script>
 <!--手机打开PC端跳手机端结束-->
  <title>长沙电力职业技术学院</title>
</head>
<body>
 <!--
    <div class="zxtz" id="roll" style="width: 200px;position: fixed;cursor:pointer;z-index:99;">
      <div class="zxtz_bt" style="position:relative;">
         <div class="gb" > <img src="${prefix('images/chacha.png')}" onclick="hiddenad()" /></div><div class="clear"></div>
      </div>
      <div class="zxtz_nr" style="margin-bottom:28px;"> 
        <ul>
          <cms:article catalogalias="zxtz" count="1" begin="1">
            <z:list>
              <li style="width:90px;">
              <a href="${Article.Link}" class="ssb">
                ${charWidth(Article.Title,50,"...")} <!--<i class="fr"style="color:#666666;padding-right:10px;">[${format(Article.PublishDate, 'yyyy-MM-dd')}]</i>--></a></li>
         <!--   </z:list>
          </cms:article>
        </ul>
        
      </div>
    </div> -->
  
<script src="/js/jquery-3.1.1.min.js"></script>
<script>
//关闭飘窗点击方法

function hiddenad(){ //隐藏
        document.getElementById("roll").style.visibility="hidden";//隐藏 
      }
  

var ggRoll={                                     //创建对象直接量
		  roll:document.getElementById("roll"),          //获取id属性为roll的对象
		  speed:60,                                      //飘动速度,即为定时器函数多长时间执行一次
		  statusX:1,                                     //规定每执行一次函数,left属性值变化的幅度
		  statusY:1,                                     //规定每执行一次函数,top属性值变化的幅度
		  x:100,                                         //规定初始状态下left属性的值
		  y:300,                                         //规定初始状态下top属性的值
		  //差值用来测算left属性值的极限
		  winW:document.documentElement.clientWidth-document.getElementById("roll").offsetWidth, 
		  //差值用来测算top属性值的极限
		  winH:document.documentElement.clientHeight-document.getElementById("roll").offsetHeight, 
		  //声明函数
		  Go: function () {                                                               
		       //设置div的left属性值
		       this.roll.style.left = this.x + 'px';                                      
		       //设置div的top属性值
		       this.roll.style.top = this.y + 'px';                                       
		       //如果statusX=1则每次减少1px,否则减少1px
		       this.x = this.x + (this.statusX ? -1 : 1)                                  
		       //如果left属性值小于0,也就是div要超出左边界了,就将statusX设置为0
		       if (this.x < 0) { this.statusX = 0 }                                       
		       //如果top属性值大于winW,也就是div要超出右边界了,就将statusX设置为1
		       if (this.x > this.winW) { this.statusX = 1 }                               
		 
		       this.y = this.y + (this.statusY ? -1 : 1)
		       if (this.y < 50) { this.statusY = 0 }
		       if (this.y > this.winH) { this.statusY = 1 }
		 
		     }
		  };
		 
		var interval=setInterval("ggRoll.Go()",ggRoll.speed);
		ggRoll.roll.onmouseover=function(){clearInterval(interval)};                     //onmouseover属性:鼠标移动到元素上时触发
		ggRoll.roll.onmouseout=function(){interval=setInterval("ggRoll.Go()",ggRoll.speed)};//onmouseout属性:鼠标离开元素时触发
</script>
	<style>
     
      <!--学院风采3-->
       * {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .img {
            width: 100%;
            height: 300px;
            margin-top: 40px;
        }

        .whole {
            width: 50%;
            height: 100%;
            margin: 0 auto;
        }

        .roll-img {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
        }

        .roll-img ul li {
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        img {
            width: 100%;
            height: 100%;
        }

        .left {
            left: -360px;
            transform: scale(0.8);
            z-index: 4;
            background: rgb(0, 0, 0);
            transition: all 0.5s ease;
        position: absolute; background:#fff; opacity:.7;
        }

        .center {
            z-index: 6;
            left: 0;
            top: 0;
            bottom: 10%;
            transition: all 0.5s ease;
        }

        .right {
            left: 360px;
            transform: scale(0.8);
            z-index: 4;
           position: absolute; background:#fff; opacity:.7;
            transition: all 0.5s ease;
        }

        .left div,
        .right div {
            z-index: 5;
            width: 100%;
            height: 100%;
           
            position: absolute;
            left: 0;
            top: 0;
            transition: all 0.3s ease;
        }

        .left span,
        .right span {
            display: none;
        }

        .after1,
        .after2,
        .after3 {
            z-index: 3;
            left: 0;
            top: 0;
            visibility: hidden;
            transform: scale(0);
        }

     
      
      
      
      
 .back {background: url(/images/fy2_l.png) left center no-repeat;  width: 116px;
height: 40px;margin-top: -130px; float: left;margin-left: 46px;}

      
.next {background: url(/images/fy_r2.png) left center no-repeat;  width: 116px;
height:40px;margin-top: -140px; margin-left:1334px; }   

.cont2{width:100%;background:url(/images/dypbj3.png) no-repeat center;margin-top: -82px; }    
      
      
      
      
      
      
      
      
      
      
      
 /*悬浮框*/
.floatMask{position:fixed;width:40px;height:170px;right:0;top:290px;padding-top: 10px;background: url(/images/cbl.png);writing-mode: vertical-lr;line-height: 40px;text-align: center;color:#31a6a0;cursor: pointer;}
.floatMask .floatMaskIcon{display:inline-block; width:14px;height:14px;background-size: 100%;}
.floatMask:hover{color:#5abdba;}
/*.floatMask:hover .floatMaskIcon{background: url(/images/xuanfu02.png) no-repeat;}*/
/*.floatMask:active{color:#3b8b8c;}*/
/*.floatMask:active .floatMaskIcon{background: url(/images/xuanfu03.png) no-repeat;}*/
@-webkit-keyframes move_right {from {opacity: 0;}to {opacity: 1;-webkit-transform: translateX(158px);transform: translateX(158px);}}@keyframes move_right {from {opacity: 0;}to {opacity: 1;-webkit-transform: translateX(158px);transform: translateX(158px);}}
.move_right {-webkit-animation-name : move_right;animation-name : move_right;-webkit-animation-duration : 3s;animation-duration : 3s;-webkit-animation-iteration-count : 1;animation-iteration-count : 1;-webkit-animation-fill-mode : forwards;animation-fill-mode : forwards;}
@-webkit-keyframes move_left {from {opacity: 0;}to {opacity: 1;-webkit-transform: translateX(0);transform: translateX(158px);}}@keyframes move_left {from {opacity: 0;}to {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}}
.move_left {-webkit-animation-name : move_left;animation-name : move_left;-webkit-animation-duration : 3s;animation-duration : 3s;-webkit-animation-iteration-count : 1;animation-iteration-count : 1;-webkit-animation-fill-mode : forwards;animation-fill-mode : forwards;}

@-webkit-keyframes nav_left {from {opacity: 0;width: 0;}to {opacity: 1;width: 200px;}}@keyframes nav_left {from {opacity: 0;width: 0;}to {opacity: 1;width: 204px ;}}
@-webkit-keyframes nav_right {from {opacity: 1;width: 200px;}to {opacity: 0;width: 0;}}@keyframes nav_right {from {opacity: 1;width: 200px;}to {opacity: 0;width: 0;}}
.nav_left {-webkit-animation-name : nav_left;animation-name : nav_left;-webkit-animation-duration : 1s;animation-duration : 1s;-webkit-animation-iteration-count : 1;animation-iteration-count : 1;-webkit-animation-fill-mode : forwards;animation-fill-mode : forwards;}
.nav_right {-webkit-animation-name : nav_right;animation-name : nav_right;-webkit-animation-duration : 1s;animation-duration : 1s;-webkit-animation-iteration-count : 1;animation-iteration-count : 1;-webkit-animation-fill-mode : forwards;animation-fill-mode : forwards;}

#zydh{position:fixed;width:0px;right:0;top:290px;font:16px/46px"微软雅黑";text-align:center;margin-left:511px;border-radius: 4px; font-weight:bold; box-shadow: 0 8px 40px 0 rgba(97,101,115,0.15);z-index:11;background: #29A6A6; }
#zydh dt{    width: 100%;
    height: 46px;
    background: url(/images/xyfw.png) 10px 18px no-repeat #29A6A6;
    color: #fff;
    border-radius: 4px 4px 0 0;
    text-align: left;
    text-indent: 40px;
    line-height: 58px;
    white-space: nowrap; }

.navCollaspe{color:#97dee1;font-size:12px;margin-left: 39px;padding-right: 8px;cursor: pointer;text-indent:0;}
.navMaskIcon{display:inline-block; width:14px;height:14px;vertical-align: -2px;margin-left: 5px;background: url(/images/shouqi01.png) no-repeat;background-size: 100%;}
.navCollaspe:hover{color:#fff;}
.navCollaspe:hover .navMaskIcon{background: url(/images/shouqi02.png) no-repeat;}
.navCollaspe:active{color:#c9f2f1;}
.navCollaspe:active .navMaskIcon{background: url(/images/shouqi03.png) no-repeat;}

#zydh dd{background:#fff; border-radius:4px ;white-space: nowrap; margin:12px;}
#zydh a{display:block;color:#62687A; font-size:14px; border-top:1px solid #ECEEF2;text-align: left;text-indent: 15px; background: url(/images/jt_gray.png) 155px center no-repeat; border-radius:4px ;}
#zydh a:hover{background:url(/images/jt_green.png) 155px center no-repeat #dcf5f5;  color:#29A6A6; border-radius:4px ;}

      <!--学院风采10-31-->

.main-box{ height: 352px; width:1200px;margin: auto;top: 122px;left: 32px;}
.poker_box h2 {font-size: 30px;color: #015293;font-weight: bold;text-align: center;}
.poker_box i {font-size: 16px;color: #015293;text-align: center;}
.poker-content {width: 1129px;position: relative;width: 100%;height: 350px!important;margin-left: auto;margin-right: auto;}
.poker-content img {display: block;box-shadow: 0px 0px 10px #222222;-webkit-box-shadow: 0px 0px 10px #222222;border: 0;}

.poker-content a, .poker-content img {display: block;width: 100%;height: 100%;border: none;}
img {border: none;display: block;}
.poker-content .poker-list {width: 1118px;height: 500px;}
.poker-content .poker-list .poker-item {width: 200px;height: 350px;position: absolute;left: 0;top: 0;}
.poker-rad{  border-radius: 4px;  overflow: hidden;}
.poker-rai{  border-radius: 4px;  overflow: hidden;}
.poker-content .poker-list .poker-item .item {position: relative;width: 100%;height: 100%;}
.poker-content .poker-btn {position: absolute;top: 0;cursor: pointer;filter: opacity(.5) brightness(1);}
.poker-content .poker-btn:hover {filter: opacity(1) brightness(2);}
.poker-content .poker-prev-btn {left: 0;}
      
      .poker-content .poker-btn2 {position: absolute;top: 0;cursor: pointer;filter: opacity(.5) brightness(1);}
.poker-content .poker-btn2:hover {filter: opacity(1) brightness(2);}

.poker-content .poker-next-btn {right: 0;}
.poker-item-title {filter:Alpha(opacity=80);color: #FFF;width: 100%;position: absolute;bottom: 0;text-indent: 29px}

    <!--专题专栏-->
     
       .wz2 img:{ background:url(/images/jt01.png) 0 50% no-repeat;}
      .wz2 img:hover{ background:url(/images/jt02.png) 0 50% no-repeat;}
      .wz2{height: 50px;background: #fff;font-size: 16px;padding-left: 10px;padding: 10px;color: #62687A;}
       .wz2:hover{height: 50px;background: #fff;font-size: 16px;padding-left: 10px;padding: 10px;color: #1B8787;font-weight: 600;}
      .wz2 p{height:26px;font-size: 16px;padding-left: 10px;padding: 10px;color: #62687A;font-weight: 700;}
       .wz2 p:hover{height: 26px;font-size: 16px;padding-left: 10px;padding: 10px;color: #1B8787;font-weight: 700;
border-bottom: 1px solid #1B8787;width: 190px;}
      <!--三分符-->
 
    
      .a {
  text-decoration: none;
  color: #62687A;
}
      .time {
padding: 0 16px;
text-align: center;
border-right: 1px solid #e4e7ef;
margin-left: -11px;
height: 48px;
line-height: 42px;
}
      .time span {
  color: #565E6F;
  font-size: 20px;
  margin-left: -26px;
      font-weight: 700;
}


      .news:hover {
  margin-left: 18px;
  display: block;
  font-size: 17px;
  overflow: hidden;
  text-align: left;
  font-weight: 700;
  margin-top:2px;
  color:#29A6A6;
}
      .news1:hover {
  color:#29A6A6;
}
      .time1{padding: 0 16px;text-align: center;border-right: 1px solid #e4e7ef;margin-left: -11px;height: 48px;line-height: 42px;}
      
      .span1{
    font-size: 20px;
    margin-left: -19px;
      font-weight: 700;
      }
      
            .news {
  margin-left: 18px;
  display: block;
  font-size: 17px;
  overflow: hidden;
  text-align: left;
  font-weight: 700;
  margin-top: 2px;
   
}
      #tab_c li, #mthy li {
 width: 550px;
float: left;
overflow: hidden;
border-radius: 4px;
opacity: 1;

border-bottom: 1px solid rgba(225 227 232);
margin-bottom: 20px;

height: 65px;

}
  #tab_c li a {
  padding: 6px 0 ;
  display: block;
  height: 53px;
}  
      #tab_c em, #mthy span {
  display: block;
   margin-top: -24px; 
   color: #9095a3ff;
 font-size: 12px;
 font-weight: 700;
}
      .tit-1 {
width: 554px;
height: 40px;
opacity: 1;
border-bottom: 1px solid #dcdde0ff;
}
      .tit-1 .tit {
    height: 36px;
    font: 18px "Microsoft YaHei";
    font-weight: 600;
    margin-top: 2px;
    width: 110px;
}
      
      
      <!--飘窗开始-->
     .pcbj{background:url(/images/pc01.png) no-repeat left center; border="0"}
        h3,p{ padding:0; margin:0 auto;}
      .clear{ clear:both;}
      .zxtz{ width:200px; height:130px;background:url(/images/pc01.png) left center no-repeat; padding:5px 20px; border-radius:5px; margin:0 auto; margin-top:8px;}
      .zxtz_bt{ color:#e20000;margin-bottom:-16px;}
      .zxtz_bt h3{  font-size:18px; padding-left:25px; height:35px; line-height:35px;}
      .zxtz_bt span{ float:right; margin-top:-32px;margin-right:-16px;}
      .ssb{font-weight:600; color:#fff; font-size:22px; line-height:30px;}
      #img{ background:url(/images/pc01.png) left center no-repeat;z-index:99;}
      .gb{float: right;margin-top:4px;margin-right:-14px;}
      
     <!--飘窗结束-->
    
        <!--公告栏开始-->
      .box{
			width: 600px;
			height: 260px;
			margin: 160px auto;
			overflow: hidden;
			position: relative;
		}
		.box p{
			text-align: center;
		}
		.picBox{
			margin: 0px;
			padding: 0px;
			list-style: none;
			width: 1500px;
			position: absolute;
		}
		.picBox:hover{
			cursor: pointer;
		}
		.picBox li{
			float: left;
		}
		.picBox img{
			width: 600px;
			height: 240px;
		}
      
      .content2{
	
	  height:60px; /* 高度值一般就是一个li的盒子高度 */
	  overflow: hidden;
	  margin: auto;
	}

	.content2 ul{
	  margin: 0;
	  padding: 0;
	  width: 100%;  /* 不一定非要200%,只要比100%多出一个li盒子宽度即可,但由于最极端的宽度也就是显示一个li,再多出一个li,一共两个li,所以最合适的值是200% */
	  height:10px;
    line-height:10px;
	}

	.content2 ul li{
	  list-style: none;
	  float: left;
	 <!-- width: 700px;-->
      font-size: 20px;
	  display: block;
	  margin: 20px
        
     
    
	}
      
      <!--公告栏结束-->
        * {
                margin: 0;
                padding: 0;
            }
     
            #scroll {
                margin: 0;
                padding: 2px 0;
                list-style: none;
                height:60px;
                light-height:60px;
                overflow: hidden;
                font-size: 20px;
                color: #000;
                background-image: url("/images/p.png");
                width: 930px;
               margin-top: -46px;
              margin-left: 120px;
              float: right;
            }
     
            #scroll li {
                padding: 0 4px;
                font-size: 12px;
                height: 60px;
                line-height: 60px;
               color: #000;
              
            }
      
      
      
      
      
       .contentggl {
    width: 1000px;
height: 30px;
      overflow: hidden;
      margin-right: -230px;
    }

    .contentggl img {
      width: 380px;
      height: 249px;
    }

   

    .contentggl ul li {
      list-style: none;
      float: left;
      width: 380px;
      height: 249px;
      display: block;
      margin: 5px;
   
    }

    .contentggl ul li:hover {
      border:2px solid #1a6e6e;
    }

       <!--上下滚动-->
     * {
                margin: 0;
                padding: 0;
            }
     
            #scroll {
                margin: 0;
                padding: 2px 0;
                list-style: none;
                height:60px;
                light-height:60px;
                overflow: hidden;
                font-size: 20px;
                color: #000;
                background-image: url("/images/p.png");
                width: 930px;
               margin-top: -46px;
              margin-left: 120px;
              float: right;
            }
     
            #scroll li {
                padding: 0 4px;
                font-size: 12px;
                height: 60px;
                line-height: 60px;
               color: #000;
             }
      
      


		#static_big_box{
			position: relative;
			width:600px;
			margin:0 auto;
			height:30px;
			line-height:30px;
			padding-right:65px;
			overflow:hidden;
		}
		#runing_box{
			position: absolute;
			height:30px;
			line-height:30px;
			top: 0px;
			left:0;
		}
		#runing_box a{
			color:#000;
			margin-left:8px;
		}
		#runing_box a:hover{
			color:#57bc54;
		}
		.contentt{
		 width: 800px;
      height: 50px;
      margin: auto;
      
		}
       <!--学院风采开始-->
    .content1{width:1200px;}
      .contentzb {
      width:428px;
      height: 200px;
      overflow: hidden;
    margin-left: 20px;
margin-right: 20px;
    }

    .contentzb ul li {
      list-style: none;
      height: 200px;
    }

    .contentyb {
      width:1200px;
      height: 204px;
      overflow: hidden;
     
      
    }

    .contentyb img {
      width: 380px;
      height: 249px;
    }

   <!-- .content1 {
      display: flex;
      justify-content: center;
    }-->

    .content1 ul {
      margin: 0;
      padding: 0;
    }

    .contentyb ul li {
      list-style: none;
      float: left;
      margin-right:30px;
      height: 249px;
      display: block;
     
   
    }
      .contentyb ul li:nth-child(3){margin-right:0;}

    .contentyb ul li img:hover {
      border:2px solid #1a6e6e;
    }

    .page {
   display: flex;
justify-content: space-evenly;
margin: auto;
height: 40px;
  }


    .page img {
      width:30px;
      height: 30px;
    margin-top: -143px;
    }
        <!--走马灯结束-->
    <!--相关其他样式开始 /* box-shadow: 0px 5px 5px #cccccc!important;*/-->


.list-1 .tit1{display:block; color:#393F52; font-size:16px;  line-height: 48px; color: #393F52; font-size: 16px;font-weight: 500;font-family:Microsoft YaHei; }
.list-1 .tit1:hover{ color:#29A6A6;font-weight: 600;}
    
    
    
    
    
    
    
  
   .title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
}
   .more {
    width: 43px;
   font-family:Microsoft YaHei;
    font-weight: 700;
    float: right;
    background: url(/images/more.png) left center no-repeat;
    color: #4e90c4;
    margin-right: 5px;
    cursor: pointer;
    text-align: right;
}
   .more a {
    display: block;
}
 .activity_list li {
    float: left;
    margin: 0 32px;
    overflow: hidden;
   margin-top: -14px;
}
  
   .activity_list li a {
    display: block;
    overflow: hidden;
}     
      
   li, i {
  list-style: none;
  font-style: normal;
}   

   .activity1_list li {
     float: left;
 margin-right:33px;
  height: 72px;
  overflow: hidden;
}

   .activity1_list li a {
    display: block;
    overflow: hidden;
}
   a {
    color: #7e8c8d;
    text-decoration: none;
    outline: none;
    /* -webkit-backface-visibility: hidden; */
}
  /*  .activity_list li a >div {
    width: 379px;
    height: 113px;
    overflow: hidden;
}*/
   .activity_list li a img {
   width: 335px;
height: 109px;
    transition: transform .5s;
      border-radius: 4px 4px 0 0;
} /*
 .activity1_list li a img {
   width: 266px;
height: 72px;
    transition: transform .5s;
}      
   */   
 
    
   .titt-1 {
  height: 52px;
 margin: -10px auto 20px auto;
  line-height: 40px;
}
    .tit2-1 {
  height: 52px;
  border-bottom: 1px solid #dcdcdc;
  line-height: 40px;
}
   
<!--相关链接-->   

    
<!--公共栏-->  
 .dowebok { width: 800px; margin: 150px auto; font-size: 14px;}
.dowebok a { margin: 0 15px; color: #333; text-decoration: none;}
.dowebok a:hover { text-decoration: underline;}

   <!--校园风采—-->

/* 学校风采样式 */
.fengcai{ margin-top:20px; }
.fengcai_bt{ border-bottom:1px solid #bfbfbf; margin-bottom:30px; height:45px; line-height:45px;}
.fengcai_bt span{height: 44px; font-size:18px; float:left; color:#000; width:116px; text-align:center; border-bottom:4px solid #0753d0;}
.fengcai_bt a{ font-size:14px; color:#333; float:right;}
.fengcai_nr{height: 250px;overflow:hidden;}
.fengcai_nr ul li{width:285px;float:left;margin-right:20px;}
.fengcai_nr ul li:nth-child(4){margin-right:0px;}
.fengcai_nr ul li h3{font-size:16px; height:45px; line-height:45px; color:#333333;text-align: center;}



.cont{width:1200px;overflow:hidden; margin:30px auto;}
.cont_l{float:left;width:240px; }
.cont_r{float:right;width:920px; padding:10px 30px 30px 30px;   border: 1px solid #e7e7e9;}
#tit_1{height:66px;line-height:66px;color:#fff;background:#0753d0; font-size:18px; text-align:center;}
#tit_2{border:1px solid #e7e7e9; border-bottom:none;}
#tit_2 a{display:block;height:55px;line-height:55px;color:#2d2d2d;background:#fff;font-size:16px;  text-align:center; border-bottom:1px solid #eee;}
#tit_2 a:hover{color:#0753d0; background:#e4e4e4;}
#dqwz{height:42px;line-height:42px;border-bottom:1px solid #e7e7e9;}
#dqwz h3{ color: #666;
    font-size: 16px;
    display: block;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
}
#dqwz p{float:right;color:#6a6a6a;background:url(/images/sy.png) 0 50% no-repeat;padding:0 0px 0 32px;}
#dqwz a{font-size:13.9px;color:#6a6a6a;}
#list_wz{clear:both;margin-top:10px; margin-bottom:35px;}
#list_wz li{height:50px;line-height:50px;color:#454545;background:url(/images/sj.png) 0 50% no-repeat;border-bottom:1px dashed #a1a0a0;}
#list_wz a{width: 275px; text-align: left; font: 14px/36px "Microsoft YaHei"; vertical-align: middle;overflow: hidden;text-indent: 15px; padding-left: 16px; color:#000; text-decoration:none;}

#list_wz a:hover{  color:#0753d0;}
#list_wz span{display:block;float:right;font-size: 14px;    color: #aaa;}
.tit-w{ border:1px solid #e7e7e9; margin-top:30px; padding:10px;}
.tit-w p{ font-size:16px; color:#0753d0; }

.list-t_zz{border-bottom:1px solid #e1e1e1;padding:18px 0;}
.list-t_zz .jg{ width:275px; text-align:left; font:14px/36px "Microsoft YaHei";font-weight: 700;vertical-align:middle;overflow:hidden; float:left; background: #eeeeee; margin: 10px 5px;
    text-align: center;} 
.list-t_zz .jg a{ display:block; padding:0 10px; }
    .list-t_zz .jg a:hover{ background:#0753d0; color:#fff;}

#list_ld{clear:both;overflow:hidden; padding-bottom: 40px; padding-top: 20px; padding:20px 10px 40px 10px}
#list_ld div{float:left; margin: 10px 18px;}
#list_ld dl{}
#list_ld dd{padding:8px;border:1px solid #dedede;}
#list_ld dd a img{  }
#list_ld .post_desc {width: 164px; height: auto; border: none; text-align: center; padding-bottom: 20px;}
#list_ld dt{height:30px;line-height:42px;text-align:center;overflow:hidden;}
#list_ld dt a{color:#707170; font-size: 13px;}
#fenye{float:right;height:24px;font-size:12px;font-family:"Microsoft YaHei";margin:45px 0;}
#fenye table{border:none;border-spacing:0;}
#fenye a.z_num,#fenye span,#fenye a.z_pret,#fenye .current{display:inline-block;line-height:22px;color:#5d5d5d;border:1px solid #b4b4b4;padding:0 12px;margin:0 2px;}
#fenye a.z_num:hover,#fenye span.fc_ch1:hover,#fenye a.z_pret:hover,#fenye .current{background:#0753d0;color:#fff!important;}




#list_tp1{clear:both;overflow:hidden; min-height:400px;}
#list_tp1 div{float:left;  margin:20px;}
#list_tp1 dl{}
#list_tp1 dd{padding:9px;border:1px solid #dedede;      margin-left:0;}
#list_tp1 dt{height:32px;line-height:48px;font-size:16px;text-align:center;overflow:hidden;}
#list_tp1 dt a{color:#707170;}
#list_tp1 dt a img{ width:225px; height:173px;}


 .fengcai_list li a img {
  width: 100%;
  height: 143px;
  border:1px solid #000; 
}

}
   .bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}
   .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
   .bx-wrapper .bx-prev {
  left: 10px;
  background: url(/images/controls.png) no-repeat 0 -32px;
}
 .page img:hover {
  width: 30px;
  height: 30px;
  margin-top: -143px;
  box-shadow: 0 0 3px 0 #EAEAEB !important;
  border-radius: 50;
  border-radius: 50%;
  }
 .ckgd1 {
  float: right;
   background: url(/images/ckgd.png) left center no-repeat;
   width: 116px;
height: 36px;
}  
       .ckgd1:hover {
  float: right;
   background: url(/images/ckgd33.png) left center no-repeat;
   width: 116px;
height: 36px;
}  
 .ckgd {
  float: right;
   background: url(/images/ckgd.png) left center no-repeat;
   width: 116px;
height: 36px;
}   
.ckgd:hover{
      width: 116px;
height: 36px;
     float: right;
    background: url(/images/ckgd33.png) left center no-repeat;
} 
 
      
.cont6 .cont6_bt a {
    background: url(/images/ckgd33.png) 93px center no-repeat;
    height: 35px;
    width: 212px;
    display: block;
    line-height: 35px;
    font-weight: bold;
    font-size: 16px;
      padding: 0 15px;
}
      .cont3_r .cont3_r_bt a:hover{    background: url(/images/ckgd.png) right center no-repeat;
    height:20px;
    width: 90px;
    display: block;
    line-height:20px;
    font-weight: bold;
    font-size: 16px;
    color: #29A6A6;}
      .time span {
  color: #565E6F;
  font-size: 20px;
margin-left: -19px;
}
  .time span:hover {
  color: #29A6A6;
  font-size:20px;
}
.gd  a{ display: flex;justify-content: ;border: 1px solid #cbd8e1;height: 36px;width: 94px;padding:0 10px;color:#9398a5;font-weight: bold;
font-size: 16px;line-height: 34px;} 
.gd a:hover { display: flex;justify-content: ;border: 1px solid #cad4da;height: 36px;width: 94px;padding-left: 10px;color:#9398a5;font-weight: bold;
font-size: 16px;line-height: 34px;background: #edeef0;}       
.gd img{
width: 12px;height: 12px;margin: auto;
}       
      
 .tb .xyfu a {
 display: flex;justify-content: ;border: 1px solid #cbd8e1;height: 36px;width: 116px;padding-left: 10px;color:#9398a5;font-weight: bold;
font-size: 16px;line-height: 34px;} 
       .tb .xyfu a:hover  {
 display: flex;justify-content: ;border: 1px solid #cad4da;height: 36px;width: 116px;padding-left: 10px;color:#9398a5;font-weight: bold;
font-size: 16px;line-height: 34px;background: #edeef0;} 
       .tb .xyfu img{
width: 12px;height: 12px;margin: auto;
} 
.ztgd a{display: flex;justify-content: ;border: 1px solid #a6dbda;height: 36px;width: 116px;padding-left: 10px;color:#a6dbda;font-weight: bold;
font-size: 16px;line-height: 34px;margin-right:22px;/*background: url(/images/jt123.png) left center no-repeat;*/}  
     
.ztgd a:hover{display: flex;justify-content: ;border: 1px solid #fefefe;height: 36px;width: 116px;padding-left: 10px;color:#fefefe;font-weight: bold;
font-size: 16px;line-height: 34px;margin-right: 22px;/*background: url(/images/ckgdjt_bs.png) left center no-repeat;*/}          
.ztgd  sapn{width: 12px;height: 12px;margin: auto;background: url(/images/jt123.png) left center no-repeat;z-index: 10;}
.ztgd  sapn:hover{width: 12px;height: 12px;margin: auto;background: url(/images/ckgdjt_bs.png) left center no-repeat;z-index: 10;} 
       .ztgd  span:hover{
width: 12px;height: 12px;margin: auto;background: url(/images/ckgdjt123.png) left center no-repeat;} 
      .ztgd  span:hover{
width: 12px;height: 12px;margin: auto;background: url(/images/ckgdjt_bs.png) left center no-repeat;} 

 .page {
   display: flex;
justify-content: space-evenly;
margin: auto;
height: 40px;
  }


 .page img {
      width:30px;
      height: 30px;
    margin-top: -143px;
    } 

.con_footer {width: 1200px; height: 182px; border-radius: 4px; opacity: 1; border: 1px solid #dcdde0ff; z-index: 10;margin:auto;background:#fff;}     
.xyfu{width: 1200px;height: 50px;opacity: 1;height: 50px;display: flex;overflow: hidden;margin: auto;}
      
      
 .bj{background: url(/images/sybj3.png)  center no-repeat;margin: auto;min-height:590px;padding-top:50px;}    
  
.slip-2{position:relative;float:left;width:552px;height: 339px;line-height:0;font-size:0;overflow:hidden;margin-top:25px;margin-right:35px;}
.slip-2 .slip-box{width:10000%;overflow:hidden;}
.slip-2 .slip-box li{/* position:relative; */float:left;width:1%;}
.slip-2 .slip-box img{width:584px;height: 310px;}
.slip-2 .slip-box p{background: rgba(0,0,0,0.6);margin-bottom: 27px;position:absolute;text-indent:15px;bottom:19px;width:100%;font:16px "Microsoft YaHei" ;background: rgba(0,0,0,0.6);text-align:left;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:552px;height:70px;margin:0;line-height:56px;opacity: 0.8;color: #fff;margin-bottom: 10px;}
.slip-2 .slip-dot{position:absolute;bottom:44px; right:-22px;}
.slip-2 .slip-dot ul{display:inline-block;*display:inline;*zoom:1;}
.slip-2 .slip-dot li{float:left;width:10px;height:10px;border:1px solid #666;border-radius:100px;margin:0 4px;cursor:pointer;}
.slip-2 .slip-dot .slip-o{width:10px;background:#29A6A6;}



.slip-3{position:relative;float:left;width:378px;height:284px;line-height:0;font-size:0;overflow:hidden;margin-top:15px;margin-right:35px;}
.slip-3 .slip-box{width:10000%;overflow:hidden;}
.slip-3 .slip-box li{/* position:relative; */float:left;width:1%;}
.slip-3 .slip-box img{width:378px;height: 284px;}
.slip-3 .slip-box p{position:absolute;text-indent:15px;bottom:0;width:100%;font:14px/35px "Microsoft YaHei";color:#000;text-align:left;white-space:nowrap;text-overflow:ellipsis;background: #ddd;overflow:hidden;width:378px;height:55px;margin:0;line-height:56px;opacity: 0.8;}
.slip-3 .slip-dot{position:absolute;bottom:20px;text-align:right; right:10px;}
.slip-3 .slip-dot ul{display:inline-block;*display:inline;*zoom:1;}
.slip-3 .slip-dot li{float:left;width:10px;height:10px;border:1px solid #666;border-radius:100px;margin:0 4px;cursor:pointer;}
.slip-3 .slip-dot .slip-o{width:10px;background:#666;}

.roll1{position: relative;
    padding: 20px -1px 0;
    width: 1200px;
    }
.roll1 .roll-w{overflow:hidden;width:1206px;margin-left:-6px;}
.roll1 .roll-b{width:10000%;overflow:hidden;}
.roll1 .box{float: left;
    width: 388px;
    height: 249px;
    line-height: 38px;
    text-align: center;
    margin: 0 11px;
    overflow: hidden;}
.roll1 .link{display:block;color:#595858;}
.roll1 .roll-p{position:absolute;width:32px;height:32px;top:110px;left:-46px;background:url(/images/fy_l.png);cursor:pointer;}
.roll1 .roll-p:hover{background: url(/images/fy_l_hover.png) no-repeat center;} 
.roll1 .roll-n{position:absolute;width:32px;height:32px;top:110px;right:-54px;background:url(/images/fy_r.png);cursor:pointer;}
.roll1 .roll-n:hover{background: url(/images/fy_r_hover.png) no-repeat center;}  

.cont6 .cont6_bt{width:1200px; padding:0px 3px 20px 0px;  margin:0 auto;}
.cont6 .cont6_bt h3 {  opacity: 1; color: rgba(57,63,82,1); font-size: 20px; font-weight: 700;  text-align: left; line-height: 32px;}
.cont6 .cont6_bt em{ float:left;line-height: 32px; font-size:16px; font-weight:bold; color:#9095A3; padding-left:15px; }
.cont6 .cont6_nr{ width:1200px; margin:0 auto; padding-top:30px;}
.cont6 .cont6_nr .wenzi{ width:482px; height:204px;}
.cont6 .cont6_bt a{    background: url(/images/ckgd.png) 93px center no-repeat;
    height: 35px;
    width:212px;
    display: block;
    line-height: 35px;
    font-weight: bold;
    font-size: 16px;
  
     
    padding: 0 15px;}
.cont6 .cont6_bt a:hover{     background: url(/images/ckgd33.png) 93px center no-repeat;
    height: 35px;
    width:212px;
    display: block;
    line-height: 35px;
    font-weight: bold;
    font-size: 16px;
    
    padding: 0 15px;}



.cont6 {
    height: 358px;
    border-radius: 4px;
    opacity: 1;
      margin: 0 auto;
    width: 1200px;
}
.cont6 .cont6_nr{ width:1160px; margin:0 auto; padding-top:20px;}
.cont6 .cont6_nr .img ul li{ float:left; padding-right:32px;  height:249px; overflow:hidden;}
.cont6 .cont6_nr .img ul li img{ height:249px; width:380px;  }
.cont6 .cont6_nr .button{ margin-top:20px;}
.cont6 .cont6_nr .button .an{ width:1096px; text-align:center; padding-top:11px;}
.cont6 .cont6_nr .button .an ul{ display: inline-block;}
.cont6 .cont6_nr .button .an .slip-o{ width:20px; height:10px; background:#29A6A6;}
.cont6 .cont6_nr .button .an ul li{ float:left;width:10px;height:10px;background:#ECEEF2;border-radius:6px;margin:0 4px;cursor:pointer;}
li, i {
    list-style: none;
    font-style: normal;
} 
      .gd img {
    width: 12px;
    height: 12px;
    margin: auto;
}
      
      .gd  a{ display: flex;justify-content: ;border: 1px solid #cbd8e1;height: 36px;width:104px;padding-left: 10px;color:#9398a5;font-weight: bold;
font-size: 16px;line-height: 34px;background: url(/images/jt_gray.png) right center no-repeat; right center no-repeat;background: url(/images/jt_gray.png) right center no-repeat;} 
.gd a:hover { display: flex;justify-content: ;border: 1px solid #29A6A6;height: 36px;width: 104px;padding-left: 10px;color:#29A6A6;font-weight: bold;
font-size: 16px;line-height: 34px;  background: url(/images/jt_green.png) right center no-repeat;  }      
.gd img{
width: 12px;height: 12px;margin: auto;
}
      
	</style>
	</head>
	<body>
     <!--包含通用样式-->
  <body class="bg-white"  style="min-width:1200px; background-color: #e9f0f0;">
    
 <!-- 包含页头 -->
 

<link type="text/css" rel="stylesheet" href="/css/css.css">
<style>
/* 副标题开始 */
#subtitle {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #ababab;
    font-size: 12px;
    background: #f3f3f3;
    border-bottom: 1px solid #dadce0;
  }
  
  #subtitle>div {
    width: 1200px;
    margin: 0 auto;
  }
  
  #subtitleLeft {
    display: block;
  		float: left;
  }
  
  #subtitleRight {
    float: right;
  }
  #subtitleRight>div{
    float: left;
  }
  
  /* 副标题结束 */
/* 头部开始 */
#header {
  width: 1200px;
  height: 60px;
  margin: 20px auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#header>img{
  width: 530px;
}
#userBar {
  width: 580px; 
  font-size: 14px;
  color: #fff;
  float: right;
  margin-top: 15px;
}

/**
.search {
  float: left;
  width: 320px;
  height: 34px;
  border: 1px solid #3668a5;
  border-radius: 5px;
  background: #3668a5;
  margin-right: 5px;
  text-align: center;
}

.search>input {
  float: left;
  width: 220px;
  height: 32px;
  border: 0;
  border-radius: 5px 0px 0px 5px;
  outline: none;
  padding-left: 10px;
  background: #fff;
}

.search>label {
  width: 90px;
  height: 34px;
  line-height: 34px;
}

.search>label:hover {
  cursor: pointer;
}**/

.userBox>a {
  display: block;
  width: 90px;
  height: 34px;
  text-align: center;
  float: left;
  border: 1px solid #3668a5;
  border-radius: 5px;
}

.userBox>a>span {
  display: inline-block;
  height: 34px;
  line-height: 34px;
}

.signIn {
  cursor: pointer;
  background-color: #3668a5;
  color: #fff;
  float: left;
  margin-right: 5px;
}

.signIn>span {
  background: url(/sydwpxnew/image/signIcon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: 0px 50%;
  padding-left: 26px;
}

#register {
  color: #3668a5;
}

#register>span {
  background: url(/sydwpxnew/image/registerIcon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: 0px 50%;
  padding-left: 26px;
}
.userShow{
  display: none;
}

/* 头部结束 */
/* 导航开始 */
#nav {
  height: 50px;
  text-align: center;
  font-size: 18px;
  background: #006eab;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#nav>ul{
  width: 1200px;
  margin: 0 auto;
}

#nav>ul>li {
  float: left;
  width: 103px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0px 15px;
}

#nav>ul>li>a {
  color: #fff;
}

#nav>ul>li:hover {
  background: #0285cd;
  cursor: pointer;
}

#home>span {
  color: #fff;
  display: inline-block;
  height: 34px;
  line-height: 34px;
  background: url(/sydwpxnew/image/homeIcon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  padding-left: 28px;
}

/* 导航结束 */


  /* 尾部开始 */
#foot {
  width: 100%;
  color: #c49e4f;
  font-size: 14px;
  background: #363636;
}

.footBox{
  width: 980px;
  margin: 0 auto;
  padding: 20px 0px;
  box-sizing: border-box;
}
.footBox1 {
  height: 150px;
}

.footBox1>img {
  float: left;
  margin-right: 40px;
}
.footBox1>img:first-child{
  width: 480px;
}
.footBox1>img:last-child{
  width: 110px;
}
.footBox1>ul{
  float: left;
  margin-right: 50px;
}

.footBottom{
  width: 100%;
  background: #272727;
}
.footBox2{
  width: 1200px;
  margin: 0 auto;
}
.footBox2:last-child {
  text-align: center;
  position: relative;
}

.footBox2:last-child>span {
  margin-left: 20px;
  height: 4px;
  line-height: 40px;
}
.footBox2:last-child>img {
  position: absolute;
  top: 15%;
  left: 28%;
}

/* 尾部结束 */


</style>      


    <link rel="stylesheet" href="/sydwpxnew/sydwpxfinally/css/reset.css">
    <link type="text/css" rel="stylesheet" href="/sydwpxnew/sydwpxfinally/css/css.css">
 
<style>
.menu .cols .colss{width:150px;font:14px/40px "微软雅黑"!important;text-align:center;border-top:1px solid #ECEEF2; background:#fff;-webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);}
.menu .cols .colss:hover{width:150px;font:14px/40px "微软雅黑"!important;text-align:center;border-top:1px solid #ECEEF2; background:#24a8a8;-webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);  } 
.menu>.col:hover>.link{color:#29A6A6; }  
.header{ height:128px; width:100%;  background:#fff; color: #FFF; height: 64px; line-height: 64px;}
.top{ height:64px;}
.top img{ padding-top:8px;}
.menu{width:1200px;height:64px;margin:0 auto;line-height: 64px;}
.menu>.col{position:relative;float:left;width:150px;font:16px/64px "微软雅黑";text-align:center;z-index:1; }
.menu>.col>.link{display:block;line-height: 64px;height:64px;color: #565E6F;}
  

.menu>.col:hover{color:#29A6A6 !important; }
.menu>.col .cur{color: #fff !important;background:#29A6A6; }

.menu>.col .cur,.menu>.col:hover>.link{color:#29A6A6; }
.col > .link:hover{ color: #29A6A6;}
.menu .col:hover>.cols{display:block;}
.menu .cols{position:absolute;display:none;left:0;top:64px;background:#fefefe;z-index:100; border-radius: 4px;-webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%); height: 64px; line-height: 64px;}
.menu .cols .col{width:150px;font:14px/40px "微软雅黑"!important;text-align:center;border-top:1px solid #ECEEF2; background-color: #FFF;}
.menu .cols .col:hover{width:150px;font:14px/40px "微软雅黑"!important;text-align:center;border-top:1px solid #ECEEF2; background:#dcf5f5; }
.menu .cols .link{color:#666; display:block; font:14px/40px!important; }
.menu .cols .link:hover{color:#3fb0b0; background:#dcf5f5; }
.cur{color: #fff;background: #29A6A6;}
.menu .cols .colss:hover{width:150px;font:14px/40px !important;text-align:center;border-top:1px solid #ECEEF2; background:#dcf5f5;font-color:#29A6A6; -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);}  
.menu .cols .links:hover{color:#29A6A6; font:14px/40px!important; }
</style>
  <div class="header" >    
    <a class="link cur" href="http://www.cseptc.net/">                      
		<div class="logo_search">        
  			<div class="clear"></div>
    	</div>
    </a>
                              
</div>	
    <div class="nav">
      <ul class="menu">
      <li class="col"><a class="link cur" href="http://www.cseptc.net/">首页</a></li>
       <li class="col">
            
            <a  class="link" href="http://www.cseptc.net/xxgk/xyjj/" target="_self">学校概况</a>
            <ul class="cols" >
             
                
                  <li class="colss"><a class="links" target="_self"  href="/xxgk/xyjj/"> 学院简介</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/xxgk/xrld/"> 现任领导</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/xxgk/jgsz/"> 机构设置</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/xxgk/xyry/"> 学院荣誉</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/xxgk/lxwm/"> 联系我们</a></li>
                    
            </ul>
                   
         </li> 
       <li class="col">
            
            <a  class="link" href="#" target="_self">教学系部</a>
            <ul class="cols" >
             
                
                  <li class="colss"><a class="links" target="_self"  href="http://dlgcx.cseptc.net/" > 电网技术系</a></li>
                  <li class="colss"><a class="links" target="_self"  href="http://dqgcx.cseptc.net/" > 供电服务系</a></li>
                  <li class="colss"><a class="links" target="_self"  href="http://dolgcx.cseptc.net/" > 能源技术系</a></li>
                    
            </ul>
                   
         </li> 
         <li class="col">
            
            <a  class="link" href="#" target="_self">招生就业</a>
            <ul class="cols" >
             
                
                  <li class="colss"><a class="links" target="_self"  href="http://zsxx.cseptc.net/" > 招生信息网</a></li>
                  <li class="colss"><a class="links" target="_self"  href="http://jyxx.cseptc.net/" > 就业信息网</a></li>
                    
            </ul>
                   
         </li> 
        
       <li class="col">
            
            <a  class="link" href="/jyjx/" target="_self">教育教学</a>
            <ul class="cols" >
             
                
                  <li class="colss"><a class="links" target="_self"  href="/jyjx/jyjx/" > 教育教学</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjx/gjjjstd/" > 国家级教师创新团队</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjx/bysjzt/" > 毕业设计专题</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjx/zyrcpyfa/" > 专业人才培养方案</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjx/gdzyjyzlndbg/" > 高等职业教育质量年度报告</a></li>
                    
            </ul>
                   
         </li> 
         <li class="col">
            
            <a  class="link" href="/xgzx/" target="_self">学工在线</a>
            <ul class="cols" >
             
                
                  <li class="colss"><a class="links" target="_self"  href="/xgzx/xgdt/"> 学工动态</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/xgzx/xzzq/"> 下载专区</a></li>
                    
            </ul>
                   
         </li> 
          <li class="col">
            
            <a  class="link" href="/kygl/" target="_self">科研管理</a>
            <ul class="cols" >
             
                
                    
            </ul>
                   
         </li> 
        <li class="col">
            
            <a  class="link" href="/jyjjh/" target="_self">教育基金会</a>
            <ul class="cols" >
             
                
                  <li class="colss"><a class="links" target="_self"  href="/jyjjh/gyjjh/" > 关于基金会</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjjh/jjhxm/" > 基金会项目</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjjh/xxgk/" > 信息公开</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjjh/xwdt/" > 新闻动态</a></li>
                  <li class="colss"><a class="links" target="_self"  href="/jyjjh/xyll/" > 校友联络</a></li>
                    
            </ul>
                   
         </li> 
        
        
       </ul>
    </div>
	
<!--
  <div class="nav">
    	<ul class="menu">
        <li class="col"><a class="link cur" href="${Site.Link}">首页</a></li>
          <cms:catalog level="Root" count="7"><z:list>
        <li class="col">
          <a class="link" href="${Catalog.Link}" target="_self">${Catalog.Name}</a>
          <ul class="cols">
            <cms:catalog level="Child"><z:list>
            <li class="colss"><a class="link" target="_self" href="${Catalog.Link}">${Catalog.Name}</a></li>
            </z:list></cms:catalog>
          </ul>
            </li>
        </z:list></cms:catalog>
          </ul>
    </div>
    </div>-->
 
   
    <!-- 包含banner开始 -->  
    <!--轮播开始 --> 
  
<div style="position:relative;">
<div class="cont2"style="width:100%;background:url(/images/dypbj.png) no-repeat center;"> 
      <div class="slip-1" >
        <ul class="slip-box">
          
          <li class="fade_box"><a class="link"  href="#" style="background:url(/upload/resources/image/2023/04/03/1466.png) 50% 0 no-repeat;margin-top:56px;"></a></li>
          <li class="fade_box"><a class="link"  href="#" style="background:url(/upload/resources/image/2023/04/03/1467.png) 50% 0 no-repeat;margin-top:56px;"></a></li>
          <li class="fade_box"><a class="link"  href="#" style="background:url(/upload/resources/image/2023/04/03/1468.png) 50% 0 no-repeat;margin-top:56px;"></a></li>
          <li class="fade_box"><a class="link"  href="#" style="background:url(/upload/resources/image/2023/04/03/1469.png) 50% 0 no-repeat;margin-top:56px;"></a></li>
        </ul>
       
        <div class="slip-dot" ><ul></ul></div>
        
</div>  </div>
	
   <!-- 轮播结束 --> 
    

 <!-- 公告栏开始 --> <!--position: absolute;-->  
  
     <div class="ggl" style="display:flex;justify-content:center;">
          <div class="bt" style="z-index:2; font-family:Microsoft YaHei;background: rgba(0,0,0,0.6);  width: 1072px;height: 54px;border-radius: 4px;opacity: 1;box-shadow: 0 4px 20px 0 #787d8c14;position:absolute;bottom:20px;" >
                                    
                            <div class="laba" style="margin-left: 20px;line-height: 28px;">
                               <a class="tit fl" data-index="0" href="/ggl/"style="height: 28px;line-height: 28px;width: 110px;border-right: 1px rgb(255 252 252 / 30%) solid;margin: 16px auto 10px 0px;" >
                              <img src="/images/laba.png"  style="width:24px;height:25px;"/>&nbsp;&nbsp;&nbsp;&nbsp;<p style="font-weight: 600;font-size: 18px;color: #fff;float: right;margin-top: -32px;margin-right: 20px;">公告栏<span style="color: #BCC0CC;font-size:16px;"/></p></a></div>
                                     
   
         
       
      <div class="content2" style="height: 54px;overflow: hidden;overflow: hidden;position: relative;    line-height: 54px">       
     <ul  class="picBox">
       
                                      
    </ul> 
           </div>  </div></div>  
 <!-- 公告栏结束 --> 
  </div>
   
     
    <!--学院要闻.部门动态.媒体资讯.学院视频.通知公告 --> 
  <div style="width:100%;height:420px;background:#e9f0f0;">
  
  <div class="wraper">
    
                <!-- 左侧轮播图开始 -->
    <!--左边标题切换-->
    <div  style="position: absolute;z-index: 1;">
                   <div class="cont-1 tab" style="width: 1200px;padding: 28px 0px 0px 0px;margin-top:18px;border-radius: 8px 8px;">
                      <div class="tit-1">
<a  class="tit fl" data-index="0" href="/xydt/xyyw/" id="xyxw" ><p style="line-height: 14px;">学院要闻</p></a>
<a  class="tit fl" data-index="1" href="/xydt/xbdt/" id="xbdt"><p style="line-height: 14px;">部门动态</p></a>
<a  class="tit fl" data-index="2" href="/xydt/mtzx/" id="mtzx"><p style="line-height: 14px;">媒体资讯</p></a>
<a  class="tit fl" data-index="3" href="/xydt/xysp/" id="xysp"><p style="line-height: 14px;">学院视频</p></a>
<a  class="tit fl" data-index="4" href="/xydt/tzgg/" id="tzgg"><p style="line-height: 14px;">通知公告</p></a>
                      
                <div class="clear"></div>
                                  </div>
                       
                        <!--<cms:catalog alias="xydt_xyyw"><div class="gd" style="float: right;margin-top: -40px;"><a class="fr" href="${Catalog.Link}">查看更多<img src="${prefix('images/jt_gray.png')}" /></a></div></cms:catalog> -->  
      <div class="gd" style="float: right;margin-top: -40px;"><a class="fr" href="/xydt/xyyw/">查看更多</ a></div> 
                                    
                <!--列表-->     
      	     <div class="slip-2 fl">
      <ul class="slip-box">
        
        
          <li><a href="/c/2024-09-25/11312.shtml" target="_blank"><img src="/upload/resources/image/2024/09/25/2714.png"/><p>学院举行2024级新生开学典礼暨军训总结表彰大会</p></a></li>
        
          <li><a href="/c/2024-07-05/11313.shtml" target="_blank"><img src="/upload/resources/image/2024/07/05/2583.jpg"/><p>浣世纯参加学院无人机航拍宣传团队启动会</p></a></li>
      </ul>
      <div class="slip-dot"><ul></ul></div>
    </div>            
         <!-- 轮播 -->
                     <div id="tab_c">
                        
                       <ul class="list-1 con xyxw"  style="padding-top: 18px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500; display: block">
                         
                         <li><a href="/c/2024-12-23/11642.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 23 </span><em> 2024.12 </em></div><div class="news fl" >学院领导参加定向班毕业生入职前思想教育专题会议<i></i></div></a></li>
                         <li><a href="/c/2024-12-16/11633.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 16 </span><em> 2024.12 </em></div><div class="news fl" >学院圆满完成2024年下半年全国大学英语四六级及高等...<i></i></div></a></li>
                         <li><a href="/c/2024-12-13/11612.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 13 </span><em> 2024.12 </em></div><div class="news fl" >学院召开12月学生管理工作月度会议<i></i></div></a></li>
                         <li><a href="/c/2024-12-13/11598.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 13 </span><em> 2024.12 </em></div><div class="news fl" >学院举办第二届职业生涯规划大赛<i></i></div></a></li>  </ul>
                       
                     
                       
                        <ul class="list-1 con xydt"  style="padding-top: 18px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500; display: block">
                         
                         <li><a href="/c/2024-12-23/11639.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 23 </span><em> 2024.12 </em></div><div class="news fl" >马克思主义学院教师参加省高职高专院校思政课建设联...<i></i></div></a></li>
                         <li><a href="/c/2024-12-20/11638.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 20 </span><em> 2024.12 </em></div><div class="news fl" >供电服务系全体定向班级开展“感恩于心,知恩于行—...<i></i></div></a></li>
                         <li><a href="/c/2024-12-20/11637.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 20 </span><em> 2024.12 </em></div><div class="news fl" >换届起新,团学扬帆——电网技术系召开第五届团学代...<i></i></div></a></li>
                         <li><a href="/c/2024-12-20/11636.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 20 </span><em> 2024.12 </em></div><div class="news fl" >以行践知&#32;职路起航---电网技术系召开2025届供服定向...<i></i></div></a></li>  </ul>
                       
                       
                        <ul class="list-1 con mtzx"  style="padding-top: 18px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500; display: block">
                         
                         <li><a href="/c/2024-05-22/10986.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 22 </span><em> 2024.05 </em></div><div class="news fl" >【湖南省教育厅】“校友回湘”工作调度会暨大数据服...<i></i></div></a></li>
                         <li><a href="/c/2023-11-15/10699.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 15 </span><em> 2023.11 </em></div><div class="news fl" >【湖南教育新闻网】长沙电力职院:筑牢廉政防线,他...<i></i></div></a></li>
                         <li><a href="/c/2023-10-12/10698.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 12 </span><em> 2023.10 </em></div><div class="news fl" >【湖南教育平台】校园风采丨长沙电力职院:无人机&quot;...<i></i></div></a></li>
                         <li><a href="/c/2023-10-12/10697.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 12 </span><em> 2023.10 </em></div><div class="news fl" >【人民网】国网湖南技培中心:“纪检+安监”协作配...<i></i></div></a></li>  </ul>
                       
                       
                    <ul class="list-1 con xysp"  style="padding-top: 18px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500; display: block">
                         
                         <li><a href="/c/2024-10-17/11356.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 17 </span><em> 2024.10 </em></div><div class="news fl" >回声<i></i></div></a></li>
                         <li><a href="/c/2024-10-17/11355.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 17 </span><em> 2024.10 </em></div><div class="news fl" >导师见面会<i></i></div></a></li>
                         <li><a href="/c/2024-10-17/11354.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 17 </span><em> 2024.10 </em></div><div class="news fl" >“砥砺前行筑梦想&#32;振兴家乡展宏图”2021级供电服务...<i></i></div></a></li>
                         <li><a href="/c/2024-10-17/11351.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 17 </span><em> 2024.10 </em></div><div class="news fl" >安全随行&#32;电亮校园<i></i></div></a></li>  </ul>  
                       
                       
                          <ul class="list-1 con tzgg"  style="padding-top: 18px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500; display: block">
                         
                         <li><a href="/c/2024-12-18/11635.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 18 </span><em> 2024.12 </em></div><div class="news fl" >关于2024年“双师型”教师认定拟通过人员名单的公示<i></i></div></a></li>
                         <li><a href="/c/2024-12-09/11497.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 09 </span><em> 2024.12 </em></div><div class="news fl" >关于2024年高校教师系列职称拟通过人员名单的公示<i></i></div></a></li>
                         <li><a href="/c/2024-10-28/11384.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 28 </span><em> 2024.10 </em></div><div class="news fl" >关于2024年下半年高等学校教师资格认定初审通过人员...<i></i></div></a></li>
                         <li><a href="/c/2024-09-18/11209.shtml" target="_self" class="news1"><div class="time1 fl"><span class="span1"> 18 </span><em> 2024.09 </em></div><div class="news fl" >关于申报&#32;“楚怡”名师&#32;(名匠)&#32;工作室项目负责人有...<i></i></div></a></li>  </ul>     
                       
                       
                       
                      <!-- 
                       
                        <ul class="list-1 con xydt"  style="padding-top: 18px;height: 336px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500;display: none; ">
                         <cms:article catalogalias="xydt_xbdt" level="CurrentAndChild"  count="4"><z:list>
                          <li><a href="${Article.Link}" target="_self"><div class="time fl"><span> ${format(Article.PublishDate,'dd')} </span><em> ${format(Article.PublishDate,'YYYY.MM')} </em></div><div class="news fl">${charWidth(Article.Title,48,'...')}<i>${Catalog.Name}</i></div></a></li>    
                           </z:list></cms:article> </ul>
                       
                       <ul class="list-1 con mtzx"  style="padding-top: 18px;height: 336px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500;display: none; ">
                         <cms:article catalogalias="xydt_mtzx" level="CurrentAndChild"   count="4"><z:list>
                          <li><a href="${Article.Link}" target="_self"><div class="time fl"><span> ${format(Article.PublishDate,'dd')} </span><em> ${format(Article.PublishDate,'YYYY.MM')} </em></div><div class="news fl">${charWidth(Article.Title,48,'...')}<i>${Catalog.Name}</i></div></a></li>    
                           </z:list></cms:article> </ul>
                       
                        <ul class="list-1 con xydt"  style="padding-top: 18px;height: 336px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500;display: none; ">
                         <cms:article catalogalias="xydt_xysp" level="CurrentAndChild"  count="4"><z:list>
                          <li><a href="${Article.Link}" target="_self"><div class="time fl"><span> ${format(Article.PublishDate,'dd')} </span><em> ${format(Article.PublishDate,'YYYY.MM')} </em></div><div class="news fl">${charWidth(Article.Title,48,'...')}<i>${Catalog.Name}</i></div></a></li>    
                           </z:list></cms:article> </ul>
                       
                       <ul class="list-1 con mtzx"  style="padding-top: 18px;height: 336px;text-indent: 15px;width: 48%;float: left;font-family:Microsoft YaHei;padding: 20px;font-size: 18px;font-weight:500;display: none; ">
                         <cms:article catalogalias="xydt_tzgg" level="CurrentAndChild"   count="4"><z:list>
                           <li><a href="${Article.Link}" target="_self"><div class="time fl"><span> ${format(Article.PublishDate,'dd')} </span><em> ${format(Article.PublishDate,'YYYY.MM')} </em></div><div class="news fl">${charWidth(Article.Title,48,'...')}<i>${Catalog.Name}</i></div></a></li>    
                           </z:list></cms:article> </ul>
                     </div>
                     <!-- 列表结束 -->
      </div>
    </div></div>
  <!-- 校园新闻和媒体报道结束 --> 
    
 
 </div>
  </div>   

    
    

  <div class="bj">  
  
 <!--校园风光
    
    
    
  <div class="tb" > 
                                    
   <div  class="xyfu" data-index="0" href="${Catalog.Link}">
     <span style="font-weight: 600;margin-left: -8px;font-size:20px;color:#393F52;">&nbsp;&nbsp;校园风光<span style="color:#9095A3;font-size:18px;">&nbsp;CAMPUS  SCENERY</span></span> 
     <cms:catalog alias="xyfc"><a class="fr" style="margin-left:824px;" href="${Catalog.Link}">查看更多<img src="${prefix('images/jt_gray.png')}"  /></a></cms:catalog> 
     
      </div>
  <div class="content1" style="width:100%;"  >
    
    <div class="contentyb">
      <ul>
          <cms:article  hasAttribute="image"  catalogalias="xyfc"  count="3"><z:list>
       <li><a href="${Article.Link}"><img src="${sourceImage(Article.LogoFile,380,249)}"/></a></li>
            </z:list></cms:article>
      
      </ul>
    </div>
  </div>
   <div class="page"> 
    <div class="bj">
     <a> <div class="back"></div></a>&nbsp;&nbsp;&nbsp;
    <a><div class="next"></div></a>
  </div>
  </div>  
  </div> 
       <div class="bj">
 <div class="tb" > 
-->
  
 <div class="cont6">
     <!--  <cms:catalog alias="xyfc"><div class="cont6_bt"><h3 class="fl">${Catalog.Name}</h3><em>CAMPUS SCENERY</em><a class="fr" href="${Catalog.Link}"></a><div class="clear"></div></div></cms:catalog>-->
 <div class="cont6_bt"><h3 class="fl">校园风光</h3><em>CAMPUS SCENERY</em><a class="fr" href="/xyfc/"></a><div class="clear"></div></div>
      <div class="roll1">
        <div class="roll-w">
          <ul class="roll-b" sttyle="">
            
            <li class="box"><a class="link" href="/c/2024-12-02/7125.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1483_380x249c.jpg" width="380" height="249"/><p class="tit">学生宿舍</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-02/6811.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1477_380x249c.jpg" width="380" height="249"/><p class="tit">师资楼</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-02/6810.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1476_380x249c.jpg" width="380" height="249"/><p class="tit">楼西北角</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-02/7128.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1488_380x249c.jpg" width="380" height="249"/><p class="tit">综合实训楼</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-02/6812.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1478_380x249c.jpg" width="380" height="249"/><p class="tit">实习工厂</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-02/7124.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1481_380x249c.jpg" width="380" height="249"/><p class="tit">学生餐厅</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-01/6809.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1475_380x249c.jpg" width="380" height="249"/><p class="tit">教学楼</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-01/7123.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1480_380x249c.jpg" width="380" height="249"/><p class="tit">体育馆</p></a></li>
            <li class="box"><a class="link" href="/c/2024-12-01/6808.shtml" target="_blank"><img src="/upload/resources/image/2023/04/03/1472_380x249c.jpg" width="380" height="249"/><p class="tit">教室</p></a></li>  
          </ul>
        </div>
        <div class="roll-p"></div>
        <div class="roll-n"></div>
      </div>
      </div>

   <!--相关链接开始-->

<div class="sybj" style="margin-top: -23px;">
 <div class="con_footer" style="padding:20px;" >
      
          <div  class="xyfu" data-index="0" href="/zcms/ui/preview/catalog/54?platformID=pc"style="width:1160px;height: 50px;border-bottom: 1px solid #DCDDE0;display: flex;overflow: hidden;margin: auto;">
           
                    <span style="font-weight: 600;margin-left: -11px;font-size:22px;color:#393F52;">&nbsp;&nbsp;相关链接<span style="color:#9095A3;font-size:16px;">&nbsp;&nbsp;&nbsp;&nbsp;	RELATED LINKS</span></span> </div>
                  
              
                <div class="clear"></div>
           
          
             <ul class="activity1_list" style="margin-top: 30px;margin-top: 30px;padding-bottom: 1px;width: 1200px; margin: auto;margin-top: 20px;">
                
                  <li>
                    <a href="javascript:getPage(1273)" target="_blank">
                      	<div >
                      	<a target="_blank" href="https://www.eol.cn/"><img src="/upload/resources/image/2023/04/09/1642_266x72c.png" alt="中国教育在线" /></a>
                      	</div>
                     
                    </a>
                  </li>
                  <li>
                    <a href="javascript:getPage(1272)" target="_blank">
                      	<div >
                      	<a target="_blank" href="http://jyw.hnedu.cn/?key=dlzy"><img src="/upload/resources/image/2023/04/09/1643_266x72c.png" alt="湖南教育网" /></a>
                      	</div>
                     
                    </a>
                  </li>
                  <li>
                    <a href="javascript:getPage(1271)" target="_blank">
                      	<div >
                      	<a target="_blank" href="http://jyt.hunan.gov.cn/"><img src="/upload/resources/image/2023/04/09/1644_266x72c.png" alt="湖南省教育厅" /></a>
                      	</div>
                     
                    </a>
                  </li>
                  <li>
                    <a href="javascript:getPage(1270)" target="_blank">
                      	<div >
                      	<a target="_blank" href="http://fuwu.cseptc.net/"><img src="/upload/resources/image/2022/09/09/1058_266x72c.png" alt="1" /></a>
                      	</div>
                     
                    </a>
                  </li>
              </ul>
          
           </div>   </div>   </div> 
    
      
 <!--相关链接结束--> 
   <!--   <div class="con_footer">
      
          <div class="xyfu" data-index="0" href="/zcms/ui/preview/catalog/54?platformID=pc" style="width: 1200px;height: 50px;border-bottom: 1px solid #DCDDE0;display: flex;overflow: hidden;margin: auto;">
           
                    <span style="font-weight: 600;margin-left: -11px;font-size:22px;color:#393F52;">&nbsp;&nbsp;相关链接<span style="color:#9095A3;font-size:16px;">&nbsp;&nbsp;&nbsp;&nbsp;CAMPUS  SCENERY</span></span> </div>
                  
              
                <div class="clear"></div>
           
          
             <ul class="activity1_list" style="margin-top: 30px;margin-top: 30px;padding-bottom: 1px;width: 1200px; margin: auto;">
                
                  <li style="width: 300px;padding-right: 32px;">
                    <a href="javascript:getPage(2436)" target="_blank">
                      	</a><div><a href="javascript:getPage(2436)" target="_blank">
                      	</a><a target="_blank" href="/zcms/ui/preview/content/2436?platformID=pc"><img src="/zcms/preview/dlzygw2/upload/resources/image/2022/10/31/1162_266x72c.png" />alt="4"></a>
                      	</div>
                     
                    
                  </li >
                  <li style="width:  300px;padding-right: 32px;">
                    <a href="javascript:getPage(2437)" target="_blank">
                      	</a><div><a href="javascript:getPage(2437)" target="_blank">
                      	</a><a target="_blank" href="/zcms/ui/preview/content/2437?platformID=pc">
                    <img src="/zcms/preview/dlzygw2/upload/resources/image/2022/10/31/1163_266x72c.png"/ alt="3"></a>
                      	</div>
                     
                    
                  </li>
                  <li style="width:  300px;padding-right: 32px;">
                    <a href="javascript:getPage(2438)" target="_blank">
                      	</a><div><a href="javascript:getPage(2438)" target="_blank">
                      	</a><a target="_blank" href="/zcms/ui/preview/content/2438?platformID=pc"><img src="/zcms/preview/dlzygw2/upload/resources/image/2022/10/31/1164_266x72c.png" alt="2"></a>
                      	</div>
                     
                    
                  </li>
                  <li style="width:  300px;padding-right: 0px;">
                    <a href="javascript:getPage(2429)" target="_blank">
                      	</a><div><a href="javascript:getPage(2429)" target="_blank">
                      	</a><a target="_blank" href="/zcms/ui/preview/content/2429?platformID=pc"><img src="/zcms/preview/dlzygw2/upload/resources/image/2022/10/31/1153_266x72c.png" alt="1"></a>
                      	</div>
                     
                    
                  </li>
              </ul>
          
           </div>--> 
  <!--公告栏-->   
  <script>
		$(document).ready(function(){
			function rollOne(){
				$(".picBox").animate({marginLeft:"-900px"},20000,"linear",function(){
					$(this).css({marginLeft:"0px"});
					$(this).children("li").first().remove().clone(true).appendTo(".picBox");
				});
			}
			var startRollOne=setInterval(rollOne,6000);
			$(".content2").hover(function () {
				clearInterval(startRollOne);
			}, function () {
				startRollOne=setInterval(rollOne,6000);
			});
		});
	</script>
     
<!--友情链接-->
  <script src="/sydwpxnew/sydwpxfinally/js/jquery-1.11.0.min.js"></script>
    <script language="javascript" type="text/javascript">
   function scroll() {
    $(".content ul").animate({"margin-left":"-300px"}, function() {
        $(".content ul li:eq(0)").appendTo($(".content ul"));
        $(".content ul").css({"margin-left": 0});
    });
}

var scrolling = setInterval(scroll,2000);

$('.content').hover(function() {
    clearInterval(scrolling);
}, function() {
    scrolling = setInterval(scroll,2000);
});
      
      	$(".ckgd").mouseover(function () {
		 $('.ck').hide();
     	 $('.ck1').show();
		});
		$(".ckgd").mouseout(function () {
 		$('.ck').show();
      	$('.ck1').hide();
		});
      
    
    
     
    <!--学院风采-->
   function scroll2() {
      $(".contentyb ul").animate({ "margin-left": "-20px" }, function () {
        $(".contentyb ul li:eq(0)").appendTo($(".contentyb ul"));
        $(".contentyb ul").css({ "margin-left": "0" });
      });
      $(".contentzb ul").animate({ "margin-left": "-20px" }, function () {
        $(".contentzb ul li:eq(0)").appendTo($(".contentzb ul"));
        $(".contentzb ul").css({ "margin-left": "0" });
      });
    }

    scrolling = setInterval(scroll2,3000);

    $('.content1').hover(function () {
      clearInterval(scrolling);
    }, function () {
      scrolling = setInterval(scroll2,3000);
    });

    $('.page').hover(function () {
      clearInterval(scrolling);
    }, function () {
      scrolling = setInterval(scroll2,3000);
    });
    $(".next").on("click", function () {
      //同上
      $(".contentyb ul").animate({ "margin-left": "+20px" }, function () {
        $(".contentyb ul li:eq(2)").prependTo($(".contentyb ul"));
        $(".contentyb ul").css({ "margin-left": "0" });
      });
      $(".contentzb ul").animate({ "margin-left": "+20px" }, function () {
        $(".contentzb ul li:eq(2)").prependTo($(".contentzb ul"));
        $(".contentzb ul").css({ "margin-left": "0" });
      });
    })
    $(".back").on("click", function () {
      scroll2();
    })
 

    
 </script>
   
   
  
  <!-- 常用导航开始--> 
      <div class='floatMask' id='floatMask'>
  
    <i class='floatMaskIcon'></i>
  </div>

 <dl id="zydh" class="nav_left">
  <dt>校园服务
   <span class='navCollaspe'>收起<i class='navMaskIcon'></i></span></dt>
  <dd>
   
    <a href="http://exmail.qq.com/login" target="_blank"><span style="float: left;margin-top: 14px;margin-left: 14px;"><img src="/images/yxdl.png"/></span>&nbsp;&nbsp;<span style="float: left;margin-left: 2px;">邮箱登陆</span></a>
     <a href="http://www.cseptc.net/cydh/xxgk/" target="_blank"><span style="float: left;margin-top: 14px;margin-left: 14px;"><img src="/images/xxgk.png"/></span>&nbsp;&nbsp;<span style="float: left;margin-left: 2px;">信息公开</span></a>
    <a href="http://192.168.20.22/jwglxt/xtgl/login_slogin.html" target="_blank"><span style="float: left;margin-top: 14px;margin-left: 14px;"><img src="/images/yxdl.png"/></span>&nbsp;&nbsp;<span style="float: left;margin-left: 2px;">教务系统</span></a>
     <a href="http://192.168.20.21/xgxt/" target="_blank"><span style="float: left;margin-top: 14px;margin-left: 14px;"><img src="/images/xxgk.png"/></span>&nbsp;&nbsp;<span style="float: left;margin-left: 2px;">学工系统</span></a>
         <a href="http://192.168.200.187:8080/" target="_blank"><span style="float: left;margin-top: 14px;margin-left: 14px;"><img src="/images/xxgk.png"/></span>&nbsp;&nbsp;<span style="float: left;margin-left: 2px;">科研管理</span></a>
    
  </dd>
</dl>
</div> </div>
   <!-- 常用导航结束-->  
 <!-- 包含页尾-->
        
 
<script src="/v3/js/bootstrap.min.js"></script>
<script src="/v3/js/hammer.min.js"></script>
<script src="/v3/js/scroll/smoothscroll.js"></script>
<script src="/v3/js/v3_common.js"></script>
<script src="/v3/js/v3_site.js"></script>
<style>
  .wz b{font-weight: 600;font-family: "OPPOSans";}
  .wz b{color:#fff;}
</style>
<div class="footer" style="width:100%;">
    <div class="wraper">
       <div class="fl">
              <p style="float:left; padding:0  0 20px 0;"><img src="/images/logo2.png"/></p>
      </div>
      <div class="fr" style="line-height: 52px;">
        <a href="http://www.cseptc.qmgczx.cn/xxgk/">关于我们</a>&nbsp;&nbsp; |&nbsp;&nbsp; <a href="http://www.cseptc.qmgczx.cn/xxgk/lxwm/">联系我们</a> 
      </div>
      <div class="clear"></div>
    </div>
    <div class="wraper">
      <div class="wz">
        <b>电话:</b>0731-84074400(办公室) &nbsp;0731-84074167(招生) &nbsp;0731-84074362(就业)
        <b style="margin-left:80px;">传真:</b>0731-84074156&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <b>邮箱:</b>webadmin@cseptc.net      <br/> 
        <b> 地址:</b>湖南省长沙市经济技术开发区盼盼路(泉塘)  &nbsp;&nbsp;&nbsp;&nbsp; <b>邮编:</b>410131   <br/>
      </div>
      <div class="clear"></div>
    </div>
 	<div class="wraper lianjie">
      
      <div class="clear"></div>
  	</div>  
   <div class="wraper">
     <div class="wz" style="width: 1200px;"><span> 湘ICP备05000543号 &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;   湘教育QS3-200505-000136&nbsp;&nbsp;&nbsp;&nbsp;  等保证书编号430112400900004&nbsp;&nbsp;&nbsp;&nbsp;<span style="margin-left: 7px;">
     &nbsp;&nbsp;&nbsp;&nbsp;
       <b>访问量:&nbsp;&nbsp;</b><span style="text-align:right;">
<span id=_zving_totalhitcount />
<script src="/zcms/front/site/4/counter?Type=Total&SiteID=4&DomID=_zving_totalhitcount&VarName=_zving_totalhitcount" type="text/javascript"></script>
</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
       	<b>今日访问量:&nbsp;&nbsp;</b><span style="text-align:right;">
<span id=_zving_todayhitcount />
<script src="/zcms/front/site/4/counter?Type=today&SiteID=4&DomID=_zving_todayhitcount&VarName=_zving_todayhitcount" type="text/javascript"></script>
</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
       <b>在线人数:&nbsp;&nbsp;</b><span style="text-align:right;">
<span id=_zving_onlinecount />
<script src="/zcms/front/site/4/counter?Type=online&SiteID=4&DomID=_zving_onlinecount&VarName=_zving_onlinecount" type="text/javascript"></script>

		<br/>
      	<span>湘公网安备43012102000352号</span>
      </div>
      <div class="clear"></div>
	</div>      
</div> 
   <script>
  $(function(){
     $('#zydh').on('click','.navCollaspe',function(){
  		$('#zydh').removeClass('nav_left').addClass('nav_right')
  		$('#floatMask').removeClass('move_right').addClass('move_left')
  	})
  	$('#floatMask').on('click',function(){
  		$(this).removeClass('move_left').addClass('move_right')
  		$('#zydh').removeClass('nav_right').addClass('nav_left')
  	})
  	
  })
	
       $(function(){
  	$('#floatMask').on('click',function(){
  		$(this).removeClass('move_left').addClass('move_right')
  		$('#zydh').removeClass('nav_right').addClass('nav_left')
  	})
  	$('#zydh').on('click','.navCollaspe',function(){
  		$('#zydh').removeClass('nav_left').addClass('nav_right')
  		$('#floatMask').removeClass('move_right').addClass('move_left')
  	})
  })
	var xyfgindex = 0
	$(document).ready(function (){
		xyfgnext(0)

	})

	function xyfgnext (next)
	{
		xyfgindex = xyfgindex + next
		if(xyfgindex<0){
			xyfgindex = 0
		}
		if(xyfgindex>$('.wenzi').length-1){
			xyfgindex = $('.wenzi').length-1
		}
		$('.wenzi').each(function (i,item){
			if(i==xyfgindex){
				$(this).show()
			}else {
				$(this).hide()
			}
			if(i==0){
				//$(this).children('.fl').attr('src','../images/fy_l.png')
			}
			if(i==$('.wenzi').length){
				//$(this).children('.fr').attr('src','../images/fy_l.png')
			}
		})
		$('.lixyfgimg').each(function (i,item){
			if(i==xyfgindex||i==xyfgindex+1){
				$(this).show()
			}else {
				$(this).hide()
			}
		})
	}
</script>
     

<script src="/zcms/stat/front/stat.js" type="text/javascript"></script>
<script>
if(window._zcms_stat)_zcms_stat("SiteID=4&Dest=/zcms/front/stat/dealer");
</script>

<!-- App=ZCMS(ZCMS内容管理系统) 3.2.14,CostTime=36,PublishDate=2024-12-23 16:03:16 -->
</body>
</html>

网页分析工具

为您提供网页信息检测查询,可以快速检测网页的META标签,分析标题、关键词、描述等是否符合搜索引擎收录规范 。

您的足迹: