html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video,a{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
  text-decoration: none;
}
ul,ol,li {
	list-style-type:none;
}
input:focus {
  outline:none;  
}
.container{
    width: 1200px;
    height: auto;
    margin: auto;
	font-weight: 400;
	font-size: 14px;
}
.container:before,.container:after,.clearfix:after,.clearfix:before{
	content: " ";
	display: table;
}
.container:after,.clearfix:after{
	clear: both;
}
:root{
    --theme-color:#1664FF;

    --btmA-theme-color:#3277ff;

    --text-title-color:#000000;
    --text-stitle-color:#666666;
    --text-primary-color:#444444;
    --text-secondary-color:#999999;
    --text-light-color:#F4F7FE;
    --text-light2-color:#ffffff;

    --text-title-font:34px;
    --text-primary-font:14px;

    --shadow-header:rgba(0, 0, 0, 0.04) 0px 2px 10px 0px;
}
.float_l{
    float: left;
}
.float_r{
    float: right;
}
.center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}
/*---------------------------------------------------------------*/
.form-control {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 31px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.flex-group{
    display: flex;
    justify-content: space-between;
}
.flex-group .input-cont{
    flex: 1;
}
.btn{
    text-align: center;
    display: block;
}

.icon{
    background-image: url(../img/icon/icon.png);
	background-size:910px;
	background-repeat: no-repeat;
}
.btn-theme{
    background: var(--theme-color);
    border-radius: 4px;
    text-align: center;
    color: var(--text-light2-color);
    transition: all .2s ease-in-out;
}
.btn-theme:hover,.btn-theme:focus{
    /* background: var(--btmA-theme-color); */
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgb(36 104 242 / 20%);
}
.centerCont{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

/*  */
.animate_2{
    -webkit-transition: all ease .2s;
    -o-transition:all ease .2s;
    transition: all ease .2s;
}
.animate_3{
    -webkit-transition: all ease .3s;
    -o-transition:all ease .3s;
    transition: all ease .3s;
}
.animate_10{
    -webkit-transition: all ease 1s;
    -o-transition:all ease 1s;
    transition: all ease 1s;
}
@keyframes bounce-down {
    25% {transform: translateY(-3px);}
    50%{transform: translateY(0);}
    75% {transform: translateY(3px);}
    100% {transform: translateY(0);}
}
.animate-bounce-down{
     -webkit-animation: bounce-down 1s linear infinite;
     animation: bounce-down 1s linear infinite;
}