.sec1 {
    background: #f5f5f5;
    padding: 70px 0;
}

.sec1 .wrap {
    width: 1400px;
    margin: 0 auto;
}

.sec1 .wrap h1 {
    font-weight: bold;
    font-size: 36px;
    color: #111111;
    text-align: center;
    line-height: 1;
    margin: 0 0 45px;
}

.sec1 .wrap .flex {
    display: flex;
}

.sec1 .wrap .flex .l {
    width: 50%;
}

.sec1 .wrap .flex .r {
    width: 50%;
    height: 480px;
    background: #ffffff;
    border-radius: 0 10px 10px 0;
    padding: 60px 60px 0;
}

.sec1 .wrap .flex .r .r_text {
    margin: 0 0 50px;
}

.sec1 .wrap .flex .r .r_text h2 {
    font-weight: bold;
    font-size: 24px;
    color: #001111;
    margin: 0 0 20px;
}

.sec1 .wrap .flex .r .r_text p {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}

.sec1 .wrap .flex .r .r_text p span {
    color: #111111;
    font-weight: bold;
}

.sec1 .wrap .flex .r .r_tel {
    line-height: 1;
    margin: 0 0 70px;
}

.sec1 .wrap .flex .r .r_tel h5 {
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    margin: 0 0 10px;
}

.sec1 .wrap .flex .r .r_tel p {
    font-weight: bold;
    font-size: 36px;
    color: #ff8c1f;
}

.sec1 .wrap .flex .r .r_flex {
    display: flex;
}

.sec1 .wrap .flex .r .r_flex .item {
    width: 140px;
    height: 50px;
    background: #005cff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec1 .wrap .flex .r .r_flex .item p {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.sec1 .wrap .flex .r .r_flex .item.policy {
    background: #ff8c1f;
    margin: 0 0 0 10px;
}

.sec2 {
    padding: 64px 0 88px;
}

.sec2 .wrap {
    width: 1400px;
    margin: 0 auto;
}

.sec2 .wrap .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 55px;
}

.sec2 .wrap .title h1 {
    font-weight: bold;
    font-size: 36px;
    color: #111111;
}

.sec2 .wrap .title form {
    width: 300px;
    height: 42px;
    border-radius: 21px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.sec2 .wrap .title form input {
    width: 240px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
}

.sec2 .wrap .title form input::placeholder {
    color: #999999;
}

.sec2 .wrap .title form button {
    background: unset;
    transition: 0.6s;
    color: #333333;
}

.sec2 .wrap .title form button:hover {
    color: #005cff;
}

.sec2 .wrap .select_box {
    display: flex;
    align-items: center;
    margin: 0 0 90px;
}

.sec2 .wrap .select_box h5 {
    font-weight: 500;
    font-size: 16px;
    color: #121212;
    margin: 0 28px 0 0;
}

.sec2 .wrap .select_box .select_item {
    display: flex;
    align-items: center;
    margin: 0 124px 0 0;
}

.sec2 .wrap .select_box .select_item .cir {
    width: 18px;
    height: 18px;
    background: #f5f6f7;
    border-radius: 50%;
    border: 1px solid #111111;
    margin: 0 10px 0 0;
    transition: 0.6s;
}

.sec2 .wrap .select_box .select_item p {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    transition: 0.6s;
}

.sec2 .wrap .select_box .select_item:hover p {
    color: #005cff;
}

.sec2 .wrap .select_box .select_item.on .cir {
    background: #005cff;
}

.sec2 .wrap .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec2 .wrap .content .item {
    display: block;
    width: 660px;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 1;
    padding: 0 0 33px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 33px;
    transition: 0.6s;
    position: relative;
}

.sec2 .wrap .content .item:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #005cff;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 1s;
}

.sec2 .wrap .content .item:hover {
    color: #005cff;
}

.sec2 .wrap .content .item:hover:after {
    transform: scaleX(1);
}

.page {
    margin-top: 30px;
}

.fixed {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 19991209;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
}

.fixed .fixed_shadow {
    width: 100vw;
    height: 100vh;
    background: #202226;
    opacity: 0.5;
}

