@import 'styles.css';

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-content {
    width: 100vw;
}

.header-img {
    width: 100%;
    height: calc(506/1920*100vw);
    position: relative;
}

.soft-service-view {
    width: 100%;
    background: linear-gradient(87deg, #FFF 0%, #f4f7ff 59%, #f4f7ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 50px;
    padding: 80px 0;
}

.soft-service-view .big-img {
    width: 590px;
    height: 386px;
}

.soft-service-view .ss-info {
    width: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.soft-service-view .ss-info .ssi-tit {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.soft-service-view .ss-info .ssi-tit span {
    font-size: 50px;
    color: #000;
}

.soft-service-view .ss-info .ssi-tit i {
    font-size: 18px;
    color: #3769F6;
    text-decoration: none;
    font-style: normal;
    display: none;
}

.soft-service-view .ss-info .ssi-lab {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-top: 20px;
}

.soft-service-view .ss-info .ssi-content {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}

.soft-service-view .ss-info ul {
    margin-top: 20px;
}

.soft-service-view .ss-info ul li {
    font-size: 13px;
    color: #000;
    padding: 7px 0 7px 21px;
    position: relative;
}

.soft-service-view .ss-info ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #19191a;
    clip-path: polygon(35.33% 0%, 78% 49.67%, 34% 100%, 25.67% 93%, 65% 49.67%, 27.33% 8.67%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.soft-service-view .ss-info .btn {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 13px 44px;
    border-radius: 60px;
    background-color: #3769F6;
    margin-top: 30px;
    cursor: pointer;
}

.process-view {
    width: 100%;
    padding: 80px 0;
}

.process-view .pv-tit {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.process-view .pv-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 150px;
    margin-top: 100px;
}

.process-view .pv-content .pv-item {
    width: 172px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.process-view .pv-content .pv-item .pv-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.process-view .pv-content .pv-item .pv-lab {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 40px;
}

.process-view .pv-content .pv-item .icon {
    position: absolute;
    top: 25px;
    right: -102px;
}

.paper-list-view {
    width: 100%;
    padding: 80px 0;
    background-color: #F4F7FF;
    position: relative;
}

.paper-list-view .plv-tit {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.paper-list-view .plv-list {
    width: 1290px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 24px;
    margin-top: 40px;
}

.paper-list-view .plv-list .list-item {
    width: 293px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex: 0 0 auto;
    transition: box-shadow 0.5s cubic-bezier(.34, .69, .74, 1.4);
}

.paper-list-view .plv-list .list-item .hq-img {
    width: 130px;
    height: 170px;
    overflow: hidden;
}

.paper-list-view .plv-list .list-item .hq-info {
    width: 128px;
    height: 170px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.paper-list-view .plv-list .list-item .hq-info .hq-name {
    width: 100%;
    font-size: 18px;
    color: #333;
    position: relative;
}

.paper-list-view .plv-list .list-item .hq-info .hq-name a {
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paper-list-view .plv-list .list-item .hq-info .hq-name::after {
    content: '';
    width: 90%;
    height: 3px;
    background-color: #F0F0F0;
    position: absolute;
    bottom: -6px;
    left: 0;
    /* transition: all 0.5s cubic-bezier(.23, -0.41, .76, .23); */
    transition: all 0.5s cubic-bezier(.34, .69, .74, 1.4);
}

.paper-list-view .plv-list .list-item .hq-info .hq-value {
    width: 100%;
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.paper-list-view .plv-list .list-item .hq-info .hq-value span.lab {
    color: #686869;
    flex: 0 0 auto;
}

.paper-list-view .plv-list .list-item .hq-info .hq-value span.txt {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paper-list-view .plv-list .list-item:hover {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.paper-list-view .plv-list .list-item:hover .hq-info .hq-name,
.paper-list-view .plv-list .list-item:hover .hq-info .hq-name a {
    color: #2884DA;
}

.paper-list-view .plv-list .list-item:hover .hq-info .hq-name::after {
    width: 0;
    background-color: #2884DA;
}

.paper-list-view .swiper-content {
    width: 1245px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.paper-list-view .swiper-content .swiper-button-prev {
    left: -80px;
    top: 140px;
}

.paper-list-view .swiper-content .swiper-button-next {
    right: -80px;
    top: 140px;
}

.apply-content {
    width: 100vw;
    padding: 80px 0;
    background-color: #fff;
    background: linear-gradient(87deg, #FFF 0%, #f4f7ff 59%, #f4f7ff 100%);
}

.apply-content .apply-box {
    width: 1200px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 2px 5px 20px 2px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    padding: 0 0 80px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}


.apply-content .apply-box .ab-close {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.apply-content .apply-box .ab-close .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}




.apply-content .apply-box .ab-tit {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.apply-content .apply-box .form-box {
    width: 460px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.apply-content .apply-box .form-box .form-item {
    width: 100%;
}

.apply-content .apply-box .form-box .form-item .lab {
    font-size: 18px;
    font-weight: bold;
    color: #303133;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.apply-content .apply-box .form-box .form-item .lab i {
    text-decoration: none;
    font-style: normal;
}

.apply-content .apply-box .form-box .form-item .lab span {
    position: relative;
}

.apply-content .apply-box .form-box .form-item .lab span::after {
    content: '*';
    font-size: 12px;
    color: #F56C6C;
    margin-left: 5px;
}

.apply-content .apply-box .form-box .form-item .val {
    width: 100%;
    margin-top: 5px;
}

.apply-content .apply-box .form-box .form-item .val input {
    width: 100%;
    border: 1px solid #DCDFE6;
    background-color: #fff;
    border-radius: 4px;
    padding: 12px;
    font-size: 18px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.apply-content .apply-box .form-box .form-item .val input::placeholder {
    color: #A8ABB2;
}

.apply-content .apply-box .form-box .form-item .val input:focus {
    border-color: #DCDFE6;
}

.apply-content .apply-box .form-box .form-btn {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-content .apply-box .form-box .form-btn .btn {
    width: 214px;
    height: 68px;
    font-size: 20px;
    font-weight: bold;
    color: #409EFF;
    text-align: center;
    border: 1px solid #409EFF;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.apply-content .apply-box .form-box .form-btn .btn.solid {
    background-color: #409EFF;
    color: #fff;
}

.apply-content .apply-box .form-box .form-btn.onebtn {
    justify-content: center;
}

.apply-content .apply-box .form-box .form-btn.onebtn .btn.solid {
    width: 270px;
}

.apply-pop-box {
    display: none;
}

.apply-pop-view {
    width: 755px;
    background-color: #fff;
    border-radius: 8px;
    padding: 46px 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.apply-pop-view .tit {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.apply-pop-view .form-view {
    width: 460px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
}

.apply-pop-view .form-view .form-item {
    width: 100%;
}

.apply-pop-view .form-view .form-item .label {
    font-size: 18px;
    font-weight: bold;
    color: #303133;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.apply-pop-view .form-view .form-item .label span::after {
    content: '*';
    font-size: 12px;
    color: #F56C6C;
    margin-left: 5px;
}

.apply-pop-view .form-view .form-item .input {
    width: 100%;
    margin-top: 5px;
}

.apply-pop-view .form-view .form-item .input input {
    width: 100%;
    border: 1px solid #DCDFE6;
    background-color: #fff;
    border-radius: 4px;
    padding: 12px;
    font-size: 18px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.apply-pop-view .form-view .form-item .input textarea::placeholder,
.apply-pop-view .form-view .form-item .input input::placeholder {
    color: #A8ABB2;
}

.apply-pop-view .form-view .form-item .input textarea:focus,
.apply-pop-view .form-view .form-item .input input:focus {
    border-color: #DCDFE6;
}

.apply-pop-view .form-view .form-item textarea {
    width: 100%;
    height: 147px;
    font-size: 18px;
    color: #333;
    border: 1px solid #DCDFE6;
    resize: none;
    box-sizing: border-box;
    padding: 12px;
    outline: none;
    box-sizing: border-box;
}

.apply-pop-view .btn {
    width: 270px;
    height: 68px;
    font-size: 20px;
    color: #fff;
    background-color: #409EFF;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
}

.apply-pop-view .closeBtn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.apply-pop-view .closeBtn i {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #333;
    clip-path: polygon(20% 15%, 15% 20%, 45% 50%, 15% 80%, 20% 85%, 50% 55%, 80% 85%, 85% 80%, 55% 50%, 85% 20%, 80% 15%, 50% 45%);
}

.apply-pop-view-mask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.success-view {
    width: 990px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 0 40px;
    border-radius: 14px 14px 0 0;
    z-index: 1000;
}

.success-view .sv-tit {
    width: 100%;
    height: 198px;
    text-indent: -2000px;
    overflow: hidden;
    background: url("../img/successtit.png") top center/ cover no-repeat;
}

.success-view .sv-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0 0;
}

.success-view .sv-content p {
    font-size: 25px;
    font-weight: bold;
    color: #333;
}

.success-view .sv-content p.tit {
    padding-bottom: 40px;
}

.success-view .sv-btn {
    width: 300px;
    height: 46px;
    font-size: 20px;
    font-weight: bold;
    color: #3A72FF;
    border: 1px solid #3A72FF;
    border-radius: 25px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    cursor: pointer;
}