
<!DOCTYPE html>
<html lang="zh-TW" class="no-js">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="keywords" content="學務處 | 學生職業生涯發展中心,Career Center, Office of Student Affairs, NTU  （NTUCACE）"/>
    <meta name="description" content="學務處 | 學生職業生涯發展中心"/>
    <title>國立臺灣大學 學務處 | 學生職業生涯發展中心 </title>

    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/images/apple-touch-icon-144.png">
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/images/apple-touch-icon-144.png">
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/images/apple-touch-icon-144.png">
    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/images/apple-touch-icon-144.png">
    <link rel="shortcut icon" href="/images/apple-touch-icon-144.png" type="image/x-icon">

    <link rel="stylesheet" media="screen, projection" href="/template/4/stylesheets/bootstrap.css">
    <link rel="stylesheet" media="screen, projection" href="/template/4/stylesheets/mdb.css">
    <link rel="stylesheet" media="screen, projection, print" href="/template/4/stylesheets/application.css">
    <link rel="stylesheet" media="screen, projection, print" href="/template/share/css/custom_text_template.css">

    
    
    <script type="text/javascript" src="/template/4/javascripts/jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src="/template/4/javascripts/popper.min.js"></script>
    <script type="text/javascript" src="/template/4/javascripts/bootstrap.min.js"></script>
    <script type="text/javascript" src="/template/share/js/mdb.min.js" defer></script>
    <script type="text/javascript" src="/template/4/javascripts/modernizr.custom.26633.js"></script>
    <script type="text/javascript" src="/template/4/javascripts/modernizr.custom.js"></script>

    <script type="text/javascript" src="/template/4/javascripts/slick.js"></script>
<script type="text/javascript" src="/template/4/javascripts/multislider.js"></script>
</head>
<body>
<div id="pages-main" class="pages">
    <div class="content">
        <div class="content-wrapper">
            <header class="header">
                <!-- 頁首目錄 -->
                
<div class="header-bar">
    <div class="container">
        <a href="#U" id="AU" name="U" title="右上方功能區塊" accesskey="U" tabindex="3">:::</a>
        <ul class="header-toolbar menu-item">
            <!-- 共用頁首目錄連結 -->
            
            <li><a href="https://www.ntu.edu.tw/" title="臺灣大學(開啟新視窗)"
                 target="_blank">臺灣大學</a>
        </li>
            <li><a href="https://osa.ntu.edu.tw/" title="學務處(開啟新視窗)"
                 target="_blank">學務處</a>
        </li>
            <li><a href="mailto:career@ntu.edu.tw" title="聯絡我們(開啟新視窗)"
                 target="_blank">聯絡我們</a>
        </li>
            <li><a href="https://career.ntu.edu.tw/index/site.map" title="網站導覽"
                >網站導覽</a>
        </li>
            <li><a href="https://my.ntu.edu.tw/" title="myNTU(開啟新視窗)"
                 target="_blank">myNTU</a>
        </li>
    
    
<li>
            <a href="/en/" title="Change language to English">English</a>
    
    
    </li>        </ul>
    </div>
</div>

                <div class="header-wrap">
                    <div class="container">
                        <div class="brands">
                            <a class="d-flex" href="https://career.ntu.edu.tw"
                               title="學務處 | 學生職業生涯發展中心">
                                <div class="logo">
                                    <h1 class="text-hide">國立臺灣大學</h1>
                                    <img class="h1-logo" alt=""
     src="/template/4/assets/career-logo@2x.png" />
<img class="h1-calligraphy" alt=""
     src="/template/4/assets/ntu-calligraphy-w.png" />
                                </div>
                                <div class="sub">
                                    <span class="cht">學務處 | 學生職業生涯發展中心</span>
                                    <span class="en">Career Center, Office of Student Affairs, NTU  （NTUCACE）</span>
                                </div>
                            </a>
                        </div>
                        <!-- Search Google -->
                        
<form class="search-form googleSearchForm" action="https://www.google.com/search" method="get">
    <input class="form-control google_q_input" type="text" placeholder="全站搜尋"
           aria-label="Search" title="全站搜尋"
           accesskey="S">
    <input maxlength="252" name="q" class="google_q" size="1" type="hidden" value=""/>
    <input name="ie" type="hidden" value="UTF-8"/>
    <input name="oe" type="hidden" value="UTF-8"/>
    <input name="hl" type="hidden" value="zh-TW"/>
</form>
<script>
    $(function() {
        // 點擊「搜尋icon」來搜尋
        $("form.googleSearchForm").click(function() {
            // console.log(`${(psuedoClick(this).after ? "After" : "Before")} has been clicked...`);
            if (psuedoClick(this).after === true && $(this).find('.google_q_input').val()) {
                execGoogleSearch( $(this).find('.google_q_input') );
                $(this).submit();
            }
        });

        // 按enter來搜尋
        $('.google_q_input').on('input', function() {
            execGoogleSearch($(this));
        });

        function execGoogleSearch(obj) {
            var keyword = obj.val();
            var site = ' site:career.ntu.edu.tw';

            
            $('.google_q').val(keyword + site);
        }

        /**
         * 點擊僞類別
         * @param parentElem
         * @returns {{before: *, after: *}}
         */
        function psuedoClick(parentElem) {

            var beforeClicked,
                afterClicked;

            var parentLeft = parseInt(parentElem.getBoundingClientRect().left, 10),
                parentTop = parseInt(parentElem.getBoundingClientRect().top, 10);

            var parentWidth = parseInt(window.getComputedStyle(parentElem).width, 10),
                parentHeight = parseInt(window.getComputedStyle(parentElem).height, 10);

            var before = window.getComputedStyle(parentElem, ':before');

            var beforeStart = parentLeft + (parseInt(before.getPropertyValue("left"), 10)),
                beforeEnd = beforeStart + parseInt(before.width, 10);

            var beforeYStart = parentTop + (parseInt(before.getPropertyValue("top"), 10)),
                beforeYEnd = beforeYStart + parseInt(before.height, 10);

            var after = window.getComputedStyle(parentElem, ':after');

            var afterStart = parentLeft + (parseInt(after.getPropertyValue("left"), 10)),
                afterEnd = afterStart + parseInt(after.width, 10);

            var afterYStart = parentTop + (parseInt(after.getPropertyValue("top"), 10)),
                afterYEnd = afterYStart + parseInt(after.height, 10);

            var mouseX = event.clientX,
                mouseY = event.clientY;

            beforeClicked = (mouseX >= beforeStart && mouseX <= beforeEnd && mouseY >= beforeYStart && mouseY <= beforeYEnd ? true : false);

            afterClicked = (mouseX >= afterStart && mouseX <= afterEnd && mouseY >= afterYStart && mouseY <= afterYEnd ? true : false);

            return {
                "before" : beforeClicked,
                "after"  : afterClicked
            };
        }
    });
