﻿@charset "utf-8";

/* CSS Document */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: url(../images/bg.png) center no-repeat;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font: 12px/2 微软雅黑, Verdana, Arial, Helvetica, sans-serif;
    position: relative;
}
p {
    margin: 0;
    padding: 0;
}
ul,li {
    list-style: none;
}
img {
    border: 0;
    max-width: 100%;
}
.c-b,
.clear {
    clear: both;
}
a {
    text-decoration: none;
    color: #404040;
}
.line {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    background: #ccc;
}

.text-center {
    text-align: center;
}

.hide {
    display: none !important;
}

*::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}

*::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
}

:root {
    --color: #2a4e97;
    --color10: #f8f9fb;
    --color05: #661b1805;
}

.lg-body {
    width: 100%;
    height: 100%;
}
.lg-form-head-title {
    font-size:18px;
    font-weight:bold
}
#regForm .lg-btn.lg-btn-lg {
    background: #7c0000;
}
.head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
}

.menu {
    width: 38px;
    height: 34px;
    margin-right: 20px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
}

    .menu span {
        display: block;
        width: 15px;
        height: 15px;
        margin: 1px;
        border: 2px solid var(--color);
        transition: all 0.2s;
    }

        .menu span:nth-child(1) {
            border-radius: 10px 10px 0 10px;
        }

        .menu span:nth-child(2) {
            border-radius: 10px 10px 10px 0;
        }

        .menu span:nth-child(3) {
            border-radius: 10px 0 10px 10px;
        }

        .menu span:nth-child(4) {
            border-radius: 0 10px 10px 10px;
        }

    .menu.act span {
        transform: rotate(180deg);
    }

    .menu:hover span {
        background: var(--color);
    }

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.menu {
    font-size: 40px;
}

.logo img {
}

.logo2 {
    display: none;
    align-items: center;
}

    .logo2 .img {
    }

.tools {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .tools .user {
        font-size: 14px;
    }

        .tools .user i {
            margin-right: 5px;
            font-size: 16px;
        }

        .tools .user a:hover {
            color: #F19311;
        }

    .tools .opera {
        position: absolute;
        top: 30px;
        right: 0;
        width: 100px;
        padding: 10px 0;
        text-align: center;
        font-size: 14px;
        background: #fff;
        box-shadow: 0 3px 6px rgba(0 0 0/18%)
    }

        .tools .opera:before {
            display: block;
            content: "";
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 10px solid #fff;
            position: absolute;
            top: -10px;
            right: 0;
        }

        .tools .opera a {
            display: block;
        }

            .tools .opera a:hover {
                color: #F19311;
            }
    .tools a.login {
        font-size: 12px;
        background-color: #7c0000;
    }
.bodyWrap {
    display: flex;
    justify-content: space-between;
    background-size: cover;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.left {
    flex-shrink: 0;
    width: 300px;
    overflow: hidden;
    background: rgba(51 51 153 /15%);
    transition: all 0.2s;
}

.left-menu {
    padding: 50px 0;
    margin-right: 30px;
}

    .left-menu li {
        height: 60px;
    }

        .left-menu li a {
            color: #7c0000;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            line-height: 60px;
            text-align: center;
        }

            .left-menu li a i {
                font-size: 20px;
                margin-right: 20px;
                margin-top: 2px;
            }

            .left-menu li a span {
            }
.left-menu li:hover {
	background: rgba(255 255 255/80%);
}

.left-menu li.act {
	background: #7c0000;
}

.left-menu li.act a {
	color: #fff;
}

.scroll-body {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(255 255 255/70%);
}

.main-body {
    display: flex;
    width: 100%;
    min-height: 100%;
    background: #fff;
}

.center {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 300px;
    margin:0 20px;
    transition: all ease .2s;
    padding-top:50px
}

.form {
}

.form-content {
    width:100%;
    padding: 15px;
    margin: 0 auto;
    background: #fff;
    transition: all ease .2s;
}

.form-tips {
    padding: 20px;
    background: var(--color10);
    border-radius: 30px;
    font-size: 14px;
}

    .form-tips .cn {
        color: #333;
        font-weight: 200;
    }

    .form-tips .en {
        color: #999;
        font-family: "Georgia";
    }

.form-title {
    margin: 15px 0;
    font-size: 30px;
    text-align: center;
}

.lg-form-body, .lg-form-head{
   
}
/*表单标题字体重载*/
.form .lg-form-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

    .form .lg-form-title span.cn {
        color: #333;
        font-size: 15px;
        margin-right: 10px;
    }

    .form .lg-form-title span.en {
        color: #999;
        font-weight: normal;
        font-size: 12px;
        font-family: "Georgia";
    }


.right {
    padding-top:50px;
    width: 335px;
    background: #f9f9f9;
}

.contact {
    position: sticky;
    top: 80px;
    padding: 25px;
}

    .contact .title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .contact .map {
        margin-bottom: 20px;
    }

    .contact .intro {
    }

        .contact .intro p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--color);
            display: flex;
            align-items: center;
        }

        .contact .intro i {
            width: 28px;
            margin-right: 5px;
            text-align: center;
        }

        .contact .intro span {
        }

    .contact .ewm {
        width: 180px;
        margin: 0 auto;
    }

        .contact .ewm p {
            text-align: center;
            color: var(--color);
        }

.main {
    width: 100%;
    background:#fff;
}

.lg-card {
    background: #fff;
    border:1px solid #eee;
}

.lg-card-header {
    padding:0 15px;
    font-size: 18px;
    font-family: "Microsoft JhengHei Light";
    color: var(--color);
    font-weight: 600;
    line-height: 50px;
    border-bottom: 1px solid #eee;
    background:#f9f9f9;
}

.lg-card-body {
    display: flex;
}