.fixed .fixed_box {
    position: relative;
    z-index: 9;
    width: 1100px;
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 70px 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    opacity: 0;
    transition: 0.6s;
    pointer-events: none;
}

.fixed .fixed_box h1 {
    font-weight: 500;
    font-size: 24px;
    color: #111111;
    text-align: center;
    line-height: 1;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0 40px;
}

.fixed .fixed_box .fixed_box_content {
    overflow-y: scroll;
    max-height: 520px;
}

.fixed .fixed_box .fixed_box_content p {
    font-weight: 400;
    font-size: 14px;
    color: #444444;
    line-height: 32px;
}

.fixed .fixed_box .fixed_box_content h5 {
    font-weight: bold;
    font-size: 16px;
    color: #111111;
    line-height: 32px;
}

.fixed.fixed_on {
    opacity: 1;
    pointer-events: auto;
}

.fixed.fixed_on .fixed_box.on {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

@media screen and (max-width: 1919px) {
  .sec1{
    padding: 3.6458333333vw 0px;
  }
  .sec1 .wrap{
    width: 72.9166666667vw;
  }
  .sec1 .wrap h1{
    font-size: 1.875vw;
    margin: 0px 0px 2.34375vw;
  }
  .sec1 .wrap .flex .r{
    height: 25vw;
    border-radius: 0px 0.5208333333vw 0.5208333333vw 0px;
    padding: 3.125vw 3.125vw 0px;
  }
  .sec1 .wrap .flex .r .r_text{
    margin: 0px 0px 2.6041666667vw;
  }
  .sec1 .wrap .flex .r .r_text h2{
    font-size: 1.25vw;
    margin: 0px 0px 1.0416666667vw;
  }
  .sec1 .wrap .flex .r .r_text p{
    font-size: 0.8333333333vw;
    line-height: 1.5625vw;
  }
  .sec1 .wrap .flex .r .r_tel{
    margin: 0px 0px 3.6458333333vw;
  }
  .sec1 .wrap .flex .r .r_tel h5{
    font-size: 0.8333333333vw;
    margin: 0px 0px 0.5208333333vw;
  }
  .sec1 .wrap .flex .r .r_tel p{
    font-size: 1.875vw;
  }
  .sec1 .wrap .flex .r .r_flex .item{
    width: 7.2916666667vw;
    height: 2.6041666667vw;
    border-radius: 1.3020833333vw;
  }
  .sec1 .wrap .flex .r .r_flex .item p{
    font-size: 0.8333333333vw;
  }
  .sec1 .wrap .flex .r .r_flex .item.policy{
    margin: 0px 0px 0px 0.5208333333vw;
  }
  .sec2{
    padding: 3.3333333333vw 0px 4.5833333333vw;
  }
  .sec2 .wrap{
    width: 72.9166666667vw;
  }
  .sec2 .wrap .title{
    margin: 0px 0px 2.8645833333vw;
  }
  .sec2 .wrap .title h1{
    font-size: 1.875vw;
  }
  .sec2 .wrap .title form{
    width: 15.625vw;
    height: 2.1875vw;
    border-radius: 1.09375vw;
    padding: 0px 1.0416666667vw;
  }
  .sec2 .wrap .title form input{
    width: 12.5vw;
    font-size: 0.7291666667vw;
  }
  .sec2 .wrap .select_box{
    margin: 0px 0px 4.6875vw;
  }
  .sec2 .wrap .select_box h5{
    font-size: 0.8333333333vw;
    margin: 0px 1.4583333333vw 0px 0px;
  }
  .sec2 .wrap .select_box .select_item{
    margin: 0px 2.4583333333vw 0px 0px;
  }
  .sec2 .wrap .select_box .select_item .cir{
    width: 0.9375vw;
    height: 0.9375vw;
    margin: 0px 0.5208333333vw 0px 0px;
  }
  .sec2 .wrap .select_box .select_item p{
    font-size: 0.7291666667vw;
  }
  .sec2 .wrap .content .item{
    width: 34.375vw;
    font-size: 0.8333333333vw;
    padding: 0px 0px 1.71875vw;
    margin-bottom: 1.71875vw;
  }
  .page{
    margin-top: 1.5625vw;
  }
  .fixed .fixed_box{
    width: 57.2916666667vw;
    border-radius: 0.5208333333vw;
    padding: 2.0833333333vw 3.6458333333vw 4.1666666667vw;
  }
  .fixed .fixed_box h1{
    font-size: 1.25vw;
    padding: 0px 0px 1.0416666667vw;
    margin: 0px 0px 2.0833333333vw;
  }
  .fixed .fixed_box .fixed_box_content{
    max-height: 27.0833333333vw;
  }
  .fixed .fixed_box .fixed_box_content p{
    font-size: 0.7291666667vw;
    line-height: 1.6666666667vw;
  }
  .fixed .fixed_box .fixed_box_content h5{
    font-size: 0.8333333333vw;
    line-height: 1.6666666667vw;
  }
}
@media screen and (max-width: 1024px) {
    .sec1 .wrap {
        width: 90%;
    }
    .sec1 {
        padding: 50px 0;
    }
    .sec1 .wrap h1 {
        font-size: 24px;
        margin: 0 0 30px;
    }
    .sec1 .wrap .flex {
        display: block;
    }
    .sec1 .wrap .flex .l,.sec1 .wrap .flex .r {
        width: 100%;
    }
    .sec1 .wrap .flex .r {
        height: unset;
        padding: 20px;
    }
    .sec1 .wrap .flex .r .r_flex .item p {
        font-size: 14px;
        
    }
    .sec1 .wrap .flex .r .r_flex .item {
        width: 100px;
        height: 35px;
        border-radius: 35px;
    }
    .sec1 .wrap .flex .r .r_flex .item.policy {
        margin: 0 0 0 15px;
    }
    .sec1 .wrap .flex .r .r_text {
        margin: 0 0 20px;
    }
    .sec1 .wrap .flex .r .r_text h2 {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .sec1 .wrap .flex .r .r_text p {
        font-size: 14px;
        line-height: 1.6;
    }
    .sec1 .wrap .flex .r .r_tel {
        margin: 0 0 15px;
    }
    .sec1 .wrap .flex .r .r_tel h5 {
        font-size: 14px;
        margin: 0 0 5px;
    }
    .sec1 .wrap .flex .r .r_tel p {
        font-size: 18px;
    }
    .sec2 .wrap {
        width: 90%;
    }
    .sec2 {
        padding: 40px 0 ;
    }
    .sec2 .wrap .title h1 {
        font-size: 24px;
    }
    .sec2 .wrap .title form {
        width: 210px;
        height: 35px;
        border-radius: 35px;
        padding: 0 10px;
    }
    .sec2 .wrap .title form input {
        width: 170px;
        font-size: 14px;
    }
    .sec2 .wrap .select_box .select_item p {
        font-size: 14px;
        line-height: 2;
    }
    .sec2 .wrap .select_box h5 {
        font-size: 14px;
        line-height: 2;
    }
    .sec2 .wrap .select_box {
        flex-wrap: wrap;
    }
    .sec2 .wrap .select_box .select_item .cir {
        width: 8px;
        height: 8px;
    }
    .sec2 .wrap .title {
        margin: 0 0 10px;
    }
    .sec2 .wrap .content .item {
        width: 100%;
    }
    .sec2 .wrap .content .item {
        font-size: 16px;
    }
    .sec2 .wrap .select_box .select_item {
        margin: 0 15px 0px 0;
    }
    .sec2 .wrap .content .item {
        padding: 0 0 15px;
        margin-bottom: 20px;
    }
    .sec2 .wrap .select_box {
        margin: 0 0 30px;
    }
    .page {
        margin: 30px 0 0;
    }
    .fixed .fixed_box {
        width: 90vw;
        
    }
    .fixed .fixed_box h1 {
        font-size: 24px;
        padding: 0 0 10px;
        margin: 0 0 20px;
    }
    .fixed .fixed_box {
        border-radius: 5px;
        padding: 30px 20px 40px;
    }
    .fixed .fixed_box .fixed_box_content h5 {
        font-size: 18px;
       line-height: inherit;
       margin: 0 0 10px;
    }
    .fixed .fixed_box .fixed_box_content p {
        font-size: 14px;
        line-height: 1.6;
    }
    .fixed .fixed_box .fixed_box_content {
        max-height: 60vh;
    }
}