</script>                    </div>
                </div>

                <!-- Top menu -->
                

<nav class="navbar  navbar-light navbar-expand-xl">
            <div class="container">
            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
                aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
            <span class="navbar-toggler-icon"></span>
        </button>

        <!-- 緊急聯絡電話 mobile版 -->
        
<style>
    /*這裡放入針對電話號碼的樣式語法*/
    .emergency-call a[href^="tel:"] {
        all: unset;

    }
</style>


        <!-- 快速連結選單 -->
        

        <div class="collapse navbar-collapse" id="navbarSupportedContent">
            <!-- 手機版 頁首目錄連結 -->
            <div class="header-bar mobile-only">
                <ul class="header-toolbar menu-item">
                    
            <li><a href="https://www.ntu.edu.tw/" title="臺灣大學(開啟新視窗)"
                 target="_blank">臺灣大學</a>
        </li>
            <li><a href="https://osa.ntu.edu.tw/" title="學務處(開啟新視窗)"
                 target="_blank">學務處</a>
        </li>
            <li><a href="mailto:career@ntu.edu.tw" title="聯絡我們(開啟新視窗)"
                 target="_blank">聯絡我們</a>
        </li>
            <li><a href="https://career.ntu.edu.tw/index/site.map" title="網站導覽"
                >網站導覽</a>
        </li>
            <li><a href="https://my.ntu.edu.tw/" title="myNTU(開啟新視窗)"
                 target="_blank">myNTU</a>
        </li>
    
    
