@import 'styles.css';

.main-content {
    width: 100vw;
}

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

.tabs-view {
    width: 1200px;
    margin: 16px auto;
    padding: 20px;
    background-color: #FAFAFA;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
}

.tabs-view .tabs-lab {
    font-size: 15px;
    color: #999;
}

.tabs-view .tabs-item {
    font-size: 13px;
    color: #333;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 17px;
    cursor: pointer;
    user-select: none;
}

.tabs-view .tabs-item.on {
    color: #fff;
    background-color: #1D50FF;
}

.tabs-view .tabs-item.on a{
    color: #fff;
}





.list-content {
    width: 1200px;
    margin: 20px auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    gap: 50px calc((1200px - 250px * 4) / 3);
}

.list-content .list-item {
    width: 250px;
    padding: 22px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 4px 11px 0 rgba(182, 182, 182, 0.25);
    overflow: hidden;
}

.list-content .list-item .img {
    width: 204px;
    height: 143px;
    overflow: hidden;
}

.list-content .list-item .tit {
    font-size: 15px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 16px 0;
}

.list-content .list-item .lab {
    height: 56px;
    font-size: 13px;
    color: #333;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-content .list-item .btn {
    font-size: 14px;
    color: #fff;
    background-color: #1D50FF;
    padding: 4px 9px;
    margin: 0 auto;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-1000%);
    transition: transform 0.3s ease-in-out;
}

.list-content .list-item .btn a {
    color: #fff;
}

.list-content .list-item .bottom-box {
    width: 100%;
    height: 69%;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    padding: 16px 26px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
}

