@charset "utf-8";
/**
 * @module: 服务大厅
 * @author: wqg
 * @version: 3.0
 * @date: 2019.12.05
 */

/*global*/
html,body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, "Source Sans Pro", Helvetica, "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: #333;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

img {
    border: none;
    display: block;
}

ul,ol,dl,dl dd {
    margin: 0;
    padding: 0;
}

ul li,ol li {
    list-style: none;
}

/*-webkit-内核浏览器默认滚动条样式*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    border: 1px #d3d3d3 solid;
    box-shadow: 0 0 3px #dfdfdf inset;
    border-radius: 10px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    border: 1px #808080 solid;
    border-radius: 10px;
    background: #999;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d7d7d;
}

.service-center-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 10px;
}

.hallbox{
    position: relative;
    top: 15px;
    z-index: 999;
    max-width: 1440px;
    margin: 0 auto -25px;
    padding: 0 5px;
    box-sizing: border-box;
}

.card-container {
    max-width: 1440px;
}

.card-head {
    width: 100%;
    height: 50px;
    margin-bottom: 12px;
}

.card-head ul {
    height: 50px;
}

.card-head ul li {
    height: 50px;
    float: left;
    padding: 12px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card-head ul li:hover {
    -webkit-transform: scale3d(1,1.2,1);
    -ms-transform: scale3d(1,1.2,1);
    -o-transform: scale3d(1,1.2,1);
    transform: scale3d(1,1.2,1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.card-active {
    -webkit-transform: scale3d(1,1.2,1);
    -ms-transform: scale3d(1,1.2,1);
    -o-transform: scale3d(1,1.2,1);
    transform: scale3d(1,1.2,1);
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
}

.card-head ul li span {
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.card-head ul li span img {
    width: 100%;
}

.card-head ul li p {
    font-size: 18px;
    color: #fff;
}

.card-head ul li span,
.card-head ul li p {
    float: left;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card-head ul li:hover span,
.card-head ul li:hover p,
.card-active span,
.card-active p {
    -webkit-transform: scale3d(1,.8,1);
    -ms-transform: scale3d(1,.8,1);
    -o-transform: scale3d(1,.8,1);
    transform: scale3d(1,.8,1);
}

.newest-services,
.hottest-services {
    width: 50%;
}

.newest-services {
    background-color: #edbc6c;
}

.hottest-services {
    background-color: #2baab1;
}

.card-list {
    width: 100%;
    min-height: 240px;
}

.card-list ul {
    width: 100%;
}

.card-list ul:after {
    content: "";
    display: block;
    clear: both;
}

.card-list ul li {
    width: 25%;
    height: 119px;
    float: left;
    border-left: 1px solid #efefef;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    margin-left: -1px;
    margin-top: -1px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card-list ul li:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    position: relative;
    z-index: 1;
}

.card-list ul li a {
    display: block;
    height: 120px;
    padding: 10px;
    border-right: 1px solid #efefef;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card-info-box {
    width: 100%;
    height: 80px;
    position: relative;
}

.card-icon,.card-info {
    float: left;
}

.card-icon {
    width: 60px;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
}

.card-icon span {
    display: block;
    width: 40px;
    height: 40px;
}

.card-icon span img {
    width: 100%;
}

.card-info {
    width: 100%;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 8px;
    padding-left: 70px;
}

.card-info h3,.card-info p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-info h3 {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.card-info p {
    font-size: 14px;
    color: #999;
}

.enter-box {
    width: 100%;
    height: 20px;
}

.enter-box span {
    float: right;
    display: block;
    width: 60px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    background-color: #11b288;
    opacity: 0;
    filter:alpha(opacity=0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card-list ul li:hover .enter-box span {
    opacity: 1;
    filter:alpha(opacity=100);
}

.more {
    clear: both;
    height: 33px;
    padding: 0 3px;
    margin-bottom: 10px;
    text-align: right;
    line-height: 30px;
}

.more a {
    font-size: 14px;
    color: #666;
}

/* Rss新闻源 */
.rss {
    display: none;
}

.card-head ul li.rss-card-head-green {
    background: #91bc60;
}

.card-head ul li.rss-card-head-green span {
    width: 26px;
    height: 26px;
    /*background: url("${basePath}resources/images/elobby/servicehall-focus-icon.png") no-repeat center center;*/
    background: url(../../images/elobby/servicehall-focus-icon.png) no-repeat center center;
    margin-right: 10px;
    display: block;
    float: left;
}

.card-head ul li.rss-card-head-blue {
    background: #3f94d7;
}

.card-head ul li.rss-card-head-blue span {
    width: 26px;
    height: 26px;
    /*background: url("${basePath}resources/images/elobby/servicehall-announcement-icon.png") no-repeat center center;*/
    background: url(../../images/elobby/servicehall-announcement-icon.png) no-repeat center center;
    margin-right: 10px;
    display: block;
    float: left;
}