<li>
            <a href="/en/" title="Change language to English">English</a>
    
    
    </li>                </ul>
            </div>
            <ul class="navbar-nav" style="flex-wrap: wrap;">
                                    
                        <li class="nav-item dropdown">
                            
                            <a class="nav-link  dropdown-toggle"  id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="javascript:void(0);"                               title="認識本中心" >
                                認識本中心                            </a>

                                                            <div class="dropdown-menu dropdown-info"
                                     aria-labelledby="navbarDropdownMenuLink">
                                                                                                                        <a class="dropdown-item" title="簡介"
                                               href="/Careercenter/Aboutus#anchorPageTitle" >簡介</a>
                                                                                                                                                                <a class="dropdown-item" title="中心簡報"
                                               href="/Careercenter/about_the_Center#anchorPageTitle" >中心簡報</a>
                                                                                                                                                                <a class="dropdown-item" title="人員職掌"
                                               href="/Careercenter/member#anchorPageTitle" >人員職掌</a>
                                                                                                                                                                <a class="dropdown-item" title="地理位置"
                                               href="/Careercenter/Location#anchorPageTitle" >地理位置</a>
                                                                                                                                                                <a class="dropdown-item" title="流程&法規"
                                               href="/Careercenter/sopregu#anchorPageTitle" >流程&法規</a>
                                                                                                            </div>
                                                    </li>
                    
                        <li class="nav-item ">
                            
                            <a class="nav-link "  href="/board/index"                               title="最新消息" >
                                最新消息                            </a>

                                                    </li>
                    
                        <li class="nav-item dropdown">
                            
                            <a class="nav-link  dropdown-toggle"  id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="javascript:void(0);"                               title="學生專區" >
                                學生專區                            </a>

                                                            <div class="dropdown-menu dropdown-info"
                                     aria-labelledby="navbarDropdownMenuLink">
                                                                                                                        
                                            <a class="dropdown-item" title="職能發展課程與活動"
                                               href="/student/FDC/news#anchorPageTitle" >職能發展課程與活動                                            </a>

                                                                                                                                                                
                                            <a class="dropdown-item" title="跨領域實習-臺灣引路人專案"
                                               href="/student/interdisciplinary/origin#anchorPageTitle" >跨領域實習-臺灣引路人專案                                            </a>

                                                                                                                                                                
                                            <a class="dropdown-item" title="先備課程：超前部署你的職涯"
                                               href="/student/GetReady4UrCareer/CourseDetails#anchorPageTitle" >先備課程：超前部署你的職涯                                            </a>

                                                                                                                                                                
                                            <a class="dropdown-item" title="打造未來領袖"
                                               href="/student/BFLY/course#anchorPageTitle" >打造未來領袖                                            </a>

                                                                                                                                                                
                                            <a class="dropdown-item" title="臺大校園徵才"
                                               href="/student/vision/latest#anchorPageTitle" >臺大校園徵才                                            </a>

                                                                                                                                                                <a class="dropdown-item" title="一對一諮詢預約系統"
                                               href="https://appoint.cc.ntu.edu.tw/" >一對一諮詢預約系統</a>
                                                                                                                                                                <a class="dropdown-item" title="CPAS職業適性診斷測驗"
                                               href="/student/CPAS#anchorPageTitle" >CPAS職業適性診斷測驗</a>
                                                                                                                                                                <a class="dropdown-item" title="UCAN就業職能診斷平台"
                                               href="/student/UCAN#anchorPageTitle" >UCAN就業職能診斷平台</a>
                                                                                                                                                                <a class="dropdown-item" title="履歷撰寫與面試技巧指導"
                                               href="/student/skills#anchorPageTitle" >履歷撰寫與面試技巧指導</a>
                                                                                                                                                                
                                            <a class="dropdown-item" title="NTUIP實習資訊平台"
                                               href="/student/NTUIP/catalog#anchorPageTitle" >NTUIP實習資訊平台                                            </a>

                                                                                                                                                                
                                            <a class="dropdown-item" title="博士生海外實習就業資訊"
                                               href="/student/phd/phdjobs#anchorPageTitle" >博士生海外實習就業資訊                                            </a>

                                                                                                                                                                <a class="dropdown-item" title="夢田深耕(輔導暨獎助)計畫"
                                               href="/student/USR#anchorPageTitle" >夢田深耕(輔導暨獎助)計畫</a>
                                                                                                                                                                
                                            <a class="dropdown-item" title="升學留學資訊"
                                               href="/student/studyabroad/scholarship#anchorPageTitle" >升學留學資訊                                            </a>

                                                                                                                                                                <a class="dropdown-item" title="職涯資源網站連結"
                                               href="/student/links#anchorPageTitle" >職涯資源網站連結</a>
                                                                                                            </div>
                                                    </li>
                    
                        <li class="nav-item dropdown">
                            
                            <a class="nav-link  dropdown-toggle"  id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="javascript:void(0);"                               title="校友專區" >
                                校友專區                            </a>

                                                            <div class="dropdown-menu dropdown-info"
                                     aria-labelledby="navbarDropdownMenuLink">
                                                                                                                        <a class="dropdown-item" title="Open new window"
                                               href="https://forms.gle/Rrpm1Gt4TEs25hG18" target="_blank">合作意願調查表</a>
                                                                                                                                                                <a class="dropdown-item" title="一對一諮詢預約服務"
                                               href="/Alumni/1-1appoint#anchorPageTitle" >一對一諮詢預約服務</a>
                                                                                                                                                                
                                            <a class="dropdown-item" title="畢業生流向資訊平台"
                                               href="/Alumni/gsurvey/informationplatform#anchorPageTitle" >畢業生流向資訊平台                                            </a>

                                                                                                                                                                <a class="dropdown-item" title="CPAS職業適性診斷測驗"
                                               href="/Alumni/CPAS#anchorPageTitle" >CPAS職業適性診斷測驗</a>
                                                                                                                                                                <a class="dropdown-item" title="UCAN就業職能診斷平台"
                                               href="/Alumni/UCAN#anchorPageTitle" >UCAN就業職能診斷平台</a>
                                                                                                                                                                <a class="dropdown-item" title="臺大校園徵才"
                                               href="/Alumni/vision#anchorPageTitle" >臺大校園徵才</a>
                                                                                                            </div>
                                                    </li>
                    
                        <li class="nav-item dropdown">
                            
                            <a class="nav-link  dropdown-toggle"  id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="javascript:void(0);"                               title="企業專區" >
                                企業專區                            </a>

                                                            <div class="dropdown-menu dropdown-info"
                                     aria-labelledby="navbarDropdownMenuLink">
                                                                                                                        <a class="dropdown-item" title="跨領域實習-臺灣引路人專案"
                                               href="/enterprise/interdisciplinary#anchorPageTitle" >跨領域實習-臺灣引路人專案</a>
                                                                                                                                                                <a class="dropdown-item" title="NTUIP實習資訊平台"
                                               href="/enterprise/NTUIP#anchorPageTitle" >NTUIP實習資訊平台</a>
                                                                                                                                                                <a class="dropdown-item" title="臺大求才求職網"
                                               href="/enterprise/ntucareerwebsite#anchorPageTitle" >臺大求才求職網</a>
                                                                                                                                                                
                                            <a class="dropdown-item" title="臺大校園徵才"
                                               href="/enterprise/vision/latest#anchorPageTitle" >臺大校園徵才                                            </a>

                                                                                                                                                                <a class="dropdown-item" title="履歷撰寫與面試技巧指導"
                                               href="/enterprise/Interviewskills#anchorPageTitle" >履歷撰寫與面試技巧指導</a>
                                                                                                                                                                <a class="dropdown-item" title="企業合作夥伴"
                                               href="/enterprise/Cooperation#anchorPageTitle" >企業合作夥伴</a>
                                                                                                            </div>
                                                    </li>
                    
                        <li class="nav-item dropdown">
                            
                            <a class="nav-link  dropdown-toggle"  id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="javascript:void(0);"                               title="臺大人職場手冊" >
                                臺大人職場手冊                            </a>

                                                            <div class="dropdown-menu dropdown-info"
                                     aria-labelledby="navbarDropdownMenuLink">
                                                                                                                        <a class="dropdown-item" title="2024 Passion Worker"
                                               href="/PassionWorker/2024#anchorPageTitle" >2024 Passion Worker</a>
                                                                                                                                                                <a class="dropdown-item" title="2023 Passion Worker"
                                               href="/PassionWorker/2023#anchorPageTitle" >2023 Passion Worker</a>
                                                                                                                                                                <a class="dropdown-item" title="2022 Passion Worker"
                                               href="/PassionWorker/2022#anchorPageTitle" >2022 Passion Worker</a>
                                                                                                                                                                <a class="dropdown-item" title="2021 Passion Worker"
                                               href="/PassionWorker/2021#anchorPageTitle" >2021 Passion Worker</a>
                                                                                                                                                                <a class="dropdown-item" title="2020 Passion Worker"
                                               href="/PassionWorker/2020#anchorPageTitle" >2020 Passion Worker</a>
                                                                                                            </div>
                                                    </li>
                    
                        <li class="nav-item ">
                            
                            <a class="nav-link "  href="/media#anchorPageTitle"                               title="影音專區" >
                                影音專區                            </a>

                                                    </li>
                                    
                                <li class="nav-item  mobile-only ">
                    <!-- Search Google -->
                    
<form class="search-form googleSearchForm" action="https://www.google.com/search" method="get">
    <input class="form-control google_q_input" type="text" placeholder="全站搜尋"
           aria-label="Search" title="全站搜尋"
           accesskey="S">
    <input maxlength="252" name="q" class="google_q" size="1" type="hidden" value=""/>
    <input name="ie" type="hidden" value="UTF-8"/>
    <input name="oe" type="hidden" value="UTF-8"/>
    <input name="hl" type="hidden" value="zh-TW"/>