.lg-card-container {
    width: 100%;
}

.apply-list {
    display: flex;
    flex-wrap: wrap;
}

.apply-list-item {
    margin: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
}

    .apply-list-item .title {
        margin-bottom: 15px;
        padding: 10px 15px;
        font-size: 14px;
        background: #f2f5fe;
        border-radius: 10px 10px 0 0;
    }

        .apply-list-item .title i {
            margin-right: 5px;
        }

    .apply-list-item .item {
        padding: 0 15px;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        color: var(--color);
        font-weight: 600;
    }

        .apply-list-item .item .tip {
            color: #747474;
            font-weight: 400;
        }

        .apply-list-item .item.opera {
            justify-content: center;
        }

            .apply-list-item .item.opera span {
                margin: 0 10px;
                cursor: pointer;
                border: 1px solid #ccc;
                border-radius: 5px;
                padding: 10px;
                background: #f9f9f9;
                transition: all 0.2s;
            }

                .apply-list-item .item.opera span:before {
                    margin-right: 5px;
                }

                .apply-list-item .item.opera span:hover {
                    border: 1px solid var(--color);
                    background: var(--color);
                    color: #fff;
                }

.basic-info{
    width:100%;
}
.subtitle {
    background: var(--color10);
    padding:10px 15px;
    font-size:14px;
    font-weight:bold;
}
.subinfo, .examinfo {
    width:100%;
    background: var(--color05);
    
}
    .subinfo .info-item{
        border-bottom:1px solid #eee;
        padding:6px 15px;
        font-size:14px;
        display:flex;
    }
        .subinfo .info-item span:nth-child(1){
            font-weight:bold;
            display:block;
        }

.examinfo{
    display:flex;
}
.examinfo .exam-item {
    margin: 15px;
    background:var(--color10);
}
    .examinfo .exam-item .exam-title {
        border-radius:10px 10px 0 0;
        overflow:hidden;
        display:flex;
        flex-direction:column;
    }
        .examinfo .exam-item .exam-title h3 {
            background: var(--color);
            color: #fff;
            padding:6px;
        }
        .examinfo .exam-item .exam-title span{
            padding:6px;
            font-size:14px;
        }
        .examinfo .exam-item .exam-btn {
            display:flex;
            align-items:center;
            padding:10px;
            gap:10px;
        }
        .examinfo .exam-item .exam-btn .btn {
            background: var(--color);
            color: #fff;
            padding:3px 6px;
            cursor:pointer;
            border-radius:3px;
        }
            .examinfo .exam-item .exam-btn .btn:hover{
                opacity:0.8;
            }


.resultWrap{
    display:flex;
    flex-direction:column;
}
    .resultWrap .exam-title{
        border-bottom: 1px solid #eee;
        padding: 6px 10px;
    }
        .resultWrap .exam-title h3{

        }
        .resultWrap .exam-title span{

        }
.result-popup{
    border-bottom:1px solid #eee;
}
.result-popup-title {
    font-size: 14px;
    padding: 6px 10px;
}
.result-popup-content {
    padding: 6px 10px;
}


.left-support {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    color:#fff
}
    .left-support a{
        color:#fff
    }
    .right-support {
        display: none;
        text-align: center;
    }


@media screen and (max-width:1680px) {
}

@media screen and (max-width:1440px) {
    .left.act {
        width: 260px;
    }
    .center {
       
    }
    .right {
        width: 260px;
    }
}

@media screen and (max-width:1280px) {
    .left {
        width: 260px;
    }

    .center {
        margin: 0 20px;
    }

    .form {
        flex-wrap: wrap;
    }

    .form-content {
        width: 100%;
    }

    .right {
        width: 260px;
    }
}

@media screen and (max-width:968px) {
    .left {
        width: 200px;
    }
    .center {
        margin: 0 10px;
    }
    .right {
        display: none;
    }

    .form-title {
        font-size: 22px;
    }
}

@media screen and (max-width:768px) {
    .left {
        width: 200px;
    }

    .right {
        display: none;
    }

    .form-title {
        font-size: 22px;
    }
}

@media screen and (max-width:550px) {
    .head {
        padding: 0 5px;
        border-radius: 0;
        background: #7c0000;
        justify-content: space-between;
    }

    .logo {
        display: none;
    }

    .logo2 {
        display: flex;
        margin-right: 20px
    }

        .logo2 img {
            height:55px;
            width:auto;
        }

    .tools {
        margin-right:15px;
    }

        .tools a.login {
            background-color: #f0f0f0;
            color: #7c0000
        }
        .tools .user {
            min-width: 120px;
        }

    .menu {
        flex-shrink: 0;
        padding: 0;
        font-size: 25px;
        margin: 0 10px;
        height: 20px;
        width: 28px;
        display:none;
    }

        .menu span {
            width: 10px;
            height: 10px;
        }

        .menu:hover span {
            background: #fff;
        }

        .main-body {
            justify-content: start;
            flex-direction: column;
            height: auto;
        }

    .left {
        display: block;
        width: 100%;
        position: absolute;
        top: 80px;
        left: -100%;
        z-index: 8;
        background: #fff;
        box-shadow: 0 3px 6px rgba(0 0 0/18%);
    }

        .left.act {
            width: 100%;
            left: 0;
        }

    .left-menu {
        padding: 0;
        margin-right: 0;
    }

    .center {
        margin: 0;
        padding: 80px 10px 50px 10px;
        position: relative;
        z-index: 7;
    }

    .form-content {
        width: 100%;
        padding: 0 !important;
    }

    .right {
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .left-support{
        display:none;
    }
    .right-support{
        display:block;
        margin-bottom:-20px;
    }
}

.contact {
}

@media screen and (min-height:700px) {
    .contact {
        position: sticky;
        top: 80px;
    }
}


