button:focus,
input:focus{
    outline: none;
}
button{
    cursor: pointer;
}
a:link,
a:hover,
a:visited,
a:active{
    color: inherit;
}
.text-center{
    text-align: center;
}
.modal-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 999;
    /* display: none; */
}
.modal-wrapper .modal{
    position: relative;
    width: 30%;
    max-width: 90%;
    max-height: 80%;
    margin: 7% auto 0;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
}
.modal-wrapper .modal .close-btn{
    position: absolute;
    top: 0;
    right: 14px;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
}
.modal-wrapper .modal-header{
    padding: 14px 30px;
    background-color: #F3F3F3;
    font-size: 16px;
    font-weight: bold;
}
.modal-wrapper .modal-body{
    height: calc(100% - 200px);
    overflow-y: auto;
    padding: 20px 67px;
    margin-right: 10px;
}
.modal-wrapper .modal-body::-webkit-scrollbar {/*滚动条整体样式*/
    width: 6px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.modal-wrapper .modal-body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 5px #eee;
    background: #000;
}
.modal-wrapper .modal-body::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #eee;
    border-radius: 8px;
    background: #fff;
}   
.modal-wrapper .modal-footer{
    padding: 40px 30px;
    text-align: center;
}
.modal-wrapper .modal-footer button{
    width: 348px;
    max-width: 80%;
    height: 56px;
    line-height: 56px;
    font-size: 18px;
    background-color: #00479D;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.my-card{
    border-radius: 4px;
    padding: 16px;
    background-color: #fff;
    margin: 10px 0;
    box-sizing: border-box;
}
.clearfix{
    content: '';
    clear: both;
    display: block;
}
.list-row{
    overflow: hidden;
    margin: 0 -12px;
}
.list-row::after{
    content: '';
    clear: both;
    display: block;
}
.list-row .col{
    float: left;
    width: 50%;
    padding: 0 12px;
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .list-row .col{
        width: 100%;
    }
}