</form>
<script>
    $(function() {
        // 點擊「搜尋icon」來搜尋
        $("form.googleSearchForm").click(function() {
            // console.log(`${(psuedoClick(this).after ? "After" : "Before")} has been clicked...`);
            if (psuedoClick(this).after === true && $(this).find('.google_q_input').val()) {
                execGoogleSearch( $(this).find('.google_q_input') );
                $(this).submit();
            }
        });

        // 按enter來搜尋
        $('.google_q_input').on('input', function() {
            execGoogleSearch($(this));
        });

        function execGoogleSearch(obj) {
            var keyword = obj.val();
            var site = ' site:career.ntu.edu.tw';

            
            $('.google_q').val(keyword + site);
        }

        /**
         * 點擊僞類別
         * @param parentElem
         * @returns {{before: *, after: *}}
         */
        function psuedoClick(parentElem) {

            var beforeClicked,
                afterClicked;

            var parentLeft = parseInt(parentElem.getBoundingClientRect().left, 10),
                parentTop = parseInt(parentElem.getBoundingClientRect().top, 10);

            var parentWidth = parseInt(window.getComputedStyle(parentElem).width, 10),
                parentHeight = parseInt(window.getComputedStyle(parentElem).height, 10);

            var before = window.getComputedStyle(parentElem, ':before');

            var beforeStart = parentLeft + (parseInt(before.getPropertyValue("left"), 10)),
                beforeEnd = beforeStart + parseInt(before.width, 10);

            var beforeYStart = parentTop + (parseInt(before.getPropertyValue("top"), 10)),
                beforeYEnd = beforeYStart + parseInt(before.height, 10);

            var after = window.getComputedStyle(parentElem, ':after');

            var afterStart = parentLeft + (parseInt(after.getPropertyValue("left"), 10)),
                afterEnd = afterStart + parseInt(after.width, 10);

            var afterYStart = parentTop + (parseInt(after.getPropertyValue("top"), 10)),
                afterYEnd = afterYStart + parseInt(after.height, 10);

            var mouseX = event.clientX,
                mouseY = event.clientY;

            beforeClicked = (mouseX >= beforeStart && mouseX <= beforeEnd && mouseY >= beforeYStart && mouseY <= beforeYEnd ? true : false);

            afterClicked = (mouseX >= afterStart && mouseX <= afterEnd && mouseY >= afterYStart && mouseY <= afterYEnd ? true : false);

            return {
                "before" : beforeClicked,
                "after"  : afterClicked
            };
        }
    });
</script>                </li>
            </ul>
        </div>
            </div>
    </nav>                <!-- Top menu -->

            </header>
            <!-- Header -->

            <!-- Content -->
            <div class="container">
                
                
<style>
    /* Slider */
    .slick-loading .slick-list {
        background: #fff url('//template/4/assets/ajax-loader.gif') center center no-repeat !important;
    }

    /* Icons */
    @font-face {
        font-family: "slick";
        src: url('//template/4/fonts/slick.eot');
        src: url('//template/4/fonts/slick.eot?#iefix') format("embedded-opentype"), url('//template/4/fonts/slick.woff') format("woff"), url('//template/4/fonts/slick.ttf') format("truetype"), url('//template/4/fonts/slick.svg#slick') format("svg");
        font-weight: normal;
        font-style: normal;
    }

    @media (max-width: 575px) {
        .slick-six .slick-prev, .slick-five .slick-prev {
            left: 2px !important;
            opacity: 0.75;
        }

        .slick-six .slick-next, .slick-five .slick-next {
            right: 2px !important;
            opacity: 0.75;
        }
    }
</style>

<!-- NTU-OSA: 首頁  -->

<!-- 輪播 -->
    
<div id="carousel-ntu" class="carousel slide carousel-fade section-container" data-ride="carousel">
    <ol class="carousel-indicators">
                    <li data-target="#carousel-ntu" data-slide-to="0" class="active"></li>
                    <li data-target="#carousel-ntu" data-slide-to="1" ></li>
                    <li data-target="#carousel-ntu" data-slide-to="2" ></li>
                    <li data-target="#carousel-ntu" data-slide-to="3" ></li>
                    <li data-target="#carousel-ntu" data-slide-to="4" ></li>
            </ol>

    <div class="carousel-inner" role="listbox" style="background-color: #232323">
                    <div class="carousel-item active">
                <div class="view">
                    <img class="d-block w-100" src="/cm/index_loop/4/102/000102_0002.png"
                         alt="職涯中心一對一諮詢" title="職涯中心一對一諮詢">
                </div>
                <a href="https://appoint.cc.ntu.edu.tw/AdvisorList" title="職涯中心一對一諮詢"
                   class="loop_title_hover">
                    <div class="carousel-caption">
                        <p style="height: 27px;white-space: nowrap;">職涯中心一對一諮詢</p>
                    </div>
                </a>
            </div>
                    <div class="carousel-item ">
                <div class="view">
                    <img class="d-block w-100" src="/cm/index_loop/4/100/000100_0505.jpg"
                         alt="2024 跨領域實習 - 臺灣引路人計畫 開放申請!  " title="2024 跨領域實習 - 臺灣引路人計畫 開放申請!  ">
                </div>
                <a href="https://ntucace.ntu.edu.tw/" title="2024 跨領域實習 - 臺灣引路人計畫 開放申請!  "
                   class="loop_title_hover">
                    <div class="carousel-caption">
                        <p style="height: 27px;white-space: nowrap;">2024 跨領域實習 - 臺灣引路人計畫 開放申請!  </p>
                    </div>
                </a>
            </div>
                    <div class="carousel-item ">
                <div class="view">
                    <img class="d-block w-100" src="/cm/index_loop/4/101/000101_0448.png"
                         alt="「2025 Passion Worker臺大人職場手冊」學生團隊熱情招募中！" title="「2025 Passion Worker臺大人職場手冊」學生團隊熱情招募中！">
                </div>
                <a href="https://career.ntu.edu.tw/board/detail/sn/3250" title="「2025 Passion Worker臺大人職場手冊」學生團隊熱情招募中！"
                   class="loop_title_hover">
                    <div class="carousel-caption">
                        <p style="height: 27px;white-space: nowrap;">「2025 Passion Worker臺大人職場手冊」學生團隊熱情招募中！</p>
                    </div>
                </a>
            </div>
                    <div class="carousel-item ">
                <div class="view">
                    <img class="d-block w-100" src="/cm/index_loop/4/95/000095_0161.gif"
                         alt="實習先備課程-《超前部署你的職涯》要開課囉!" title="實習先備課程-《超前部署你的職涯》要開課囉!">
                </div>
                <a href="https://career.ntu.edu.tw/student/GetReady4UrCareer/CourseDetails" title="實習先備課程-《超前部署你的職涯》要開課囉!"
                   class="loop_title_hover">
                    <div class="carousel-caption">
                        <p style="height: 27px;white-space: nowrap;">實習先備課程-《超前部署你的職涯》要開課囉!</p>
                    </div>
                </a>
            </div>
                    <div class="carousel-item ">
                <div class="view">
                    <img class="d-block w-100" src="/cm/index_loop/4/93/000093_0210.jpg"
                         alt="《人才永續 產學共育》 | 活動花絮" title="《人才永續 產學共育》 | 活動花絮">
                </div>
                <a href="https://career.ntu.edu.tw/enterprise/interdisciplinary#Highlights" title="《人才永續 產學共育》 | 活動花絮"
                   class="loop_title_hover">
                    <div class="carousel-caption">
                        <p style="height: 27px;white-space: nowrap;">《人才永續 產學共育》 | 活動花絮</p>
                    </div>
                </a>
            </div>
            </div>

    <a class="carousel-control-prev" href="#carousel-ntu" role="button" data-slide="prev">
        <span class="btn-white btn-floating" style="width: 32px;height: 32px;">
            <i class="fa fa-angle-left fa-2x text-dark w-100" aria-hidden="true" style="line-height:30px"></i>
        </span>
        <span class="sr-only">Previous</span>
    </a>
    <a class="carousel-control-next" href="#carousel-ntu" role="button" data-slide="next">
        <span class="btn-white btn-floating" style="width: 32px;height: 32px;">
            <i class="fa fa-angle-right fa-2x text-dark w-100" aria-hidden="true" style="line-height:30px"></i>
        </span>
        <span class="sr-only">Next</span>
    </a>
