{% load static %}
/* 谷歌 */
html, body{
        /*
    font-family: 'Microsoft YaHei';

     */

        user-select: none;
        font-family: "Source Serif Pro", 'Microsoft YaHei', '微软雅黑',M PLUS\ 1p, sans-serif;
        font-size: 100%;
        line-height: 1.65;
        color: #17304e;
        font-weight: 400;
        height: 100%;
        background: transparent;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    padding: 0;
    margin: 0;
}
*, :after, :before {
    background-repeat: no-repeat;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    background-color:transparent;
}

/*  */
input{
    outline: 0;
    color: #121212;
    background:none ;
    border:none;
    -webkit-text-fill-color: #121212;
}
input:-webkit-autofill {
    background-color:transparent;
  transition: background-color 5000s ease-in-out 0s;
    color: #121212 !important;
}
:root input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    box-shadow: none;
    /*阴影大小等于input框宽度一半 利用内阴影覆盖原背景色*/
    color: #121212;
    background-color:transparent;
    -webkit-text-fill-color: #121212; /*利用文本填充属性覆盖原有文本颜色*/
}


/* scroll滚动框宽度*/
::-webkit-scrollbar{
    width: 1px;
}

a:hover{
    text-decoration: none;
}






.index_head {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    height: 70px;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, .1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .1);
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 20px; */
}

.index_head .left {
    padding-left: 20px;
    position: relative;
    z-index: 200;
}

.index_head .left .item {
    width: 24px;
    height: 24px;
    /* background: red; */
    cursor: pointer;
    position: relative;
}

.index_head .left .item span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    background-color: #000;
}

.index_head .left .item .s01 {
    top: 5px;
}

.index_head .left .item .s02 {
    bottom: 5px;
}

.index_head .left .item.close_this .s01 {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.index_head .left .item.close_this .s02 {
    top: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.index_head .right {
    padding-right: 20px;
}

.index_head .right a {
    color: #17304e;
    -webkit-transition: color .2s;
    transition: color .2s;
        display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.index_head .right a img {
    height: 30px;
    padding: 20px;
    padding-right: 0;
    opacity: 0.8;
}

.index_head .right a span {}

.index_head .right a:hover {
    color: #d0b774;
}

.index_head .center {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    line-height: 1;
    /* width: 100%; */
    height: 100%;
    position: absolute;
    z-index: 101;
    /* top: 24px; */
    left: calc( 50% - 68px);
    /* left: 50%; */
}

.index_head .center a {
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
}

.index_head .center a img {
    margin: 0;
    padding: 0;
}



.pop_top.show_this{
    display: block;
    opacity: 1;
}
.pop_top {
    position: fixed;
    z-index: 103;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, .1);
    box-shadow: 2px 0px 10px rgba(0, 0, 0, .1);
    max-width: 300px;
    /* padding-top: 80px; */
    padding: 80px 40px 40px;
    display: none;
    opacity: 0;
}

.pop_top .inner {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: left;
}

.pop_top .inner .top_logo {
    background: #ef2f63;
    width: 220px;
    height: 50px;
    line-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
    border-radius: 2px;
}

.pop_top .inner .top_logo span {
    color: #fff;
    font-size: 14px;
}

.pop_top .inner .top_logo img {
    height: 18px;
    /* width: 20px; */
    margin-left: 3px;
}

.pop_top .inner .top_logo:hover {
    opacity: 0.8;
}

.pop_top .inner .items {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.pop_top .inner .items a {
    color: #292929;
    display: block;
    -webkit-transition: color .2s;
    transition: color .2s;
    margin-top: 20px;
    font-size: 13px;
    width: 100%;
}

.pop_top .inner .items span {}

.pop_top .inner .items a:hover {
    color: #d0b774;
}






.blue {
    background-color: #17304e;
    color: #fff;
    padding: 30px 20px;
}

.blue .inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
}

.blue .inner .items {
    margin-right: 30px;
}

.blue .inner .items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    margin-bottom: 6px;
}

.blue .inner .items .item span {
    display: block;
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    margin-right: 10px;
}

.blue .inner .items .item a {
    color: currentColor;
    text-decoration: none;
    -webkit-transition: color .2s;
    transition: color .2s;
    font-size: 14px;
    line-height: 23px;
}

.blue .inner .items .item a:hover {
    color: #d0b774;
}

.blue .inner .henxian {}

.blue .inner .name {}

.blue .inner .name img {}

.copyright {
    padding: 50px 0;
    background: #f4f4f4;
}

.copyright span {
    display: block;
    width: 100%;
    font-size: 10px;
    text-align: center;
}


.blue .henxian {
    border-top: 1px dotted #fff;
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
}

.blue .name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.blue .name img {
    border-style: none;
    vertical-align: top;
}























#show_loading {
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;
    /* background: red; */
    height: 300%;
    width: 100%;
}

