@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*设置滚动条颜色*/
    scrollbar-color: #ccc #eee;
    /*去掉三角(滚动条宽度为8px)*/
    scrollbar-width: thin;
    font-family: 'Microsoft YaHei';
    /*隐藏滚动条（可以滚动）*/
    /* scrollbar-width: none; */
}

.index_box {
    width: 100%;
    height:100vh;
    /* min-width: 1024px; */
}


/* 导航条 */

@media screen and (max-width:1330px) {
    body {
        width: 1330px !important;
        overflow-y: hidden;
        overflow-x: auto;
    }
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 8px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 8px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(97, 184, 179, 0.1);
    box-shadow: inset 0 0 5px rgba(97, 184, 179, 0.1);
    background: #bfcedd;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(87, 175, 187, 0.1);
    box-shadow: inset 0 0 5px rgba(87, 175, 187, 0.1);
    border-radius: 10px;
    background: #ededed;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body,
html {
    width: 100%;
    height: 100%;
    /* font-family字体规范，来自于https://segmentfault.com/a/1190000006110417 */
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    color: #333333;
    position: relative;
}

input[type=submit],
input[type=reset],
input[type=button],
input,
button {
    resize: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    /*用box-shadow改变(挡住)表单自动填充后的黄色*/
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
    box-shadow: inset 0 0 0 1000px #fff;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
    border: none;
    outline: none;
}

button:not(:disabled) {
    cursor: pointer;
}

article,
aside,
details,
figcaption,
figure,
footer,
hgroup,
menu,
nav,
section {
    display: block;
}

img {
    max-width: 100%;
    border: none;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

em,
i {
    font-style: normal;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
}

ul,
ol,
li,
dl,
dt,
dd {
    list-style: none;
}

iframe,
canvas {
    /* 清空底部会出现的空白（或者用display:block;） */
    vertical-align: bottom;
}

table {
    border-collapse: collapse;
}

textarea {
    max-width: 100%;
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
}

.posi {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.posi>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 768px) {
    pre {
        overflow-x: auto;
    }
}


/* 头部公共样式 */

.header_body {
    width: 100%;
    /* position: absolute; */
}

header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    /* background: linear-gradient(to bottom, rgba(13, 108, 153, 0) 20%, rgba(13, 108, 153, 0.4) 100%); */
    background-color: #445f8d;
}

.header .uinfo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.header .uinfo .login_out i {
    padding: 5px 7px;
    background: #31c9fb;
    border-radius: 4px;
    cursor: pointer;
    background: url(../images/off_login.png) no-repeat;
    width: 30px;
    -o-background-size: 100%;
    background-size: 100%;
    height: 30px;
    margin-top: 5px
}

.header .uinfo .login_out i:hover {
    color: #fff;
}

.text_ifame {
    width: 100%;
    height: -webkit-calc(100vh - 70px);
    height: -moz-calc(100vh - 70px);
    height: calc(100vh - 70px);
    display: block;
}

.header .right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.header .right .fle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .right .fle>span {
    margin-left: 5px;
    color: #fff;
}

.header .right .login-out {
    margin-left: 25px;
    cursor: pointer;
}

.header .right .login-out img,
.header .right .login-show img {
    width: 30px;
    height: 30px;
}

.header .right .login-out:hover {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
    -webkit-filter: drop-shadow(2px 3px 4px px #72d8ef);
    filter: drop-shadow(2px 3px 4px px #72d8ef);
}


/* 当前位置 */

.now_addre {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #445f8d;
    font-size: 14px;
    padding: 5px 0;
}

.now_addre span {
    padding: 5px;
    color: #92bbe6;
}

.now_addre span img
{
    width:20px !important;
    height:20px !important;
}

/*.now_addre span a {
    text-decoration: none;
    color: #445f8d;
}*/

 .now_addre a{color:#455f8d;text-decoration:none; cursor: pointer;}

/* 头部弹窗功能部分 */

.test_loding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}


/* 个人信息 */

.my_test {
    position: relative;
    top: 28%;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    width: 420px;
    /* height: 450px; */
    text-align: center;
    background-color: #fff;
}

.look_top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid #c8d6e6;
    background-color: #e4f0ff;
    padding: 0 10px;
}

.look_top p:nth-child(1) {
    font-size: 22px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.look_top p:nth-child(1) span {
    margin: 0 5px
}

.look_top p:nth-child(1) span img {
    width: 30px;
    height: 30px;
}

.look_top .close_loding {
    color: #7194b8;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.my_test .look_test {
    padding: 10px;
}

.my_test .look_test ul li {
    margin-top: 10px;
}

.my_test .look_test ul li:nth-child(5) .select {
    margin-left: -1px;
}

.my_test .look_test ul {
    border: 1px solid #e4f0ff;
    padding: 15px 0;
    background: #f1f5f9;
}

.my_test .look_test ul li input,
.my_test .look_test ul li select {
    outline: none;
    padding: 3px 5px;
    width: 50%;
    border: 1px solid #89a7c3;
    margin-left: 5px;
}

.my_test .surebig_bu {
    padding: 20px 0;
}

.my_test .surebig_bu button {
    padding: 3px 25px;
    margin: 0 15px;
    border: 1px solid #c8d6e6;
}

.my_test .surebig_bu button:nth-child(1) {
    color: #fff;
    background-color: #7195b7;
}

.my_test .surebig_bu button:nth-child(2) {
    color: #7195b7;
    background-color: #fff;
}

#show_test,
#set_password {
    display: none;
}


/* 公共头部end */


/* 公共弹性布局 */

.felxcenter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.felxitems {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.felx_around {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex_between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flexbetween {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* 头部定时器 */

.pa {
    position: absolute;
}

.header_time {
    width: 285px;
    background: #445f8d;
    left: 43%;
    top: 0;
    z-index: 300;
    border-radius: 15px;
}

.header_time_move {
    width: 280px;
    padding: 5px;
    /*cursor: move;*/
    margin: 7px auto;
}

.header_time p {
    display: inline-block;
    width: 190px;
    background: #445f8d;
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    font: normal normal 16px/26px "微软雅黑";
    color: #fff;
    padding: 0 5px;
    margin-right: 15px;
}

.header_time p span {
    color: #fff;
    padding: 0 5px;
}

.header_time button {
    float: right;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 10px;
    background: #f7f8fd;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font: normal normal 16px/26px "微软雅黑";
    color: #445f8d;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid #fff;
    text-align: center;
}

.header_time button:hover {
    background: #445f8d;
    color: #fff;
}

/* 免责声明 */
.Liability-contest
{
   position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    background-color:#00000069;
    z-index: 100;
 }
 
 .Liability-contest .Liability-ul
 {
  width: 310px;
    height: 140px;
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    margin: auto;
    color: #6b87a8;
    font-size: 16px;
    line-height: 24px;
    background: #fff;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
  }
  
   .Liability-contest .Liability-ul li:nth-child(1)
  {
    text-indent: 2em;
  }
  
    .Liability-contest .Liability-ul li:nth-child(2)
  {
    cursor: pointer;
    text-align:center;
    margin-top:15px;
  }
  
   .Liability-contest .Liability-ul li span
   {
        margin:0 auto;
        padding:3px 20px; 
        background:#6b87a8; 
        color:#fff;
     }
  
  