/* 验证滑块 */
.ggocode{
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 260px;
    height: 44px;
    cursor: pointer;
    opacity: 1;
    line-height: 44px;
}
/*浮层*/
.ggocode_div_bg{
    width: 100%;height: 100%;position: absolute;
    top:0;
    left:0;
    z-index:1000;
    background-color: rgba(0,0,0,0.5);
    opacity:0.3;
    filter: alpha(opacity=30); background-color:#000;
    *zoom:1;
    display: none;
}
.ggocode_div{
    display: none;
    background-color: white;
    z-index: 20000000;
    width: 260px;height: 260px;
    position: absolute;
    left: 50%;top:50%;
    margin-top: -130px;
    margin-left: -130px;
    border: 1px solid #d1d1d1;
    border-radius: 2px;
    overflow: hidden;
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696',Direction=135, Strength=5);/*for ie6,7,8*/
    -moz-box-shadow:2px 2px 5px #969696;/*firefox*/
    -webkit-box-shadow:2px 2px 5px #969696;/*webkit*/
    box-shadow:2px 2px 5px #969696;/*opera或ie9*/
}
.ggocode_div .ggocode_canvas_bg{
    z-index: 0;
}
.ggocode_div .ggocode_canvas_mark{
    z-index: 10000;
}
.ggocode_div canvas{
    position: absolute;
    left: 10px;
    top: 10px;
}
.ggocode_div .loading{
    padding-top: 60px;
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #ccc;
    width: 240px;
    height: 150px;
    text-align: center;
    box-sizing:border-box;
}
.ggocode_div .dd{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: ddf 0.1s ease-in 0s infinite;
    -o-animation: ddf 0.1s ease-in 0s infinite;
    animation: ddf 0.1s ease-in 0s infinite;
}
@-webkit-keyframes ddf {
    0% {-webkit-transform: translate(-8px, 3px);}
    20% {-webkit-transform: translate(-3px, 1.5px);}
    50% {-webkit-transform: translate(0px, 0px) ;}
    70% {-webkit-transform: translate(5px, -1.5px) ;}
    100% {-webkit-transform: translate(0px, 0px);}
}
@-o-keyframes ddf {
    0% {-o-transform: translate(-8px, 3px);}
    20% {-o-transform: translate(-3px, 1.5px);}
    50% {-o-transform: translate(0px, 0px) ;}
    70% {-o-transform: translate(5px, -1.5px) ;}
    100% {-o-transform: translate(0px, 0px);}
}
@-moz-keyframes ddf {
    0% {-moz-transform: translate(-8px, 3px);}
    20% {-moz-transform: translate(-3px, 1.5px);}
    50% {-moz-transform: translate(0px, 0px) ;}
    70% {-moz-transform: translate(5px, -1.5px) ;}
    100% {-moz-transform: translate(0px, 0px);}
}
@keyframes ddf {
    0% {transform: translate(-8px, 3px);}
    20% {transform: translate(-3px, 1.5px);}
    50% {transform: translate(0px, 0px) ;}
    70% {transform: translate(5px, -1.5px) ;}
    100% {transform: translate(0px, 0px);}
}
.ggocode_div .hgroup{
    z-index: 20000;
    content: "";
    position: absolute;
    left: -800px;
    top: 70px;
    width: 250px;
    height: 15px;
    background-color: rgba(255,255,255,.5);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 3s ease-in 0s infinite;
    -o-animation: searchLights 3s ease-in 0s infinite;
    animation: searchLights 3s ease-in 0s infinite;
}

@-webkit-keyframes searchLights {
    0% {
        left: -800px;
        top: 70px;
    }
    to {
        left: 350px;
        top: 70px
    }
}

@-o-keyframes searchLights {
    0% {
        left: -800px;
        top: 70px;
    }
    to {
        left: 350px;
        top: 70px
    }
}

@-moz-keyframes searchLights {
    0% {
        left: -800px;
        top: 70px;
    }
    to {
        left: 350px;
        top: 70px
    }
}

@keyframes searchLights {
    0% {
        left: -800px;
        top: 70px;
    }

    to {
        left: 350px;
        top: 70px
    }
}

