﻿/*common*/
.title {
    width: 1200px;
    padding: 30px 0;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}
.title h1 {
    position: relative;
    font-size: 36px;
    font-weight: normal;
}
.title h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 80px;
    margin-left: -40px;
    left: 50%;
    height: 3px;
    background: #ff6600;
}
.black{
    background: #333;
}
.orange{
    background: rgba(255, 59, 45, 0.53);
}
.green{
    background: #4cca84;
}

.page {
    width: 100%;
    padding: 20px 0;
}
.page .pagination {
    width: 100%;
    text-align: center;
}
.page .pagination li {
    color: #333;
    display: inline-block;
    margin: 0 5px;
    padding: 3px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.page .pagination .disabled{
    cursor: initial;
}
.page .pagination li a:hover{
    color: #fff;
}
.page .pagination li.active, .page .pagination li:hover {
    color: #fff;
    background: #ff6600;
    border: 1px solid #ff6600;
}
.content{
    padding: 50px 0;
}

/*service*/
.service .service-item {
    margin-top: 30px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.service .service-item li {
    width: 180px;
    height: 280px;
    padding: 50px 20px;
    border: 1px solid #eee;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0);
    text-align: center;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.service .service-item li:hover {
    transform: scale(1.1);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.service .service-icon {
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.service .service-icon .iconfont {
    font-size: 48px;
    color: rgba(51, 51, 51, 0.8);
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.service .service-item li:hover .service-icon{
    transform: scale(1.25, 1.25);
    border: 1px solid #ff6600;
}
.service .service-item li:hover .iconfont {
    font-size: 64px;
    color: #ff6600;
}
.service .service-item .service-item-info {
    margin-top: 50px;
    position: relative;
}
.service .service-item .service-item-info dt {
    font-size: 22px;
    font-weight: 500;
}
.service .service-item .service-item-info dd {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}
.service .service-item .service-item-info .more {
    opacity: 0;
    border: 2px solid #fff;
    display: inline-block;
    background: #fff;
    padding: 3px 15px;
    margin-top: 15px;
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
}
.service .service-item .service-item-info .more:hover {
    color: #fff;
    background: #ff6600;
    border-radius: 15px;
    border: 2px solid #ff6600;
}
.service .service-item li:hover .more {
    opacity: 1;
    background: #fff;
    border: 2px solid #ff6600;
    color: #333;
}

/*index*/
.custom{
    overflow: hidden;
    background: url("../images/index_custom_bg.png") no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}
.custom .title{
    color: #fff;
}
.custom-item{
    margin-top: 50px;
    margin-bottom: 50px;
}
.custom-item li{
    width: 280px;
    height: 100px;
    float: left;
    margin-right: 20px;
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
}
.custom-item li img{
    width: 100%;
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
}
.custom-item li:hover img{
    transform: scale(1.1);
}

.superior{
    overflow: hidden;
    padding: 30px 0;
}
.superior-item{
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.superior-item li{
    background: #fff;
    width: 32%;
    margin-bottom: 30px;
    padding: 50px 0;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0);
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.superior-item li:hover{
    transform: scale(1.1);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.superior-item li img{
    transition: all linear 0.5s;
    width: 110px;
}
.superior-item li:hover img{
    transform: rotateY(180deg);
    backface-visibility: visible;
}
.superior-item li h4{
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
}
.superior-item li p{
    width: 260px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 auto;
    margin-top: 20px;
}

.solution{
    background: url("../images/index_custom_bg.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 50px 0;
}
.solution .title{
    color: #fff;
}
.solution-item{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0;
    min-width: 1200px;
}
.solution-item li{
    position: relative;
    max-width: 20%;
    margin-right: 20px;
    padding-bottom: 80px;
    text-align: center;
    background: #fff;
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
}
.solution-item li img{
    width: 100%;
}
.solution-item li h3{
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    padding: 0 10px;
}
.solution-item li p{
    padding: 0 10px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: left;
}
.solution-item li:hover {
    transform: scale(1.1);
}
.solution-item li .btn{
    position: absolute;
    bottom: 20px;
    right: 50%;
    margin-right: -55px;
    display: inline-block;
    width: 80px;
    border: 2px solid #FF6600;
    padding: 3px 15px;
}
.solution-item li .btn:hover{
    color: #fff;
    background: #FF6600;
    border-radius: 15px;
}

/*flow*/
.flow {
    width: 100%;
    min-height: 600px;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.flow-item {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.flow-item li {
    width: 158px;
    height: 180px;
    margin: 10px;
    padding: 30px 10px;
    float: left;
    border: 1px solid #eee;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.flow-item li:hover {
    transform: scale(1.05);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.flow-item li img{
    width: 70%;
}
.flow-item li p{
    margin-top: 30px;
    font-weight: 500;
}
.flow .flow-im {
    background: url(../images/flow_im.jpg) no-repeat center center;
    min-width: 1200px;
    height: 200px;
}
.flow .flow-im .flow-im-title{
    color: #fff;
    font-size: 24px;
    padding-top: 65px;
}
.flow .flow-im a{
    color: #fff;
    padding: 5px 30px;
    border: 2px solid #fff;
    display: inline-block;
    margin-top: 15px;
}
.flow .flow-im a:hover{
    background: #ff6600;
    border-radius: 25px;
    border: 2px solid #FF6600;
}

/*banner*/
.banner {
    height: 650px;
    position: relative;
    background: no-repeat center center;
    background-size: cover;
}
.banner .info {
    position: relative;
    top: 30%;
    left: 5%;
    width: 1200px;
    margin: 0 auto;
    color: #fff;
}
.banner .info dt {
    font-size: 36px;
    margin-bottom: 20px;
}
.banner .info dd {
    font-size: 16px;
    line-height: 28px;
}
.banner .info a {
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    padding: 8px 25px;
    border-radius: 5px;
    z-index: 20;
}
.banner .info a:hover {
    color: #fff;
    background: #ff6600;
    border: 1px solid #ff6600;
}
.banner .info span{
    margin-right: 20px;
}
.banner-web {
    background-image: url("../images/web/banner.jpg");
}
.banner-miniapp {
    background-image: url("../images/miniapp/banner.jpg");
}
.banner-wechat {
    background-image: url("../images/wechat/banner.jpg");
}
.banner-app {
    background-image: url("../images/banner-app.jpg");
}
.banner-news {
    background-image: url("../images/banner-news.jpg");
}
.banner-about {
    background-image: url("../images/banner-about.jpg");
}
.banner-dataservice{
    background-image: url("../images/banner-dataservice.jpg");
}

/*web*/
.web {
    height: 560px;
    padding: 50px 0;
}
.web-item{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.web-item .web-item-info{
    max-width: 500px;
    position: absolute;
    background: rgba(0, 0, 0, 0.65);
    margin: 5% 0;
    padding: 30px;
    color: #fff;
    border-radius: 5px;
}
.web-item dt{
    font-size: 20px;
    padding-bottom: 20px;
    margin-top: 8px;
}
.web-item dt span{
    margin-left: 20px;
}
.web-item dd{
    font-size: 16px;
    line-height: 30px;
}
.web-item.right .web-item-info{
    right: 0;
}

.bg-company {
    background: url("../images/web/bg-company.jpg") center center/cover no-repeat;
}
.bg-shop{
    background: url("../images/web/bg-shop.jpg") center center/cover no-repeat;
}
.bg-mobile{
    background: url("../images/web/bg-mobile.jpg") center center/cover no-repeat;
}
.bg-sale{
    background: url("../images/web/bg-sale.jpg") center center/cover no-repeat;
}
.bg-custom{
    background: url("../images/web/bg-custom.jpg") center center/cover no-repeat;
}

/*wechat*/
.wechat{
    width: 100%;
}
.wechat li{
    width: 100%;
    margin-bottom: 30px;
    height: 280px;
    border: 1px solid #eee;
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
}
.wechat li:hover{
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.wechat-img{
    width: 40%;
    height: 100%;
    float: left;
    background-size: cover;
}
.wechat-text{
    width: 55%;
    height: 220px;
    float: left;
    padding: 30px;
    background: rgba(238,238,238,0.5);
}
.wechat-text .wechat-text-title{
    max-width: 450px;
    line-height: 36px;
    border-bottom: 2px solid #FF6600;
}
.wechat-text .desc{
    margin-top: 30px;
    line-height: 30px;
}
.wechat-img-01{
    background-image: url("../images/wechat/wechat01.jpg");
}
.wechat-img-02{
    background-image: url("../images/wechat/wechat02.jpg");
}
.wechat-img-03{
    background-image: url("../images/wechat/wechat03.jpg");
}
.wechat-img-04{
    background-image: url("../images/wechat/wechat04.jpg");
}

/*miniapp*/
.miniapp{
    overflow: hidden;
}
.miniapp-item{
    padding-top: 90px;
}
.miniapp-item h1{
    background: url(../images/miniapp/miniapp-01.png) no-repeat right top;
    text-align: right;
}
.miniapp-item h1 span{
    display: block;
    padding-top: 106px;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
}
.miniapp-item .left{
    background: url(../images/miniapp/miniapp-02.png) no-repeat;
    width: 653px;
    height: 602px;
    float: left;
}
.miniapp-item .right{
    width: 505px;
    height: 480px;
    float: right;
    background: url(../images/miniapp/miniapp-03.png) no-repeat right center;
    border-left: 1px solid #ccc;
    margin-top: 54px;
}

.ys-bg{
    background: url(../images/miniapp/miniapp-20.jpg) no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
}
.youshi{
    height: 560px;
}
.youshi .titlebig, .youshi p {
    color: #fff;
    text-align: center;
    margin-top: 10px;
}
.youshi .titlebig {
    font-size: 36px;
    font-weight: 500;
}
.youshi ul {
    position: absolute;
    left: 7.5%;
    bottom: -30px;
    height: 70%;
    width: 85%;
    overflow: hidden;
}
.youshi ul li {
    width: 19%;
    margin-right: 1%;
    border-radius: 20px;
    padding-top: 20px;
    float: left;
    height: 100%;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.youshi ul li p {
    margin: 10px auto;
    width: 90%;
    font-size: 14px;
    line-height: 24px;
    float: none;
    color: #fff;
}
.youshi ul li strong {
    font-size: 18px;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-top: 20px;
    color: #000;
}
.youshi ul li img {
    width: 160px;
    background: #fff;
    border-radius: 50%;
}
.youshi ul li .ys-title {
    font-size: 18px;
    font-weight: 500;
    padding-top: 30px;
    color: #fff;
}
.youshi ul li:hover {
    padding-top: 0;
}

/*news*/
.news-left {
    width: 840px;
    float: left;
    padding-right: 40px;
    border-right: 1px solid #e8e8e8;
}
.news-right {
    width: 280px;
    float: right;
}
.news {
    clear: both;
    padding: 50px 0;
    overflow: hidden;
}
.news-nav {
    width: 100%;
    overflow: hidden;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e8e8e8;
}
.news-nav ul {
    width: 100%;
    text-align: center
}
.news-nav ul li {
    width: 120px;
    display: inline-block
}
.news-nav ul li a {
    color: #333;
}
.news-nav ul li.active a {
    color: #ff6600;
}
.news-nav .news-nav-icon .iconfont {
    font-size: 48px;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.news-nav ul li a:hover .iconfont {
    color: #ff6600;
}
.news-nav ul li a:hover .news-nav-title span {
    color: #ff6600;
}
.news-list ul li {
    position: relative;
}
.news-list ul li img {
    position: absolute;
    width: 220px;
    height: 140px;
    left: 0;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0);
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.news-list ul li img:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.2,1.2);
    left: 30px;
}
.news-list ul li .news-info {
    margin-left: 240px;
}
.news-list ul li .news-info .news-list-item-title {
    font-size: 22px;
    display: inline-block;
    color: #333;
    font-weight: 500;
    height: 60px;
    line-height: 30px;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.news-list ul li .news-info a:hover {
    color: #ff6600;
}
.news-list .news-list-item-date {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}
.news-list .news-list-item-intro {
    color: #585858;
    font-size: 14px;
    margin-top: 10px;
    height: 40px;
    line-height: 20px;
}
.news-hot {
    color: #333;
}
.news-hot .news-hot-title{
    font-size: 22px;
    font-weight: 500;
    border-left: 3px solid #ff6600;
    text-indent: 10px;
}
.news-hot .news-hot-title span{
    font-size: 14px;
}
.news-list ul, .news-hot ul {
}
.news-list ul li, .news-hot ul li {
    padding: 30px 0;
    border-bottom: 1px dashed #e8e8e8;
}
.news-hot ul li .news-hot-item-title {
    font-size: 22px;
    display: inline-block;
    height: 60px;
    line-height: 30px;
    color: #333;
    font-weight: 500;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
}
.news-hot ul li a:hover .news-hot-item-title {
    color: #ff6600;
}
.news-hot ul li .news-hot-item-intro {
    color: #585858;
    font-size: 14px;
    margin-top: 10px;
    height: 40px;
    line-height: 20px;
}
.news-detail-banner-title {
    min-width: 1200px;
    height: 360px;
    text-align: center;
    color: #fff;
    background: #222;
}
canvas {
    background: #222;
    width: 100%;
    height: 360px;
    position: absolute;
    top: 0;
    left: 0;
}
.news-detail-banner-title .news-detail-banner-big {
    position: relative;
    font-size: 24px;
    padding-top: 165px;
    padding-bottom: 6px
}
.news-detail-banner-title .news-detail-banner-small {
    position: relative;
    font-size: 14px;
    margin-top: 10px;
}
.news-detail-banner-title span {
    margin: 0 15px;
}

/*news detail*/
.news-detail {
    clear: both;
    padding: 50px 0;
    overflow: hidden;
}
.news-detail .breadcrumb {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}
.news-detail .breadcrumb a {
    color: #333;
}
.news-detail .breadcrumb a:hover {
    color: #ff6600;
}
.news-detail .details-title {
    font-size: 22px;
    color: #333;
    font-weight: 500;
}
.news-detail .details-title .tips-p {
    height: 26px;
    line-height: 32px;
    padding-bottom: 4px;
    font-size: 14px;
}
.news-detail .detail-content {
    padding-top: 40px;
    width: 820px;
    font-size: 16px;
    color: #666;
    line-height: 30px;
}
.news-detail .detail-content img{max-width: 100%!important;}
.news-detail .detail-links .detail-links-item {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
.news-detail .detail-links .detail-links-item a {
    color: #333;
}
.news-detail .detail-links .detail-links-item a:hover {
    color: #ff6600;
}

/*tag*/
.tag {
    color: #333;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e8e8e8;
}
.tag .tag-title {
    font-size: 22px;
    font-weight: 500;
    border-left: 3px solid #ff6600;
    text-indent: 10px;
}
.tag .tag-title span {
    font-size: 14px;
}
.tag .tag-list{
    margin-top: 10px;
}
.tag-list a {
    display: inline-block;
    font-size: 14px;
    min-width: 60px;
    color: #ff6600;
    border-radius: 5px;
    padding: 3px 8px;
    margin: 5px 10px 5px 0;
    text-align: center;
    border: 1px solid #ff6600;
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    cursor: pointer;
}
.tag-list a:hover {
    color: #FFF;
    background: #ff6600;
}

/*about*/
.about-who .about-who-info{
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}
.about-who .about-who-info img{
    position: absolute;
    width: 400px;
    left: 0;
    top: 35px;
    border-radius: 5px;
}
.about-who .about-who-info .about-who-info-content{
    margin-left: 420px;
}
.about-who .about-who-info h2{
    margin-top: 10px;
    line-height: 36px;
    padding-bottom: 10px;
    text-align: left;
}
.about-who .about-who-info p{
    text-align: left;
    color: #333;
    font-weight: 500;
    margin-top: 20px;
    line-height: 32px;
}
.about-who .about-who-info p span{
    font-weight: 600;
}
.contact .contact-info{
    width: 100%;
    overflow: hidden;
}
.contact-info .contact-info-left{
    width: 480px;
    display: inline-block;
    /*border: 1px solid #ccc;*/
    float: left;
    padding: 13px 10px;
}
.contact-info .contact-info-left dt{
    font-size: 24px;
    margin-bottom: 30px;
}
.contact-info .contact-info-left dd{
    color: #333;
    line-height: 28px;
}
.contact-info .contact-info-left dd span{
    width: 60px;
    display: inline-block;
    text-align: left;
}
.contact-info .contact-info-right{
    width: 680px;
    display: inline-block;
    float: right;
}
.contact-info .contact-info-right ul{
    width: 100%;
    /*border: 1px solid #ccc;*/
    overflow: hidden;
}
.contact-info .contact-info-right ul li{
    width: 33%;
    float: left;
    text-align: center;
    padding: 10px 0;
}
.contact-info .contact-info-right ul li img{
    width: 160px;
}


/*login*/
.login-header {
    height: 66px;
    background: #ffffff;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.login-header img{
    position: absolute;
    top: 10px;
}
.login-box {
    height: 650px;
    background: #e4e4e4 url("../images/banner01.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    position: relative;
}
.login-box-bg {
    background: #7186ef;
    width: 1230px;
    height: 430px;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -615px;
    z-index: 1;
}
.login-main {
    width: 990px;
    margin: 0 auto;
    padding-top: 50px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}
.login-banner {
    width: 645px;
    height: 475px;
    float: left;
}
.login-banner a {
    display: block;
    width: 645px;
    height: 475px;
}
.login-banner a img{
    width: 80%;
}
.login-tab {
    width: 305px;
    float: right;
    background: #ffffff;
    padding: 20px;
    margin-top: 70px;
    border-radius: 8px;
}
.login_text {
    width: 305px;
    list-style: none;
}
.login_text li {
    border: 1px solid #e8e8e8;
    height: 30px;
    margin-bottom: 20px;
    position: relative;
}
.login_text li span {
    width: 30px;
    height: 26px;
    background: #dcdcdc;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
.login_text li span.user, .login_text li span.password, .login_text li span.verifycode{
    font-size: 20px;
    text-align: center;
    padding-top:4px
}
.login_text li input[name=verifycode]{
    width: 57%;
}
.login_text li input {
    border: 0 none;
    background: transparent;
    height: 28px;
    line-height: 28px;
    margin-left: 30px;
    padding: 0 5px;
    font-size: 14px;
    width: 263px;
    outline: none;
}
.login-h {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: normal;
}
.login-footer {
    text-align: center;
    padding: 20px 0;
    color: #333;
    font-size: 12px;
}
.login_alert {
    background-color: #f2dede;
    height: 30px;
    color: #a94442;
    padding-left: 10px;
    line-height: 30px;
    font-size: 12px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.loginBtn{
    width: 100%;
    height: 36px;
    background: #FF6600;
    border: 0 none;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 20px;
}

/*forget*/
.forget {
    font-size: 12px;
    color: #616161;
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    zoom: 1;
}
.forget a {
    text-decoration: none;
    color: #616161;
    display: block;
    float: left;
}
.forget a.reg_btn {
    color: #00aeff;
    float: right;

}