/* 顶部banner */
.solution-banner {
    width: 100%;
    height: 480px;
    position: relative;
}

.solution-banner .banner-img {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.solution-banner .banner-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
}

.solution-banner .banner-info>div {
    width: 496px;
}

.solution-banner .banner-info h3 {
    font-weight: 600;
    font-size: 34px;
    color: #FFFFFF;
    line-height: 48px;
    margin-bottom: 10px;
}

.solution-banner .banner-info p {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 40px;
    opacity: 0.7;
}



/* tab */
.solution-tab-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 64px;
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    box-sizing: border-box;
}

.solution-tab-wrapper .solution_tab_nav {
    width: 1200px;
    height: 100%;
}

.solution-tab-wrapper .nav_list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.solution-tab-wrapper .nav_list li {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.solution-tab-wrapper .nav_list li a {
    display: block;
    height: 64px;
    line-height: 64px;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    padding: 0 4px 3px 4px;
}

.solution-tab-wrapper .nav_list li a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    background: transparent;
    box-sizing: border-box;
}

.solution-tab-wrapper .nav_list li a.active {
    color: #E4002B
}

.solution-tab-wrapper .nav_list li a.active:after {
    background: #E4002B
}

.solution-tab-wrapper .nav_list li a:hover:not(.active) {
    color: #c00025;
}



/* 内容区域 */
.solution-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #FFFFFF;
}



/* 行业背景 */
.industry-background-wrapper {
    width: 1200px;
    padding: 56px 0;
}

.industry-background-wrapper h3 {
    font-weight: 600;
    font-size: 32px;
    color: #191919;
    line-height: 46px;
    text-align: center;
    margin-bottom: 24px;
}

.industry-background-wrapper>p {
    font-weight: 400;
    font-size: 14px;
    color: #868686;
    line-height: 28px;
}

.industry-background-wrapper>p:nth-of-type(n+2) {
    margin-top: 10px;
}

.industry-background-wrapper img {
    margin: 0 auto;
}



/* 风险区域 */
.risk-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #F8F8F8;
    padding: 56px 0;
}

.risk-wrapper .risk-content {
    width: 1200px;
}

.risk-wrapper .risk-content>h3 {
    font-weight: 600;
    font-size: 32px;
    color: #191919;
    line-height: 46px;
    text-align: center;
    margin-bottom: 24px;
}

.risk-wrapper .risk-content>p:nth-of-type(n+2) {
    margin-top: 10px;
}



/* 解决方案 */
.plan-content-wrapper {
    width: 1200px;
    padding: 56px 0;
}

.plan-content-wrapper h3 {
    font-weight: 600;
    font-size: 32px;
    color: #191919;
    line-height: 46px;
    text-align: center;
    margin-bottom: 24px;
}

.plan-content-wrapper>p {
    font-weight: 400;
    font-size: 14px;
    color: #868686;
    line-height: 28px;
}

.plan-content-wrapper>p:nth-of-type(n+2) {
    margin-top: 10px;
}

.solution-table-wrapper {
    width: 100%;
    margin: 40px 0 0;
    border-radius: 4px;
    border: 1px solid #EDEDED;
}

.solution-table-wrapper .table-container {
    width: 100%;
}

.solution-table-wrapper .table-container tr th {
    padding: 15px 48px;
    background: #EEF0F0;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #191919;
    line-height: 22px;
}

.solution-table-wrapper .table-container tr th:first-child {
    border-radius: 4px 0 0 0;
}

.solution-table-wrapper .table-container tr th:last-child {
    border-radius: 0 4px 0 0;
}

.solution-table-wrapper .table-container tbody tr td {
    padding: 28px 48px;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    color: #191919;
    line-height: 22px;
}

.solution-table-wrapper .table-container tbody tr td:first-child {
    padding: 28px 0 28px 48px;
    width: 280px;
    box-sizing: border-box;
}

.solution-table-wrapper .table-container tbody tr:nth-child(2n) td {
    background: #EEF0F0;
}

.solution-table-wrapper .table-container tbody tr:last-child td:first-child{
    border-radius: 0 0 0 4px;
}

.solution-table-wrapper .table-container tbody tr:last-child td:last-child{
    border-radius: 0 0 4px 0;
}



/* 按钮样式 */
.common_btn {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    background: #E4002B;
    border-radius: 4px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
}

.common_btn:hover {
    background: #EF5769;
}

.common_btn a {
    display: block;
    height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 36px;
}

.common_btn a .right-icon {
    display: inline-block;
    width: 18px;
    height: 14px;
    background: url('../img/home/button-right.png') no-repeat center center;
    margin-left: 8px;
}