@charset "utf-8";
/* 浙江财经大学东方学院 国际合作交流中心 - 公共样式 */

/* ===== Reset & 基础样式 ===== */
* { box-sizing: border-box; }
html, body {
    color: #333;
    font-size: .16rem;
    margin: 0 auto !important;
    text-align: left;
    overflow-x: hidden;
    font-family: SourceHanSansSC;
    -webkit-font-smoothing: antialiased;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p, b, section, nav {
    padding: 0;
    margin: 0;
    font-weight: normal;
    box-sizing: border-box;
}
i, em, b { font-style: normal; }
ol, ul { list-style: none; }
li { list-style-type: none; }
a { text-decoration: none; color: inherit; }
a:focus, div:focus { border: none; outline: none; }
img, input { border: 0; }
input, button { border: none; outline: none; color: inherit; background-color: transparent; }
input[type='text']:focus-visible { outline: none; }

/* ===== 工具类 ===== */
.clear:after { content: ''; display: block; clear: both; }
.fl { float: left; }
.fr { float: right; }
.flex { display: flex; justify-content: space-between; flex-wrap: wrap; }
.flex-left { display: flex; flex-wrap: wrap; }
.flex-center { display: flex; flex-wrap: wrap; justify-content: center; }
.flex-right { display: flex; flex-wrap: wrap; justify-content: flex-end; }
.flex-v-center { display: flex; flex-direction: column; justify-content: center; }
.flex-v { display: flex; align-items: center; justify-content: space-between; }
.eclip { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.l2 { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.l3 { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.zi3 { position: relative; z-index: 3; }
.wp { width: 16rem; margin: 0 auto; max-width: 96%; }
.none { display: none; }

/* 图片悬停效果 */
.pic { position: relative; overflow: hidden; }
/* .pic:before {
    content: '';
    position: absolute;
    top: 0;
    left: -86%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    transform: skewX(-25deg);
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.2));
} */
.pic .a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}
.bg-mask:hover .pic .a { transform: scale(1.08); }
.bg-mask:hover .pic:before { animation: shine .6s; }
@keyframes shine { 100% { left: 115%; } }

/* 下划线动画效果 */
.aline_b {
    position: relative;
    background-image: linear-gradient(#0066b3, #0066b3);
    background-position: 0 100%;
    background-size: 0 2px;
    background-repeat: no-repeat;
    transition: background-size .4s;
}
.alin_b:hover .aline_b { background-size: 100% 2px; color: #0066b3; }

/* ===== 响应式字体大小 ===== */
@media screen and (max-width:1024px) { html { font-size: 90px!important; } }
@media screen and (max-width:900px) { html { font-size: 85px!important; } }
@media screen and (max-width:640px) { body { font-size: .18rem; } }
@media screen and (max-width:480px) { html { font-size: 80px!important; } }
@media screen and (max-width:375px) { html { font-size: 80px!important; } }
@media screen and (max-width:360px) { html { font-size: 70px!important; } }

/* ===== PC端 Header ===== */
.ar_wap { display: none; }

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    padding: .37rem 0;
    transition: .5s;
}
.header:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 2.95rem;
    background: linear-gradient(180deg, #0D6DB8 0%, rgba(13, 109, 184, 0) 100%);
    z-index: -1;
}
.header.scl {
    /* background: rgba(0, 102, 179, 0.95); */
    padding: 0.2rem 0;
}
.header.scl:after {
    height: 1.5rem;
    /* display: none; */
}

.header .wp {
    width: auto;
    max-width: none;
    padding: 0 .5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header .logo a { display: block; }
.header .logo img {
    display: block;
    height: .57rem;
    transition: .5s;
}
.header.scl .logo img { height: .57rem; }

.header .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header .top-links {
    display: flex;
    align-items: center;
    margin-bottom: .1rem;
}
.header .top-links a {
    font-size: .18rem;
    color: rgba(255, 255, 255, 0.8);
    transition: .3s;
}
.header .top-links a:hover { color: #fff; }
.header .top-links .divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 .24rem;
    font-size: .18rem;
}
.header .top-links .search-btn {
    width: .2rem;
    height: .2rem;
    background: url('../images/submit.svg') center no-repeat;
    background-size: contain;
    cursor: pointer;
    opacity: .8;
    transition: .3s;
}
.header .top-links .search-btn:hover { opacity: 1; }

#nav ul {
    display: flex;
    align-items: center;
}
#nav li {
    position: relative;
    margin-left: 0.53rem;
}
#nav li:first-child { margin-left: 0; }
#nav li a {
    font-size: 0.2rem;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0px;
    color: #fff;
    display: block;
    position: relative;
    transition: .3s;
}
#nav li a:after {
    position: absolute;
    content: '';
    left: 50%;
    right: 50%;
    bottom: -.05rem;
    height: 2px;
    background: #fff;
    transition: .3s;
}
#nav li.active a:after,
#nav li:hover a:after {
    left: 0;
    right: 0;
}
#nav ul li .sub {
    position: absolute;
    top: 100%;
    min-width: 1.4rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%) scaleY(0);
    visibility: hidden;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transition: transform .5s;
    transform-origin: top ;
    padding-top: .1rem;
}