</div>
<!-- 業務資訊 1 -->
<section class="business-container multi-carousel section-container">
    
<div class="section-title">
    <h3>業務服務項目</h3>
</div>
<div class="slick-six slick-business">
                                    <div class="item">
                <a href="https://ntucace.ntu.edu.tw/" title="跨領域實習計畫"  target="_blank">
                    <img class="icons" src="/cm/index_link/4/112/000112_0935.jpg"
                         alt="跨領域實習計畫" title="跨領域實習計畫">
                    <span class="brief">跨領域實習計畫</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://appoint.cc.ntu.edu.tw/AdvisorList" title="一對一諮詢預約" >
                    <img class="icons" src="/cm/index_link/4/97/000097_0972.png"
                         alt="一對一諮詢預約" title="一對一諮詢預約">
                    <span class="brief">一對一諮詢預約</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/FDC/news" title="職能課程與講座" >
                    <img class="icons" src="/cm/index_link/4/17/000017_0645.png"
                         alt="職能課程與講座" title="職能課程與講座">
                    <span class="brief">職能課程與講座</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://my.ntu.edu.tw/jobmatch/co1_index.aspx" title="臺大求才求職網" >
                    <img class="icons" src="/cm/index_link/4/16/000016_0507.png"
                         alt="臺大求才求職網" title="臺大求才求職網">
                    <span class="brief">臺大求才求職網</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/vision/latest" title="臺大校園徵才" >
                    <img class="icons" src="/cm/index_link/4/15/000015_0014.png"
                         alt="臺大校園徵才" title="臺大校園徵才">
                    <span class="brief">臺大校園徵才</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://onlinerecruitment.ntu.edu.tw/" title="虛擬數位徵才博覽會" >
                    <img class="icons" src="/cm/index_link/4/68/000068_0221.png"
                         alt="虛擬數位徵才博覽會" title="虛擬數位徵才博覽會">
                    <span class="brief">虛擬數位徵才博覽會</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/NTUIP/catalog" title="NTUIP 實習資訊" >
                    <img class="icons" src="/cm/index_link/4/14/000014_0053.png"
                         alt="NTUIP 實習資訊" title="NTUIP 實習資訊">
                    <span class="brief">NTUIP 實習資訊</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/Alumni/gsurvey/informationplatform" title="畢業生流向調查" >
                    <img class="icons" src="/cm/index_link/4/13/000013_0183.png"
                         alt="畢業生流向調查" title="畢業生流向調查">
                    <span class="brief">畢業生流向調查</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/studyabroad/scholarship" title="升學留學資訊" >
                    <img class="icons" src="/cm/index_link/4/12/000012_0172.png"
                         alt="升學留學資訊" title="升學留學資訊">
                    <span class="brief">升學留學資訊</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/links" title="職涯資源網站連結" >
                    <img class="icons" src="/cm/index_link/4/11/000011_0880.png"
                         alt="職涯資源網站連結" title="職涯資源網站連結">
                    <span class="brief">職涯資源網站連結</span>
                </a>
            </div>
            </div>
</section>

<!-- 公告 -->

<!-- 首頁公告列表 自訂標籤顏色 -->

