:root{
    --priamry: #FF7C26;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Roboto","-apple-system","Microsoft YaHei","Helvetica Neue","Helvetica","Arial","sans-serif";
    overflow-x: hidden;
    width: 100vw;
}

.inner{
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    height: inherit;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

icon-font {
    display: inline-flex;
}

icon-font svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.adaptor{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.notify{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notify-inner{
    padding: 21px 25px;
    border-radius: 20px;
    background-color: #fff;
    width: 95vw;
    max-width: 450px;
    box-shadow: 0px 6px 30px 5px rgba(0, 0, 0, 0.05), 0px 16px 24px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px -5px rgba(0, 0, 0, 0.08);
}

.notify-title{
    display: flex;
    align-items: center;
}

.notify-title__text{
    flex: 1 0 0;
    margin-left: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.notify-icon__success{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #44DA8D;
}

.notify-icon__info{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--priamry);
}

.notify-title__close{
    cursor: pointer;
}

.notify-content{
    margin-top: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
}

header{
    background-color: var(--priamry);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}

header .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.header-logo__image{
    height: 45px;
    display: block;
    object-fit: contain;
}

.header-nav__group{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav__item{
    position: relative;
}

.header-nav__item + .header-nav__item{
    margin-left: 56px;
}

.header-nav__item::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header-nav__item:hover::before,
.header-nav__item.active::before{
    transform: scaleX(1);
}

.header-nav__link{
    color: inherit;
    text-decoration: none;
    line-height: 56px;
    display: block;
}

.header-locale{
    position: relative;
}

.header-locale__current{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-locale__name{
    font-size: 16px;
    margin-left: 5px;
    vertical-align: middle;
}

.header-locale__group{
    list-style: none;
    margin:0;
    padding: 0;
    position: absolute;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    background-color: #fff;
    border-radius: 7px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.header-locale__group:hover,
.header-locale:hover .header-locale__group{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-locale__item{
    line-height: 40px;
    font-size: 16px;
}

.locale-item__link{
    display: block;
    text-align: center;
    font-size: inherit;
    text-decoration: none;
    color: #666;
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
    transition: all 0.3s ease;
}

.locale-item__link:hover{
    background-color: var(--priamry);
    color: #fff;
}

header~aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 45vw;
    height: 100vh;
    background-color: #333;
    padding: 20px;
    z-index: 9;
    transition: transform .3s ease;
    transform: translateX(-100%);
    outline: none;
}

header~aside:focus{
    transform: translateX(0);
}

header~aside ul{
    margin: 0;
    padding:0;
    list-style: none;
}

header~aside ul li{
    position: relative;
}

header~aside ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    line-height: 45px;
}

.mask{
    position: fixed;
    left: 0;
    top:0;
    right: 0;
    bottom:0;
    z-index: 2;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mask.active{
    opacity: 1;
    visibility: visible;
}

main{
    flex: 1;
}

footer{
    background-color: #000;
    color: #fff;
    padding: 28px 0;
}

.footer-main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-main__logo{
    display: flex;
    align-items: center;
}

.footer-main__logo img{
    display: block;
    height: 65px;
    object-fit: contain;
}

.footer-main__logo span{
    font-size: 32px;
    line-height: 45px;
    margin-left: 12px;
    font-weight: bold;
}

.footer-main__contact a{
    font-size: 24px;
    vertical-align: middle;
    color: inherit;
    text-decoration: none;
}

.footer-main__address{
    width: 100%;
    margin-top: 5px;
    text-align: center;
}

.footer-copyright{
    text-align: center;
    margin-top: 65px;
}

.footer-copyright__text{
    font-size: 16px;
    line-height: 22px;
    color: #999;
    margin: 0;
    text-align: center;
}

.footer-affix{
    position: fixed;
    right: 33px;
    bottom: 105px;
    background: var(--priamry);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.footer-top{
    position: fixed;
    right: 25px;
    bottom: 105px;
    background: var(--priamry);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-whatsapp{
    position: fixed;
    right: 25px;
    bottom: 35px;
    background: var(--priamry);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}

.footer-top.active{
    opacity: 1;
    visibility: visible;
}

.banner{
    background-color: #FFE0CB;
}

.banner-wrapper{
    padding: 85px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 560px;
    height: 30vw;
    box-sizing: border-box;
}

.banner-wrapper .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.banner-text{
    width: 50%;
    color: #fff;
}

.banner-text__title{
    margin: 0;
    font-size: 48px;
    line-height: 67px;
    font-weight: bold;
    font-family: inherit;
    white-space: pre-line;
}

.banner-text__sub{
    margin-top: 14px;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
    font-family: inherit;
    white-space: pre-line;
    font-weight: normal;
}

.banner-text__button{
    display: inline-flex;
    background-color: var(--priamry);
    font-size: 24px;
    line-height: 34px;
    padding: 6px 25px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 35px;
    color: #fff;
}

.banner-image{
    width: 43%;
    display: flex;
}

.banner-image__img{
    width: 100%;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.guide{
    padding-top: 147px;
    padding-bottom: 124px;
    background: linear-gradient(277.11deg, #FFFEFE 5.01%, #FCF5EE 50.64%, #FFFDFB 83.93%);
}

.guide .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-image{
    width: 70%;
}

.guide-image__img{
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.guide-text{
    flex: 1;
    margin-left: -5%;
}

.guide-text__title{
    font-weight: 900;
    font-size: 48px;
    line-height: 67px;
    color: #333;
    font-family: inherit;
    white-space: pre-line;
    margin: 0;
}

.guide-text__sub{
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #333;
    white-space: pre-line;
    font-family: inherit;
    margin-bottom: 0;
    margin-top: 48px;
}

.guide-text__group{
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
    margin-bottom: 0;
    width: 100%;
}

.guide-text__item{
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #666;
    padding-left: 15px;
}

.guide-text__item::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--priamry);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.guide-text__item + .guide-text__item{
    margin-top: 24px;
}

.service{
    padding-top: 69px;
    padding-bottom: 136px;
    background: linear-gradient(277.11deg, #FFFEFE 5.01%, #FCF5EE 50.64%, #FFFDFB 83.93%);
}

.service-title{
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #333;
    text-align: center;
    margin: 0;
}

.service-content{
    margin-top: 67px;
}

.service-group{
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    margin-top: 0;
    margin-left: -24px;
    list-style: none;
    margin-bottom: 0;
}

.service-item{
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0 0 33px -4px rgba(241, 221, 207, 0.2);
    border-radius: 8px;
    padding: 67px 30px;
    margin-left: 24px;
    width: calc(33.33% - 24px);
    box-sizing: border-box;
    color: #333;
    transition: all 0.3s ease;
}

.service-item:hover{
    border-color: #FFB787;
    color: var(--priamry);
}

.service-item__image img{
    display: block;
    width: 100%;
}

.service-text{
    margin-top: 24px;
}

.service-text__title{
    color: inherit;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    margin: 0;
}

.service-text p{
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #666;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
}

.preview{
    padding: 136px 0;
    background: linear-gradient(180deg, #FDF7F1 -2.76%, #FEFCFB 102.12%);
}

.preview .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-image{
    width: 60%;
}

.preview-image__img{
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.preview-text{
    flex: 1;
    margin-left: -3%;
}

.preview-text__title{
    font-weight: 900;
    font-size: 48px;
    line-height: 67px;
    color: #333;
    font-family: inherit;
    white-space: pre-line;
    margin: 0;
}

.preview-text__sub{
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #333;
    font-family: inherit;
    white-space: pre-line;
    margin-top: 24px;
    margin-bottom: 0;
}

.preview-text__group{
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
    margin-bottom: 0;
    width: 100%;
}

.preview-text__item{
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #666;
    padding-left: 15px;
}

.preview-text__item::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--priamry);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.preview-text__item + .preview-text__item{
    margin-top: 24px;
}

.qa{
    padding-top: 107px;
    padding-bottom: 80px;
    background: linear-gradient(119.2deg, #FFE8D2 12.51%, rgba(255, 248, 242, 0) 69.12%);
    position: relative;
}

.qa .inner{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.qa-bg{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../images/qa-bg.png") no-repeat left bottom / contain;
}

.qa-image{
    width: 50%;
}

.qa-image__img{
    display: block;
    max-width: 100%;
    margin: auto;
}

.qa-text{
    flex: 1;
    margin-left: 6%;
}

.qa-text__group{
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.qa-text__item{
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #666;
}

.qa-text__item + .qa-text__item{
    margin-top: 24px;
}

.qa-text__item span{
    color: var(--priamry);
    margin-right: 36px;
    font-weight: bold;
}

.qa-text__tips{
    width: 414px;
    height: 387px;
    margin-top: 59px;
}

.qa-text__tips img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.analysis{
    padding-top: 135px;
    padding-bottom: 135px;
    background: linear-gradient(180deg, #FFFFFF -2.42%, #FFF7F2 102.47%);
}

.analysis .inner{
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysis-text{
    flex: 1;
}

.analysis-text__title{
    font-weight: 900;
    font-size: 48px;
    line-height: 67px;
    color: #333;
    margin: 0 -1em 0 0;
    font-family: inherit;
    white-space: pre-line;
}

.analysis-text__sub{
    margin-bottom: 0;
    margin-top: 48px;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #333;
    font-family: inherit;
    white-space: pre-line;
}

.analysis-text__group{
    padding: 0;
    margin-bottom: 0;
    margin-top: 24px;
    list-style: none;
}

.analysis-text__item{
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #666;
    padding-left: 15px;
}

.analysis-text__item::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--priamry);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.analysis-text__item + .analysis-text__item{
    margin-top: 24px;
}

.analysis-image{
    width: 59.5%;
}

.analysis-image__img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.strategy{
    padding-top: 100px;
    padding-bottom: 85px;
    background: url("../images/strategy-bg.png") #fff no-repeat left bottom / contain;
}

.strategy-title{
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #333;
    text-align: center;
    margin: 0;
}

.strategy-group{
    list-style: none;
    margin-top: 33px;
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.strategy-item{
    color: var(--priamry);
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
}

.strategy-item + .strategy-item{
    margin-left: 7.1%;
}

.strategy-image{
    width: 100%;
    max-width:990px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 63px;
}

.strategy-image__img{
    display: block;
    width: 100%;
}

.cooperation{
    padding-top: 100px;
    padding-bottom: 56px;
    background: linear-gradient(98.52deg, #FFFAF7 7.61%, #FFF4ED 96.63%);
}

.cooperation-title{
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #333;
}

.cooperation-sub{
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #666;
    margin-bottom: 0;
    margin-top: 6px;
    text-align: center;
}

.cooperation-content{
    margin-top: 90px;
    position: relative;
}

.cooperation-item{
    background: #fff;
    box-shadow: 0 2px 18px 1px #FAE7DA;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 18px 15px;
    display: flex;
}

.cooperation-item:hover{
    border-color: var(--priamry);
}

.cooperation .swiper-slide{
    padding: 20px;
    box-sizing: border-box;
}

.cooperation .swiper-button-lock{
    display: block;
    cursor: not-allowed;
}

.cooperation .swiper-pagination-lock{
    display: block;
}

.cooperation .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 124, 38, 0.2);
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
}

.cooperation .swiper-pagination-bullet-active{
    width: 32px;
    background: var(--priamry);
}

.cooperation-item__image{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 65%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.cooperation-item__image:hover{
    border-color: var(--priamry);
}

.cooperation-item__image .adaptor{
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.cooperation-item__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .cooperation-item__text{
    flex: 1;
    width: 0;
}

.cooperation-item__header{
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #333;
    display: flex;
    align-items: center;
}

.cooperation-item__header icon-font{
    color: var(--priamry);
    font-size: 1.5em;
    margin-right: 24px;
}

.cooperation-item__tags{
    list-style: none;
    margin-top: 45px;
    padding-left: 12px;
    font-size: 16px;
    line-height: 22px;
    color: #707070;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cooperation-item__tag{
    display: inline-block;
    background-color: #F9F4F0;
    padding: 6px 12px;
}

.cooperation-item__tag + .cooperation-item__tag{
    margin-top: 12px;
}

.cooperation-item__tips{
    display: flex;
    list-style: none;
    font-size: 16px;
    line-height: 22px;
    color: #333;
    margin-bottom: 0;
    margin-top: 22px;
    padding-left: 18px;
}

.cooperation-item__tip + .cooperation-item__tip{
    margin-left: 16px;
}

.cooperation-item__image{
    width: 50%;
    margin-left: 12px;
}

.cooperation-item__img{
    display: block;
    width: 100%;
} */


.cooperation-prev,
.cooperation-next{
    position: absolute;
    top:50%;
    font-size: 30px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #90A4AE;
    z-index: 1;
}

.cooperation-prev{
    left: -35px;
}

.cooperation-next{
    right: -35px;
}

.cooperation-pagination{
    display: flex;
    justify-content: center;
    margin-top: 95px;
}

.merchant{
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 65px;
}

.merchant-title{
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #333;
    margin: 0;
}

.merchant-sub{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #666;
    margin-top: 6px;
    margin-bottom: 0;
}

.merchant-content{
    margin-top: 135px;
}

.merchant-item{
    display: flex;
    align-items: center;
}

.merchant-item + .merchant-item{
    margin-top: 52px;
}

.merchant-item__image{
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding-bottom: 25%;
}

.merchant-item__img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.merchant-item__text{
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 72px;
}

.merchant-item__title{
    margin: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    color: #333;
}

.merchant-item__content{
    margin-bottom: 0;
    margin-top: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #666;
}

.merchant-pagination{
    display: flex;
    justify-content: center;
    margin-top: 120px;
}

.merchant .swiper-pagination-bullet{
    background: rgba(255, 124, 38, 0.2);
    transition: all 0.3s ease;
    opacity: 1;
    border-radius: 4px;
}

.merchant .swiper-pagination-bullet-active{
    width: 32px;
    background-color: var(--priamry);
}

.creative{
    background-color: #FFF4EE;
    padding-top: 100px;
    padding-bottom: 95px;
}

.creative-title{
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #333;
}

.creative-content{
    margin-top: 82px;
    display: flex;
}

.creative-main{
    width: 63%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.creative-main__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creative-main__text{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 33px;
    font-size: 24px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    font-weight: bold;
}

.creative-main__text p{
    margin: 0;
    color: #fff;
}

.creative-side{
    margin-left: 33px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    background-color: #fff;
    border-radius: 20px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #333;
    position: relative
}

.creative-side__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creative-side__content{
    position: absolute;
    left: 0;
    right: 0;
    bottom:0;
    top: 0;
    padding: 33px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.form{
    background-color: #F9F7F6;
    padding-top: 135px;
    padding-bottom: 70px;
}

.form .inner{
    display: flex;
    align-items: flex-start;
}



.form-title{
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #333;
}

.form-info{
    width: 50%;
    padding-right: 8.3%;
    box-sizing: border-box;
}

.form-info-group{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 53px;
}

.form-info__item + .form-info__item{
    margin-top: 34px;
}

.form-info__item-title{
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #666;
}

.form-info__item-content{
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #333;
    margin-top: 16px;
    margin-bottom: 0;
}

.form-table{
    border-left: 1px solid #eee;
    padding-left: 12%;
    padding-right: 3.45%;
    box-sizing: border-box;
    flex: 1 0 0;
}

.form-table form{
    margin-top: 30px;
}

.form-table__group{
    list-style: none;
    margin: 0;
    padding: 0;
}

.form-table__item + .form-table__item{
    margin-top: 24px;
}

.form-table__item input[type="text"],
.form-table__item input[type="email"],
.form-table__item input[type="number"]{
    width: 100%;
    background-color: #fff;
    height: 54px;
    font-size: 16px;
    color: #666;
    border: none;
    border-radius: 10px;
    outline: none;
    padding: 0 34px;
    box-sizing: border-box;
}

.form-table__item input::placeholder{
    color: #999999;
}

.form-table__code{
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.form-table__code input[type="text"]{
    flex: 1;
    width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-table__captcha{
    display: block;
    height: 54px;
    max-height: 100%;
}

.form-table__grid{
    margin-left: -10px;
    margin-top: -10px;
    display: flex;
    flex-wrap: wrap;
}

.form-table__label{
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-top: 10px;
}

.form-table__radio{
    width: 18px;
    height: 18px;
    margin-top: 0;
    margin-right: 6px;
    margin-bottom: 0;
    margin-left: 0;
}

.form-table__item button{
    background: #FF7C26;
    border-radius: 10px;
    border:none;
    padding: 16px 72px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
}

.platform{
    background-color: #fff;
    padding-top: 92px;
    padding-bottom: 134px;
}

.platform-title{
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #333;
}

.platform-content{
    margin-top: 72px;
    display: flow-root;
}

.platform-group{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: -20px;
    margin-left: -20px;
}

.platform-item{
    width: calc(25% - 20px);
    background: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-left: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 34px;
}

.platform-item__image{
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.platform-item__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-item__name{
    margin-top: 29px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #333;
    text-align: center;
}