.list-content .list-item .bottom-box .bb-tit {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.list-content .list-item .bottom-box .bb-lab {
    font-size: 13.5px;
    color: #333;
    margin-top: 16px;
    word-wrap: break-word;
    word-break: break-all;
}

.list-content .list-item:hover {
    box-shadow: 0 4px 11px 0 rgba(182, 182, 182, 0.45);
}

.list-content .list-item:hover::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.list-content .list-item:hover .btn {
    transform: translateX(-50%) translateY(0%);
}

.list-content .list-item:hover .bottom-box {
    transform: translateY(0%);
}

.list-content .list-item:last-child {
    margin-right: auto;
}
.copyright-apply {
    width: 1200px;
    margin: 16px auto;
    padding: 20px;
    /* 使内部按钮水平居中 */
    text-align: center;
}
.copyright-apply button {
    color: #fff;
    background-color: #1D50FF;
    /* 清除按钮默认边框 */
    border: none;
    /* 清除按钮默认内边距和外边距 */
    margin: 0;
    padding: 12px 24px;
    /* 字体大小增大 */
    font-size: 18px;
    /* 圆角优化 */
    border-radius: 6px;
    /* 鼠标悬浮时显示“手”型 */
    cursor: pointer;
    /* 过渡动画，让状态变化更流畅 */
    transition: background-color 0.3s ease;
    /* 使按钮尺寸可控 */
    display: inline-block;
}

/* 鼠标悬浮效果 */
.copyright-apply button:hover {
    background-color: #0F38D3;
}

/* 点击效果 */
.copyright-apply button:active {
    background-color: #0A2CBF;
}

/* 移除按钮获取焦点时的默认outline */
.copyright-apply button:focus {
    outline: none;
    /* 可选：添加自定义焦点样式 */
    box-shadow: 0 0 0 3px rgba(29, 80, 255, 0.3);
}
.process-view {
    width: 100vw;
    background: url("../img/Rectangle674.png") top center/ cover no-repeat;
    padding: 105px 0;
}

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

.process-view .pv-tit span {
    position: relative;
}

.process-view .pv-tit>span::before {
    content: "";
    width: 96px;
    height: 42px;
    background-color: #d8d8d8;
    clip-path: polygon(0 47%, 78% 47%, 98% 0, 100% 4%, 80% 50%, 100% 95%, 98% 100%, 78% 52%, 0 52%);
    position: absolute;
    top: 9px;
    left: -274px;
}

.process-view .pv-tit>span::after {
    content: "";
    width: 96px;
    height: 42px;
    background-color: #d8d8d8;
    clip-path: polygon(0 47%, 78% 47%, 98% 0, 100% 4%, 80% 50%, 100% 95%, 98% 100%, 78% 52%, 0 52%);
    position: absolute;
    top: 9px;
    right: -274px;
    transform: rotate(180deg);
}

.process-list {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 0 120px;
    margin: 75px auto 0;
}

.process-list .pro-item {
    width: 96px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column wrap;
}

.process-list .pro-item .img {
    width: 80px;
    height: 80px;
}

.process-list .pro-item .index {
    font-size: 32px;
    font-weight: bold;
    font-family: 'DINPro', Arial, Helvetica, sans-serif;
    color: #409EFF;
    text-align: center;
    padding: 5px 0;
}

.process-list .pro-item .tit {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.process-list .pro-item .lab {
    font-size: 16px;
    font-weight: bold;
    color: #777;
    text-align: center;
    margin-top: 11px;
}

.trends-view {
    width: 100vw;
    background-color: #fff;
    padding: 80px 0;
}

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

.trends-view .trends-content {
    width: 100%;
}

.trends-view .trends-content .tc-swiper-view {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.trends-view .trends-content .tc-swiper-view .swiper-button-prev {
    left: -80px;
    color: #000;
}

.trends-view .trends-content .tc-swiper-view .swiper-button-next {
    right: -80px;
    color: #000;
}

.trends-view .trends-content .tc-swiper-view .swiper {
    width: 1220px;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row nowrap;
    padding: 30px 20px;
}

.trends-view .trends-content .tc-swiper-view .swiper .swiper-slide {
    width: 284px;
    border-radius: 8px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    /* filter: drop-shadow(0px 3.327px 14.971px rgba(0, 0, 0, 0.15)); */
}

.trends-view .trends-content .tc-swiper-view .swiper .swiper-slide .img {
    width: 100%;
    height: 256px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.trends-view .trends-content .tc-swiper-view .swiper .swiper-slide .info {
    width: 100%;
    height: 174px;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: column wrap;
}

.trends-view .trends-content .tc-swiper-view .swiper .swiper-slide .info .tit {
    font-size: 18px;
    color: #333;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

.trends-view .trends-content .tc-swiper-view .swiper .swiper-slide .info .date {
    font-size: 13px;
    color: #777;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
}

.trends-view .trends-content .tc-swiper-view .swiper .swiper-slide .info .date::before {
    content: "";
    width: 20px;
    height: 20px;
    display: blcok;
    background: url("../img/icons/shijian1.png") center center/ cover no-repeat;
    margin-right: 5px;
}

.bg-linear {
    background: linear-gradient(180deg, #e6e7ec 0%, #f3f4f9 10%, #f9faff 100%);
    padding: 0 0 80px;
}

.info-view {
    width: 1200px;
    padding: 30px;
    background-color: #fff;
    margin: 0 auto;
}

.info-view .img-txt-view {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
    gap: 25px;
    border-bottom: 1px solid #F0F0F0;
}

.info-view .img-txt-view .img-view {
    width: 369px;
    /* height: 267px; */
}

.info-view .img-txt-view .txt-view {
    width: 806px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column wrap
}

.info-view .img-txt-view .txt-view .tit {
    font-size: 21px;
    font-weight: bold;
    color: #000;
}

.info-view .img-txt-view .txt-view .content {
    width: 571px;
    font-size: 12px;
    color: #000;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 10px;
}

.info-view .img-txt-view .txt-view .btn {
    width: 206px;
    height: 43px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    background-color: #1472FF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 20px;
}

.info-view .info-box-view {
    padding: 20px 0 0;
}

.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;
}

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

.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;
}