﻿@charset "utf-8";

/* 弹框 */
.add-tk{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0,.6);
    z-index: 1999;
    display: none;
}
.add-tk .comsule-leftbox {
    max-width: 460px;
    text-align: center;
    padding: 40px 20px;
    border-radius: 6px;
    position: relative;
    float: initial;
    background: #ffffff;
    width: 92%;
    box-sizing: border-box;
}
.comsule-desc {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 315px;
    display:none;
}
.comsule-desc img{
    margin-bottom: 15px;
}
.comsule-desc p{
    font-size: 14px;
    color: #666;
}
.add-tk .close{
    width: 20px;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
}
.add-tk .close img{
    display: inline-block;
    width: 100%;
}
.sub-icon {
    width:120px;
    padding-bottom: 20px;
}

/*提交表单20210603 */
.comsule-leftbox{
    width: 460px;
    text-align: center;
}
.comsule-title{
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.comsule-box{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    background: #F4F4F4;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: flex;
    align-items: center;
    position: relative;
}
.comsule-icon1{
    width: 25px;
    float: left;
    margin-left: 20px;
    /* margin-top: 13px; */
}
.comsule-input{
    width: calc(100% - 45px);
    padding-left: 10px;
    float: left;
    height: 40px;
    line-height: 40px;
    border: 1px solid #F4F4F4;
    outline: none;
    background: rgba(255,255,255,0);
}
.comsule-box:nth-child(3) .comsule-input {
    width: 50%;
}
.comsule-code{
    float: right;
    padding: 0 30px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
    border:none;
    background: #0077BE;
    position: absolute;
    right: 0;
}
/* 验证码按钮不可点击状态 */
.comsule-code.disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
}
/* 验证码输入框过渡样式 */
.code-box {
    transition: all 0.5s ease;
}
.code-box.show {
    display: flex !important;
    opacity: 1 !important;
    margin-top: 20px;
}
.comsule-submit{
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid #0077BE;
    color: #FFF;
    text-align: center;
    border-radius: 5px;
    background: #0077BE;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}
.comsule-submit:hover{
    background: #2781b7;
}
/* 提交按钮不可点击状态 */
.comsule-submit.disabled {
    background: #cccccc !important;
    color: #666666 !important;
    border: none !important;
    cursor: not-allowed;
}
.comsule-submit.show {
    display: block !important;
    opacity: 1 !important;
}
.comsule-rightbox{
    width: 437px;
    float: right;
    padding: 40px 44px 50px 44px;
    border:1px solid #E4E4E4;
     border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.comsule-text1{
    width: 100%;
    float: left;
    font-size: 14px;
    color: #999999;
    line-height: 25px;
    margin-top: 5px;
}


/* 手机等小屏幕手持设备 */
@media screen and (max-width: 750px) {
    .add-tk .comsule-box {
        height: 40px;
        margin-top: 20px;
        display: flex;
        align-items: center;
    }
    .add-tk .comsule-icon1 {
        width: 25px;
        margin-left: 15px;
        margin-top: 0;
    }
    .add-tk .comsule-input {
        padding-left: 15px;
        box-sizing: border-box;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        width: calc(100% - 40px);
    }
    .add-tk .comsule-code {
        line-height: initial;
        padding: 0 5px;
        width: 123px;
        line-height: 40px;
        box-sizing: border-box;
        font-size: 12px;
    }
}