/*拉条*/
.ggocode_div .slide,
.ggocode_div .slide_block,
.ggocode_div .tools .ggocode_close,
.ggocode_div .tools .ggocode_refresh{
    background-repeat: no-repeat;
    background-image: url('//alicdn.pantayun.com/img/code/icon.png');
}
.ggocode_msg_ok{
    background-color: #24C628;
}
.ggocode_msg_error{
    background-color: #DE5145;
}
.ggocode_msg_ok,.ggocode_msg_error{
    position: absolute;
    top:136px;
    left: 10px;
    width: 240px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    margin: 0;
    padding: 2px 10px;
    overflow: visible;
    background-position: 0px 0px;
    font-size: 14px;
    display: none;
    z-index: 10000;
	text-align:center;
}
.ggocode_div .slide{
    position: absolute;
    top:160px;
    width: 93.52%;
    height: 0px;
    background-color: white;
    background-size: 100%;
    margin: 5.39% 3.24%;
    padding: 0px 0px 13.67%;
    overflow: visible;
    background-position: 0px 0px;
}
.ggocode_div .tools{
    position: absolute;
    top:210px;
    width: 93.52%;
    height: 0px;
    background-color: white;
    background-size: 100%;
    margin: 5.39% 3.24%;
    padding: 5px 0px 13.67%;
    overflow: visible;
    background-position: 0px 0px;
    border-top: 1px solid #EEEEEE;
}
.ggocode_div .slide_block{
    background-position: 0px 12.9794%;
    width: 65px;
    height: 65px;
    position: absolute;
    left: 0px;
    top: 0px;
    margin: -4.62% 0 0 -2.31%;
    cursor: pointer;
}
.ggocode_div .slide_block_text{
    background-position: 0px 12.9794%;
    height: 65px;
    position: absolute;
    left: 65px;
    top: 20px;
    margin: -4.62% 0 0 -2.31%;
    cursor: pointer;
    font-size: 14px;
    color: rgb(136, 148, 157);
}

.ggocode_div .tools .ggocode_close{
    background-position: 0 50%;
    height: 30px;
    width: 30px;
    float: left;
    margin-right: 10px;
    cursor: pointer;
}
.ggocode_div .tools .ggocode_refresh{
    background-position: 0 94%;
    height: 30px;
    width: 30px;
    float: left;
    cursor: pointer;
}
.ggocode_div .tools .ggocode_tips{
    float: right;
}
.ggocode_div .tools .ggocode_tips a{
    text-decoration: none;
    font-size: 10px;
    color: rgb(136, 148, 157);
}
/* 验证滑块 */


* {
    padding: 0;
    margin: 0;
}
/* 注册弹窗 */
html:root body, html:root input, html:root button, html:root textarea, html:root select {
    font-family: Tahoma,Geneva,'Pingfang SC','Heiti SC','Microsoft Yahei',Simsun;
}

form, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, p {
    margin: 0;
    padding: 0;
    list-style: none;
}

input, textarea, select {
    margin: 0;
    padding: 0;
    font-size: 12px;
    outline: 0;
    resize: none;
}

a {
    text-decoration: none;
    color: #333;
    outline: 0;
}
.button {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background: #0bce67;
    -webkit-transition: all .3s ease;
}
.button:hover {
    text-decoration: none;
    background: #5df183;
}
.findpwd-container {
    position: relative;
    width: 648px;
    margin: auto;
    /* padding: 40px 0; */
    /* padding-top: 30px; */
    overflow: hidden;
}
.findpwd-container .select_findpwd_mode {
    *zoom: 1;
    height: 340px;
    padding-top: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.findpwd-container .select_findpwd_mode .findpwd_item {
    /* width: 160px; */
    width: 240px;
    height: 260px;
    border: 1px solid #f2f2f2;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.findpwd-container .select_findpwd_mode .findpwd_item .icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120px;
    width: 120px;
    height: 120px;
}
.findpwd-container .select_findpwd_mode .findpwd_item .icon_mobile_code {
    background-image: url("https://alicdn.pantayun.com/pic/findpwd/icon_mobile_findpwd.png");
}
.findpwd-container .select_findpwd_mode .findpwd_item .icon_email_code {
    background-image: url("https://alicdn.pantayun.com/pic/findpwd/icon_email_findpwd.png");
}
.findpwd-container .select_findpwd_mode .findpwd_item .icon_safe_code {
    background-image: url("https://alicdn.pantayun.com/pic/findpwd/icon_safe_findpwd.png");
}
.findpwd-container .findpwd-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    height: 20px;
}
.findpwd-container .findpwd-top .icon_back {
    background-image: url("data:image/svg+xml, <svg t='1611019727573' fill='%23666' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='3565' width='20' height='20'><path d='M716.879204 813.744345c14.09502 12.824073 15.126512 34.658358 2.303462 48.752354-12.843516 14.09502-34.678824 15.126512-48.752354 2.302439l-364.835266-332.676845c-14.114462-12.844539-15.127536-34.659381-2.302439-48.753377 0.733711-0.815575 1.486864-1.588171 2.302439-2.302439l0.078795-0.080841 0.13917-0.13917 364.616278-332.4773c14.074553-12.824073 35.909861-11.791557 48.752354 2.302439 12.824073 14.09502 11.792581 35.930327-2.303462 48.753377L380.032386 506.593873l336.845795 307.149449L716.879204 813.744345 716.879204 813.744345z' p-id='3566'></path></svg>");
    background-size: 30px;
    width: 30px;
    height: 30px;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}