<style>
                    .announcement-list .tags_custom_11,
        .announcement-wrap .tags_custom_11 {
            background-color: #9aff02 !important;
        }
        .announcement-list .tags_custom_11:after {
            border-left-color: #9aff02;
        }
                    .announcement-list .tags_custom_4,
        .announcement-wrap .tags_custom_4 {
            background-color: #f5d5d7 !important;
        }
        .announcement-list .tags_custom_4:after {
            border-left-color: #f5d5d7;
        }
                    .announcement-list .tags_custom_12,
        .announcement-wrap .tags_custom_12 {
            background-color: #ff95ca !important;
        }
        .announcement-list .tags_custom_12:after {
            border-left-color: #ff95ca;
        }
                    .announcement-list .tags_custom_2,
        .announcement-wrap .tags_custom_2 {
            background-color: #d7e5f5 !important;
        }
        .announcement-list .tags_custom_2:after {
            border-left-color: #d7e5f5;
        }
                    .announcement-list .tags_custom_6,
        .announcement-wrap .tags_custom_6 {
            background-color: #f6f7dc !important;
        }
        .announcement-list .tags_custom_6:after {
            border-left-color: #f6f7dc;
        }
                    .announcement-list .tags_custom_5,
        .announcement-wrap .tags_custom_5 {
            background-color: #e9dff5 !important;
        }
        .announcement-list .tags_custom_5:after {
            border-left-color: #e9dff5;
        }
                    .announcement-list .tags_custom_1,
        .announcement-wrap .tags_custom_1 {
            background-color: #d2f5e2 !important;
        }
        .announcement-list .tags_custom_1:after {
            border-left-color: #d2f5e2;
        }
                    .announcement-list .tags_custom_9,
        .announcement-wrap .tags_custom_9 {
            background-color: #e2efda !important;
        }
        .announcement-list .tags_custom_9:after {
            border-left-color: #e2efda;
        }
                    .announcement-list .tags_custom_10,
        .announcement-wrap .tags_custom_10 {
            background-color: #fce4d6 !important;
        }
        .announcement-list .tags_custom_10:after {
            border-left-color: #fce4d6;
        }
                    .announcement-list .tags_custom_8,
        .announcement-wrap .tags_custom_8 {
            background-color: #f78fcf !important;
        }
        .announcement-list .tags_custom_8:after {
            border-left-color: #f78fcf;
        }
                    .announcement-list .tags_custom_7,
        .announcement-wrap .tags_custom_7 {
            background-color: #e0dddd !important;
        }
        .announcement-list .tags_custom_7:after {
            border-left-color: #e0dddd;
        }
    </style>

<div class="section-title">
    <h3>最新消息</h3>
</div>
<div class="row">
    <div class="col-lg-6">
        <ul class="announcement-list menu-item">
                                                                                <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/5" class="tags  tags_custom_5"
                                   title="公告分類：說明會">說明會</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3393" title="【6/12職涯培訓說明會】職場商務禮儀 &amp; 勞動權益介紹" >
                                    【6/12職涯培訓說明會】職場商務禮儀 &amp; 勞動權益介紹                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/2" class="tags  tags_custom_2"
                                   title="公告分類：實習">實習</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3221" title="2024 跨領域實習 &ndash; 臺灣引路人計畫 開放申請！" >
                                    2024 跨領域實習 &ndash; 臺灣引路人計畫 開放申請！                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-04-08</span>
                    </li>
                                                
                                                                                <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/6" class="tags  tags_custom_6"
                                   title="公告分類：活動">活動</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3400" title="【飛捷科技/飛捷文教基金會】全新暑期營隊活動-飛人探索營現正報名中!!" >
                                    【飛捷科技/飛捷文教基金會】全新暑期營隊活動-飛人探索營現正報名中!!                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-31</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/9" class="tags  tags_custom_9"
                                   title="公告分類：宣導事項">宣導事項</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3399" title="113年度青春專案暨求職防騙宣導委外服務專案宣導計畫" >
                                    113年度青春專案暨求職防騙宣導委外服務專案宣導計畫                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-30</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/1" class="tags  tags_custom_1"
                                   title="公告分類：獎學金">獎學金</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3397" title="PhD Scholarship at University of Sussex in collaboration with Imperial College London" >
                                    PhD Scholarship at University of Sussex in collaboration with Imperial College London                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/4" class="tags  tags_custom_4"
                                   title="公告分類：徵才">徵才</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3396" title="中研院細生所李宜靜老師實驗室 誠徵學士/碩士級助理" >
                                    中研院細生所李宜靜老師實驗室 誠徵學士/碩士級助理                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/1" class="tags  tags_custom_1"
                                   title="公告分類：獎學金">獎學金</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3392" title="【友達光電】2024專業技術人才獎學金申請開放" >
                                    【友達光電】2024專業技術人才獎學金申請開放                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                        </ul>
</div>
<div class="col-lg-6">
    <ul class="announcement-list menu-item">                                                        <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/9" class="tags  tags_custom_9"
                                   title="公告分類：宣導事項">宣導事項</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3391" title="勞動部勞動力發展署 5月份就業服務資訊及職缺內容" >
                                    勞動部勞動力發展署 5月份就業服務資訊及職缺內容                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/2" class="tags  tags_custom_2"
                                   title="公告分類：實習">實習</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3390" title="【凱鈿 2024 數位永續種子培育計畫 開跑囉】" >
                                    【凱鈿 2024 數位永續種子培育計畫 開跑囉】                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/2" class="tags  tags_custom_2"
                                   title="公告分類：實習">實習</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3389" title="2024 Intel Taiwan Campus Series  - Disability Inclusion" >
                                    2024 Intel Taiwan Campus Series  - Disability Inclusion                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/6" class="tags  tags_custom_6"
                                   title="公告分類：活動">活動</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3388" title="2024 Schneider Open Week! 免費線上活動，歡迎同學踴躍報名參加" >
                                    2024 Schneider Open Week! 免費線上活動，歡迎同學踴躍報名參加                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/6" class="tags  tags_custom_6"
                                   title="公告分類：活動">活動</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3387" title="【勞動部北分署-名人講座】6/14 翻轉起跑線●劉軒的How to人生學！" >
                                    【勞動部北分署-名人講座】6/14 翻轉起跑線●劉軒的How to人生學！                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                            <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/2" class="tags  tags_custom_2"
                                   title="公告分類：實習">實習</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3386" title="2024 羅氏大藥廠校園實習生招募正式開跑囉！" >
                                    2024 羅氏大藥廠校園實習生招募正式開跑囉！                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-29</span>
                    </li>
                                                                                                <li class="announcement-item">
                        <div class="item-inner">
                            <div class="tags-wrap">
                                <a href="https://career.ntu.edu.tw/board/index/tab/4" class="tags  tags_custom_4"
                                   title="公告分類：徵才">徵才</a>
                            </div>
                            <h5>
                                <a href="https://career.ntu.edu.tw/board/detail/sn/3385" title="微笑單車 | 台大校園盛大招募" >
                                    微笑單車 | 台大校園盛大招募                                </a>
                            </h5>
                        </div>
                        <span class="date"><i class="fa fa-clock-o"></i>2024-05-23</span>
                    </li>
                                                                    
        </ul>
    </div>
</div>

<div class="section-ft">
    <a href="https://career.ntu.edu.tw/board/index/tab/0"
       class="btn btn-outline-info btn-rounded waves-effect un-shadows"
       title="更多消息">更多消息        <i class="fa fa-angle-right"></i>
    </a>