#nav ul li .sub .box {
    text-align: center;
    position: relative;
    background: #fff;
    padding: .05rem 0 ;
    box-shadow: 0 0 .1rem rgba(0,0,0,.3);
    border-radius: 0 0 .05rem .05rem;
    overflow: hidden;
}
#nav ul li .sub .box{

}
#nav ul li .sub a {
    display: block;
    padding: .05rem .1rem;
    line-height: 2;
    transition: .6s;
    font-size: .16rem;
    color: #666666;
    text-align: center;
    white-space: nowrap;
}
#nav ul li .sub a:last-child{
    border: none;
}
#nav ul li .sub a:hover {
    color: #fff;
    background: #0066b3;
}

#nav ul li:hover .sub {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scaleY(1);
}


/* ===== 搜索弹窗 ===== */
.search-dialog-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}
.search-dialog-box .search-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    transition: height .6s ease;
}
.search-dialog-box.on { opacity: 1; visibility: visible; }
.search-dialog-box.on .search-bg { height: 100vh; }
.search-dialog {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.search-dialog .search-inner {
    overflow: hidden;
    transform: translateY(100%);
    transition: .6s;
}
.search-dialog-box.on .search-inner { transform: translateY(0); }
.search-dialog h3 {
    font-size: .28rem;
    color: #fff;
    text-align: center;
    margin-bottom: .3rem;
}
.search-dialog .search-input {
    width: 8rem;
    max-width: 94%;
    margin: 0 auto;
    padding: 0 .1rem 0 .3rem;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
}
.search-dialog .search-input input[type=text] {
    flex: 1;
    height: .7rem;
    background: transparent;
    font-size: .18rem;
    color: #fff;
}
.search-dialog .search-input input[type=text]::placeholder { color: rgba(255,255,255,.5); }
.search-dialog .search-input input[type=submit] {
    width: .6rem;
    height: .7rem;
    background: url('../images/submit.svg') center no-repeat;
    background-size: .24rem;
    cursor: pointer;
}
.pub-close {
    position: absolute;
    width: .48rem;
    height: .48rem;
    z-index: 10;
    right: .3rem;
    top: .3rem;
    background: rgba(255,255,255,.1) url('../images/close.png') center no-repeat;
    background-size: .2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}
.pub-close:hover { transform: rotate(180deg); }

/* ===== 移动端 Header ===== */
.m_header_box {transition: .6s;display: none;height: .75rem;position: relative;z-index: 100000;}
.m_header_box header{padding: 0 0 0 15px;height: .75rem;background: #0066b3;box-shadow: 0 3px 5px rgba(0,0,0,.05);position: fixed;top: 0;left: 0;right: 0;z-index: 100;display:flex;justify-content:space-between;align-items: center;}
.m_header_box header #logo img{height: .5rem;display: block}
.m_header_box header #logo{padding:0;width: 100%;}

#m_nav .list_box0{display: flex;align-items: center;flex-wrap: wrap}
#m_nav .list_box0 .li{font-size: 14px;color: #fff;display: inline-block;transition:.6s;margin-right: .2rem;position: relative;line-height: .5rem;}
#m_nav .list_box0 .li>a{display:block;}
#m_nav .list_box0 .li a>img{margin: -2px 0 0 0;}
#m_nav .list_box0 .li a .ewm_box{display:inline-block;border:#d3d3d3 1px solid;background:#fff;position:absolute;left:50%;transform: translateX(-50%) scaleY(1);top: 3.5rem;opacity: 1;visibility: visible;transform-origin:top;display: none;}
#m_nav .list_box0 .li a .ewm_box:before{content:"";position:absolute;border-left:transparent 6px solid;border-right:transparent 6px solid;border-bottom: #fff 6px solid;top: -6px;left: 50%;margin-left: -6px; }
#m_nav .list_box0 .li:hover{opacity: 1;color: #f5daa5;}
#m_nav .list_box0{justify-content: center;width: 100%;}
#m_nav .list_box0 .li{margin: 0 .05rem;}

/*导航按钮开始*/
#nav_btn_box.on { background: none; }
#nav_btn .point.on .navbtn::after, #nav_btn .point.on .navbtn::before {/* background: #fff; */}
#nav_btn_box{position:relative;width: .85rem;height: .75rem;display: flex;align-items: center;justify-content: center;z-index: 1;min-width: .85rem;}
#nav_btn_box:before{content:"";position: absolute;z-index: -1;top: 0;right: 0;bottom: 0;left: 0;/* background: #153052; */}
#nav_btn_box:after{content:"";position: absolute;z-index: -1;top: 0;left: -6px;/* border-right: #153052 6px solid; */border-bottom: transparent .75rem solid;}
#nav_btn { cursor: pointer; text-align: center; z-index: 99999; -webkit-transition: .5s; -moz-transition: .5s; -ms-transition: .5s; -o-transition: .5s; outline: none; box-shadow: none; }
#nav_btn .point {display: inline-block;width: .34rem;height: 18px;position: relative;outline: none;}
#nav_btn .point:hover .navbtn, #nav_btn .point:hover .navbtn::after, #nav_btn .point:hover .navbtn::before {width: 100%;}
#nav_btn .navbtn {position: absolute;top: 50%;left: 0;display: inline-block;width: 100%;height: 2px;-webkit-transition: all .3s ease-out 0s;-moz-transition: all .3s ease-out 0s;-ms-transition: all .3s ease-out 0s;-o-transition: all .3s ease-out 0s;transition: all .3s ease-out 0s;background: #fff;margin-top: -1px;}
#nav_btn .navbtn::after, #nav_btn .navbtn::before {position: absolute;left: 0;display: inline-block;width: 100%;height: 2px;content: '';-webkit-transition: all .3s ease-out 0s;-moz-transition: all .3s ease-out 0s;-ms-transition: all .3s ease-out 0s;-o-transition: all .3s ease-out 0s;transition: all .3s ease-out 0s;background: #fff;}
#nav_btn .navbtn::after {top: -8px;}
#nav_btn .navbtn::before {top: 8px;}
#nav_btn .point.on .navbtn {background: transparent;}
#nav_btn .point.on .navbtn::after { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); top: 0px; }
#nav_btn .point.on .navbtn::before { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); top: 0px; }

.m_nav_list {flex-direction: column;/* justify-content: center; */width: 100%;height: 100%;overflow: auto;align-items: center;display: flex;background: rgba(255,255,255,.1);}
.m_nav_list::-webkit-scrollbar { display:none}
#m_nav {z-index: 99999;position: fixed;width: 100%;height: 100vh;right: -105vw;top: 0;display: none;padding: 64px 0px 30px;overflow: hidden;pointer-events: none;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;display: flex;flex-direction: column;justify-content: flex-start;align-items: flex-start;background: #0066b3;background-size:cover;opacity: 0;visibility: hidden;-webkit-backdrop-filter: blur(15px);backdrop-filter: blur(15px);}
#m_nav .close{position:absolute;top: 7px;right: 15px;left: 15px;font-size: 30px;color: #333;z-index: 10000;/* background: rgba(255,255,255,.1); */width: auto;height: 35px;border-radius: 0;display: flex;align-items: center;justify-content: flex-end;padding: 0 0;}
#m_nav.act {pointer-events: auto;right: 0;opacity: 1;visibility: visible;}

#m_nav .search_box input.submit{ background: #e4a600 url(../images/submit.svg) center no-repeat; background-size: 1.75rem;}


#m_nav .old_rukou{margin: .24rem 0 0;width: 100%;}

.list_box_nav_mobile{width:100%;height: 100%;/* background: rgba(255,255,255,.1); */padding: 0 0 10px;overflow: hidden;overflow-y: scroll;margin: 0;flex: 1;}
.list_box_nav_mobile>li{width: 100%;overflow: hidden;padding: 0;position: relative;margin: 0 auto;padding: 0 20px;}
.list_box_nav_mobile>li .con{ position:relative}
.list_box_nav_mobile>li .a{width: 100%;border-bottom: 1px solid rgba(255,255,255,.15);line-height: .64rem;color: rgba(255,255,255,.8);padding: 0;font-size: .2rem;display: flex;position: relative;transition:.5s;}
.list_box_nav_mobile>li i{opacity: 1;filter: alpha(opacity=100);display: inline-block;width: .64rem;height: .64rem;display: inline-block;background: url(../images/nav-icon.png) center no-repeat;background-size: .15rem !important;position: absolute;display: block;right: 0;top: 0;}
.list_box_nav_mobile>li.on1 i{transform: rotate(-90deg);-webkit-transform: rotate(-90deg);-moz-transform: rotate(-90deg);}

.list_box_nav_mobile>li.on .a{color: rgba(255,255,255,1);}


.wap_search{font-size:16px;border-radius: 5px;color:#fff;text-align:center;letter-spacing:2px;overflow:hidden;width: 100%;height: 60px;display: block;padding: 0 20px;}
.wap_search .header-search{height: 44px;border-radius: 0;background: rgb(255 255 255);position:relative;width: 100%;margin: 10px auto;border-radius: 50vw;}
.wap_search .input{font-size: 14px;color: #646464;height: 44px;line-height: 44px;padding: 0 .24rem;box-shadow:none;-webkit-appearance: none;float:left;border-right: 0;background:none;width: calc(100% - 40px);}
.wap_search .btn_blue{position:absolute;cursor:pointer;top:0;right:-0.1rem;width: 44px;height: 44px;line-height: 44px;border:0;background: url(../images/submit.svg) center no-repeat #0066cc;background-size: .24rem;border-radius: 50vw;}

/*三级导航 开始*/
.list_box_nav_mobile>li .list{padding:10px 0;border-bottom: 1px solid rgba(255, 255, 255, 0.1); display:none}
.list_box_nav_mobile>li .list a{display:block;font-size:13px;color: rgba(255,255,255,.6);line-height: 2.5;}
.nav_mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 888; background-color: rgba(0,0,0,0.4); display: none; }


/* ===== Footer ===== */
.footer {
    /* background: #0D6DB8; */
    position: relative;
}
.footer-top{
    background: url('../images/footer-top-bg.png') center no-repeat;
    background-size: 100% 100%;
}
/* 友情链接部分 */
.footer .footer-links {
    /* background: #0D6DB8; */
    padding: .24rem 0;
}
.footer .footer-links .wp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer .footer-links span{
    display: flex;
    align-items: center;
}
.footer .footer-links span > span{
    font-size: 0.2rem;
    margin: 0 0.1rem;
    color: #FFFFFF;
}
.footer .footer-links span > img {
    width: 0.26rem;
}
.footer .footer-links a {
    font-size: 0.2rem;
    margin-right: 0.5rem;
    color: #FFFFFF;
    transition: .3s;
    background-image: linear-gradient(#fff, #fff);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
}
.footer .footer-links a:first-child {
    margin-right: 0;
}
.footer .footer-links a:hover { 
    background-size: 100% 1px;
}

/* 主要内容部分 */
.footer .footer-main {
    /* background: #0D6DB8; */
}
.footer .footer-main .wp {
    padding: .24rem 0 0.33rem;
    border-top: 1px solid rgba(255,255,255,.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footer .ft-left {
    display: flex;
    align-items: flex-start;
}
.footer .ft-left img{
    height: 0.57rem;
}
.footer .ft-right {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
}
.footer .ft-info p {
    font-size: .18rem;
    color: rgba(255,255,255,1);
    display: flex;
    align-items: center;
    margin: 0;
    white-space: nowrap;
    margin-bottom: 0.14rem;
}
.footer .ft-info p:last-child {
    margin-bottom: 0rem;
}
.footer .ft-info p img {
    width: .18rem;
    height: .18rem;
    margin-right: .12rem;
    flex-shrink: 0;
}

/* 版权信息 */
.footer .copyright {
    background:#0960A4;
    padding: .14rem 0;
}
.footer .copyright .wp {
    text-align: center;
}
.footer .copyright p {
    font-size: .16rem;
    color: rgba(255,255,255,.8);
    margin: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 1199px) {
    html, body { overflow-x: hidden !important; }
    .ar_web { display: none; }
    .ar_wap { display: block; }
    .wp { width: 100%; padding: 0 15px; max-width: 100%; }
    .m_header_box { display: block; }

    
    .footer .footer-links a {
        margin: 0.08rem 0.3rem 0.08rem 0;
    }
    .footer .footer-main .wp{
        width: 100%; padding: 0.24rem 15px; max-width: 100%;
    }
}

@media (max-width: 1025px) {
    /* 底部模块适配 */
    .footer .footer-main .wp {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer .ft-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer .ft-left img {
        height: 0.5rem;
    }
    .footer .ft-right {
        margin-top: 0.25rem;
        width: 100%;
    }
    .footer .ft-info p {
        white-space: normal;
    }
    .footer .footer-links a{
        margin:0.08rem 0.2rem 0.08rem 0;
        font-size: 0.16rem;
    }
    .footer .footer-links span > span{
        font-size: 0.16rem;
    }
    .footer .footer-links span > img{
        width: 0.18rem;
    }
}

@media (max-width: 769px) {
    .m_header_box header #logo img{
        height: 0.4rem;
    }

    /* 底部模块适配 */
    .footer .footer-links {
        padding: 0.2rem 0;
    }
    .footer .footer-links span > span {
        font-size: 0.16rem;
    }
    .footer .footer-links a {
        font-size: 0.16rem;
        margin: 0.06rem 0.1rem 0.06rem 0;
    }
    .footer .footer-main .wp {
        padding: 0.2rem 15px 0.28rem;
    }
    .footer .ft-left img {
        height: 0.38rem;
    }
    .footer .ft-info p {
        font-size: 0.16rem;
        margin-bottom: 0.12rem;
    }
    .footer .copyright {
        padding: 0.12rem 0;
    }
    .footer .copyright p {
        font-size: 0.18rem;
    }
}
@media (max-width: 720px) {
}
@media (max-width: 548px) {
    .m_header_box header #logo img{
        height: 0.3rem;
    }
}
@media (max-width: 481px) {
    .m_header_box header #logo img { height: .3rem; }

    /* 底部模块适配 */
    .footer .footer-links {
        padding: 0.18rem 0;
    }
    .footer .footer-main .wp {
        padding: 0.18rem 15px 0.25rem;
    }
    .footer .ft-left img {
        height: 0.34rem;
    }
    .footer .ft-right {
        margin-top: 0.2rem;
    }
    .footer .ft-info p {
        margin-bottom: 0.1rem;
    }
    .footer .ft-info p img {
        width: 0.2rem;
        height: 0.2rem;
        margin-right: 0.1rem;
    }
    .footer .copyright {
        padding: 0.1rem 0;
    }
    .footer .copyright p {
        font-size: 0.16rem;
        line-height: 1.5;
    }
}
@media (max-width: 405px) {
    .m_header_box header #logo img { height: .25rem; }
    .footer .ft-left img{height: 0.3rem;}
}

/* ===== 动画 ===== */
@keyframes o-upfade-top {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

html::-webkit-scrollbar { width: 4px; height: 8px; background-color: #F5F5F5; }
html::-webkit-scrollbar-track { border-radius: 10px; background-color: #E2E2E2; }
html::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #0066b3; }