#show_loading .loading_inner {
    height: 100%;
    width: 100%;
    position: relative;
}

#show_loading .bg {position: absolute;z-index: 98;background: #000;height: 100%;width: 100%;opacity: 0.5;top: 0;left: 0;}

#show_loading .box_wrap {
    position: relative;
    z-index: 99;
    height: 100%;
    width: 100%;
    /* background: blue; */
    display: flex;
    align-items: center;
    justify-content: center;
}

#show_loading .box_wrap .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 20%; */
    position: fixed;
    top: calc(50% - 75px);
    /* left: 30%; */
    /* background: #000; */
    padding: 20px 40px;
    border-radius: 10px;
    /* opacity: 0.6; */
}

#show_loading .box_wrap .box span {
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
}

#show_loading .box_wrap .box img {
    height: 30px;
    width: 30px;
}




#show_msg_box {
    position: absolute;
    z-index: 9999999;
    top: 0;
    left: 0;
    /* background: red; */
    height: 100%;
    width: 100%;
}

#show_msg_box .msg_inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#show_msg_box .box_wrap {
    position: fixed;
    padding: 15px 20px;
    border-radius: 10px;
    overflow: hidden;
        top: calc(50% - 35px );
    max-width: 60%;
    /* flex-direction: row; */
    /* align-items: center; */
    /* justify-content: center; */
}

#show_msg_box .box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
    word-wrap: break-word;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

#show_msg_box .box img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

#show_msg_box .box span {
    /* display: block; */
    max-width: 80%;
    word-wrap: break-word;
    color: #fff;
}

#show_msg_box .msg_inner .bg {
    background: #000;
    position: absolute;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    z-index: 98;
    left: 0;
    top: 0;
}




#show_img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    opacity: 0;
    display: none;
}

#show_img .close_btn {
    position: absolute;
    z-index: 905;
    top: 0;
    right: 0;
    cursor: pointer;
}

#show_img .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 901;
}

#show_img .inner {
    position: absolute;
    z-index: 903;
    top: 0;
    width: 100%;
    /* background: red; */
}

#show_img .img_bg {
    padding: 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

#show_img .close_btn img {
    width: 50px;
}

#show_img.show_this {
    display: block;
    opacity: 1;
}

#show_img .img_bg img {
    width: 100%;
    height: 100%;
}


.pop_top .contract {
    margin-top: 50px;
    padding-top: 30px;
    border-top: solid 1px rgba(0,0,0,0.1);
}

.pop_top .contract .line {
    margin-top: 20px;
}

.pop_top .contract .line a {
    display: block;
    color: #292929;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: left;
}

.pop_top .contract .line img {
    height: 40px;
}

.pop_top .contract .email {
    margin-top: 20px;
}

.pop_top .contract .email a {
    -webkit-transition: color .2s;
    transition: color .2s;
    text-decoration: none;
    color: #292929;
    user-select: all;
}

.pop_top .contract .email a:hover {
    color: #d0b774;
}


.pop_top .contract .text {}

.pop_top .contract .text .s01 {
    font-size: 16px;
    font-weight: 600;
}
.pop_top .contract .line a .s01 {
    margin-right: 10px;
    font-weight: 600;
    font-size: 16px;
}
.pop_top .contract .email .s01 {
    /* margin-right: 10px; */
    font-weight: 600;
    font-size: 16px;
}