</div>

<!-- 業務資訊 2 -->
<section class="business-container multi-carousel section-container">
<!--    -->        
<div class="section-title">
    <h3>資源快速連結</h3>
</div>
<div class="slick-six slick-resource">
                                    <div class="item">
                <a href="https://www.instagram.com/ntucareercenter/" title="職涯中心IG"  target="_blank">
                    <img class="icons" src="/cm/index_link/4/93/000093_0991.png"
                         alt="職涯中心IG" title="職涯中心IG">
                    <span class="brief">職涯中心IG</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.facebook.com/NTUCareerCenter/" title="職涯臉書專頁"  target="_blank">
                    <img class="icons" src="/cm/index_link/4/25/000025_0872.png"
                         alt="職涯臉書專頁" title="職涯臉書專頁">
                    <span class="brief">職涯臉書專頁</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/golfedu" title="GOLF學用接軌聯盟" >
                    <img class="icons" src="/cm/index_link/4/91/000091_0582.png"
                         alt="GOLF學用接軌聯盟" title="GOLF學用接軌聯盟">
                    <span class="brief">GOLF學用接軌聯盟</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/Internal_recruitment" title="校內單位職缺搜尋" >
                    <img class="icons" src="/cm/index_link/4/114/000114_0550.jpg"
                         alt="校內單位職缺搜尋" title="校內單位職缺搜尋">
                    <span class="brief">校內單位職缺搜尋</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/links#gstb2-6" title="Linkedin" >
                    <img class="icons" src="/cm/index_link/4/78/000078_0221.png"
                         alt="Linkedin" title="Linkedin">
                    <span class="brief">Linkedin</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/phd/phdjobs" title="博士生海外實習就業資訊" >
                    <img class="icons" src="/cm/index_link/4/31/000031_0532.png"
                         alt="博士生海外實習就業資訊" title="博士生海外實習就業資訊">
                    <span class="brief">博士生海外實習就業資訊</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/CPAS" title="CPAS 職業適性測驗" >
                    <img class="icons" src="/cm/index_link/4/27/000027_0088.png"
                         alt="CPAS 職業適性測驗" title="CPAS 職業適性測驗">
                    <span class="brief">CPAS 職業適性測驗</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://career.ntu.edu.tw/student/USR" title="夢田深耕(輔導暨獎助)計畫" >
                    <img class="icons" src="/cm/index_link/4/29/000029_0169.png"
                         alt="夢田深耕(輔導暨獎助)計畫" title="夢田深耕(輔導暨獎助)計畫">
                    <span class="brief">夢田深耕(輔導暨獎助)計畫</span>
                </a>
            </div>
            </div><!--    --></section>

<!-- 影音專區 && 近期活動(行事曆) -->
<section class="media-container section-container">
    <div class="row">
        <div class="col-12 col-lg-6">
            <!-- 影音專區 -->
            
<!-- 影音專區 -->
<div class="video-wrapper">
    <div class="section-title">
        <h3 style="display: inline">
            <a href="https://career.ntu.edu.tw/media" target="_blank" style="text-decoration: none; color: inherit;">影音專區</a>
        </h3>
        <p class="more" style="color: #5b28ed;display: inline" title="更多影音">&nbsp;<i class="fa fa-arrow-circle-left"></i> more</p>
    </div>
    <div class="video-inner">
        <iframe allowfullscreen frameborder="0" scrolling="no" src="https://www.youtube.com/embed/4iWd7bIhSg4?si=mu3cFVKsoQEQbCWN"></iframe>    </div>
</div>        </div>

        <div class="col-12 col-lg-6">
            <!-- 近期活動(行事曆) -->
            
<div class="activity_reveal-wrapper">
    <div class="section-title green-pole">
        <h3>近期活動</h3>
    </div>
    <div class="activity_reveal-inner">
        <ul class="activity_reveal-list menu-item">
                                                <li class="activity_reveal-item">
                        <div class="period">
                            <span class="mon">Jun</span>
                            <span class="date">12</span>
                        </div>
                        <div class="heading">
                            <a href="https://career.ntu.edu.tw/calendar/detail/calendar_sn/187"
                               title="【6/12職涯培訓說明會】職場商務禮儀 & 勞動權益介紹"><span>【6/12職涯培訓說明會】職場商務禮儀 & 勞動權益介紹</span>
                            </a>
                        </div>
                    </li>
                                                        </ul>
    </div>
    <div class="section-ft en-more">
        <a href="/calendar/index/defaultView/listYear/defaultStart/2024-06-03"
           class="more" title="更多活動">more <i class="fa fa-arrow-circle-right"></i></a>
    </div>
</div>        </div>
    </div>
</section>

<!-- 企業夥伴 -->
<section class="business-container multi-carousel section-container">
    
<div class="section-title">
    <h3>企業夥伴</h3>
</div>
<div class="slick-five slick-partner">
                                    <div class="item">
                <a href="https://auo.com/zh-TW/home/index" title="友達光電"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/89/000089_0244.png"
                         alt="友達光電 logo" title="友達光電">
                    <span class="brief">友達光電</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.honhai.com/zh-tw/" title="鴻海科技集團"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/87/000087_0542.png"
                         alt="鴻海科技集團 logo" title="鴻海科技集團">
                    <span class="brief">鴻海科技集團</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.deltaww.com/default.aspx?hl=zh-TW" title="台達電子"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/85/000085_0874.png"
                         alt="台達電子 logo" title="台達電子">
                    <span class="brief">台達電子</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.willistowerswatson.com/zh-TW" title="韋萊韜悅"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/46/000046_0192.png"
                         alt="韋萊韜悅 logo" title="韋萊韜悅">
                    <span class="brief">韋萊韜悅</span>
                </a>
            </div>
                                <div class="item">
                <a href="http://www.umc.com/chinese/" title="聯華電子"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/45/000045_0133.png"
                         alt="聯華電子 logo" title="聯華電子">
                    <span class="brief">聯華電子</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.esunfhc.com/zh-tw/" title="玉山金控"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/44/000044_0261.png"
                         alt="玉山金控 logo" title="玉山金控">
                    <span class="brief">玉山金控</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://tw.micron.com/micron-in-taiwan" title="美光"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/43/000043_0179.png"
                         alt="美光 logo" title="美光">
                    <span class="brief">美光</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.tsmc.com/chinese/default.htm" title="台積電"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/42/000042_0330.png"
                         alt="台積電 logo" title="台積電">
                    <span class="brief">台積電</span>
                </a>
            </div>
                                <div class="item">
                <a href="http://www.pfizer.com.tw/" title="輝瑞大藥廠"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/40/000040_0692.png"
                         alt="輝瑞大藥廠 logo" title="輝瑞大藥廠">
                    <span class="brief">輝瑞大藥廠</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.ddiworld.com.tw/" title="宏智國際顧問"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/39/000039_0796.png"
                         alt="宏智國際顧問 logo" title="宏智國際顧問">
                    <span class="brief">宏智國際顧問</span>
                </a>
            </div>
                                <div class="item">
                <a href="https://www.dbschenker.com/sg-en" title="德鐵信可"  target="_blank">
                    <img class="partner-logo" src="/cm/index_link/4/41/000041_0372.png"
                         alt="德鐵信可 logo" title="德鐵信可">
                    <span class="brief">德鐵信可</span>
                </a>
            </div>
            </div></section>

