@charset "utf-8";
/****reset style*****/

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Arial,"PingFang SC", "Microsoft YaHei", sans-serif!important;
    font-weight: bold!important;
}

html{
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    color: #333333;
    word-break: break-all;
    word-wrap: break-word;
    cursor: default;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, blockquote, pre, p, a, address, em, img, strong, dl, dt, dd, ol, ul, li, form, label, legend, table, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    line-height: 1.5;
    word-break: break-all;
    word-wrap: break-word;
}

a {
    color: #006aad;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

em {
    font-style: normal;
}

img {
    border: 0 none;
    vertical-align: bottom;
}

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], input[type="file"] {
    padding: 6px 8px;
    font-size: 14px;
    color: #303d3f;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) inset;*/
    vertical-align: middle;
}

select {
    width: 120px;
    /*height:30px;*/
    /*line-height:30px;*/
    /*[;height:30px;line-height:30px;];*/
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: none;
    outline: none;
    border: 1px solid #ccc;
    /*很关键：将默认的select选择框样式清除*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../images/arrow-down.png) right 8px center no-repeat;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 18px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

select:hover, textarea:hover, input[type="text"]:hover, input[type="password"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="date"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, input[type="number"]:hover, input[type="email"]:hover, input[type="url"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="color"]:hover, input[type="file"]:hover {
    border-color: #bbb;
}

select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, input[type="file"]:focus {
    color: #696969;
    border-color: #f59942;
    background-color: #fff;
    outline: 0;
}

textarea {
    resize: none;
}

button, .btn, input[type="button"], input[type="submit"] {
    display: inline-block;
    padding: 6px 5px;
    font-size: 14px;
    color: #fff;
    background: #2d9651;
    border: 1px solid #0c692b;
    border-radius: 3px;
    vertical-align: middle;
    cursor: pointer;
}

button i, .btn i {
    margin-right: 4px;
}

.btn-disable {
    cursor: not-allowed;
    background: #eaeaea !important;
    color: #777 !important;
    border-color: #aaa !important;
}

input:focus, textarea:focus, button:focus {
    outline: 0;
}

input[readonly] {
    color: #939192;
    background: #f5f5f5 !important;
    cursor: default;
}

/*清除type=password时默认的眼睛*/
input::-ms-reveal {
    display: none;
}

/*清除type=text时默认的清空 小× */
input::-ms-clear {
    display: none;
}

ol, ul, li {
    list-style: none;
}

ol:after, ul:after {
    content: "";
    display: block;
    clear: both;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border: 1px #dedee0 solid;
}

td {
    padding: 8px 20px;
    color: #38373f;
    font-size: 14px;
    border: 1px #dedee0 solid;
}

th {
    padding: 8px 20px;
    background-color: #eeeeee;
    color: #38373f;
    font-size: 15px;
    border: 1px #dedee0 solid;
}

/*******浮动设置********/
.box-l {
    float: left;
}

.box-r {
    float: right;
}

.hide{
    display: none;
}

.show{
    display: block;
}

.no-border{
    border: none;
}

.no-padding{
    padding: 0;
}

.no-margin{
    margin: 0;
}

/*******透明遮罩层*********/
.layer-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
    filter: alpha(opacity=30);
    z-index: 99;
    display: none;
}

/*******重置placeholder颜色*********/
::-webkit-input-placeholder {
    color: #ccc;
}

:-moz-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

:-ms-input-placeholder {
    color: #ccc;
}

/****css****/
.web {
    /* padding-top: 245px; */
}

.safe-width{
    width: 1300px;
    margin: 0 auto;
}

/*导航*/

.top-box {
    background: url("../images/t-bg.png") center no-repeat;
    background-size: cover;
    box-shadow: 0 5px 24px #eee;
}

.logo {
    width: 235px;
    height: 58px;
    float: left;
    margin-top: 30px;
    margin-bottom: 15px;
}

.lang {
    float: right;
    margin-top: 64px;
    font-size: 13px;
    color: #0c2b49;
    margin-right: 16px;
}

.navlist-box {
    clear: both;
    background: #fff;
    height: 82px;
}

.home {
    float: right;
    width: 90px;
    text-align: right;
    padding-right: 20px;
}

.home a {
    display: block;
    height: 82px;
    padding-top: 28px;
}

.navlist-box ul {
    float: right;
    margin-right: 15px;
}

.navlist-box ul li {
    float: left;
    font-size: 22px;
    line-height: 82px;
}

.navlist-box ul li a {
    display: block;
    padding: 0px 28px;
    color: #3364a8;
}

.navlist-box ul li a:hover{
    background: url("../images/nav-sel-bg.png") repeat-x;
}

.foot .links {
    background: #f6f6f6;
    height: 133px;
    padding-top: 39px;
}

.foot {
    text-align: center;
    font-size: 20px;
    color: #3a3939;
}

.foot p {
    height: 105px;
    padding: 40px 0;
    background: #dcdbdb;
}
.foot .links a {
    color: #666666;
    font-weight: normal!important;
    margin-right: 14px;
}

.foot .links a:hover {
    text-decoration: underline;
}

.ban-box {
    position: relative;
}

.bannertxt {
    position: absolute;
    top: 178px;
    z-index: 3;
    width: 100%;
}

.banner-box {
    position: relative;
    width:100%;
    height:620px;
    overflow:hidden;
}
.banners ul {
    height:620px;
    position:relative;
    left:0;
    margin-left:0;
}
.banners ul li{
    height:620px;
    position:relative;
    z-index:1;
}
.ban-box:before {
    content:"";
    display: block;
    width: 90%;
    height: 620px;
    background: linear-gradient(90deg, rgb(255 255 255 / 90%) 15%, transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.txt-box .bigtxt1,.txt-box .bigtxt2 {
    font-size: 124px;
    color: #abd2f8;
    letter-spacing: -5px;
    line-height: 122px;
}

.txt-box .bigtxt2 {
    display: inline-block;
    margin-right: 5px;
}

.txt-box .smalltxt {
    display: inline-block;
    font-size: 60px;
    color: #3364a8;
    line-height: 50px;
}

/*页码*/
.page {
    height: 50px;
    margin-top: 70px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
    display: inline-block;
}

.page-content a {
    padding: 5px 12px;
    border: solid 1px #d6d6d5;
    margin: 0 3px;
    color: #777;
    cursor: pointer;
    font-size: 20px;
    float: left;
    font-weight: normal!important;
}

.page-content .current {
    background-color: #6699cc;
    border: solid 1px #6699cc;
    color: #FFFFFF;
}

.page-content a:hover {
    background-color: #6699cc;
    border: solid 1px #6699cc;
    color: #FFFFFF;
}

.page-box {
    margin-top: 50px;
}

.page-content {
    width: 320px;
    height: 40px;
    margin: 0 auto;
}

.page-content .arr-left{
    display: inline-block;
    width: 38px;
    height: 35px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/d-arr-l.png");
}

.page-content .arr-right{
    display: inline-block;
    width: 38px;
    height: 35px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/d-arr-r.png");
    /*border-color: #6699cc;*/
}

.page-content .arr-left:hover{
    background-image: url("../images/h-arr-l.png");
    background-color: #fff;
}

.page-content .arr-right:hover{
    background-image: url("../images/h-arr-r.png");
    background-color: #fff;
}

.section-img{
    display: flex;
    /*justify-content: center;*/
}

.section .main-cont p{
	text-align: justify;
	word-break: keep-all;
	overflow-wrap: break-word;
}