.findpwd-container .findpwd-top .icon_back:active {
    background-image: url("data:image/svg+xml, <svg t='1611019727573' fill='%230bce67' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='3565' width='20' height='20'><path d='M716.879204 813.744345c14.09502 12.824073 15.126512 34.658358 2.303462 48.752354-12.843516 14.09502-34.678824 15.126512-48.752354 2.302439l-364.835266-332.676845c-14.114462-12.844539-15.127536-34.659381-2.302439-48.753377 0.733711-0.815575 1.486864-1.588171 2.302439-2.302439l0.078795-0.080841 0.13917-0.13917 364.616278-332.4773c14.074553-12.824073 35.909861-11.791557 48.752354 2.302439 12.824073 14.09502 11.792581 35.930327-2.303462 48.753377L380.032386 506.593873l336.845795 307.149449L716.879204 813.744345 716.879204 813.744345z' p-id='3566'></path></svg>");
}
.findpwd-container h1 {
    height: 34px;
    margin: 20px 0;
    font-size: 34px;
    font-weight: 400;
    text-align: center;
    line-height: 34px;
}
.findpwd-box {
    margin-left: 50px;
    padding-left: 96px;
    *zoom: 1;
    height: 340px;
    padding-top: 30px;
}
.findpwd-box .row {
    position: relative;
    height: 50px;
    margin-bottom: 25px;
}
.findpwd-box .row h3 {
    position: absolute;
    top: 0;
    left: -100px;
    width: 80px;
    line-height: 50px;
    text-align: right;
    font-size: 16px;
    color: #666;
}
.area-code {
    float: left;
    width: 60px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    color: #666;
    background: #fafafa;
}
.input-mobile {
    display: -webkit-box;
    display: -webkit-flex;
}
.input-mobile .con {
    float: left;
    width: 218px;
}
.input-cell {
    position: relative;
    width: 388px;
    height: 48px;
    border: 1px solid #e3e5e9;
    background: #fff;
}
.input-cell .con {
    position: relative;
    height: 48px;
}
.input-cell label {
    position: absolute;
    padding: 0 12px;
    line-height: 50px;
    font-size: 16px;
    color: #afb3b9;
}
.input-cell input {
    position: absolute;
    top: 0;
    left: 0;
    width: 364px;
    height: 18px;
    margin: 0;
    padding: 15px 12px;
    line-height: 18px;
    font-size: 16px;
    border: 0 none;
    background: 0 0;
    -webkit-appearance: none;
}

.input-mobile .con input {
    width: 194px;
}
.region-title {
    float: left;
    width: 105px;
    height: 16px;
    margin: 5px;
    padding: 11px 0;
    line-height: 16px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    color: #666;
    border-radius: 3px;
    background: #f2f2f2;
    cursor: pointer;
    -webkit-user-select: none;
}
.region-title span, .region-title s {
    display: inline-block;
    vertical-align: top;
}
.region-title span {
    max-width: 80px;
    overflow: hidden;
}
.region-title s {
    width: 9px;
    height: 5px;
    margin: 6px 0 0 6px;
    background-position: -36px -16px;
}
.region-title s {
    background-image: url("//alicdn.pantayun.com/pic/index_reg/icon_main.png");
    background-repeat: no-repeat;
}