<script>
    // 業務資訊 1、業務資訊 2、企業夥伴 slick
    $('.slick-six').slick({
        infinite: true,
        speed: 600,
        autoplay: true,
        autoplaySpeed: 3000,
        slidesToShow: 6,
        slidesToScroll: 1,
        responsive: [
            {
                breakpoint: 1200,
                settings: {
                    slidesToShow: 5,
                    slidesToScroll: 1,
                    infinite: true
                }
            },
            {
                breakpoint: 992,
                settings: {
                    slidesToShow: 4,
                    slidesToScroll: 1,
                    infinite: true
                }
            },
            {
                breakpoint: 768,
                settings: {
                    slidesToShow: 3,
                    slidesToScroll: 1
                }
            },
            {
                breakpoint: 575,
                settings: {
                    slidesToShow: 2,
                    slidesToScroll: 1
                }
            }
        ]
    });

    $('.slick-five').slick({
        infinite: true,
        speed: 600,
        autoplay: true,
        autoplaySpeed: 3000,
        slidesToShow: 5,
        slidesToScroll: 1,
        responsive: [
            {
                breakpoint: 1200,
                settings: {
                    slidesToShow: 4,
                    slidesToScroll: 1,
                    infinite: true
                }
            },
            {
                breakpoint: 992,
                settings: {
                    slidesToShow: 3,
                    slidesToScroll: 1,
                    infinite: true
                }
            },
            {
                breakpoint: 768,
                settings: {
                    slidesToShow: 2,
                    slidesToScroll: 1
                }
            },
            {
                breakpoint: 375,
                settings: {
                    slidesToShow: 1,
                    slidesToScroll: 1
                }
            }
        ]
    });
</script>            </div>

        </div>
    </div>
</div>
<!-- footer -->

<footer class="footer">
    <div class="footer-inner">
        <div class="container">
            <div class="general-content">
                <a accesskey="Z" href="#" class="sr-only " title="下方選單連結">:::</a>
                <!-- 頁尾常用連結 -->
                
<ul class="menu-item general-links">
                                    <li>
                <a href="https://career.ntu.edu.tw/Privacy"                    title="隱私權與資訊安全政策">隱私權與資訊安全政策</a>
            </li>
                                <li>
                <a href="https://sec.ntu.edu.tw/News_n_101153_sms_79133.html"  target="_blank"                   title="雙語辭彙表">雙語辭彙表</a>
            </li>
                                <li>
                <a href="https://www.ntu.edu.tw/about/map.html"  target="_blank"                   title="臺大地圖">臺大地圖</a>
            </li>
            </ul>                <!-- 頁尾常用連結圖示 -->
                
<ul class="menu-item custom-icon">
                                    <li>
                <a href="https://ntucace.ntu.edu.tw/" class="icon-ft" title="跨領域實習計畫"
                     target="_blank">
                    <img src="/cm/index_link/4/113/000113_0107.png" alt="跨領域實習計畫" title="跨領域實習計畫">
                </a>
            </li>
                                <li>
                <a href="https://www.instagram.com/ntucareercenter/" class="icon-ft" title="職涯中心 Instragm粉絲頁"
                     target="_blank">
                    <img src="/cm/index_link/4/96/000096_0365.png" alt="職涯中心 Instragm粉絲頁" title="職涯中心 Instragm粉絲頁">
                </a>
            </li>
                                <li>
                <a href="https://www.facebook.com/NTUCareerCenter" class="icon-ft" title="職涯中心 Facebook粉絲頁"
                     target="_blank">
                    <img src="/cm/index_link/4/95/000095_0784.png" alt="職涯中心 Facebook粉絲頁" title="職涯中心 Facebook粉絲頁">
                </a>
            </li>
            </ul>            </div>

                            <!-- 頁尾聯絡資訊 -->
                <ul class="menu-item contact">
	<li><i class="fa fa-map-marker" title="地址"></i> <a href="http://goo.gl/maps/YYJNXTBJmN45mqZW9" target="_blank">10617臺北市大安區羅斯福路四段1號望樂樓區</a></li>
	<li><i class="fa fa-envelope" title="信箱"></i> <a href="mailto:career@ntu.edu.tw">career@ntu.edu.tw</a></li>
	<li><i class="fa fa-phone" title="聯絡電話"></i> <a href="tel:+886-2-3366-2046" target="_blank">+886-2-33662046</a>~7</li>
	<li><i class="fa fa-fax" title="傳真"></i>&nbsp;+886-2-23623560</li>
</ul>
            
        </div>
    </div>
    <div class="footer-bt">
        <div class="container">
            <div class="footer-data">
                <p>瀏覽器建議 Chrome、Mozilla Firefox</p>
                <!--                <p>最後更新日期 2019-05-01 13:39</p>-->
<!--                <p>瀏覽人數 5678126</p>-->
            </div>
            <address>本網站著作權屬於國立臺灣大學 學生事務處</address>
        </div>
    </div>
</footer>

<!-- footer -->

</body>
</html>
