标签 | 内容 | 内容长度 | 优化建议 |
---|---|---|---|
网页标题(Title) | 天津国土资源和房屋职业学院 | 13 个字符 | 标题字符数量在合理范围 |
网页关键词(KeyWords) | 关键字,获取失败 | 0 个字符 | 关键字数在合理范围 |
内容描述(Description) | 内容描述,获取失败 | 0 个字符 | 描述内容长度在合理范围 |
检测时间 | 2024-12-23 19:11:49 |
服务器IP | 111.33.120.200 |
返回状态码 | 200 |
网页返回HEAD信息 | HTTP/1.1 200 OK Cache-Control: no-cache Content-Type: text/html Content-Encoding: gzip Last-Modified: Mon, 23 Dec 2024 07:09:22 GMT Accept-Ranges: bytes ETag: "0bd5b97955db1:0" Vary: Accept-Encoding Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Mon, 23 Dec 2024 11:11:45 GMT Content-Length: 15416 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="baidu-site-verification" content="code-tZKwKLvbQ3" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>天津国土资源和房屋职业学院</title>
<LINK type=text/css rel=stylesheet href="filesupload/css/main.css">
<script type="text/javascript" src="filesupload/js/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
var sWidth = $("#focus").width(); //获取焦点图的宽度(显示面积)
var len = $("#focus ul li").length; //获取焦点图个数
var index = 0;
var picTimer;
//以下代码添加数字按钮和按钮后的半透明长条
var btn = "<div class='btnBg'></div><div class='btn'>";
for(var i=0; i < len; i++) {
btn += "<span>" + (i+1) + "</span>";
}
btn += "</div>"
$("#focus").append(btn);
$("#focus .btnBg").css("opacity",0.5);
//为数字按钮添加鼠标滑入事件,以显示相应的内容
$("#focus .btn span").mouseenter(function() {
index = $("#focus .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseenter");
//本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度
$("#focus ul").css("width",sWidth * (len + 1));
//鼠标滑入某li中的某div里,调整其同辈div元素的透明度,由于li的背景为黑色,所以会有变暗的效果
$("#focus ul li div").hover(function() {
$(this).siblings().css("opacity",0.7);
},function() {
$("#focus ul li div").css("opacity",1);
});
//鼠标滑上焦点图时停止自动播放,滑出时开始自动播放
$("#focus").hover(function() {
clearInterval(picTimer);
},function() {
picTimer = setInterval(function() {
if(index == len) { //如果索引值等于li元素个数,说明最后一张图播放完毕,接下来要显示第一张图,即调用showFirPic(),然后将索引值清零
showFirPic();
index = 0;
} else { //如果索引值不等于li元素个数,按普通状态切换,调用showPics()
showPics(index);
}
index++;
},3000); //此3000代表自动播放的间隔,单位:毫秒
}).trigger("mouseleave");
//显示图片函数,根据接收的index值显示相应的内容
function showPics(index) { //普通切换
var nowLeft = -index*sWidth; //根据index值计算ul元素的left值
$("#focus ul").stop(true,false).animate({"left":nowLeft},500); //通过animate()调整ul元素滚动到计算出的position
$("#focus .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果
}
function showFirPic() { //最后一张图自动切换到第一张图时专用
$("#focus ul").append($("#focus ul li:first").clone());
var nowLeft = -len*sWidth; //通过li元素个数计算ul元素的left值,也就是最后一个li元素的右边
$("#focus ul").stop(true,false).animate({"left":nowLeft},500,function() {
//通过callback,在动画结束后把ul元素重新定位到起点,然后删除最后一个复制过去的元素
$("#focus ul").css("left","0");
$("#focus ul li:last").remove();
});
$("#focus .btn span").removeClass("on").eq(0).addClass("on"); //为第一个按钮添加选中的效果
}
});
</script>
<LINK rel="stylesheet" type="text/css" href="filesupload/css/css.css">
<LINK rel="stylesheet" type="text/css" href="filesupload/css/demo.css">
<!-- syntaxhighlighter -->
<SCRIPT type="text/javascript" src="filesupload/js/jquery-1.4.2.min.js"></SCRIPT>
<SCRIPT type="text/javascript" src="filesupload/js/jquery.switchable[all].min.js"></SCRIPT>
<!-- syntaxhighlighter -->
<SCRIPT type="text/javascript">
$(function(){
window.api = $("#tabs1").switchable("#panels1 > div", {
circular: true
}).autoplay({
autopause: false,
api: true
});
$("#tabs2").switchable("#panels2 > div").mousewheel();
});
// syntaxhighlighter
SyntaxHighlighter.config.clipboardSwf = "../asset/scripts/clipboard.swf";
SyntaxHighlighter.all();
</SCRIPT>
<!-- 导航菜单开始 -->
<LINK rel="stylesheet" type="text/css" href="filesupload/css/style_menu.css">
<link rel="stylesheet" type="text/css" href="filesupload/css/lrtk.css">
<!-- 导航菜单结束 -->
<!-- dd menu -->
<script type="text/javascript">
<!--
var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;
// open hidden layer
function mopen(id)
{
// cancel close timer
mcancelclosetime();
// close old layer
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
// get new layer and show it
ddmenuitem = document.getElementById(id);
ddmenuitem.style.visibility = 'visible';
}
// close showed layer
function mclose()
{
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}
// go close timer
function mclosetime()
{
closetimer = window.setTimeout(mclose, timeout);
}
// cancel close timer
function mcancelclosetime()
{
if(closetimer)
{
window.clearTimeout(closetimer);
closetimer = null;
}
}
// close layer when click-out
document.onclick = mclose;
// -->
</script>
<SCRIPT type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3672694-9']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</SCRIPT>
<SCRIPT type="text/javascript" src="filesupload/js/s_top.js"></SCRIPT>
<LINK rel="stylesheet" type="text/css" href="filesupload/css/jquery.panorama.css">
<SCRIPT type="text/javascript" src="filesupload/js/jqueryjs"></SCRIPT>
<SCRIPT type="text/javascript" src="filesupload/js/jquery.panorama.js"></SCRIPT>
<!--字符串替换开始-->
<script type="text/javascript">
jQuery.fn.limit=function(){
var self = $("a[limit]");
self.each(function(){
var objString = $(this).text();
var objLength = $(this).text().length;
var num = $(this).attr("limit");
if(objLength > num){
$(this).attr("title",objString);
objString = $(this).text(objString.substring(0,num) + "...");
}
})
}
$(function(){
$(document.body).limit();
})
</script>
<!--字符串替换结束-->
</head>
<body onload="time_fun()">
<!--top开始-->
<link rel="stylesheet" type="text/css" href="filesupload/css/lrtk.css">
<!-- 导航菜单结束 -->
<!-- dd menu -->
<script type="text/javascript">
<!--
var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;
// open hidden layer
function mopen(id)
{
// cancel close timer
mcancelclosetime();
// close old layer
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
// get new layer and show it
ddmenuitem = document.getElementById(id);
ddmenuitem.style.visibility = 'visible';
}
// close showed layer
function mclose()
{
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}
// go close timer
function mclosetime()
{
closetimer = window.setTimeout(mclose, timeout);
}
// cancel close timer
function mcancelclosetime()
{
if(closetimer)
{
window.clearTimeout(closetimer);
closetimer = null;
}
}
// close layer when click-out
document.onclick = mclose;
// -->
</script>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="filesupload/images/logo2024.jpg" width="980" />
</td>
</tr>
</table>
<!--导航菜单代码开始-->
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="advm">
<tr>
<td align="center">
<ul id="sddm">
<li><a href="index.html" onmouseover="mopen('m7')" onmouseout="mclosetime()">首页</a>
</li>
<li><a href="xygk_xyld.html" target="_blank" onmouseover="mopen('m1')" onmouseout="mclosetime()">学院概况</a>
<div id="m1" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="xygk_xyld.html" target="_blank">学院领导</a>
<a href="xygk_xyjj.html" target="_blank">学院简介</a>
<!--<a href="xygk_xyzz.html" target="_blank">学院职责</a>-->
<a href="xygk_xysp.html" target="_blank">学院视频</a>
</div>
</li>
<li><a href="jgsz_dzbm.html" target="_blank" onmouseover="mopen('m2')" onmouseout="mclosetime()">机构设置</a>
<div id="m2" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="jgsz_dzbm.html" target="_blank">党政部门</a>
<a href="jgsz_xzbm.html" target="_blank">行政机构</a>
<a href="jgsz_jxbm_jzgcx.html" target="_blank">教学机构</a>
<a href="jgsz_jfbm.html" target="_blank">教辅机构</a>
</div>
</li>
<li><A href="zyjs.html" target="_blank" onmouseover="mopen('m3')" onmouseout="mclosetime()">专业介绍</a>
</li>
<li><a href="jxky_jxgl_gzdt.html" target="_blank" onmouseover="mopen('m4')" onmouseout="mclosetime()">教学科研</a>
<div id="m4" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="http://221.239.112.70/guotu/" target="_blank">顶岗实习交互系统</a>
<a href="http://111.33.120.201/jwglxt" target="_blank">教务管理系统</a>
<a href="jxky_jxgl_gzdt.html" target="_blank">教学管理</a>
<a href="jxky_szgk.html" target="_blank">师资概况</a>
<!--<a href="jxky_jxdt.html" target="_blank">教学督导</a>-->
<a href="jxky_kygz_kyxm.html" target="_blank">科研工作</a>
<a href="jxky_qnjslt_2013_02.html" target="_blank">青年教师论坛</a>
</div>
</li>
<li><a href="http://zs.tjgfxy.com.cn/" target="_blank" onmouseover="mopen('m5')" onmouseout="mclosetime()">招生就业</a>
<div id="m5" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="http://zs.tjgfxy.com.cn/" target="_blank">招生网</a>
<a href="http://tjgfxy.bysjy.com.cn" target="_blank">就业网</a>
</div>
</li>
<li><a href="xsgz_xsgl_jczz.html" target="_blank" onmouseover="mopen('m6')" onmouseout="mclosetime()">学生工作</a>
<div id="m6" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="xsgz_xsgl_jczz.html" target="_blank">学生管理</a>
<a href="xsgz_twgz_xsh.html" target="_blank">团委工作</a>
<a href="xsgz_gygl.html" target="_blank">公寓管理</a>
</div>
</li>
<li><a href="http://cele.tjgfxy.com.cn/" target="_blank" onmouseover="mopen('m7')" onmouseout="mclosetime()">校友网站</a>
</li>
</li>
</ul>
</td>
</tr>
</table>
<div style="clear:both"></div>
<!--导航菜单代码结束-->
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="fdh">
<tr>
<td height="28" align="left" valign="middle" class="fcd">
<table width="903" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="70" align="center" valign="middle" class="fcd_td"><a href="xxgk_ml_new.html" class="fcd_td_text">信息公开</a></td>
<td width="70" align="center" valign="middle" class="fcd_td"><a href="jxkj.html" class="fcd_td_text">教学课件</a></td>
<td width="70" align="center" valign="middle" class="fcd_td"><a href="xygk_xysp.html" class="fcd_td_text">学院视频</a></td>
<!--<td width="120" align="center" valign="middle" class="fcd_td"><a href="http://jpk.tjgfxy.com.cn/yangcai/" target="_blank" class="fcd_td_text">央财支持专业</a></td>-->
<td width="73" align="center" valign="middle" class="fcd_td"><a href="http://qnzs.youth.cn/" target="_blank" class="fcd_td_text">青年之声</a></td>
<td width="73" align="center" valign="middle" class="fcd_td"><a href="#" target="_blank" class="fcd_td_text">纪检监察</a></td>
<td width="73" align="center" valign="middle" class="fcd_td"><a href="mailto:gfxy_sssq@163.com" target="_blank" class="fcd_td_text">院长邮箱</a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="yy">
<tr>
<td height="5"></td>
</tr>
</table>
<!--top结束-->
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="content_table">
<tr>
<td width="50%" align="center">
<table width="480" border="0" align="center" cellpadding="0" cellspacing="0" class="xyfg">
<tr>
<td height="30">
<div class="xyfg_bt">
<span class="xyfg_bt_img"><img src="filesupload/images/xyfg_bt.png" width="300" height="30" border="0" /></span>
<span class="more"><img src="filesupload/images/more.png" width="45" height="22" /></span>
</div>
</td>
</tr>
<tr>
<td align="center" valign="middle" class="xyfg_tdpadding">
<!--幻灯片开始-->
<div class="wrapper">
<div id="focus">
<ul>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg3.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg4.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg5.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg6.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg7.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg8.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg9.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg10.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg11.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg12.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg13.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg14.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg15.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg16.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg17.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg18.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg19.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg20.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg21.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg22.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg23.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg24.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg25.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg26.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg27.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg28.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg29.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg30.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg31.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg32.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg33.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg34.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg35.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg36.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg37.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg38.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg39.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg40.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg41.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg42.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg43.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg44.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg45.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg46.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg47.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg48.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg49.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg50.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg51.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg52.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg53.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg54.jpg" border="0"/></a></div></li>
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg55.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg56.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg57.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg58.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg59.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg60.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg61.jpg" border="0"/></a></div></li>-->
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg62.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg63.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg64.jpg" border="0"/></a></div></li>-->
<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg65.jpg" border="0"/></a></div></li>
<!--<li><div style="left:0; top:0; width:450px; height:200px;"><a href="#"><img src="filesupload/images/xyfg66.jpg" border="0"/></a></div></li>-->
</ul>
</div>
</div>
<!-- 幻灯片结束 -->
</td>
</tr>
</table>
<table width="480" border="0" cellspacing="0" cellpadding="0" class="xmyy">
<tr>
<td></td>
</tr>
</table>
</td>
<td width="50%" align="center" valign="top">
<DIV class="wrap clearfix">
<!--<span class=more2><a href="xyxw.html" class="bgnone"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>-->
<DIV id="tabs2" class="tabs-trigger">
<A href="ggl.html">公告公示</A>
<A href="xyxw.html">学院新闻</A>
<A href="gzdt.html">工作动态</A>
<A href="cgxx.html">采购信息</A>
<A href="jyqgktj.html">教育强国看天津</A>
</DIV>
<DIV id="panels2" class="tabs-panel">
<div class="tabs_text">
<span><b class="tabs_text_tb"></b><A href="ggl_23A456AF-B80D-4C54-A865-E6A9AD486B7B.html" limit="30" target="_blank" >关于批准学生刘浩楠转专业的公示</A><b class="tabs_text_date">2024-10-12</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_43369F4B-4747-416F-9DE2-D40D4A2A43AB.html" limit="30" target="_blank" >市住房城乡建设委2024年直属事业单位公开招聘工作人员拟聘用人员公示公告</A><b class="tabs_text_date">2024-9-20</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_8E260383-7821-4423-B19C-76E1E2D3B350.html" limit="30" target="_blank" >2024年12月大学英语四、六级考试报名通知</A><b class="tabs_text_date">2024-9-13</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_3969638E-B3DE-4A74-8BDA-5388AA224D21.html" limit="30" target="_blank" >天津国土资源和房屋职业学院 2024年成人高考专科学历招生简章</A><b class="tabs_text_date">2024-9-10</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_E4757B48-C0F8-4C44-A754-F33754F4EF30.html" limit="30" target="_blank" >天津市住房和城乡建设委员会2024年直属事业单位公开招聘工作人员公告</A><b class="tabs_text_date">2024-7-22</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_CD96D369-B663-4AB7-B0A4-9DD7BE3985EB.html" limit="30" target="_blank" >关于批准柳竹等8名学生转专业的公示</A><b class="tabs_text_date">2024-3-27</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_01BACE59-0E92-4375-BEFA-8DDBD507D3A5.html" limit="30" target="_blank" >关于聘请第三方机构负责本校学生图像信息照片拍摄及制作</A><b class="tabs_text_date">2024-3-25</b></span><br />
<span><b class="tabs_text_tb"></b><A href="ggl_4265BE42-DAA2-4441-BEED-F4A7C686C420.html" limit="30" target="_blank" >2024年6月大学英语四六级考试报名通知</A><b class="tabs_text_date">2024-3-21</b></span><br />
</div>
<div class="tabs_text">
<span><b class="tabs_text_tb"></b><A href="xyxw_9A234345-8F17-4EE6-A217-760877193EA9.html" limit="30" target="_blank" >
关于开展“建筑信息模型技术员”职业技能等级(四级五级)评价报名相关事项公告</A><b class="tabs_text_date">2024-09-01</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_9539DEB9-C69A-4526-B78D-201371E3C12A.html" limit="30" target="_blank" >
喜报 | 笃信笃行,勇夺佳绩 ——不动产管理学院学生荣获“天津市大学生土地国情调查与空间治理技能大赛”一等奖</A><b class="tabs_text_date">2023-10-11</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_5D36531D-0D20-49A2-A387-D1778FC2E68B.html" limit="30" target="_blank" >
思政教育 | 思政教育教学部推动习近平新时代中国特色社会主义思想“三进”暨党的二十大精神融入思政课集体备课会</A><b class="tabs_text_date">2023-10-09</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_EC9E7611-2370-47A9-81CB-BE09B9A85991.html" limit="30" target="_blank" >
喜报 | 学院毽球队在第12届中国大学生 毽球锦标赛中喜获佳绩</A><b class="tabs_text_date">2023-09-25</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_9B7A7C1D-C774-4DFE-AE9B-08769EC41A26.html" limit="30" target="_blank" >
为奋进新征程凝心聚力 </A><b class="tabs_text_date">2023-05-06</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_4A431480-39FD-45D3-A560-5CF3D11DA4EB.html" limit="30" target="_blank" >
天开高教科创园 | 有创业梦想,在天开园就能实现——天开园政策宣讲进校园活动正式拉开帷幕</A><b class="tabs_text_date">2023-05-05</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_F182EADA-C025-469B-8395-AB06CF0E8627.html" limit="30" target="_blank" >
学院纪事 | 参观历史风貌 解读古建技艺 ——建筑艺术学院古建专业学生到北京开展课程实践 </A><b class="tabs_text_date">2023-04-26</b></span><br />
<span><b class="tabs_text_tb"></b><A href="xyxw_48A3C073-781C-429D-9BF7-762C499933E9.html" limit="30" target="_blank" >
【网络中国节·七夕】</A><b class="tabs_text_date">2022-08-04</b></span><br />
</div>
<div class="tabs_text">
<span><b class="tabs_text_tb"></b><A href="gzdt_97CC912A-EB59-479D-A9EA-F05B8F394706.html" limit="30" target="_blank" >学院纪事|丰富伙食品种,提高伙食质量</A><b class="tabs_text_date">2023-4-28</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_80803A43-DD08-4062-92E4-DC74BEC52A79.html" limit="30" target="_blank" >学院纪事 | 继续教育学院参加“首届京津冀退役军人就业招聘暨跨区域企业合作签约活动”</A><b class="tabs_text_date">2023-4-28</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_AEDB2B1F-1B34-40A0-91AD-8761DA49C693.html" limit="30" target="_blank" >简报2020年第19期 学院组织服务工作人员开展消防安全培训</A><b class="tabs_text_date">2020-9-29</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_31E454E4-E571-4E41-95D3-8B8CDEA52951.html" limit="30" target="_blank" >简报2020年第18期 学院进行国庆节、中秋节节前安全大检查工作</A><b class="tabs_text_date">2020-9-29</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_1E59EFE7-94EA-495C-B3E0-DA0E7A29988F.html" limit="30" target="_blank" >简报2020年第17期 学院开展安全大检查工作</A><b class="tabs_text_date">2020-9-12</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_CA1CC9B2-8D27-4656-9E04-664501EEF3A1.html" limit="30" target="_blank" >简报2020年第16期 立德树人奋进担当 教育脱贫托举希望——委机关党委书记陈恒斌深入学院座谈慰问教师</A><b class="tabs_text_date">2020-9-10</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_5C0FE54A-9BB0-4748-8F65-420EFA21DE1F.html" limit="30" target="_blank" >简报2020年第14期 经济管理学院在第五届OCALE全国跨境电商创新创业能力大赛中荣获佳绩</A><b class="tabs_text_date">2020-8-19</b></span><br />
<span><b class="tabs_text_tb"></b><A href="gzdt_5A59AE90-D5ED-4AB6-9D50-C2FC66FA7BDA.html" limit="30" target="_blank" >简报2020年第13期 学院成功举办第五届创新创业大赛</A><b class="tabs_text_date">2020-6-29</b></span><br />
</div>
<div class="tabs_text">
<span><b class="tabs_text_tb"></b><A href="cgxx_A4AB32AE-C937-4F07-BA6B-F8F91EC5F46E.html" limit="30" target="_blank" >《人工智能通识教程》二维动画及交互动画制作服务采购比选公告</A><b class="tabs_text_date">2024-12-19</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_2B2930A5-8D5B-455D-A1D7-3CAECE3C5D8D.html" limit="30" target="_blank" >确定房地产大厦甲区4层2025年1-4月保洁服务公司</A><b class="tabs_text_date">2024-12-11</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_65293B61-AE72-4B89-B4E2-5FE8774BB10B.html" limit="30" target="_blank" >2025年度学院公务用车(小车)定点维修企业比选公告</A><b class="tabs_text_date">2024-12-5</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_1B052BF9-DF33-44AC-9F49-52A39B5CB661.html" limit="30" target="_blank" >2025年度学院公务用车(班车)定点维修企业比选公告</A><b class="tabs_text_date">2024-12-5</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_F3842FF8-117C-44DA-B4EF-B39EC6B4C3A7.html" limit="30" target="_blank" >关于2025年中文期刊采购比选的公告</A><b class="tabs_text_date">2024-11-8</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_7869CC14-2DD6-42A4-9921-752FFFC259CF.html" limit="30" target="_blank" >一流核心课程建设工作坊实战培训服务采购公告</A><b class="tabs_text_date">2024-11-5</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_3CC0C14B-28C8-474B-B890-07F841413DDC.html" limit="30" target="_blank" >订购图书单位比选公告</A><b class="tabs_text_date">2024-11-4</b></span><br />
<span><b class="tabs_text_tb"></b><A href="cgxx_5E8B6558-F77F-4065-8E4E-B4BC0C8D612E.html" limit="30" target="_blank" >桶装水采购项目</A><b class="tabs_text_date">2024-10-28</b></span><br />
</div>
<div class="tabs_text">
<span><b class="tabs_text_tb"></b><A href="jyqgktj_32665D8D-917D-43CF-AB33-449164C47BA5.html" limit="30" target="_blank" >六年来,天津教育创下哪些“首次”“率先?</A><b class="tabs_text_date">2024-12-5</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_3E823942-A3D8-4F2C-9CA3-4048C530DE73.html" limit="30" target="_blank" >数说 | 六年来天津教育改革发展变化</A><b class="tabs_text_date">2024-12-4</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_827B7FF2-C3DC-42A1-B44C-236851C124F6.html" limit="30" target="_blank" >数读 | 六年来天津教育改革发展成绩单</A><b class="tabs_text_date">2024-12-3</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_F15FBA33-F5FE-4C8A-9536-0D9DF7750DC6.html" limit="30" target="_blank" >2024世界职业技术教育发展大会——学生技艺展示展演</A><b class="tabs_text_date">2024-11-26</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_B01E7324-1324-4552-8CDB-45F4FE2AE7F6.html" limit="30" target="_blank" >2024年世界职业技术教育发展大会闭幕!他们这么说</A><b class="tabs_text_date">2024-11-25</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_34725009-E35D-49A1-AA7E-D0CBFCEAE94B.html" limit="30" target="_blank" >世界职业教育发展达成“天津共识”|聚焦世界职业技术教育发展大会</A><b class="tabs_text_date">2024-11-23</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_BDB65A78-4C13-4EF9-BA9E-F6DED00A2399.html" limit="30" target="_blank" >述评:为世界职业教育发展画出更大同心圆丨聚焦世界职业技术教育发展大会</A><b class="tabs_text_date">2024-11-23</b></span><br />
<span><b class="tabs_text_tb"></b><A href="jyqgktj_2CBFC2BE-50A4-48BA-ACA9-C312EC543032.html" limit="30" target="_blank" >与会嘉宾分享产教融合校企合作经验—— 产教融合是职业教育的必由之路</A><b class="tabs_text_date">2024-11-23</b></span><br />
</div>
</DIV>
</DIV>
<table width="480" border="0" cellspacing="0" cellpadding="0" class="xmyy">
<tr>
<td></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="content_table">
<tr>
<td width="28%" height="187" align="center" valign="top">
<table width="264" border="0" align="center" cellpadding="0" cellspacing="0" class="zsjy">
<tr>
<td>
<div class="xsdw_bt">
<span class="zsjy_bt_img"><img src="filesupload/images/zsjy_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="zsjy_zsjz.html" target="_blank" ><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td height="90" align="center">
<div class="zyjy_img"><a href="http://zs.tjgfxy.com.cn/" target="_blank" ><img src="filesupload/images/zsjy.gif" width="234" border="0" /></a></div>
</td>
</tr>
<tr>
<td height="15"></td>
</tr>
<tr>
<td height="78" align="center">
<table width="92%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><a href="http://zs.tjgfxy.com.cn/xgxx.html" target="_blank"><img src="filesupload/images/zsjy_zsjz.png" width="120" height="30" border="0" /></a></td>
<td align="center"><a href="http://zs.tjgfxy.com.cn/zyjs.html" target="_blank"><img src="filesupload/images/zsjy_zyjs.png" width="120" height="30" border="0" /></a></td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td align="center"><a href="http://zs.tjgfxy.com.cn/zsjh.html" target="_blank"><img src="filesupload/images/zsjy_zsjh.png" width="120" height="30" border="0" /></a></td>
<td align="center"><a href="http://zs.tjgfxy.com.cn/jyxx.html" target="_blank"><img src="filesupload/images/zsjy_jyxx.png" width="120" height="30" border="0" /></a></td>
</tr>
<tr>
<td height="25"></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="264" border="0" align="center" cellpadding="0" cellspacing="0" class="xmyy2">
<tr>
<td></td>
</tr>
</table>
</td>
<td width="22%" align="center" valign="top"><table width="205" border="0" align="center" cellpadding="0" cellspacing="0" class="ztjj">
<!--<tr>
<td height="35">
<div class="xsdw_bt">
<span class="ztjj_bt_img"><img src="filesupload/images/ztjj_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></span>
</div>
</td>
</tr>
<tr>
<td height="14"></td>
</tr>-->
<tr>
<td height="42">
<div><img border="0" src="filesupload/images/zszx2020527.jpg" ></div>
<div><a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=2dd9fbb70c2b3d5f2803cd7d73e0757d721722eb14160f436ae059dbf38fac8b"><img border="0" src="filesupload/images/qjqqqun.jpg" alt="天津国土房屋学院-秋" title="天津国土房屋学院-秋"></a></div>
<div><a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=2ee28af270c0626ed77918a10536828e37ef9ef8e6afcbc66d525d6eec8a3704"><img border="0" src="filesupload/images/cjqqqun.jpg" alt="天津国土房屋学院-春" title="天津国土房屋学院-春"></a></div>
<div><a target="_blank" href="http://221.238.16.52:8088/TJGFXY.jpg"><img border="0" src="filesupload/images/xygzh.jpg" alt="天津国土房屋学院公众号" title="天津国土房屋学院公众号" border="0"></a></div>
</td>
</tr>
<!--<tr>
<td height="14"></td>
</tr>-->
</table>
<table width="205" border="0" align="center" cellpadding="0" cellspacing="0" class="xmyy3">
<tr>
<td></td>
</tr>
</table>
</td>
<td width="25%" align="center" valign="top">
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td>
<div align="center">
<span><img src="filesupload/images/lqcx2020527.jpg" border="0"/></span>
</div>
<div align="center">
<a href="http://111.33.120.202:81/zsxt/tzgl_lqcx.do"><span><img src="filesupload/images/ptlqcx2020527.jpg" border="0" /></span></a>
</div>
<div align="center">
<a href="http://221.239.112.74:81/zsxt/tzgl_lqcx.do"><span><img src="filesupload/images/gzkzlqcx2020527.jpg" border="0" /></span></a>
</div>
<div align="center">
<a href="http://www.tjgfxy.com.cn/tjgfxy/xsbdbd.html"><span><img src="filesupload/images/xsrxbd2020527.jpg" border="0" /></span></a>
</div>
</td>
</tr>
</table>
</td>
<td width="25%" align="center" valign="top">
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td>
<div class="xwlj_bt">
<span class="xsdw_bt_img"><img src="filesupload/images/xyts_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></span>
</div>
</td>
</tr>
<tr>
<td align="left" height="3"></td>
</tr>
<tr><td>
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td align="center" height="33"><a href="xyts_xyry.html" target="_blank"><img src="filesupload/images/xueyuanrongyu.png" width="110" height="25" border="0" /></a></td>
<td align="center" height="33"><a href="xyts_bxln.html" target="_blank"><img src="filesupload/images/banxuelinian.png" width="110" height="25" border="0" /></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td align="center" height="33"><a href="xyts_bxsl.html" target="_blank"><img src="filesupload/images/banxuesilu.png" width="110" height="25" border="0" /></a></td>
<td align="center" height="33"><a href="xyts_bxyz.html" target="_blank"><img src="filesupload/images/banxueyuanze.png" width="110" height="25" border="0" /></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td align="center" height="33"><a href="xyts_bxsx.html" target="_blank"><img src="filesupload/images/banxuesixiang.png" width="110" height="25" border="0" /></a></td>
<td align="center" height="33"><a href="xyts_bxmb.html" target="_blank"><img src="filesupload/images/banxuemubiao.png" width="110" height="25" border="0" /></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td align="center" height="33"><a href="xyts_bxdw.html" target="_blank"><img src="filesupload/images/banxuedingwei.png" width="110" height="25" border="0" /></a></td>
<td align="center" height="33"><a href="xyts_bxjs.html" target="_blank"><img src="filesupload/images/banxuejingshen.png" width="110" height="25" border="0" /></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td align="center" height="33"><a href="xyts_bxts.html" target="_blank"><img src="filesupload/images/banxuetese.png" width="110" height="25" border="0" /></a></td>
<td align="center" height="33"><a href="xyts_xfjs.html" target="_blank"><img src="filesupload/images/xuefengjianshe.png" width="110" height="25" border="0" /></a></td>
</tr>
<tr>
<td height="5"></td>
</tr>
<tr>
<td align="center" height="33"><a href="xyts_jfjs.html" target="_blank"><img src="filesupload/images/jiaofengjianshe.png" width="110" height="25" border="0" /></a></td>
<td align="center" height="33"><a href="xyts_xijs.html" target="_blank"><img src="filesupload/images/xiaofengjianshe.png" width="110" height="25" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0">
<!--<tr>
<td>
<div><a href="http://www.tjgfxy.com.cn/tjgfxy/ztjy.html" target="_blank"><img src="filesupload/images/2022052220.jpg" width="980" height"75" border="0" /></a></div></td>
</tr>-->
<tr height="5"></tr>
<tr>
<td>
<div><a href="http://www.tjgfxy.com.cn/tjgfxy/esdzljs.html" target="_blank"><img src="filesupload/images/2022111401.jpg" width="980" height"75" border="0" /></a></div></td>
</tr>
<tr height="5"></tr>
<!--<tr>
<td>
<div><a href="http://www.tjgfxy.com.cn/tjgfxy/sjdjszl.html" target="_blank"><img src="filesupload/images/shijiudazhuanlan.jpg" width="980" height"75" border="0" /></a></div></td>
</tr>-->
<tr height="5"></tr>
<!--<tr>
<td>
<div><a href="http://www.tjgfxy.com.cn/tjgfxy/fyqzl.html" target="_blank"><img src="filesupload/images/fangyizhuanlan.jpg" width="980" height"75" border="0" /></a></div></td>
</tr>-->
<!--
<tr>
<td>
<div><a href="https://www.tjgfxy.com.cn/tjgfxy/gzkz_EEE06107-3E27-4818-9818-ECFAE172B2EE.html" target="_blank"><img src="filesupload/images/jfxtonline.jpg" width="980" height"75" border="0" /></a></div></td>
</tr>-->
</table>
<br/>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="content_table">
<tr>
<td width="28%" height="187" align="center" valign="top">
<table width="264" border="0" align="center" cellpadding="0" cellspacing="0" class="zsjy">
<tr>
<td>
<div class="xsdw_bt">
<span class="zsjy_bt_img"><img src="filesupload/images/xygk_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="xygk_xyld.html" target="_blank" ><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td height="8"></td>
</tr>
<tr>
<td height="90" align="center">
<a href="xygk_xyld.html" target="_blank"><img src="filesupload/images/xyzp_01.jpg" width="230" border="0" /></a>
</td>
</tr>
<tr>
<td height="8"></td>
</tr>
</table>
<table width="264" border="0" align="center" cellpadding="0" cellspacing="0" class="xmyy2">
<tr>
<td></td>
</tr>
</table>
</td>
<td width="22%" align="center" valign="top">
<table width="205" border="0" align="center" cellpadding="0" cellspacing="0" class="ztjj">
<tr>
<td height="35">
<div class="xsdw_bt">
<span class="ztjj_bt_img"><img src="filesupload/images/xysp_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="xygk_xysp.html" target="_blank"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td height="8"></td>
</tr>
<tr>
<td height="42"><a href="xygk_xysp_761C6C3E-0391-41A4-9325-3D39AA0D7D20.html" target="_blank"><img src="filesupload/images/xysp_01_.png" width="181" height="37" border="0" /></a></td>
</tr>
<tr>
<td height="42"><!--<a href="xygk_xysp_CF1B3C23-71A0-4D34-BF93-9C42200BC5A1.html" target="_blank"> --><img src="filesupload/images/xysp_02.png" width="181" height="37" border="0"/></a></td>
</tr>
<tr>
<td height="42"><a><img src="filesupload/images/xysp_03.png" width="181" height="37" border="0"/></a></td>
</tr>
<tr>
<td height="6"></td>
</tr>
</table>
<table width="205" border="0" align="center" cellpadding="0" cellspacing="0" class="xmyy3">
<tr>
<td></td>
</tr>
</table>
</td>
<td width="50%" align="center" valign="top">
<table width="480" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td>
<div class="zyjs_bt">
<span class="xsdw_bt_img"><img src="filesupload/images/zyjs_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="zyjs.html" target="_blank"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td align="left" height="10"></td>
</tr>
<tr>
<td align="center" valign="top">
<DIV style="OVERFLOW-y: auto;OVERFLOW-x: hidden; WIDTH: 470px; HEIGHT: 171px" onscroll="document.getElementById('headerDiv').scrollLeft = scrollLeft">
<div align="center">
<table width="450" height="320" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="11"><div align="center"></div></td>
<td width="140" class="xwlj_text">
<div align="center"><a href="zyjs_jzgcx.html" target="_blank">建筑工程技术</a> </div></td>
<td width="150" class="xwlj_text">
<div align="center"><a href="zyjs_jzgcx.html#gczj" target="_blank">工程造价</a> </div></td>
<td width="150" class="xwlj_text">
<div align="center"><a href="zyjs_jzgcx.html#gccljs" target="_blank">工程测量技术</a> </div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzgcx.html#jzsjjs" target="_blank">建筑设计技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzgcx.html#jzgcjs_jn" target="_blank">建筑工程技术(节能)</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#fdcjcygj" target="_blank">房地产检测与估价</a> </div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#fdcjyygl" target="_blank">房地产经营与管理</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#wygl" target="_blank">物业管理</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#jzznhgcjs" target="_blank">建筑智能化工程技术</a></div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#gtzydcygl" target="_blank">国土资源调查与管理</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#dqwlkcjs" target="_blank">地球物理勘查技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#gtzydcygl" target="_blank">国土资源调查与管理(不动产登记)</a> </div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_fdcjjyglx.html#bysjdyjgjs" target="_blank">宝玉石鉴定与加工技术</a></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzsbgcx.html#jzsbgcjs" target="_blank">建筑设备工程技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzsbgcx.html#dtgcjs" target="_blank">电梯工程技术</a> </div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzsbgcx.html#jsjyyjs" target="_blank">计算机应用技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzsbgcx.html#jzdqgcjs" target="_blank">建筑电气工程技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzysx.html#gjzgcjs" target="_blank">古建筑工程技术</a> </div></td>
</tr>
<tr>
<td align="left"></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzysx.html#jzzsgcjs" target="_blank">建筑装饰工程技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzysx.html#ylgcjs" target="_blank">园林工程技术</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzysx.html#ggsjyzz" target="_blank">广告设计与制作</a> </div></td>
</tr>
<tr>
<td align="left" ><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_jzysx.html#jsjyyjs" target="_blank">艺术设计</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gsglx.html#kj" target="_blank">会计</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gsglx.html#gsqygl" target="_blank">工商企业管理</a> </div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gjjjmyx.html#scyx" target="_blank">市场营销</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gjjjmyx.html#gjsw" target="_blank">国际商务</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gjjjmyx.html#gjjr" target="_blank">国际金融</a><a></div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
<tr>
<td width="11"><div align="center"></div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gjjjmyx.html#lygl" target="_blank">旅游管理</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gjjjmyx.html#swyy" target="_blank">商务英语</a> </div></td>
<td class="xwlj_text">
<div align="center"><a href="zyjs_gjjjmyx.html#hzchygl" target="_blank">会展策划与管理</a><a></div></td>
</tr>
<tr>
<td align="left"><div align="center"></div></td>
</tr>
</table>
</div></DIV>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="content_table">
<tr>
<td width="28%" height="187" align="center" valign="top">
<table width="264" border="0" align="center" cellpadding="0" cellspacing="0" class="zsjy">
<tr>
<td colspan="3"><div class="xsdw_bt"> <span class="zsjy_bt_img"><a href="jxky_jxgl_gzdt.html" target="_blank"><img src="filesupload/images/jxky_bt.png" width="115" height="35" border="0" /></a></span> <span class="more"><a href="jxky_jxgl_gzdt.html" target="_blank" ><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span> </div></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td width="20" class="xwlj_text"></td>
<td width="200" class="xwlj_text"><a href="jxky_jxgl_gzdt.html" target="_blank">教学管理</a></td>
<td width="44" class="xwlj_text"><a href="jxky_jxgl_gzdt.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jxky_jxgl_gzdt.html" target="_blank">教学工作动态</a><a href="zyjs_jzgcx.html" target="_blank"></a> </td>
<td class="xwlj_text"><a href="jxky_jxgl_gzdt.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jxky_jxgl_glzd.html" target="_blank">管理制度</a><a href="zyjs_jzgcx.html" target="_blank"></a> </td>
<td class="xwlj_text"><a href="jxky_jxgl_glzd.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jxky_jxgl_gzlc.html" target="_blank">工作流程</a> </td>
<td class="xwlj_text"><a href="jxky_jxgl_gzlc.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jxky_szgk.html" target="_blank">师资概况</a><a href="zyjs_jzgcx.html" target="_blank"></a> </td>
<td class="xwlj_text"><a href="jxky_szgk.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jxky_jxdd.html" target="_blank">教学督导</a><a href="zyjs_jzgcx.html" target="_blank"></a> </td>
<td class="xwlj_text"><a href="jxky_jxdd.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jxky_kygz_kyxm.html" target="_blank">科研工作</a></td>
<td class="xwlj_text"><a href="jxky_kygz_kyxm.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="jxky_text"><a href="http://111.33.120.201/jwglxt" target="_blank">教学管理系统</a></td>
<td class="xwlj_text"> </td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="jxky_text"><a href="jxky_qnjslt_2013_02.html" target="_blank">青年教师论坛</a></td>
<td class="xwlj_text"></td>
</tr>
<tr>
<td height="6"></td>
</tr>
</table>
</td>
<td width="22%" height="187" align="center" valign="top">
<table width="205" border="0" align="center" cellpadding="0" cellspacing="0" class="zsjy">
<tr>
<td colspan="3"><div class="xsdw_bt"> <span class="zsjy_bt_img"><img src="filesupload/images/yxsz_bt.png" width="115" height="35" border="0" /></span> <span class="more"><a href="jgsz_jxbm_jzgcx.html" target="_blank" ><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span> </div></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td width="15" class="xwlj_text"></td>
<td width="160" class="xwlj_text"><a href="jgsz_jxbm_jzgcx.html" target="_blank">建筑工程学院</a></td>
<td width="30" class="xwlj_text"><a href="jgsz_jxbm_jzgcx.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_fdcjjglx.html" target="_blank">不动产管理学院</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_fdcjjglx.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_gjjjmyx.html" target="_blank">经济管理学院</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_gjjjmyx.html" target="_blank">>></a></td>
</tr>
<tr>
<!--
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_gsglx.html" target="_blank">工商管理系</a> </td>
<td class="xwlj_text"><a href="jgsz_jxbm_gsglx.html" target="_blank">>></a></td>
</tr>
<tr>
-->
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_jzysx.html" target="_blank">建筑艺术学院</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_jzysx.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_jzsbgcx.html" target="_blank">建筑设备与信息工程学院</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_jzsbgcx.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_jckb.html" target="_blank">基础课程教学部</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_jckb.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_szjxb.html" target="_blank">思政教育教学部</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_szjxb.html" target="_blank">>></a></td>
</tr>
<tr>
<td class="xwlj_text"></td>
<td class="xwlj_text"><a href="jgsz_jxbm_tyjxb.html" target="_blank">体卫艺教学部</a></td>
<td class="xwlj_text"><a href="jgsz_jxbm_tyjxb.html" target="_blank">>></a></td>
</tr>
<tr>
<td height="6"></td>
</tr>
</table>
</td>
<td width="25%" align="center" valign="top">
<table width="238" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td colspan="3"><div class="xsdw_bt"> <span class="zsjy_bt_img"><img src="filesupload/images/jxkj_bt.png" width="115" height="35" border="0" /></span> <span class="more"><a href="jxkj.html" target="_blank" ><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span> </div></td>
</tr>
<tr>
<td height="2"></td>
</tr>
<tr>
<td width="20" class="jxkj_text"></td>
<td width="174" class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/fwjd/" target="_blank">房务接待</a></td>
<td width="44" class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/fwjd/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/fdcdl/" target="_blank">房地产代理</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/fdcdl/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/art/" target="_blank">住宅室内设计</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/art/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/wyglsc/" target="_blank">物业管理市场</a></td>
<td class="jxkj_text"><a href="http://221.238.16.50:81/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/fdcjgpg/" target="_blank">房地产价格评估</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/fdcjgpg/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/wyxmgl/" target="_blank">物业项目管理</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/wyxmgl/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/jiancai/" target="_blank">建筑材料检测与应用</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/jiancai/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/jzgcsgzz/" target="_blank">建筑工程施工组织</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/jzgcsgzz/" target="_blank">>></a></td>
</tr>
<tr>
<td class="jxkj_text"></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/cad/" target="_blank">计算机制图</a></td>
<td class="jxkj_text"><a href="http://jpk.tjgfxy.com.cn/cad/" target="_blank">>></a></td>
</tr>
<tr>
<td height="6"></td>
</tr>
</table>
</td>
<td width="25%" align="center" valign="top">
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td>
<div class="xwlj_bt">
<span class="xsdw_bt_img"><img src="filesupload/images/yxxyzs_bt.png" width="150" height="35" border="0" /></span>
<span class="more"><a href="yxxyxx.html" target="_blank"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td align="left" height="7"></td>
</tr>
<tr>
<td align="center" valign="top">
<table width="225" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="xwlj_text">
<marquee width="210" height="190" direction="up" onMouseOut="this.start()" onMouseOver="this.stop()" behavior="scroll" scrollamount="2" >
<div><a href="yxxyxx_DAD22E9A-DC7D-4B20-931B-A9CA6F98B92F.html" limit="16" target="_blank" >王洋---工商管理系2010级毕业生</a></div>
<div><a href="yxxyxx_2F1D8CA1-A255-49E5-86C0-3A3EA6C62EE8.html" limit="16" target="_blank" >张春---工商管理系2009级毕业生</a></div>
<div><a href="yxxyxx_6A7EA72F-0FD8-4B18-9B8C-09527A6F8819.html" limit="16" target="_blank" >王燕---工商管理系2009级毕业生</a></div>
<div><a href="yxxyxx_4CF2B0A7-AAE0-4E0E-B54C-B59EEA728931.html" limit="16" target="_blank" >吴新民---工商管理系2005级毕业生</a></div>
<div><a href="yxxyxx_C818F01F-3876-4267-B246-4CD60EBE50F7.html" limit="16" target="_blank" >陈铂勇---工商管理系2006届毕业生</a></div>
<div><a href="yxxyxx_4A9915CC-F734-4DA1-84E4-757F87FA300F.html" limit="16" target="_blank" >李元元---房地产经济管理系2009届毕业生</a></div>
<div><a href="yxxyxx_9502291D-6FBA-446A-8DAF-DCF2AA33B812.html" limit="16" target="_blank" >马思思---国际经济贸易系2010级在校生</a></div>
<div><a href="yxxyxx_176737E9-D13B-49E2-8F54-26EA1B712056.html" limit="16" target="_blank" >刘胜男---国际经济贸易系2010级在校生</a></div>
<div><a href="yxxyxx_E6797BF2-8059-4A28-9284-C7CE0B00D2C9.html" limit="16" target="_blank" >贾倩---国际经济贸易系2010级在校生</a></div>
<div><a href="yxxyxx_E37693B0-4646-4AE3-8D3D-7C0AAD774839.html" limit="16" target="_blank" >黄博---建筑设备系2007届毕业生</a></div>
<div><a href="yxxyxx_E7DD0634-7389-4DCC-BB15-2B092000572C.html" limit="16" target="_blank" >孙彦军---房地产经济管理系2012届毕业生</a></div>
<div><a href="yxxyxx_D3CBC85B-479A-483D-980D-1651DB9770D2.html" limit="16" target="_blank" >拓占军---建筑艺术系2012届毕业生</a></div>
<div><a href="yxxyxx_AC504167-9046-4EDC-B1F0-CD1092C0F77B.html" limit="16" target="_blank" >鲁士铭---国际经济贸易系2010届毕业生</a></div>
<div><a href="yxxyxx_AEAEEF6E-ABF1-4C29-A788-2E1CA7B5E420.html" limit="16" target="_blank" >毛青---国际经济贸易系2009届毕业生</a></div>
<div><a href="yxxyxx_8CCC4E5F-AFF6-4E6B-9FD4-3ABC10E193AF.html" limit="16" target="_blank" >郭慧芳---国际经济贸易系2010届毕业生</a></div>
<div><a href="yxxyxx_2EB3281E-A863-4CB5-B5A7-0E4D2F50B372.html" limit="16" target="_blank" >徐男男---国际经济贸易系2008届毕业生</a></div>
<div><a href="yxxyxx_E0BEB796-BC55-4DB6-B8AE-89C1CDEB89A9.html" limit="16" target="_blank" >潘海越---房地产经济管理系2009届毕业生</a></div>
<div><a href="yxxyxx_FC6E84B6-8566-4DE0-88F7-55E8585681F4.html" limit="16" target="_blank" >林子淳---国际经济贸易系2011届毕业生</a></div>
<div><a href="yxxyxx_26BED0B9-4261-4C5C-A1CE-9EBFD7FE8263.html" limit="16" target="_blank" >钟梅---国际经济贸易系2011届毕业生</a></div>
<div><a href="yxxyxx_6EF42A5E-6E48-4B37-8089-83429857C7BC.html" limit="16" target="_blank" >庄磊---建筑设备系2005届毕业生</a></div>
<div><a href="yxxyxx_ABCB6320-8660-4227-A009-06D5852B494D.html" limit="16" target="_blank" >黄博---建筑设备系2007届毕业生</a></div>
<div><a href="yxxyxx_23C7073D-7413-4ABE-AB11-82D37507E9CB.html" limit="16" target="_blank" >田安龙---建筑设备系2012届毕业生</a></div>
<div><a href="yxxyxx_096FA3B1-D958-41D6-B888-482EE27D1B35.html" limit="16" target="_blank" >赵冬梅---建筑设备系2009届毕业生</a></div>
<div><a href="yxxyxx_4A720C48-4DB6-4049-91B3-7799C42BB926.html" limit="16" target="_blank" >魏文娟---国际经济贸易系2008届毕业生</a></div>
<div><a href="yxxyxx_878A53D0-68A9-401B-8114-B80B6B0F164C.html" limit="16" target="_blank" >马千里---国际经济贸易系2005届毕业生</a></div>
<div><a href="yxxyxx_22DFA5CA-F5AE-4ACD-93BC-2E0D3631266E.html" limit="16" target="_blank" >葛翩翩---国际经济贸易系2012届毕业生</a></div>
<div><a href="yxxyxx_BF10A1D2-1843-4951-AF8E-0CE911DACDE1.html" limit="16" target="_blank" >张晓迪---国际经济贸易系2009届毕业生</a></div>
<div><a href="yxxyxx_B346B1C2-7031-4C1C-86B7-D7F08C9A531C.html" limit="16" target="_blank" >赵增秀---国际经济贸易系2006届毕业生</a></div>
<div><a href="yxxyxx_623C6961-548F-4CF6-A089-68B3061AC9E8.html" limit="16" target="_blank" >马雁铭---国际经济贸易系2012届毕业生</a></div>
<div><a href="yxxyxx_28A8C4CC-D1CD-4DA5-A79D-3832BEBF0B0D.html" limit="16" target="_blank" >赵雪---建筑艺术系2012届毕业生</a></div>
</marquee>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="left" height="7"></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="content_table">
<tr>
<td width="35%" align="center" valign="top">
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="ztjj">
<tr>
<td height="35">
<div class="xsdw_bt">
<span class="ztjj_bt_img"><img src="filesupload/images/jyzl_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="http://221.238.16.52:7777/jingtai/" target="_blank"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td height="8"></td>
</tr>
<tr>
<td height="42"><a href="http://zs.tjgfxy.com.cn/jyxx.html" target="_blank"><img src="filesupload/images/jyzl_01.png" width="181" height="37" border="0" /></a></td>
</tr>
<tr>
<td height="42"><a href="http://jiuye.tjgfxy.com.cn/" target="_blank"><img src="filesupload/images/jyzl_02.png" width="181" height="37" border="0" /></a></td>
</tr>
<tr>
<td height="42"><a href="http://zs.tjgfxy.com.cn/zszc.html" target="_blank"><img src="filesupload/images/jyzl_04.png" width="181" height="37" border="0"/></a></td>
</tr>
<tr>
<td height="6"></td>
</tr>
</table>
<table width="205" border="0" align="center" cellpadding="0" cellspacing="0" class="xmyy3">
<tr>
<td></td>
</tr>
</table>
</td>
<td width="35%" align="center" valign="top">
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td>
<div class="xsgz_bt">
<span class="xsdw_bt_img"><img src="filesupload/images/xsgz_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="xsgz_xsgl_jczz.html" target="_blank"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td align="left" height="15"></td>
</tr>
<tr>
<td align="center" valign="top">
<table width="460" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="20" class="xwlj_text"> </td>
<td width="180" class="jxky_text"><div><a href="xsgz_twgz_xsh.html" target="_blank">团委工作</a> </div></td>
<td width="240" rowspan="6" class="xwlj_text"><div align="center"><a href="http://www.tjgfxy.com.cn/tjgfxy/xygk_xysp_8F1EAC3A-F391-4EEA-98CF-92896DD7B456.html" target="_blank"><img src="filesupload/images/xyzp_03.jpg" width="210" border="0" /></a></div></td>
</tr>
<tr>
<td class="xwlj_text"> </td>
<td class="xwlj_text"><div align="center"><a href="xsgz_twgz_xsh.html" target="_blank">学生会</a><a> / </a><a href="xsgz_twgz_dtgz.html" target="_blank">团务工作</a> </div></td>
</tr>
<tr>
<td class="xwlj_text"> </td>
<td class="xwlj_text"><div align="center"><a href="xsgz_twgz_sthd.html" target="_blank">社团活动</a><a> / </a><a href="xsgz_twgz_qcdh.html" target="_blank">青春导航</a> </div></td>
</tr>
<tr>
<td class="xwlj_text"> </td>
<td class="jxky_text"><div><a href="xsgz_xsgl_jczz.html" target="_blank">学生管理</a> </div></td>
</tr>
<tr>
<td class="xwlj_text"> </td>
<td class="xwlj_text"><div align="center"><a href="xsgz_xsgl_jczz.html" target="_blank">奖惩资助</a><a> / </a><a href="zyjs_jzgcx.html" target="_blank">心理健康</a> </div></td>
</tr>
<tr>
<td class="xwlj_text"> </td>
<td class="xwlj_text"><div align="center"><a href="xsgz_xsgl_gfjy.html" target="_blank">国防教育</a><a> / </a><a href="xsgz_xsgl_glzd.html" target="_blank">管理制度</a> </div></td>
</tr>
<tr>
<td class="xwlj_text"> </td>
<td class="jxky_text"><div><a href="xsgz_gygl.html" target="_blank">公寓管理</a> </div></td>
<td class="xwlj_text"><div align="center"><a href="http://www.tjgfxy.com.cn/tjgfxy/xygk_xysp_8F1EAC3A-F391-4EEA-98CF-92896DD7B456.html" target="_blank">2013年校庆晚会>></a></div></td>
</tr>
<tr>
<td align="left" height="10"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="25%" align="center" valign="top">
<table width="235" border="0" align="center" cellpadding="0" cellspacing="0" class="xwlj">
<tr>
<td>
<div class="xwlj_bt">
<span class="xsdw_bt_img"><img src="filesupload/images/aqyd_bt.png" width="115" height="35" border="0" /></span>
<span class="more"><a href="http://www.tjgfxy.com.cn/tjgfxy/aqyd.html" target="_blank"><img src="filesupload/images/more.png" width="45" height="22" border="0" /></a></span>
</div>
</td>
</tr>
<tr>
<td height="14"></td>
</tr>
<tr>
<td height="90" align="center">
<a href="http://www.tjgfxy.com.cn/tjgfxy/aqyd.html" target="_blank"><img src="filesupload/images/aqyd.jpg" width="209" border="0" /></a>
</td>
</tr>
<tr>
<td height="17"></td>
</tr>
</table>
</td>
</tr>
</table>
</tr>
</table>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0" class="content_table">
<tr>
<td width="25%" height="40" align="right" valign="top">
<a href="http://cxjs.tj.gov.cn" target="_blank"><img src="filesupload/images/zfcxjswyh.png" width="245" height="38" border="0" /></a>
</td>
<td width="25%" height="40" align="center" valign="top">
<a href="http://mp.weixin.qq.com/s/vY8iNK8s7eMR8icVOOkBjQ" target="_blank"><img src="filesupload/images/fankongbanxuanchuan.jpg" height="38" border="0" /></a>
</td>
<td width="25%" height="40" align="right" valign="top">
<a href="https://tkb.ncsitec.cn/" target="_blank"><img src="filesupload/images/20240511104349.jpg" width="245" height="38" border="0" /></a>
</td>
<td width="25%" height="40" align="center" valign="top">
<a href="https://www.wvtedc.com/" target="_blank"><img src="filesupload/images/wvatedc.png" height="38" border="0" /></a> </td>
</tr>
</table>
<div><a href="http://webscan.360.cn/index/checkwebsite/url/www.tjgfxy.com.cn"><img border="0" src="http://img.webscan.360.cn/status/pai/hash/775d048c81c9f12087fc23f31b93c9bc"/></a></div>
<!--对联广告代码脚本开始-->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
var duilian = $("div.duilian");
var duilian_close = $("a.duilian_close");
var window_w = $(window).width();
if(window_w>1000){duilian.show();}
$(window).scroll(function(){
var scrollTop = $(window).scrollTop();
duilian.stop().animate({top:scrollTop+260});
});
duilian_close.click(function(){
$(this).parent().hide();
return false;
});
});
</script>
<style>
img{border:0px}
.duilian{top:260px;position:absolute; width:300px; overflow:hidden; display:none;}
.duilian_left{ left:10px;}
.duilian_right{right:10px;}
.duilian_left_img{border:#CCC solid 1px; width:300px; overflow:hidden;}
.duilian_right_img{border:#CCC solid 1px; width:300px; overflow:hidden;}
.duilian_close{width:100%; height:24px; line-height:24px; text-align:center; display:block; font-size:13px; color:#555555; text-decoration:none;}
</style>
<!--对联广告代码脚本结束-->
<!--联广告开始-->
<!--<div class="duilian duilian_right">
<div class="duilian_right_img"><a href="http://www.tjgfxy.com.cn/jjjc/" target="_blank"><img src="filesupload/images/jjjcjb.jpg" width="300" /></a></div>
<a href="#" class="duilian_close"><img src="filesupload/images/clos_bg.gif" width="124" height="19" /></a>
</div>-->
<!--<div class="duilian duilian_left">
<div class="duilian_right_img"><img src="filesupload/images/fangyirexian.jpg" width="300" /></div>
<a href="#" class="duilian_close"><img src="filesupload/images/clos_bg.gif" width="124" height="19" /></a>
</div>-->
<!--<div class="duilian duilian_left">
<div class="duilian_right_img"><img src="filesupload/images/2022032401.jpg" width="300" /></div>
<a href="#" class="duilian_close"><img src="filesupload/images/clos_bg.gif" width="124" height="19" /></a>
</div>-->
<!--联广告结束-->
<!--飘页广告开始-->
<!--<div id="img" style="position: absolute; left: 311; top: 815;visibility :hidden;" onmouseover="clearInterval(interval)" onmouseout="interval = setInterval('changePos()', delay)" align="right">
<a href="https://www.tjgfxy.com.cn/tjgfxy/ggl_77F02176-66D6-4165-81CC-C07E761E8F58.html" target="_blank"><img border="0" src="filesupload/images/2024030402.png" width="300"></a><br><span style="CURSOR:hand;color:red;font-weight:bold" onclick="clearInterval(interval);img.style.visibility = 'hidden'">关闭</span>
</div>-->
<script language=javascript>
var xPos = 50;
var yPos = 50;
var step = 1;
var delay = 10;
var height = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
img.style.top = yPos;
function changePos() {
width = document.body.clientWidth;
height = document.body.clientHeight;
Hoffset = img.offsetHeight;
Woffset = img.offsetWidth;
img.style.left = xPos + document.body.scrollLeft+'px';
img.style.top = yPos + document.body.scrollTop+'px';
if (yon) {
yPos = yPos + step;
}
else {
yPos = yPos - step;
}
if (yPos < 0) {
yon = 1;
yPos = 0;
}
if (yPos >= (height - Hoffset)) {
yon = 0;
yPos = (height - Hoffset);
}
if (xon) {
xPos = xPos + step;
}
else {
xPos = xPos - step;
}
if (xPos < 0) {
xon = 1;
xPos = 0;
}
if (xPos >= (width - Woffset)) {
xon = 0;
xPos = (width - Woffset);
}
}
function start() {
img.style.visibility = "visible";
interval = setInterval('changePos()', delay);
}
start();
</script>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="bottomall">
<!-- 底部开始 -->
<div class=bottom>
<DIV class=bottom_content>
<div class=bottom_content_left><img src="filesupload/images/bottom_logo.gif" width="244" height="32" border="0" /></div>
<div class=bottom_content_middle>
学院地址:天津市滨海新区大港学苑路600号<br />
联系电话:022-63303801 022-63303880 / 招生咨询电话:022-63303817 022-63303848
</div>
<div class=bottom_content_right>
版权所有 天津国土资源和房屋职业学院<br />
<A href="http://www.miibeian.gov.cn/" style="font-size:11px; color:#848484; line-height:18px; text-align:right; padding-right:10px" target="_blank">津ICP备12008678号</A>/ 津教备0164号
</div>
</DIV>
</div>
<!-- 底部结束 -->
</td>
</tr>
</table>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=12011602000941" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/tjgfxy/fileflash/20211117152353.png" style="float:left;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">津公网安备 12011602000941号</p></a>
</div>
<script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='http://dcs.conac.cn/js/03/000/0000/60441313/CA030000000604413130001.js' type='text/javascript'%3E%3C/script%3E"));</script>
</body>
</html>
为您提供网页信息检测查询,可以快速检测网页的META标签,分析标题、关键词、描述等是否符合搜索引擎收录规范 。