.header {
    width: 100%;
    height: 64px;
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    background: #ffffff;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    padding-right: 20px;
}
.mc_cont100 {    background: #f8f8f8;
    padding-top: 30px;  }
.header .logo {
    width: 160px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    background: #5f7c7c;
}

.header .logo img {
    height: 30px;
}



.header .nav-menu {
    flex: 1;
    display: none;
}

.header .nav-menu ul {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.header .nav-menu ul li {
    font-size: 16px;
    margin: 0 15px;
    padding: 25px 0;
    position: relative;
}

.header .nav-menu ul li .submenu {
    position: absolute;
    top: 80px;
    width: 150px;
    z-index: 999;
    left: 50%;
    margin-left: -75px;
    padding: 10px 0;
    line-height: 40px;
    display: none;
    font-size: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
}

.header .nav-menu ul li .submenu a {
    color: #898989;
    display: block;
    position: relative;
}

.header .nav-menu ul li .submenu a::after {
    content: "";
    width: 6px;
    height: 0;
    background: #13a6a1;
    position: absolute;
    left: 0;
    transition: all .3s ease;
    top: 12px;
}

.header .nav-menu ul li .submenu a:hover {
    color: #13a6a1;
}

.header .nav-menu ul li .submenu a:hover::after {
    height: 16px;
}

.header .nav-menu ul li>a {
    color: #333;
    line-height: 30px;
}

.header .nav-menu ul li>a:hover,
.header .nav-menu ul li.active>a {
    color: #13a6a1;
    font-weight: 500;
}

.header .header-search {
    width: 80px;
    display: none;
    flex: 0 0 auto;
}

.header .header-search a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/search-icon.png) no-repeat center #87ced2;
    background-size: 24px 24px;
}

.header .header-search a.open {
    background: url(../images/s-close.png) no-repeat center #87ced2;
    background-size: 24px 24px;
}

.mc_search_xl {
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    z-index: 99;
    display: none;
    height: 150px;
    border-top: 1px solid #dfdede;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

}