.card-head ul li.rss-card-head-red {
    background: #ef8f67;
}

.card-head ul li.rss-card-head-red span {
    width: 26px;
    height: 26px;
    /*background: url("${basePath}resources/images/elobby/servicehall-news-icon.png") no-repeat center center;*/
    background: url(../../images/elobby/servicehall-news-icon.png) no-repeat center center;
    margin-right: 10px;
    display: block;
    float: left;
}

.card-list ul li a {
    position: relative;
}

.rss-container {
    max-width: 1440px;
    height: 347px;
}

.rss-container:after {
    content: "";
    display: block;
    clear: both;
}

.rss-list-container {
    width: 100%;
    border: 1px solid #efefef;
}

.rss-list-box {
    width: 100%;
    padding: 15px 0;
}

.rss-list-box:after {
    content: "";
    display: block;
    clear: both;
}

.rss-list {
    width: 33.33%;
    float: left;
    padding: 0 25px;
    box-sizing: border-box;
    border-right: 1px dashed #efefef;
}

.rss-list:last-child {
    border-right: none;
}

.rss-list ul li {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #666;
}

.rss-list ul li a {
    width: 260px;
    float: left;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 1200px){
    .rss-list ul li a {
        width: 200px;
    }
}

.rss-list ul li span {
    float: right;
}

/* 角色服务 */
.teacher-services,
.students-services,
.visitors-services {
    width: 33.333%;
}

.teacher-services {
    background-color: #2edfa3;
}

.students-services {
    background-color: #23b7e5;
}

.visitors-services {
    background-color: #e36159;
}

/* 服务分类标签 */

.hallbox-1208 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5px;
}

.service-labels {
    overflow: hidden;
}

.service-labels ul {
    overflow: hidden;
}

.service-labels ul li {
    width: 25%;
    padding: 0 4px 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}

.service-labels ul a:nth-child(1) li,
.service-labels ul a:nth-child(5) li {
    padding-left: 0;
}

.service-labels ul a:nth-child(4) li,
.service-labels ul a:nth-child(8) li {
    padding-right: 0;
}

.service-labels-inner{
    display: block;
    height: 120px;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    transition: 400ms;
    position: relative;
    z-index: 100000;
    overflow: hidden;
}

.service-labels-inner p {
    font-size: 18px;
    color: #fff;
    padding: 0 6px;
    margin: 0 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-labels-icon {
    display: block;
    width: 76px;
    height: 76px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: 0.3;
    filter:alpha(opacity=30);
}

.service-labels-icon img {
    width: 100%;
}

.su_button_circle {
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    margin-left: 0;
    margin-top: 0;
    pointer-events: none;
}

.explode-circle {
    -webkit-animation: explode 0.5s forwards;
    -moz-animation: explode 0.5s forwards;
    animation: explode 0.5s forwards;
}

.desplode-circle {
    -webkit-animation: desplode 0.5s forwards;
    -moz-animation: desplode 0.5s forwards;
    animation: desplode 0.5s forwards;
}

@-webkit-keyframes explode {
    0% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(255, 255, 255, .1);
    }
    100% {
        width: 600px;
        height: 600px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(255, 255, 255, .3);
    }
}

@-moz-keyframes explode {
    0% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(255, 255, 255, .1);
    }
    100% {
        width: 600px;
        height: 600px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(255, 255, 255, .3);
    }
}

@keyframes explode {
    0% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(255, 255, 255, .1);
    }
    100% {
        width: 600px;
        height: 600px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(255, 255, 255, .3);
    }
}

@-webkit-keyframes desplode {
    0% {
        width: 600px;
        height: 600px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(255, 255, 255, .3);
    }
    100% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(255, 255, 255, .1);
    }
}

@-moz-keyframes desplode {
    0% {
        width: 600px;
        height: 600px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(255, 255, 255, .3);
    }
    100% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(255, 255, 255, .1);
    }
}

@keyframes desplode {
    0% {
        width: 600px;
        height: 600px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(255, 255, 255, .3);
    }
    100% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(255, 255, 255, .1);
    }
}

/*在线办理飘带*/
.hall-detail-float-remind {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 63px;
    height: 54px;
}

.hall-detail-float-remind img {
    display: block;
    width: 63px;
    height: 54px;
}

/*footer*/
.footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 15px;
    text-align: center;
}

.visitors-footer {
    padding: 30px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-menu {
    border-bottom:1px solid #BBB;
    padding: 15px 0;
}

.footer ul {
    overflow: hidden;
    margin: 0 auto;
}

.footer ul li {
    float: left;
    width: 120px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    border-right:1px solid #9C9C9C;
}

.footer ul li a {
    cursor: pointer;
    color: #007aff;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer p {
    text-align: center;
    line-height:50px;
    color:#555;
    font-size: 14px;
}