/*************************************************************************************************************/



html * {

    outline: none;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    line-height: 1;

    box-sizing: border-box;

    -webkit-box-sizing: border-box;

}



body,html{
    min-width: 1200px;
    margin: 0 auto;

    font-family: "Microsoft YaHei","Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

}

article,aside,blockquote,body,button,code,dd,details,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,input,legend,li,menu,nav,ol,p,pre,section,td,textarea,th,ul {

    margin: 0;

    padding: 0;

}



input,select,textarea {

    font-size: 100%;

    resize:none;
    border: none;
}



table {

    border-collapse: collapse;

    border-spacing: 0;

}



fieldset,img {

    border: none;

    vertical-align: top;

    width: 100%;

}



address,caption,cite,code,dfn,em,th,var {

    font-style: normal;

    font-weight: 500;

}



ol,ul {

    list-style: none;

}







h1,h2,h3,h4,h5,h6 {

    font-size: 100%;

    font-weight: 500;

}



a{

    text-decoration: none;

}





/*input*/

button {

    border: none;

}



button,

html input[type='button'],

input[type='reset'],

input[type='submit'] {

    -webkit-appearance: button;

    text-transform: none;

    outline: none;

}



input::-webkit-input-placeholder,

textarea::-webkit-input-placeholder {

    color: #999;

}



input::-webkit-inner-spin-button {

    -webkit-appearance: none;

}



input::-webkit-outer-spin-button {

    -webkit-appearance: none;

}



textarea {

    vertical-align: top;

}



button,

input {

    line-height: normal;

}



select {

    margin: 0;

    outline: 0;

}



input.fixAKeyboard:focus,

textarea.fixAndroidKeyboard:focus {

    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);

    -webkit-user-modify: read-write-plaintext-only;

}



input:-webkit-autofill {

    -webkit-box-shadow: 0 0 0 1000px white inset !important;

}



button,

input[type=button],

input[type=checkbox],

input[type=reset],

input[type=submit],

label {

    cursor: pointer;

    user-select: none;

    -ms-user-select: none;

    -moz-user-select: none;

    -webkit-user-select: none;

}



input[type=submit] {

    -webkit-user-modify: read-plaintext-only;

    -moz-user-modify: read-plaintext-only;

    -ms-user-modify: read-plaintext-only;

    -o-user-modify: read-plaintext-only;

    user-modify: read-plaintext-only;

}



input[type='search']::-webkit-search-cancel-button,

input[type='search']::-webkit-search-decoration {

    -webkit-appearance: none;

}



input[type='search'] {

    -webkit-box-sizing: content-box;

    -moz-box-sizing: content-box;

    box-sizing: content-box;

    -webkit-appearance: textfield;

}





/*flex box*/

.flex {

	display: flex;

}



.basis-xs {

	flex-basis: 20%;

}



.basis-sm {

	flex-basis: 40%;

}



.basis-df {

	flex-basis: 50%;

}



.basis-lg {

	flex-basis: 60%;

}



.basis-xl {

	flex-basis: 80%;

}



.flex-sub {

	flex: 1;

}



.flex-twice {

	flex: 2;

}



.flex-treble {

	flex: 3;

}



.flex-direction {

	flex-direction: column;

}



.flex-wrap {

	flex-wrap: wrap;

}



.align-start {

	align-items: flex-start;

}



.align-end {

	align-items: flex-end;

}



.align-center {

	align-items: center;

}



.align-stretch {

	align-items: stretch;

}



.self-start {

	align-self: flex-start;

}



.self-center {

	align-self: flex-center;

}



.self-end {

	align-self: flex-end;

}



.self-stretch {

	align-self: stretch;

}



.align-stretch {

	align-items: stretch;

}



.justify-start {

	justify-content: flex-start;

}



.justify-end {

	justify-content: flex-end;

}



.justify-center {

	justify-content: center;

}



.justify-between {

	justify-content: space-between;

}



.justify-around {

	justify-content: space-around;

}





.poscenter {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}

.posVcenter {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

}

.posHcenter {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

}


.mainTextColor {color: #2c4581;}

.mainBgColor {background-color: #2c4581;}





/* swiper */

.my-bullet {
    background-color: #fff;
    border-radius: 20px;
    display: inline-block;
    height: 0.2rem;
    margin-left: 7px;
    text-indent: -9999px;
    width: 0.2rem;
    outline: none;
    vertical-align: middle;
    opacity: 0.3;
}

.my-bullet-active {
    background-color: #fff;
    width: 0.2rem;
    height: 0.2rem;
    opacity: 1;
}

.header {
    position: relative;
    background: #fff;
    height: 130px;
    padding: 0 60px !important;
}
.header .logo {
    width: 180px;
}
.header .menu_wrap a {
    font-size: 20px;
    color: #222222;
    margin-left: 85px;
    position: relative;
}
.header .menu_wrap a:first-child {
    margin-left: 0;
}
.header .menu_wrap a:hover {
    color: #222;
}
.header .menu_wrap a:visited {
    color: #222;
}
.header .menu_wrap a:active {
    color: #222;
}
.header .menu_wrap a:link {
    color: #222;
}
.header .menu_wrap a.on::after {
    content: '';
    width: 54px;
    height: 5px;
    border-radius: 100px;
    background: #2c4581;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
}
.center1200 {
    width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer_content {
    padding: 46px 0 70px;
}
.footer_content .logo {
    width: 146px;
    margin-right: 46px;
}
.foot_info {
    line-height: 1.5;
    font-size: 18px;
    color: #666666;
}
.title_en {
    font-size: 65px;
    color: #2c4581;
    font-weight: bold;
    text-align: center;
}
.title_cn {
    font-size: 45px;
    color: #2c4581;
    text-align: center;
    margin-top: 15px;
}
.content_text_cn {
    color: #222;
    font-size: 20px;
    line-height: 1.8;
}
.content_text_en {
    color: #222;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 22px;
}