.mc_pos_center {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mc_scm_form {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 690px;
}

.mc_msc_box {
    font-size: 0;
    padding: 8px;
    border-bottom: 1px solid #dfdede;
}

.mc_msc_input {
    background: none;
    width: calc(100% - 26px);
    height: 26px;
    font-size: 16px;
    color: #333;
    line-height: 20px;
    padding: 3px 0;
    padding-right: 0px;
    padding-right: 12px;
}

.mc_msc_submit {
    width: 20px;
    height: 20px;
    margin: 3px 0;
    background: url(../images/s-icon.png);
    background-size: cover;
    vertical-align: top;
}
@media (min-width:1024px) {
    .mc_search_xl {
        top: 80px;
        height: 300px;
    }
    .mc_msc_submit {
        width: 26px;
        height: 26px;
        margin: 0;
    }
}

.mc_ph_nav_r {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.mc_ph_nav_r .mc_ph_menu {
    overflow: hidden;
    width: 26px;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox {
    width: 26px;
    cursor: pointer;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point {
    position: relative;
    width: 26px;
    height: 22px;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn,
.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn::after,
.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn::before {
    display: inline-block;
    width: 26px;
    height: 1px;
    background-color: #333;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn {
    position: absolute;
    top: 10.5px;
    right: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn::before {
    top: 8px;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn::after {
    top: -8px;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn::after,
.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point .nav_btn::before {
    content: '';
    position: absolute;
    right: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point.active .nav_btn::after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #87cdd3;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point.active .nav_btn::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #87cdd3;
}

.mc_ph_nav_r .mc_ph_menu .mc_phmenubox .point.active .nav_btn {
    background: transparent;
}

.phxia {
    position: fixed;
    width: 100%;
    left: 0;
    top: 64px;
    z-index: 998;
    background-color: #fff;
    max-height: calc(100vh - 64px);
    overflow: auto;
}

.xialaph {
    display: none;
    width: 100%;
    background-color: #fff;
    font-family: '微软雅黑';
    height: calc(100vh - 64px);
    padding: 10px 0;
}

.xialaph h4 {
    position: relative;
    padding: 0 20px;
    font-weight: normal;
}


.xialaph h4 a {
    font-size: 18px;
    line-height: 46px;
    color: #999;
    display: inline-block;
    max-width: calc(100% - 36px);
}

.xialaph h4 .img_s {
    float: right;
    display: block;
    font-size: 18px;
    line-height: 46px;
    color: #999;
    transition: all .36s;
}

.xialaph h4.active .img_s {
    transform: rotate(180deg);
}

.xialaph .ul2 {
    display: none;
    padding-top: 7px;
    padding-bottom: 8px;
    background: #f7f8fa;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.xialaph .ul2 .container_s {
    max-width: 100%;
    padding: 0 20px;
}

.xialaph h5 {
    font-weight: normal;
    position: relative;
}


.xialaph h5 a {
    font-size: 16px;
    line-height: 35px;
    color: #999;
    display: inline-block;
}
.mc_ph_search{
    font-size: 18px;
    margin-right: 15px;
}
.mc_ph_search a.open{
    color:#87cdd3;
}

@media (min-width:1024px) {
    .header .logo{
        width: 240px;
    }
    .mc_ph_nav_r{
        display: none;
    }
    .header .nav-menu {
        display: block;
    }
    .header .header-search{
        display: block;
    }
    .header{
        padding-right: 0;
        height: 80px;
    }
}
@media (min-width:1200px) {
    .header .nav-menu ul li{
        margin: 0 20px;
    }
}
@media (min-width:1440px) {
    .header .logo{
        width: 310px;
    }
    .header .header-search{
        width: 90px;
    }
    .header .nav-menu ul li{
        margin: 0 25px;
        font-size: 18px;
    }
}
@media (min-width:1680px) {
    .header .nav-menu ul li{
        margin: 0 30px;
    }
}




.page-banner {
    position: relative;
    padding: 0;
    background: #f8f8f8;
}

.page-banner .typename {
    font-weight: 600;
    position: absolute;
    display: block;
    text-align: center;
    left: 0;
    top: 45%;
    color: #ffffff;
    transform: translate(-50%,-50%);
    font-size: 28px;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.page-banner img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.page-banner img:nth-child(1){
   height: 300px;
    display: none;
}
.page-banner img:nth-child(2){
    height: auto;
    max-height: 300px;
}
@media (min-width:992px) {
    .page-banner img:nth-child(1){
        display: block;
    }
    .page-banner img:nth-child(2){
        display: none;
    }
}
@media (min-width:1024px) {
    .page-banner {
        padding: 0 0 0 240px;
    }
    .page-banner .typename {
        width: 240px;
        transform: none;
        bottom: 10px;
        color: #333;
        top: auto;
    }
}
@media (min-width:1440px) {
    .page-banner {
        padding: 0 0 0 310px;
    }
    .page-banner .typename {
        width: 310px;
    }
}
@media (min-width:1680px) {
    .page-banner {
        padding: 0 0 0 410px;
    }

    .page-banner .typename {
        width: 410px;
    }

    .header .logo {
        width: 410px;
    }
}




.footer {
    padding: 35px 5.8%;
    background: #4d5858;
    color: #ffffff;
    text-align: center;
}


.footer a {
    color: #ffffff;
}

.footer .qrcode-list {
    display: flex;
    height: 40px;
    margin: 30px 0;
    justify-content: center;
}

.footer .qrcode-list a {
    padding: 0 20px;
    position: relative;
}

.footer .qrcode-list a .icon {
    width: 40px;
    height: 40px;
    display: block;
}

.footer .qrcode-list a:nth-child(2) {
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.footer .qrcode-list a .qrcode {
    width: 100%;
    height: 0;
    bottom: 50px;
    overflow: hidden;
    left: 0;
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    transition: all .6s ease;
}

.footer .qrcode-list a .qrcode img {
    width: 100%;
    display: block;
    border: 1px solid #ccc;
    margin: 0 0 0px;
}

.footer .qrcode-list a:hover .qrcode,
.footer .qrcode-list a.active .qrcode {
    height: 150px;
}

.footer .footer-nav {
    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.footer .footer-nav a {
    margin-right: 20px;
    line-height: 24px;
}

.footer .footer-nav a:last-child {
    margin-right: 0;
}

.footer .footer-copyright {
    font-size: 14px;
    line-height: 25px;
}

.footer .footer-copyright a {
    color: #dddea7;
    font-weight: 500;
}
@media (min-width:1200px) {
    .footer {
        display: flex;
        text-align: left;
    }
    .footer .qrcode-list {
        margin: 0 0 0 30px;
    }
    .footer .qrcode-list a .qrcode {
        bottom: 75px;
    }
    .footer .footer-nav a {
        margin-right: 30px;
    }
}
@media (min-width:1440px) {
    .footer .qrcode-list {
        height: 50px;
        margin: 0 0 0 60px;
    }
    .footer .qrcode-list a .qrcode {
        bottom: 85px;
    }
    .footer .qrcode-list a .icon {
        width: 50px;
        height: 50px;
    }
    .footer .footer-nav a {
        margin-right: 60px;
    }
}
@media (min-width:1600px) {
    .footer .qrcode-list a {
        padding: 0 40px;
    }
}





.toolbar {
    width: 100%;
    height: 50px;
    margin: 40px 0 40px;
    display: flex;
    overflow: hidden;
    align-items: center;
    font-size: 16px;
    border-radius: 25px;
}

.toolbar::after {
    content: "";
    width: 50px;
    height: 10px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    border-radius: 5px;
    background: #ffffff;
}

.toolbar::before {
    content: "";
    height: 50px;
    width: 10px;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    border-radius: 5px;
    background: #ffffff;
}

.toolbar .left,
.toolbar .right {
    width: 50%;
    flex: 0 0 auto;
    display: flex;
    transition: all .3s ease;
}

.toolbar .left {
    height: 50px;
    background: #e6e7e7;
    align-items: center;
    justify-content: center;
    padding: 0 25px 0 0px;
}

.toolbar .left:hover a,
.toolbar .right:hover a {
    color: #ffffff;
}

.toolbar .left:hover a.icon,
.toolbar .right:hover a.icon {
    background-position: center bottom;
}

.toolbar .left:hover,
.toolbar .right:hover {
    background: #c9ca74;
}

.toolbar .right {
    height: 50px;
    background: #efefef;
    align-items: center;
    padding: 0 0 0 25px;
    justify-content: center;
}

.toolbar a {
    line-height: 42px;
}



.toolbar a.icon {
    width: 30px;
    height: 27px;
    display: none;
    background-size: 100% auto;
    background-position: center top;
}

.toolbar a.icon.buy {
    background-image: url(../images/buy-icon.png);

}

.toolbar a.icon.service {
    background-image: url(../images/24-icon.png);
}

@media (min-width:768px) {
    .toolbar a.icon {
        display: block;
    }
    .toolbar a:last-child {
        margin-left: auto;
    }
    .toolbar .right {
        padding: 0 30px 0 55px;
    }
    .toolbar .left {
        padding: 0 55px 0 30px;
    }
}
@media (min-width:992px) {
    .toolbar .right {
        height: 75px;
        padding: 0 90px 0 125px;
    }
    .toolbar .left {
        height: 75px;
        padding: 0 125px 0 90px;
    }
    .toolbar {
        height: 75px;
        font-size: 18px;
        border-radius: 37.5px;
    }
    .toolbar a.icon {
        width: 47px;
        height: 42px;
    }
    .toolbar::before {
        width: 75px;
        height: 15px;
        margin-left: -37.5px;
        border-radius: 7.5px;
    }
    .toolbar::after{
        height: 75px;
        width: 15px;
        margin-left: -7.5px;
        border-radius: 7.5px;
    }
}


.login-model {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 999;
    overflow: hidden;
    background: rgba(221, 221, 221, 0.8);
}

.login-model .login-content {
    width: 900px;
    height: 90%;
    max-height: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.login-logo {
    padding: 30px 0 25px;
}

.login-logo img {
    display: block;
    margin: 0 auto;
}

.login-title {
    margin: 0 0 30px;
    text-align: center;
}

.login-title h3 {
    font-size: 28px;
    color: #cbcb64;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 10px;
}

.login-title p {
    line-height: 30px;
    font-size: 18px;
}

.login-form {
    width: 400px;
    margin: 0 auto;
}

.login-form .login-input {
    display: flex;
    margin: 0 0 40px;
    position: relative;
    border-bottom: 1px solid #909090;
}

.login-form .login-input::after {
    content: "";
    width: 5px;
    height: 21px;
    top: 10px;
    left: 0;
    position: absolute;
    background: #cbcb64;
}

.login-form .login-input::before {
    width: 18px;
    height: 21px;
    content: "";
    position: absolute;
    right: 0;
    z-index: 99;
    top: 10px;
}

.login-form .login-input.username::before {
    background: url(../images/username.png);
}

.login-form .login-input.password::before {
    background: url(../images/password.png);
}

.login-form .login-input input {
    width: 100%;
    display: block;
    font-size: 16px;
    padding: 0 30px 0 20px;
    background: none;
    line-height: 40px;
}

.login-button button {
    width: 130px;
    height: 40px;
    margin: 0 auto;
    background: #87ced2;
    border-radius: 20px;
    display: block;
    font-size: 16px;
    color: #ffffff;
}

.login-content .tips {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 50px;
    line-height: 30px;
    font-size: 18px;
}

.login-content .tips span {
    margin: 0 20px;
}



.reg-form {
    padding: 0 60px;
}

.reg-form .reg-item {
    display: flex;
}

.reg-form .col {
    margin: 0 0 30px;
}

.reg-form .col-12 {
    margin: 0 0 20px;
}

.reg-form label {
    width: 75px;
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 40px;
}

.reg-form label span {
    color: #ad001c;
}

.reg-form .reg-item input {
    font-size: 16px;
    line-height: 40px;
    padding: 0 10px;
    width: calc(100% - 75px);
    border: 1px solid #a2a3a3;
}

.reg-form .code-item {
    display: flex;
}

.reg-form .code-item label {
    width: 130px;
}

.reg-form .code-item input {
    width: 130px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    border: 1px solid #a2a3a3;
    background: #ffffff;
}

.reg-form .code-item img {
    width: 130px;
    height: 40px;
    margin: 0 30px;
}

.reg-form .code-item a {
    font-size: 18px;
    line-height: 40px;
    display: flex;
    align-items: center;
}

.reg-form .code-item a i {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(../images/refresh.png);
    background-size: 100% 100%;
}

.reg-form .form-privacy {
    display: flex;
    align-items: center;
    line-height: 28px;
    margin: 0 0 30px;
}

.reg-form .form-privacy p {
    font-size: 16px;
    margin-left: 10px;
    padding-bottom: 2px;
}

.reg-form .form-privacy a {
    color: #87cdd3;
}

.login-content .colse {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    background: url(../images/colse1.png) no-repeat center;
    background-size: cover;
}




@media (min-height:800px) {
    .login-logo {
        padding: 40px 0 20px;
    }

    .login-title {
        margin: 0 0 70px;
    }

    .reg-form .col {
        margin: 0 0 40px;
    }

    .reg-form .col-12 {
        margin: 0 0 30px;
    }

    .reg-form .form-privacy {
        margin: 0 0 20px;
    }
}

.retrieve-box .login-title {
    margin: 0 0 80px;
}

.retrieve-form {
    width: 540px;
    margin: 0 auto;
}

.retrieve-form .retrieve-item {
    display: flex;
    margin: 0 0 30px;
}

.retrieve-form .retrieve-item:nth-last-child(2) {
    margin: 0 0 80px !important;
}

.retrieve-form .retrieve-item label {
    font-size: 16px;
    line-height: 40px;
    flex: 0 0 auto;
    width: 130px;
}

.retrieve-form .retrieve-item label span {
    color: #ad001c;
}

.retrieve-form .retrieve-item input {
    font-size: 16px;
    display: block;
    height: 40px;
    flex: 1;
    padding: 0 10px;
    border: 1px solid #a2a3a3;
}

.retrieve-form .retrieve-item input.w130 {
    width: 130px !important;
    flex: 0 0 auto;
}

.retrieve-form .retrieve-item .btns {
    flex: 1;
    height: 40px;
    border: none;
    color: #ffffff;
    margin-left: 30px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    background: #87cdd3;
}

.retrieve-form .retrieve-item img {
    flex: 1;
    height: 40px;
    margin: 0 30px;
}

.retrieve-form .retrieve-item a.refresh {
    font-size: 18px;
    line-height: 40px;
    display: flex;
    height: 40px;
    align-items: center;
}

.retrieve-form .retrieve-item a.refresh i {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(../images/refresh.png);
    background-size: 100% 100%;
}

@media (min-height:800px) {
    .retrieve-box .login-title {
        margin: 0 0 100px;
    }

    .retrieve-form .login-button {
        margin: 100px 0 0;
    }

    .retrieve-form .retrieve-item {
        margin: 0 0 40px;
    }
}


.login-button {
    align-items: center;
    display: flex;
    position: relative;
}

.login-button a {
    position: absolute;
    right: 0;
    margin-left: 20px;
}

.login-button a:hover {
    color: #87cdd3;
}




.tk-content {
    color: #898989;
    font-size: 18px;
    line-height: 35px;
}


.footer-qrcode {
    padding: 34px 0 110px;
    display: flex;
    justify-content: center;
}

.footer-qrcode img {
    width: 138px;
    height: 138px;
    margin: 0 14px;
}

.footer-menu {
    display: block;
    padding: 0 0 20px;
}

.footer-menu .footer-logo {
    margin: 0 0 20px;
}

.footer-menu .footer-logo img {
    height: 30px;
    display: block;
}

.footer-text dl {
    display: block;
    margin: 0 0 10px;
}

.footer-text dl dt {
    font-size: 16px;
    display: flex;
    flex: 0 0 auto;
    line-height: 30px;
    font-weight: 500;
}

.footer-text dl dt a {
    margin-left: 25px;
}

.footer-text dl dt a:nth-child(1) {
    margin: 0;
}

.footer-text dl dd {
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    line-height: 26px;
    font-size: 16px;
    padding: 5px 0 0;
}

.footer-text dl dd a {
    margin-right: 25px;
    color: #898989;
}

.footer-text dl a:hover {
    color: #87cdd3;
}
@media (min-width:1200px) {
    .footer-menu {
        display: flex;
    }
    .footer-text{
        margin-left: auto;
    }
    .footer-text dl {
        display: flex;
        padding: 0 0 10px;
    }
    .footer-text dl dd a {
        margin-left: 25px;
        margin-right: 0;
    }
    .footer-text dl dt {
        font-size: 18px;
        line-height: 1;
    }
    .footer-text dl dd {
        padding: 2px 0 0;
        line-height: 1;
    }
}





.pagelist {
    padding: 0 0 60px;
    display: flex;
    justify-content: center;
}

.pagelist li a {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    border: 1px solid #949494;
}
.pagelist li span.current {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    border: 1px solid #949494;
    color: #ffffff;
    background: #87cdd3;
    border-color: #87cdd3;
}
.pagelist li.active a,
.pagelist li a:hover {
    color: #ffffff;
    background: #87cdd3;
    border-color: #87cdd3;
}

.pagelist li.index a,
.pagelist li.end a {
    width: 28px;
    height: 24px;
    border-radius: 0;
    display: block;
    border: none;
    background: url(../images/index.png) no-repeat center;
}

.pagelist li.end a {
    background: url(../images/end.png) no-repeat center;
}

.pagelist li.index a:hover {
    background: url(../images/index-hover.png) no-repeat center;
}

.pagelist li.end a:hover {
    background: url(../images/end-hover.png) no-repeat center;
}

.pagelist li.pre a,
.pagelist li.next a {
    width: 20px;
    height: 24px;
    border-radius: 0;
    display: block;
    border: none;
    background: url(../images/pre.png) no-repeat center;
}

.pagelist li.next a {
    background: url(../images/next.png) no-repeat center;
}

.pagelist li.pre a:hover {
    background: url(../images/pre-hover.png) no-repeat center;
}

.pagelist li.next a:hover {
    background: url(../images/next-hover.png) no-repeat center;
}

body{
    padding: 64px 0 0;
}
@media (min-width:1024px) {
    body{
        padding: 80px 0 0;
    }
}


.mc_title30{
    font-size: 22px;
}
@media (min-width:991px) {
    .mc_title30{
        font-size: 24px;
    }
}
@media (min-width:1680px) {
    .mc_title30{
        font-size: 28px;
    }
}
@media (min-width:1920px) {
    .mc_title30{
        font-size: 30px;
    }
}

@media (max-width:576px) {
    .mc_title30{
        font-size: 28px;
    }
    .solution-details .content {
   
   padding: 18px 0 18px!important;

}
    .page-banner .typename {
    
    text-shadow: 1px 1px 10px #333;
   
}
    .app-wrap {
   
    padding: 0 10px!important;
}
}
.mc_cont1360{
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
    padding: 0 20px;
}
.app-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
    padding: 0 20px;
}

.app-wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
    padding: 0 20px;
}

@media (min-width:992px) {
    .mc_cont1360{
        width: 85.652%;
        max-width: 1360px;
        padding: 0;
    }
    .app-container {
        width: 85.652%;
        max-width: 1360px;
        padding: 0;
    }
    
    .app-wrap {
        width: 85.652%;
        max-width: 1360px;
        padding: 0;
    }
}

/* 登录 */
	@media (max-width: 576px) {
.login-model .login-content{
	width: 100%;
}
.toolbar {
  
    margin: 40px 0 40px;
  
}
.top25 { margin-top:18%!important;}
.reg-form {
       padding: 0 26px
}
.reg-form .col-12 {
    margin: 0 0 10px;
}
.login-title {
    margin: 0 0 7px;
}
.retrieve-box .login-title {
    margin: 0 0 10px;
}
.retrieve-form {
	    padding: 0 25px;
    width: 100%;
}
.retrieve-form .retrieve-item label {
    width: auto;
}
.retrieve-form .retrieve-item .btns {
   margin-left: 0px;
    }
a.refresh {
    display: none !important;
}
.retrieve-form .retrieve-item img {
 
    margin: 0 0px;
}
.reg-form .code-item img{
	padding: 0;
}

    .login-form {
    padding: 30px;
    width: 100%;
}
 
.login-title h3 {
    font-size: 21px;
}
.reg-form .code-item input {
    width: 84px;}
    
    
    .reg-form .code-item label {
    width: auto;
}

.reg-form .code-item img {
    padding: 0;
    margin: 0;
    width: auto;
}
.login-button a {
    top: 39px;
}
}