/* 弹窗 - Begin 2021.06.08 - LaoGuo */
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-md-4 {
    width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
}
.col-md-6 {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}
.col-md-12 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}
.afw-site-popup {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    transform: perspective(1px) scale(1.1);
    transition: visibility 0s linear .15s,opacity .15s 0s,transform .15s;
}
.afw-site-popup.active {
    opacity: 1;
    visibility: visible;
}
.afw-site-popup-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    opacity: .9;
}
.afw-box-wrapper {
    width: 100%;
    padding: 44px;
    z-index: 9994;
    max-width: 1024px;
    padding-top: 88px;
    position: relative;
    background-color: #FFF;
}
.afw-box-wrapper .box-header,
.afw-box-wrapper .box-footer {
    text-align: center;
}
.afw-box-wrapper .box-header {
    padding-bottom: 30px;
}
.afw-box-wrapper .box-header >h3,
.afw-box-wrapper .box-footer > h3 {
    color: #000;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}
.afw-box-wrapper .box-header >p,
.afw-box-wrapper .box-footer > p {
    color: #000;
    font-size: 16px;
}
.afw-box-wrapper .afw-box-btn {
    padding: 8px 18px;
    display: block;
    margin: 20px auto;
    background: linear-gradient(to right,rgba(1,64,74,1) 0%,rgba(1,74,85,1) 28%,rgba(1,88,99,1) 51%,rgba(1,95,106,1) 71%,rgba(1,102,113,1) 100%);
    color: #FFF;
    border-radius: 30px;
    width: 285px;
    height: 65px;
    font-size: 18px;
    font-weight: 700;
    border: 0 !important;
    outline: none !important;
    cursor: pointer;
}
.afw-box-wrapper .afw-box-btn:hover {
    color: #FFF;
    background: linear-gradient(to right,rgba(4,99,110,1) 0%,rgba(1,97,108,1) 27%,rgba(1,81,91,1) 51%,rgba(1,69,80,1) 71%,rgba(1,64,75,1) 100%);
}
#afw_site_box_form .fancybox-button,
#afw_product_form .fancybox-button {
    width: 66px;
    height: 66px;
}
.afw-box-input {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    outline: none !important;
    background-color: #f4f5f6;
    border: 2px solid #f2f2f2;
    border-bottom: 2px solid #dcdcdc;
}
.afw-site-box-close {
    position: absolute;
    width: 66px;
    height: 66px;
    right: 0;
    top: 0;
    border: 0;
    background-color: #FFF;
    cursor: pointer;
    color: #333;
    box-sizing: content-box;
}
/* 弹窗 - End 2021.06.08 - LaoGuo */