.input-vcode {
    float: left;
    width: 164px;
    margin-right: 10px;
}
.input-vcode input {
    width: 140px;
}
.btn-gray {
    color: #999;
    background: #f3f4f6;
}
.btn-getvcode {
    width: 214px;
}
.btn-gray:hover {
    color: #666;
    background: #e4e5e9;
}

.reg-action .button {
    display: block;
    width: 390px;
}

.findpwd-box .agreement {
    height: 18px;
    line-height: 18px;
    font-size: 16px;
    margin-bottom: 0;
}
.findpwd-box .agreement a {
    color: #0bce67;
}
.findpwd-box .agreement input {
    float: left;
    position: relative;
    width: 14px;
    height: 14px;
    margin: 2px 6px 0 0;
    padding: 0;
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.findpwd-box .agreement input:checked {
    background-color: #0bce67;
    border: 1px solid #0bce67;
}
.findpwd-box .agreement input:checked:before {
    content: "";
}
.findpwd-box .agreement input[type=checkbox]::before {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: url("//alicdn.pantayun.com/pic/index_reg/icon_checkbox_checked.svg") no-repeat;
    background-size: cover;
    cursor: pointer;
}

.findpwd-box .row .input-cell-tips {
    width: 390px;
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    color: #f55c5c;
    font-size: 12px;
}

.ifm-war {
    z-index: 4;
    background-position: 0 0;
}
.icon-form {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 3;
    width: 18px;
    height: 18px;
    line-height: 10;
    overflow: hidden;
    background-image: url("//alicdn.pantayun.com/pic/index_reg/icon_form.png");
    background-repeat: no-repeat;
    cursor: pointer;
}
.form-popup-hint {
    position: absolute;
    top: -24px;
    right: 0;
    z-index: 4;
    height: 35px;
    padding-right: 10px;
    line-height: 30px;
    white-space: nowrap;
    font-size: 14px;
    color: #FFF;
    background-position: right 0;
}
.form-popup-hint i {
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 30px;
    overflow: hidden;
    background-position: 0 0;
}
.form-popup-hint, .form-popup-hint i {
    background-image: url("//alicdn.pantayun.com/pic/index_reg/popup_hint.png");
    background-repeat: no-repeat;
}
.ifm-view {
    background-position: 0 -18px;
}
i, em {
    font-style: normal;
}

.findpwd-container .eye_icon {
	background-image: url("data:image/svg+xml, <svg t='1640330011840' class='icon' viewBox='0 0 1152 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2045' width='16' height='16'><path d='M576 288a221.88 221.88 0 0 0-62.48 10 110.8 110.8 0 0 1 14.48 54 112 112 0 0 1-112 112 110.8 110.8 0 0 1-54-14.48A223.42 223.42 0 1 0 576 288z m569.04 194.8C1036.58 271.18 821.86 128 576 128S115.36 271.28 6.96 482.82a64.7 64.7 0 0 0 0 58.38C115.42 752.82 330.14 896 576 896s460.64-143.28 569.04-354.82a64.7 64.7 0 0 0 0-58.38zM576 800c-197.3 0-378.18-110-475.86-288C197.82 334 378.68 224 576 224s378.18 110 475.86 288C954.2 690 773.32 800 576 800z' p-id='2046'></path></svg>");
	width: 25px;
	height: 25px;
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	position: absolute;
	top: 12px;
	right: 30px;
	cursor: pointer;
}
.findpwd-container .eye_icon.invisible {
	background-image: url("data:image/svg+xml, <svg t='1640329739095' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='1896' width='16' height='16'><path d='M941.677 391.71c9.338-14.006 6.225-32.681-6.225-43.575-14.006-10.894-32.681-7.781-43.575 6.225-1.557 1.556-174.3 205.426-379.728 205.426-199.2 0-379.727-205.426-381.283-206.982-10.895-12.45-31.125-14.006-43.576-3.113-12.45 10.894-14.006 31.125-3.113 43.576 3.113 4.668 40.463 46.687 99.6 93.375l-79.37 82.482c-12.45 12.45-10.893 32.681 1.557 43.575 3.113 6.225 10.894 9.338 18.676 9.338 7.78 0 15.562-3.113 21.787-9.338l85.594-88.706c40.463 28.013 88.707 54.47 141.62 73.144l-32.682 110.495c-4.668 17.118 4.67 34.237 21.788 38.906h9.337c14.006 0 26.457-9.338 29.569-23.344l32.681-110.495c24.9 4.669 51.357 7.782 77.813 7.782s52.913-3.113 77.814-7.782l32.68 108.939c3.114 14.006 17.12 23.343 29.57 23.343 3.113 0 6.225 0 7.782-1.556 17.118-4.67 26.456-21.787 21.788-38.906L649.099 595.58c52.914-18.676 101.157-45.132 141.62-73.144l84.038 87.15c6.225 6.225 14.006 9.338 21.787 9.338 7.781 0 15.563-3.113 21.787-9.337 12.45-12.451 12.45-31.125 1.557-43.576l-79.37-82.481c63.808-46.689 101.16-91.82 101.16-91.82z' p-id='1897'></path></svg>");
}

@media only screen and (-webkit-min-device-pixel-ratio: 0) {
	.input-mobile .region-title {
	    margin-right: 5px;
	    padding-right: 12px;
	    padding-left: 12px;
	}
	.input-mobile .area-code, .input-mobile .con, .input-mobile .region-title {
	    float: none!important;
	    width: auto!important;
	}
	.input-mobile .con {
	    -webkit-box-flex: 1;
	    -webkit-flex: 1;
	}
	.input-mobile .area-code, .input-mobile .con, .input-mobile .region-title {
	    float: none!important;
	    width: auto!important;
	}
	.input-mobile .area-code, .input-mobile .con, .input-mobile .region-title {
	    float: none!important;
	    width: auto!important;
	}
	.input-mobile .area-code {
	    padding: 0 12px;
	}
}


.popup-region {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: 650px;
    height: 500px;
    background: #fff;
    -webkit-animation: area-popup .3s ease both;
}
.pop-region-tab {
    height: 68px;
    padding: 0 15px;
    border-bottom: 1px solid #e6e6e6;
}
.pop-region-tab a {
    position: relative;
    float: left;
    height: 68px;
    padding: 0 15px;
    line-height: 68px;
    font-size: 18px;
    color: #666;
}
.pop-region-tab a.current {
    color: #0bce67;
}
.pop-region-tab a.current:before, 
.pop-region-tab a.current:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 0;
    height: 0;
    margin-left: -6px;
    overflow: hidden;
    border: 6px solid;
    border-color: #e6e6e6 transparent transparent;
}
.pop-region-tab a.current:after {
    bottom: -12px;
    border-top-color: #fff;
}

