body{
    background: #ECF7FF;
}
.bg1{
    position: absolute;
    top: 0px;
    left: 0px;
}
.bg2{
    position: absolute;
    right: 0px;
    top: 743px;
}
.bg3{
    position: absolute;
    right: 0px;
    top: 685px;
}
h1{
    text-align: center;
    font-size: 40px;
    color: #333;
    line-height: 46px;
    margin-top: 56px;
    margin-bottom: 36px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.main{
    width: 1440px;
    background: #FFFFFF;
    border-radius: 40px 40px 40px 40px;
    padding: 68px 80px 88px;
    margin: 36px auto 56px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.main .title{
    font-size: 20px;
    color: #333;
    font-weight: bold;
    line-height: 26px;
}
.main .title span{
    color: #666;
}
.main .mood{
    justify-content: flex-start;
    align-items: center;
}
.main .mood i{
    margin-left: 28px;
    width: 36px;
    height: 36px;
    background: url(/images/work/icon.svg);
    font-size: 0;
}
.main .mood i.active{
    cursor: pointer;
}
.main .mood i:nth-of-type(1){
    background-position-y: -36px;
}
.main .mood i:nth-of-type(1).active{
    background-position-y: -0px;
}
.main .mood i:nth-of-type(2){
    background-position-y: -108px;
}
.main .mood i:nth-of-type(2).active{
    background-position-y: -72px;
}
.main .mood i:nth-of-type(3){
    background-position-y: -180px;
}
.main .mood i:nth-of-type(3).active{
    background-position-y: -144px;
}
.main .mood i:nth-of-type(4){
    background-position-y: -252px;
}
.main .mood i:nth-of-type(4).active{
    background-position-y: -216px;
}
.main .mood i:nth-of-type(5){
    background-position-y: -324px;
}
.main .mood i:nth-of-type(5).active{
    background-position-y: -288px;
}
.main .mood span:last-child{
    font-size: 16px;
    color: #3270FF;
    line-height: 22px;
    margin-left: 26px;
}
.main .mood{
    margin-bottom: 66px;
}
.main .input_box{
    margin-top: 52px;
}
.main .input_box p{
    margin-bottom: 16px;
}
.main .input_box textarea{
    width: 100%;
    height: 190px;
    resize: none;
    border-radius: 12px;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #CFCFCF;
}
.main .input_box textarea:focus{
    border-color: #3270FF;
}
.main .btn_box{
    width: 684px;
    margin: 50px auto 0px;
}
.main .btn_box .btn{
    width: 304px;
    height: 60px;
    border: 1px solid #3270FF;
    line-height: 58px;
    background: #3270FF;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    border-radius: 44px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
.main .btn_box .btn:hover,
.main .btn_box .btn.load{
    background: #00D4FF;
    border-color: #00D4FF;
}
.main .btn_box .btn::before{
    clear: both;
    content: "";
    width: 16px;
    height: 16px;
    background: url(/images/login/loading.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    animation: rotate 1.5s infinite linear;
    opacity: 0;
}
.main .btn_box .btn.load{
    color: transparent;
}
.main .btn_box .btn.load::before{
    opacity: 1;
}
.main .btn_box .btn.v2{
    background: #fff;
    color: #3270FF;
}
.main .btn_box .btn.v2:hover{
    color: #00D4FF;
    border-color: #00D4FF;
}