/*重置*/
@media (min-width: 200px) and (max-width: 768px) {
    html {
        font-size: 62.5%;
    }
}

@media (min-width: 769px) {
    html {
        font-size: 62.5%;
    }
}

html, body {
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

body, h1, h2, h3, h4, p, p1, p2, p3, p4, dl, dd, dt {
    margin: 0;
    padding: 0;
    display: block;
    font-weight: normal;
}

img {
    display: block;
    border: none;
    max-width: 100%;
}

a {
    text-decoration: none;
    outline: none;
    display: block;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

* {
    color: #666666;
    font-family: "微软雅黑";
    font-size: 1.3rem;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

i {
    font-style: normal;
}

input, select, textarea, button {
    padding: 0;
    margin: 0;
    resize: none;
    border-radius: 3px;
    border: solid 1px #d9edff;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    display: block;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999999;
}

/*QC_loading*/
.loading_overlay {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    background: #333;
    z-index: 10000;
}

.qc_loading_logo {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 88px;
    margin-left: -60px;
    margin-top: -44px;
    display: Flex;
    align-items: Center;
    justify-content: Center;
    font-size: 2.4rem;
    color: #2074d4;
    animation: logo_flash 1.5s alternate infinite;
    opacity: 1;
}

@keyframes logo_flash {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
    }
}

.qc_loading1 {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -90px 0 0 -90px;
    width: 180px;
    height: 180px;
    border-bottom: solid 3px #c2c2c4;
    border-radius: 50%;
    box-sizing: border-box;
    animation: qc_loading1 3s linear infinite;
}

@keyframes qc_loading1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.qc_loading2 {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -130px 0 0 -130px;
    width: 260px;
    height: 260px;
    border-right: solid 3px #2074d4;
    border-radius: 50%;
    box-sizing: border-box;
    animation: qc_loading2 3s linear infinite;
}

@keyframes qc_loading2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/*attention_overlay*/
.attention_overlay {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 100;
}

.attention_overlay ul {
    width: 80%;
    border-radius: 10px;
    overflow: HIdden;
    background: #fff;
}

.attention_overlay ul h1 {
    background: #2074d4;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 1.6rem;
}

.attention_overlay ul li {
    background: #fff;
}

.attention_overlay ul p {
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #333;
    line-height: 25px;
}

.attention_btn {
    width: 90px;
    margin: 0 auto;
    line-height: 35px;
    background: #2074d4;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

/*body*/
body {
    min-height: 100vh;
    background-color: #f5f5f5;
}

/*login_body*/
.login_body { /*background-image:url('../image/login_bg.jpg');background-size:cover;background-position:center center;background-repeat:no-repeat;*/
}

/*login_title*/
.login_title {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    color: #2074d4;
    margin-top: 35%;
    margin-bottom: 15%;
    letter-spacing: 3px;
}

/*login_box*/
.login_box {
    width: 70%;
    margin: 0 auto;
}

.login_box ul {
    width: 100%;
    border: solid 1px #2074d4;
    border-radius: 7px;
    overflow: Hidden;
    margin-bottom: 20px;
}

.login_box ul:nth-child(2) {
    margin-bottom: 50px;
}

.login_box ul input {
    width: 100%;
    line-height: 45px;
    height: 45px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.35);
    font-size: 1.5rem;
    color: #2074d4;
    border: none;
}

.login_box ul input::-webkit-input-placeholder {
    color: #b9c5cc;
}

.login_btn {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 7px;
    line-height: 45px;
    width: 100%;
    height: 45px;
    background: #2074d4;
}

/*index_top*/
.index_top {
    width: 90%;
    margin: 0 auto;
    display: Flex;
    align-items: Center;
    justify-content: space-between;
    margin-top: 30px;
}

.index_top a {
    width: 46%;
    background: #2074d4;
    border-radius: 7px;
    padding: 15px 20px;
}

.index_top a h1 {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
}

.index_top dl {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.index_top dl dd {
    font-size: 2.8rem;
    color: #fff;
    margin-right: 5px;
}

.index_top dl span {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
}

/*index_menu*/
.index_menu {
    width: 87%;
    margin: 0 auto;
    display: FLex;
    align-items: Center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12%;
}

.index_menu a {
    width: 23.33%;
    margin-right: 15%;
    margin-bottom: 30px;
}

.index_menu a:nth-child(3n+3) {
    margin-right: 0;
}

.index_menu a img {
    width: 85%;
    margin: 0 auto;
}

.index_menu a h1 {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
    text-align: Center;
    margin-top: 10px;
}

/*bottom_nav*/
.bottom_nav_height {
    height: 72px;
}

.bottom_nav {
    width: 100%;
    background: #2074d4;
    padding: 0;
    display: Flex;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: 0;
}

.bottom_nav a {
    width: 33.33%;
    padding: 10px 0;
}

.bottom_nav a dl {
    margin-bottom: 5px;
}

.bottom_nav a dl img {
    width: 26px;
    margin: 0 auto;
}

.bottom_nav a dl img:nth-child(1) {
    display: block;
}

.bottom_nav a dl img:nth-child(2) {
    display: none;
}

.bottom_nav a h1 {
    font-size: 1.3rem;
    color: #fff;
    text-align: Center;
}

.bottom_nav_active dl img:nth-child(1) {
    display: None !important;
}

.bottom_nav_active dl img:nth-child(2) {
    display: block !important;
}

/*my_top*/
.my_top {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    background: #fff;
    border-radius: 7px;
    overflow: Hidden;
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
}

.my_top ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.my_top_head {
    width: 16%;
    border-radius: 50%;
    overflow: hidden;
    border: 1px #efefef solid;
}

.my_top li {
    width: 77.5%;
}

.my_top li h1 {
    font-size: 1.8rem;
    color: #2074d4;
    margin-bottom: 6px;
}

.my_top li p, .my_top li p span {
    font-size: 1.4rem;
    color: #333;
}

.my_top li p:nth-child(2) {
    margin-bottom: 2px;
}

.my_top dl dd {
    display: flex;
    align-items: flex-start;
}

.my_top dl dd:nth-child(1) {
    margin-bottom: 2px;
}

.my_top dl dd i {
    width: auto;
    font-size: 1.4rem;
    color: #666;
    display: block;
}

.my_top dl dd span {
    width: 80%;
    font-size: 1.4rem;
    color: #666;
    display: block;
}

/*my_menu*/
.my_menu {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
}

.my_menu a {
    display: Flex;
    align-items: Center;
    position: relative;
    padding: 15px 0;
    border-bottom: solid 1px #dddddd;
}

.my_menu a img {
    width: 24px;
    margin-right: 10px;
}

.my_menu a h1 {
    font-size: 1.6rem;
    color: #333;
}

.my_menu a:after {
    content: '';
    width: 11px;
    height: 19px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -9.5px;
    background-image: url('../image/arrow_right.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*notice_tab*/
.notice_tab {
    width: 100%;
    margin: 0 auto;
    display: Flex;
    align-items: Center;
    padding: 0 5%;
    border-bottom: solid 1px #dddddd;
}

.notice_tab a {
    padding: 10px 10px;
    position: relative;
    margin-right: 20px;
}

.notice_tab a h1 {
    font-size: 1.6rem;
    color: #999;
    font-weight: bold;
}

.notice_tab a p {
    width: 14px;
    height: 14px;
    font-size: 1.2rem;
    color: #fff;
    background: #d80000;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 5px;
    display: Flex;
    align-items: Center;
    justify-content: center;
}

.notice_tab_acitve {
    border-bottom: solid 2px #2074d4;
}

.notice_tab_acitve h1 {
    color: #2074d4 !important;
}

/*notice_list*/
.notice_list {
    width: 90%;
    margin: 0 auto;
}

.notice_list a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 7px;
    margin-top: 20px;
    box-shadow: 0 0 5px #e5e5e5;
}

.notice_list a > img {
    width: 12%;
}

.notice_list a > ul {
    width: 83%;
}

.notice_list a > ul li {
    display: Flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.notice_list a > ul li h1 {
    font-size: 1.3rem;
    color: #999;
}

.notice_list a > ul h2 {
    font-size: 1.5rem;
    color: #333;
    line-height: 22px;
}

.notice_list a > ul h2 span {
    font-size: 1.5rem;
    color: #2074d4;
}

.notice_list a:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    right: 6px;
    top: 6px;
    background: #cbcbcb;
    border-radius: 50%;
}

.notice_red:after {
    background: #d80000 !important;
}

/*notice_detail_container*/
.notice_detail_container {
    width: 90%;
    margin: 0 auto;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 7px 5px #e5e5e5;
    padding: 20px;
    margin-top: 30px;
}

.notice_detail_top h1 {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.notice_detail_top p {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 20px;
}

.notice_detail_main {
    font-size: 1.3rem;
    color: #666;
    line-height: 22px;
}


/*list_title*/
.list_title {
    width: 95%;
    margin: 0 auto;
    font-size: 2rem;
    color: #2074d4;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

.list_title span {
    font-size: 2rem;
    color: #2074d4;
    font-weight: Normal;
}

.list_title a {
    float: right;
    line-height: 30px;
    margin-right: 3px;
}

/*in_list*/
.in_list {
    width: 95%;
    margin: 0 auto;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0 5px #ccc;
    background-color: #ffffff;
}

.in_list tr {
    border-bottom: solid 1px #cccccc;
}

.inlist_title {
    background: #54a3fe;
}

.inlist_title th {
    font-size: 1.3rem;
    color: #fff;
    text-align: Center;
    padding: 10px 5px;
    font-weight: normal;
    border: none;
    outline: none;
}

.in_list td {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    padding: 10px 5px;
}

.list_inlist_btn a {
    font-size: 1.5rem;
    color: #2074d4 !important;
    cursor: pointer;
}

/*in_list_overlay*/
.in_list_overlay {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: Flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 100;
}

.in_list_overlay ul {
    width: 90%;
    background: #fff;
    padding: 20px;
    border-radius: 7px;
    overflow: hidden;
}

.in_list_overlay_title {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
    display: Flex;
    align-items: Center;
    justify-content: space-between;
}

.in_list_overlay_title h1 {
    font-size: 2rem;
    color: #2074d4;
    font-weight: bold;
}

.in_list_overlay_close {
    width: 26px;
}

.in_list_overlay_table {
    width: 100%;
    border: 1px #cccccc solid;
}

.in_list_overlay_table tr td {
    padding: 5px 10px;
    text-align: center;
    color: #5c5c5c;
    border: 1px #cccccc solid;
}

/*pj_list_btn_box*/
.pj_list_btn_box {
    display: flex;
    align-items: Center;
    justify-content: center;
}

.pj_list_btn_box h1, .pj_list_btn_box h2 {
    font-size: 1.5rem;
}

.pj_list_btn_box h1 {
    color: #2074d4;
    margin-right: 10px;
}

.pj_list_btn_box h2 {
    color: #00b853;
}

.pj_list tr th:nth-child(1) {
    text-align: left;
}

.pj_list tr th:nth-child(2) {
    text-align: center;
}

.pj_list tr td:nth-child(1) {
    text-align: left;
}

.pj_list th, .pj_list td {
    padding: 10px 20px;
}

/*pj_form*/
.pj_form {
    width: 95%;
    margin: 0 auto;
    padding: 20px 10px;
    background: #fff;
    border-radius: 7px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px #ccc;
}

.pj_form ul {
    position: relative;
}

.pj_form ul:after {
    content: '';
    width: 19px;
    height: 11px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -5.5px;
    background-image: url('../image/arrow_down.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pj_form ul select {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border: solid 1px #999999;
    border-radius: 7px;
    font-size: 1.6rem;
    color: #333;
}

.pj_form_btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #2074d4;
    color: #fff;
    font-size: 1.7rem;
    text-align: center;
    border-radius: 7px;
    margin-top: 15px;
}

/*pj_form*/
.pj_form dl {
    display: Flex;
    align-items: Center;
    justify-content: space-between;
}

.pj_form dl dd {
    width: 46%;
    position: relative;
}

.pj_form dl dd:after {
    content: '';
    width: 19px;
    height: 11px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -5.5px;
    background-image: url(../image/arrow_down.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pj_form dl dd input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border: solid 1px #999999;
    border-radius: 7px;
    font-size: 1.6rem;
    color: #333;
}








.msg-box {
    display: none;
}
.layui-layer-fast-msg .layui-layer-content {
    color: #ffffff;
}
.btn_more {
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}