.pop-region-container {
    height: 210px;
    padding: 10px 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 14px;
}

.pop-region-container dl {
    position: relative;
    padding: 5px 0;
    zoom: 1;
}
.pop-region-container dt {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 40px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #f2f2f2;
}
.pop-region-container dd {
    margin-left: 70px;
}
.pop-region-container ul {
    padding-right: 20px;
	zoom: 1;
}
.pop-region-container ul:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}
.pop-region-container li {
    float: left;
    width: 25%;
    height: 36px;
    padding: 5px 0;
}
.pop-region-container li a {
    display: block;
    height: 34px;
    margin-left: 10px;
    padding: 0 10px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 3px;
}
.region-title span, 
.pop-region-container li, 
.pop-region-container li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pop-region-container li a:hover {
    text-decoration: none;
    color: #fff;
    border-color: #0bce67;
    background: #0bce67;
}

.pop-region-bottom {
    padding: 12px;
    border-radius: 0 0 5px 5px;
    /* background: #f2f2f2; */
}
.pop-region-bottom .button {
    display: block;
    width: 260px;
    margin: auto;
}




::-webkit-scrollbar{
  width:4px;height:4px;overflow:visible;
}
::-webkit-scrollbar-thumb{
  border:solid transparent;border-width:1px 0;background-clip:padding-box;background:#0bce67;
}
::-webkit-scrollbar-thumb:hover{
  background-color:#5df183;
}
::-webkit-scrollbar-arrow{
  color:red;
  background:#5df183;
}
::-webkit-scrollbar-button{
  width:0;height:0;
}
::-webkit-scrollbar-button:hover{
  border-color:#5f6366;
}
::-webkit-scrollbar-button:vertical:end:decrement,
::-webkit-scrollbar-button:vertical:start:increment{
  display:none;
}