/*
* 全局样式 start
*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.cf:after {
    display: block;
    content: " ";
    clear: both;
}

.alleft {
    text-align: left;
}

.alcenter {
    text-align: center;
}

.alright {
    text-align: right;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt {
    position: relative;
    overflow: hidden;
}

.bt::after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}

.bt:hover {
    box-shadow: 0 0 4px 1px rgba(74, 134, 255, 0.5);
}

.bt:hover::after {
    display: block;
}

.cus-bt:focus {
    box-shadow: 0 0 4px 1px rgba(74, 134, 255, 0.5) inset;
}

.cus-bt:focus::after {
    display: block;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.marg-cent, .guide-m-img {
    margin: 0 auto;
}

.opeart-guide-bg {
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
}

.opeart-guide-cont {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    width: 1000px;
    height: auto;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.toTop {
    padding-top: 30px;
}

.guide-img {
    display: block;
    width: 100%;
}

.re-guide {
    color: #4986ff;
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
}

.re-guide:hover {
    color: #024AD9;
    text-decoration: underline;
}


/*
* 全局样式 end
*/

/*
* 新手引导 start
*/

.new-guide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: 940px;
    z-index: 1;
}

.g-shelter-cont {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    overflow: hidden;
}

.g-shelter-cont > img {
    display: block;
    width: 100%;
    height: 100px;
}

.g-shelter {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    color: #fff;
    text-align: center;
    position: relative;
}

.g-title {
    line-height: 60px;
    font-size: 26px;
    font-weight: bold;
    padding-top: 50px;
}

.g-j-title {
    line-height: 30px;
    font-size: 16px;
}

.g-page-next-bt {
    font-size: 16px;
    line-height: 36px;
    height: 38px;
    width: 120px;
    border-radius: 20px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 50px auto;
}

.g-stept-cont {
    width: 930px;
    height: 300px;
    margin: 20px auto;
    border: 1px solid #fff;
    border-radius: 8px;
}

.g-stept-title {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
}

.g-stept-bar {
    position: absolute;
    left: 120px;
    top: 100px;
    width: 690px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.g-stept-item {
    width: 25%;
    padding-top: 40px;
}

.g-s-i-sicle {
    width: 120px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 20px 0 0px 0;
    background-color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 18px;
    color: #000;
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #4a86ff), color-stop(100%, #c8daff));
    background-image: -moz-linear-gradient(135deg, #4a86ff, #c8daff);
    background-image: -ms-linear-gradient(135deg, #4a86ff, #c8daff);
    background-image: -o-linear-gradient(135deg, #4a86ff, #c8daff);
    background-image: linear-gradient(135deg, #4a86ff, #c8daff);
}

.g-s-i-sicle img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0px auto 5px auto;
}

.g-stept-intro {
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    padding: 15px 0;
}

.new-guide-jump {
    position: fixed;
    right: 25px;
    bottom: 15px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding-right: 15px;
}

.new-guide-jump :hover {
    text-shadow: 0 0 2px rgb(255, 255, 255);
}

.new-guide-jump:after {
    display: block;
    content: " ";
    position: absolute;
    right: 3px;
    top: 7px;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-width: 2px 2px 0 0;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.g-shelter-page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -moz-transition: transform 0.25s ease;
    -webkit-transition: transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    -ms-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
}

.g-shelter-page.pre {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.g-shelter-page.next {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-image: none;
}

.g-shelter-page.curr {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.g-arrow-point {
    margin: -60px 30px 0 30px;
    width: 80px;
}

.g-module-tip {
    text-align: left;
    font-size: 18px;
    line-height: 30px;
    margin-right: 30px;
}

/*
* 新手引导 end
*/

/*
* 安排考试 start
*/

.opeart-guid {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.g-step-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    background: #fff;
}

.g-step-title .fl {
    padding-left: 30px;
}

.g-step-title .fr {
    cursor: pointer;
    width: 30px;
}

.g-deny {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    height: 16px;
    width: 16px;
    background: url(https://eduresources.oss-cn-beijing.aliyuncs.com/student_platform/images/icon/close.png) no-repeat 0 0;
    background-size: 14px 14px;
}

.g-opeart-cont {
    background-color: #313131;
    height: 100%;
    width: 100%;
}

.g-page-cont {
    padding: 45px 0 15px 0;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    width: 200px;
}

.g-page-n,
.g-page-p {
    display: inline-block;
    display: none;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #ea3198;
    width: 70px;
    margin: 0 10px;
    border-radius: 4px;
}

.g-opeart-img {
    display: none;
}

/*
* 安排考试 end
*/

/*
* 创建认证考试 start
*/

.guide-create-exam {
    display: block;
    position: relative;
    top: 55px;
    margin: 0 auto;
}

/*
* 创建认证考试 end
*/


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, .3);
    /* background-color: #555; */
}