.card-list .list-title{
    font-size: 22px;
}
.card-list .list-item{
    padding: 24px;
    margin: 12px 0;
    background-color: #fff;
}
.card-list .list-item .thumb-wrapper{
    text-align: center;
    height: 257px;
    background-color: #F7F7F7;
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .card-list .list-item .thumb-wrapper{
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.card-list .list-item .title{
    font-size: 24px;
    margin-bottom: 5px;
}
.card-list .list-item .discription{
    color: #999;
    line-height: 20px;
}
.card-list .list-item .price{
    color: #F1393A;
    font-size: 45px;
    font-family: DIN-Medium, DIN;
}
.card-list .list-item .yuan-symbol{
    font-size: 22px;
}
.card-list .list-item .buy-btn{
    width: 145px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 20px;
    border: none;
    color: #fff;
    background: linear-gradient(161deg, #F96B6C 0%, #F1393A 100%);
    border-radius: 26px;
    cursor: pointer;
}
.card-list .list-item .buy-btn:hover{
    opacity: .9;
}
.progress-wrapper{
    height: 8px;
    background-color: #f6f6f6;
    border-radius: 6px;
    position: relative;
    top: 30px;
}
.progress-wrapper .current-progress{
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    background: linear-gradient(270deg, #FC7D80 0%, #FF9797 100%);
    border-radius: 6px;
}
.progress-wrapper .left-text{
    position: absolute;
    top: 14px;
    left: 0;
    color: #999;
}
.progress-wrapper .right-text{
    position: absolute;
    top: 14px;
    right: 0;
    color: #999;
}
.border-card{
    display: flex;
    border-radius: 4px;
}
.border-card .card-img{
    padding-right: 10px;
    width: 25%;
}
.border-card > div{
    flex: 1;
}
.core-wrapper .my-card .border-card div .title{
    font-size: 18px;
    color: #000;
}
.flex-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.align-center{
    align-items: center;
    align-content: center;
}
.align-end{
    align-items: flex-end;
    align-content: flex-end;
}
.justify-between{
    justify-content: space-between;
}
.flex-item{
    flex: 1;
}
.text-red{
    color: red;
}
.text-grey{
    color: #757575;
}
.font-bold{
    font-weight: 600;
}
.bg-red{
    background-color: red;
}
.my-btn{
    height: 48px;
    line-height: 48px;
    padding: 0 80px;
    font-size: 18px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
}
.my-btn:hover{
    opacity: .9;
}
.my-btn:focus{
    outline: none;
}
.danger-btn{
    border-color: red;
    background: red;
    border-radius: 30px;
    padding: 8px 25px;
    color: #fff;
    cursor: pointer;
}
.mg-top-20{
    margin-top: 20px;
}
.text-underline{
    text-decoration: underline;
}
.font-sm{
    font-size: 12px;
}
.tag{
    display: inline-block;
    border-radius: 12px;
    padding: 1px 8px;
    margin-top: 6px;
}
.tag-red{
    background-color: red;
    color: #fff;
}
.bg-org{
    background-color: #FFF2EB;
}
.bg-grey{
    background-color: #f9f9f9;
}
.form-box * {
    box-sizing: border-box;
}
.form-box .form-header{
    margin-bottom: 35px;
    margin-left: 80px;
}
.form-box .title{
    font-size: 29px;
    padding-right: 10px;
}
.form-box .form-header a{
    color: #409eff;
    padding-left: 4px;
}
.form-box .error-box{
    visibility: hidden;
    padding: 0 16px;
    border-radius: 4px;
    background-color: #fef0f0;
    border: 1px solid #faa0a0;
    color: #f56c6c;
    height: 40px;
    line-height: 38px;
    margin-bottom: 15px;
}
.form-box .form-item{
    margin-bottom: 24px;
    height: 44px;
    line-height: 44px;
}
.form-box .label{
    width: 80px;
    font-size: 14px;
    color: #333;
    text-align: right;
    padding-right: 10px;
}
.form-box input{
    border: 1px solid #ddd;
    padding: 0 10px;
    line-height: 44px;
    border-radius: 4px;
    flex: 1;
}
.form-box input[name="code"] {
    width: 70px;
    margin-right: 5px;
}
.form-box .refresh-code{
    margin-top: -15px;
    cursor: pointer;
}
.form-box .submit-btn{
    margin-top: 40px;
    width: 100%;
    height: 44px;
    line-height: 44px;
    background-color: #0b5dad;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.form-box .submit-btn:hover{
    opacity: .9;
}

.my-tabs{
    padding-bottom: 28px;
}
.my-tabs .tab-header{
    padding: 15px 0;
}
.my-tabs .tab-item{
    display: inline-block;
    margin-right: 110px;
    font-size: 24px;
    color: #999999;
    padding: 10px 0;
    position: relative;
    cursor: pointer;
}
.my-tabs .tab-item.active,
.my-tabs .tab-item:hover{
    color: #00479D;
    font-weight: bold;
}
.my-tabs .tab-item::after{
    content: '';
    overflow: hidden;
    clear: both;
    position: absolute;
    left: 25%;
    width: 50%;
    bottom: -5px;
    height: 5px;
    background-color: #00479D;
    transform-origin: center;
    transform: scale(0, 1);
    transition: all .2s;
}
.my-tabs .tab-item.active::after{
    transform: scale(1, 1);
}
.my-tabs .tab-content{
    min-height: 400px;
    background-color: #fff;
    padding: 75px 67px;
}
.my-tabs .tab-pane{
    display: none;
}
.my-tabs .tab-pane.active{
    display: block;
}
.my-tabs .tab-pane .title{
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .my-tabs .tab-item{
        margin-right: 40px;
        font-size: 18px;
    }
    .my-tabs .tab-content{
        padding: 20px;
    }
}

.pane-tabs{
    padding-bottom: 56px;
}
.pane-tabs .tab-item{
    background-color: #fff;
    cursor: pointer;
}
.pane-tabs .tab-item .title {
    font-size: 33px;
    line-height: 46px;
    color: #1A1A1A;
    margin-bottom: 5px;
}
.pane-tabs .tab-item .sub-title {
    color: #E3E3E3;
}