* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* 删除全部长按菜单 */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 允许输入框输入 */
input,
textarea {
    -webkit-touch-callout: auto;
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

html,
body {
    background-color: #fff;
}

html {
    font-size: 125%;
    font-family: "Helvetica Neue", Helvetica, STHeiTi, "Microsoft YaHei", Arial, sans-serif;
}

body {
    color: #333;
    min-width: 320px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 12px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

a {
    color: #333;
    font-weight: normal;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

a,
a:hover,
a:link,
a:focus,
a:active {
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}

i,
label {
    font-weight: normal;
    font-style: normal;
}

button,
a {
    cursor: pointer;
}

textarea,
input {
    resize: none;
    padding: 5px;
}

button,
a,
textarea,
input,
select {
    outline: none;
    -webkit-appearance: none;
}

small {
    font-size: 70%;
}

::-webkit-input-placeholder {
    color: #999;
}

:-moz-placeholder {
    color: #999;
    opacity: 1;
}

::-moz-placeholder {
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999;
}

/*float*/
.fl {
    float: left;
}

.fr {
    float: right;
}

/*overflow*/
.ov_h {
    overflow: hidden;
}

.ov_v {
    overflow: visible;
}

/*text-align*/
.ta_l {
    text-align: left;
}

.ta_c {
    text-align: center;
}

.ta_r {
    text-align: right;
}

/*showhide*/
.show {
    display: block;
}

.hide {
    display: none;
}

/*flex*/
.flex {
    display: flex;
}

.flex_c {
    display: flex;
    align-items: center;
}

.flexitem {
    display: block;
    flex: 1;
    min-width: 1px;
    -webkit-box-flex: 1;
}

.fix {
    *zoom: 1;
}

.fix:after {
    clear: both;
    display: table;
    content: '';
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/**/
.w_1200 {
    width: 1200px;
    margin: 0 auto;
}

.c_title {
    margin: 50px 0;
    text-align: center;
}

.c_title h3 {
    display: inline-block;
    position: relative;
    color: #013E70;
    font-size: 28px;
    padding: 0 20px;
}

.c_title h3:before,
.c_title h3:after {
    position: absolute;
    content: '';
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: #666;
}

.c_title h3:before {
    left: 0;
    margin-left: -80px;
}

.c_title h3:after {
    right: 0;
    margin-right: -80px;
}

/*head*/
.header {
    background-color: #fff;
}

.header .logo {
    padding: 10px 0;
}

.header .logo img {
    height: 80px;
}

.header .spell {
    color: #fff;
    margin: 10px 0;
    border: 2px solid #3a58b0;
    background-color: #3a58b0;
}

.header .spell .item {
    display: inline-block;
    width: 20px;
    color: #3a58b0;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
}

.header .spell .item.on {
    color: #fff;
    background-color: #3a58b0;
}

.header .weather {
    font-size: 13px;
    margin: 10px 0 10px 70px;
}

.header .weather span {
    display: inline-block;
    text-indent: 2em;
}

.header .nav_list {
    margin: 10px -20px 0;
}

.header .nav_list .item {
    display: inline-block;
    position: relative;
    float: left;
    height: 40px;
    font-size: 16px;
    padding: 0 20px;
    line-height: 40px;
}

.header .nav_list .item>a {
    display: inline-block;
    position: relative;
}

.header .nav_list .item>a:hover {
    color: #3a58b0;
}

.header .nav_list .item.on>a:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3a58b0;
}

.header .thirdmenu a:first-child {
    border-top: 0;
}

.header .thirdmenu a:hover {
    color: #3a58b0;
}

.header .htool {
    margin: 10px 0;
}

.header .htool input {
    height: 30px;
    border-radius: 30px;
    border: 1px solid #999;
}

.header .htool button {
    height: 30px;
    border: 0;
    color: #fff;
    padding: 0 20px;
    margin-left: 10px;
    border-radius: 30px;
    background: #013e70;
}

.header .htool button:hover {
    background: #0e79d0;
}

.banner img {
    width: 100%;
}

/*footer*/
.footer {
    height: 200px;
    color: #fff;
    padding-top: 70px;
    background: url(../images/footer.jpg) center no-repeat;
}

.footer .contact,
.footer .info p {
    font-size: 14px;
    margin: 10px 0;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .contact a {
    color: #fff;
    margin: 0 5px;
}

.footer .contact a:first-child {
    margin-left: 0;
}

.footer .contact a:hover {
    text-decoration: underline;
}

.footer .attention .item {
    float: left;
    margin: 0 25px;
    cursor: pointer;
    text-align: center;
}

.footer .attention .img {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    background: url(../images/icon_attention.png) no-repeat;
    transition: all 0.3s;
}

.footer .attention .item:hover .img {
    margin-top: -6px;
}

.footer .attention .img.mail {
    background-position: 0 0;
}

.footer .attention .img.wechat {
    background-position: 0 -40px;
}

.footer .attention .img.microblog {
    background-position: 0 -80px;
}

/*pop*/
.bpop {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    visibility: hidden;
    overflow: hidden;
}

.show.bpop {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.fade_bkbg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    background: url(../images/tranblank.png);
}

.show.bpop .fade_bkbg {
    opacity: 1;
    visibility: visible;
}

.QRcodebox {
    position: fixed;
    width: 320px;
    left: 40%;
    top: 30%;
    background-color: #fff;
}

.QRcodebox .close {
    position: absolute;
    top: 0;
    right: 20px;
    width: 30px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    background: url(../images/tranblank.png);
}

.QRcodebox .img {
    text-align: center;
    padding: 40px 0;
}

.QRcodebox .img img {
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
}

.QRcodebox .text {
    height: 60px;
    color: #bf0000;
    font-size: 20px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    background-color: #f4f5f6;
}

.QRcodebox .content {
    width: 16rem;
    font-size: 15px;
    text-align: center;
    padding: 1rem 0.25rem;
}

.QRcodebox .content p {
    margin: 15px 0;
}

.QRcodebox .conbtn {
    margin-top: 25px;
}

.QRcodebox .subbtn {
    width: 164px;
    height: 45px;
    border: 0;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    background-color: #3b57ac;
}
