
/* Layout */
.content {
    background-color: #fff;
}
.m-width-1280 {
    width: 1280px;
    margin: 0 auto;
}

.bg-transparent{
    background: transparent !important;
}

.content .m-width-1280-override {
    width: 100% !important;
    margin: 0!important;
}
.content .m-width-1280-override>div {
    width: 1280px;
    margin: 0 auto;
    position: relative;
}
.content .inner-w1280 {
    width: 1280px;
    margin: 0 auto;
}

/* Banner */
.banner {
    position: relative;
    height: 560px;
    overflow: hidden;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .m-width-1280 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none; /* Let clicks pass through to carousel where no content */
    z-index: 10;
}

/* Login Box */
.login-box {
    position: absolute;
    top: 120px;
    right: 80px;
    width: 320px;
    height: 380px;
    background: #ffffff;
    padding: 32px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    z-index: 100;
    pointer-events: auto;
    box-shadow: 0 0 12px 0 rgba(47, 53, 52, 0.12);
}
.login-box.welcome {
    background: rgba(255,255,255,0.92);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(59,131,242,0.15);
    padding: 24px 28px;
    text-align: center;
}
.login-title {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 33px;
}
.login-box.welcome .login-title {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 16px;
    padding-bottom: 0;
}
.login-title a {
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    padding-bottom: 10px;
    margin-bottom: -11px;
}
.login-title a.active {
    color: #3B83F2;
    border-bottom: 2px solid #3B83F2;
    font-weight: bold;
}
.login-title h3 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
.login-box.welcome .login-title h3 {
    color: #3B83F2;
    position: relative;
    padding-bottom: 8px;
}
.login-box.welcome .login-title h3:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background-color: #3B83F2;
    border-radius: 2px;
}
.login-title .qrcode-login-tab img {
    height: 24px;
    vertical-align: middle;
}
.login-box .layui-form-item{
    margin-bottom: 16px;
}
.login-box .layui-form-item input{
    height: 40px;
    border-radius: 4px;
}
.login-box .captcha-img{
    height: 38px;
    width: 82px;
    margin-left: 16px;
    border: 1px solid #E7E7E7;
}
.login-btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: linear-gradient(90deg, #2959C4 0%, #5C96F6 100%);
    color: #ffffff;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 16px;
}
.login-box.welcome .login-btn {
    height: 42px;
    line-height: 42px;
    border-radius: 6px;
    background-image: linear-gradient(90deg, #4079F2 0%, #3B83F2 100%);
    box-shadow: 0 6px 12px rgba(59,131,242,0.25);
}
.login-btn.btn-red {
    background-color: #FF5722;
}
.login-box.welcome .layui-text p {
    font-size: 16px;
    color: #333;
    margin: 6px 0;
}
.regist-box {
    text-align: right;
    margin-top: 16px;
    font-size: 12px;
    color: #999;
}
.regist-box a {
    color: #3B83F2;
    margin-left: 10px;
}
.qrcode-login-content {
    text-align: center;
    padding: 20px 0;
}
.login-code-tip {
    margin-top: 10px;
    color: #666;
}

/* Search Box Container */
.search-box {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    padding: 20px 20px 56px 20px;
    font-size: 14px;
    border-radius: 4px;
}

/* Top Nav Tabs inside Search Box */
.search-box .search-tab {
    display: flex;
    background-color: #fff; /* Dark blue matching screenshot */
    margin: -20px -20px 0 -20px; /* Counteract search-box padding */
    height: 108px;
    border-radius: 4px;
    box-shadow: 0 8px 16px -6px rgba(47, 53, 52, 0.08);
    position: relative;
    top: -30px;
}

.search-box .search-tab .search-tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #313131;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
    font-weight: 700;
    border-right: 1px solid #F1F5F9;
    text-decoration: none;
}
.search-box .search-tab .search-tab-item:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.search-box .search-tab .search-tab-item:last-child {
    border-right: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search-box .search-tab .search-tab-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 8px;
}

.search-box .search-tab .search-tab-item img {
    filter: invert(60%) sepia(90%) saturate(1000%) hue-rotate(200deg) brightness(100%) contrast(100%);
}

.search-box .search-tab .search-tab-item.active img {
    filter: none;
}

.search-box .search-tab .search-tab-item.active {
    color: #fff;
    background: url("/static/project/img/index/nav-bg.png") no-repeat center center;
    background-size: 100%;
}

.search-box .search-tab .search-tab-item:hover {
    color: #fff;
    background: url("/static/project/img/index/nav-bg.png") no-repeat center center;
    background-size: 100%;
}

.search-box .search-tab .search-tab-item:hover img {
    filter: none;
}

/* Service Tab inside Search Box (通关服务/资源对接) */
.search-box .service-tab {
    display: flex;
    vertical-align: center;
    justify-content: center;
    margin-bottom: 25px;
}

.search-box .service-tab .service-tab-item {
    width: 248px;
    height: 56px;
    position: relative;
    cursor: pointer;
    color: #555;
    font-size: 20px;
    line-height: 56px;
    font-weight: bold;
    text-align: center;
    background: #F8FAFC;
}

.search-box .service-tab .service-tab-item:first-child{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.search-box .service-tab .service-tab-item:last-child{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search-box .service-tab .service-tab-item.active {
    background: #186CEA;
    color: #fff;
}

/* Search Input Row */
.search-box .search-input-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

.search-box .search-input-row label {
    font-weight: bold;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
}

.search-box .search-input-row input {
    width: 300px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e6e6e6;
    padding: 0 10px;
    margin-right: 10px;
    border-radius: 2px;
}

.search-box .search-input-row .search-btn {
    height: 38px;
    line-height: 38px;
    padding: 0 20px;
    background-color: #3B83F2;
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
}

/* Service Content Grid */
.search-box .service-content > div > div {
    display: flex;
    align-items: flex-start;
}

.search-box .service-content .content-title {
    width: 240px;
    flex-shrink: 0;
}

.search-box .service-content .content-title img {
    width: 100%;
    height: auto;
    display: block;
}

.search-box .service-content .content-app-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    padding-left: 32px;
    align-content: flex-start;
}

.search-box .service-content .content-app-list li {
    width: 285px;
    height: 212px;
    margin-right: 16px;
    margin-bottom: 20px;
    background: #F8FAFC;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search-box .service-content .content-app-list li:nth-child(3n) {
    margin-right: 0;
}

.search-box .service-content .content-app-list li .content-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    color: #313131;
}

.search-box .service-content .content-app-list li .content-app-item img{
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.search-box .service-content .content-app-list li .content-app-item:hover {
    color: #3B83F2;
}

.search-box .service-content .content-app-list li img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.search-box .service-content .content-app-list li span {
    font-size: 14px;
}


/* News Wrap */
.news-bg{
    width: 100% !important;
    margin: 0 !important;
    background: url("/static/project/img/index/area-bg-2.png");
}
.news-wrap {
    padding: 56px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.news-wrap .news-box.news-info {
}

.news-wrap .news-box.news-gov {
}

.news-wrap .news-box .news-title {
    text-align: left;
    background: transparent;
    margin-bottom: 24px;
}

.news-wrap .news-box .news-title h3 {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.news-wrap .news-box .news-title a.more {
    float: right;
    font-size: 14px;
    line-height: 31px;
    height: 31px;
    display: block;
    color: #fff;
}

.news-wrap .news-box .news-content {
    width: 580px;
    height: 208px;
    padding: 36px 24px 36px 24px;
    background: #fff;
}

.news-wrap .news-box .news-content li {
    list-style: none;
}

.news-wrap .news-box .news-content li.news-item {
    position: relative;
    text-align: left;
    height: 35px;
    line-height: 35px;
}

.news-wrap .news-box .news-content li.news-item::before {
    content: "●";
    color: #999;
    font-size: 14px;
    margin: 0 20px 0 16px;
}

.news-wrap .news-box .news-content li.news-item.new::before {
    content: "";
    height: 20px;
    width: 37px;
    margin: 8px 8px 0 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-image: url("/static/project/img/index/new.png");
}

.news-wrap .news-box .news-content li.news-item .news-item-title {
    display: inline-block;
    width: calc(100% - 140px);
    font-size: 14px;
    color: #313131;
    text-overflow: ellipsis;
    vertical-align: top;
    cursor: pointer;
}

.news-wrap .news-box .news-content li.news-item .news-item-title:hover{
    color: #3B83F2;
    text-decoration-line: underline;
}

.news-wrap .news-box .news-content li.news-item .news-item-date {
    position: absolute;
    right: 0;
    font-size: 14px;
    color: #97979C;
}

/* Corp Box */
.corp-box{
    margin-top: 15px;
}

.corp-box .corp-title {
    padding: 5px 15px 0 15px;
    height: 54px;
    line-height: 55px;
    border-bottom: 1px solid #eeeeee;
    text-align: left;
}

.corp-box .corp-title h3 {
    position: relative;
    display: inline-block;
    height: 55px;
    line-height: 55px;
    font-size: 20px;
    font-weight: bold;
    color: #3B83F2;
}

.corp-box .corp-title h3:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 16px;
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("/static/project/img/index/订舱入口.png");
}

.corp-box .corp-content {
    position: relative;
    padding: 20px;
    height: 80px;
}

.corp-box .corp-content .corp-page-left,
.corp-box .corp-content .corp-page-right {
    position: absolute;
    top: 40px;
    cursor: pointer;
}

.corp-box .corp-content .corp-page-left {
    left: 10px;
}
.corp-box .corp-content .corp-page-right {
    right: 10px;
}
.corp-box .corp-content .corp-list-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.corp-box .corp-content .corp-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 9999px; /* wide enough */
}
.corp-box .corp-content .corp-list li {
    float: left;
    width: 209px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.corp-box .corp-content .corp-list li img {
    max-width: 180px;
    max-height: 70px;
}

/* Service Box */
.service-box {
    margin-top: 15px;
    background-color: #fff;
    box-shadow: 8px 8px 12px 0 #3B5C8F0A;
}
.service-box .service-tab {
    height: 55px;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
    position: relative;
}
.service-box .service-tab .service-tab-item {
    position: relative;
    display: block;
    float: left;
    height: 54px;
    width: 33%;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
}

.service-box .service-tab .service-tab-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    transition: all 0.3s;
    border-radius: 2px;
    background: #3C87FC;
    width: 0;
}

.service-box .service-tab .service-tab-item:hover:after,
.service-box .service-tab .service-tab-item.active:after {
    width: 100%;
}

.service-box .service-tab .service-tab-item h3 {
    position: relative;
    display: inline-block;
    height: 55px;
    line-height: 55px;
    font-size: 20px;
    color: #555555;
    font-weight: normal;
}

.service-box .service-tab .service-tab-item:hover h3,
.service-box .service-tab .service-tab-item.active h3 {
    font-weight: bold;
    color: #3B83F2;
}

.service-box .service-tab .service-tab-item h3:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 16px;
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left center;
}

.service-box .service-tab .service-tab-item.tab-item-1 h3:before {
    background-image: url("/static/project/img/index/货运服务-未选中.png");
}

.service-box .service-tab .service-tab-item.tab-item-1:hover h3:before,
.service-box .service-tab .service-tab-item.tab-item-1.active h3:before {
    background-image: url("/static/project/img/index/货运服务-选中.png");
}

.service-box .service-tab .service-tab-item.tab-item-2 h3:before {
    background-image: url("/static/project/img/index/机场服务-未选中.png");
}

.service-box .service-tab .service-tab-item.tab-item-2:hover h3:before,
.service-box .service-tab .service-tab-item.tab-item-2.active h3:before {
    background-image: url("/static/project/img/index/机场服务-选中.png");
}

.service-box .service-tab .service-tab-item.tab-item-3 h3:before {
    background-image: url("/static/project/img/index/金融服务-未选中.png");
}

.service-box .service-tab .service-tab-item.tab-item-3:hover h3:before,
.service-box .service-tab .service-tab-item.tab-item-3.active h3:before {
    background-image: url("/static/project/img/index/金融服务-选中.png");
}

.service-box .service-content {
    background-color: #ffffff;
}

.service-box .service-content > div {
    padding: 20px;
}

.service-box .service-content > div.hidden {
    display: none;
}

.service-box .service-content > div > div {
    display: flex;
    justify-content: center;
}

.service-box .service-content .content-title {
    width: 320px;
    height: 458px;
}

/* Content Box generic */
.content-box-index {
    background-color: #ffffff;
}

/* Industry Feature Service */
.industry-box{
    background: url("/static/project/img/index/area-bg-1.png");
    padding: 56px 0;
    width: 100% !important;
    margin: 0 !important;
}
.industry-box .industry-title {
}
.industry-box .industry-title h3 {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
}
.industry-box .industry-content{
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px 0 rgba(47, 53, 52, 0.08);
}
.industry-box .industry-hero{
    width: 300px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.industry-box .industry-hero img{
    width: 321px;
    height: auto;
    display: block;
}
.industry-box .industry-cards{
    display: flex;
    gap: 0;
}
.industry-box .industry-card{
    width: 299px;
    height: 84px;
    padding: 80px 64px;
    background: #ffffff;
    border-right: 1px solid #eee;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    gap: 0;
}
.industry-box .industry-card .industry-card-img{
    width: 64px;
    height: 64px;
    margin: 10px 48px 10px 0;
}
.industry-box .industry-card .industry-card-img img{
    width: 64px;
    height: 64px;
}
.industry-box .industry-card:last-child{
    border-right: none;
}
.industry-box .industry-card h4{
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 16px;
}
.industry-box .industry-card p{
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* 触摸/悬停效果 */
.industry-box .industry-card:hover,
.industry-box .industry-card.touch-active{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,131,242,0.15);
    background-color: #f7fbff;
}
.industry-box .industry-card:hover h4,
.industry-box .industry-card.touch-active h4{
    color: #3B83F2;
}
.industry-box .industry-card:active{
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(59,131,242,0.12);
}

/* Supplier Box */
.supplier-box{
    padding: 56px 0;
}
.supplier-box .supplier-title{
    /* 去除会影响页面结构 */
    border-bottom: 1px solid #fff;
}
.supplier-box .supplier-title h3{
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
}
.supplier-box .supplier-title a.more{
    float: right;
    color: #666666;
    font-size: 14px;
}
.supplier-box .supplier-content{
    display: flex;
    width: 100%;
}
.supplier-box .supplier-side{
    width: 192px;
    height: 398px;
    padding: 9px 24px;
    flex-shrink: 0;
    border-right: 1px solid #f0f0f0;
    position: relative;
    background: url("/static/project/img/index/supplier-bg.png");
}
.supplier-box .supplier-side .supplier-nav-btn{
    display: block;
    height: 16px;
    text-align: center;
    color: #999;
    padding: 4px 0;
}
.supplier-box .supplier-side .supplier-nav-btn img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.supplier-box .supplier-side .supplier-nav-btn.disabled{
    color: #ccc;
    cursor: default;
}
.supplier-box .supplier-side .supplier-nav-btn:hover{
    color: #3B83F2;
}
.supplier-box .supplier-side .supplier-nav-viewport{
    overflow: hidden;
    position: relative;
}
.supplier-box .supplier-side .supplier-nav-list{
    position: relative;
    top: 0;
    padding-right: 0;
}
.supplier-box .supplier-side li{
    height: 50px;
    line-height: 50px;
    margin-left: 2px;
    background: transparent;
    border-radius: 0;
    text-align: center;
    padding-left: 0;
    display: flex;
}
.supplier-box .supplier-side li .supplier-nav-img {
    width: 16px;
    height: 16px;
    margin: 17px 16px 17px 14px;
}
.supplier-box .supplier-side li .supplier-nav-img-0 {
    background: url("/static/project/img/index/supplier-nav-img-0.png");
}
.supplier-box .supplier-side li .supplier-nav-img-1 {
    background: url("/static/project/img/index/supplier-nav-img-1.png");
}
.supplier-box .supplier-side li .supplier-nav-img-2 {
    background: url("/static/project/img/index/supplier-nav-img-2.png");
}
.supplier-box .supplier-side li .supplier-nav-img-3 {
    background: url("/static/project/img/index/supplier-nav-img-3.png");
}
.supplier-box .supplier-side li .supplier-nav-img-4 {
    background: url("/static/project/img/index/supplier-nav-img-4.png");
}
.supplier-box .supplier-side li .supplier-nav-img-5 {
    background: url("/static/project/img/index/supplier-nav-img-5.png");
}
.supplier-box .supplier-side li .supplier-nav-img-6 {
    background: url("/static/project/img/index/supplier-nav-img-6.png");
}
.supplier-box .supplier-side li a{
    display: block;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}
.supplier-box .supplier-side li:hover{
    font-weight: 700;
    border-left: 2px solid #FFF;
    margin-left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.supplier-box .supplier-side li.active{
    font-weight: 700;
    border-left: 2px solid #FFF;
    margin-left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.supplier-box .supplier-side:after{
    content: "";
    position: absolute;
    right: 0;
    top: 24px;
    width: 1px;
    height: calc(100% - 48px);
    background: #e0e0e0;
}
.supplier-box .supplier-list{
    flex: 1;
    padding-left: 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 16px 24px;
}
.supplier-box .supplier-item{
    display: flex;
    background: #f5f8ff;
    border-radius: 4px;
    padding: 24px;
    width: 444px;
    height: 80px;
}
.supplier-box .supplier-item-left{
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.supplier-box .supplier-item-left img{
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}
.supplier-box .supplier-item-right{
    flex: 1;
}
.supplier-box .supplier-item-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 7px 0 12px 0;
}
.supplier-box .supplier-item-head h4{
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.supplier-box .supplier-item-role{
    font-size: 12px;
    color: #3B83F2;
    background: #e9f1ff;
    padding: 2px 8px;
    border-radius: 10px;
}
.supplier-box .supplier-item-desc{
    font-size: 14px;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.area-box{
    background: url("/static/project/img/index/area-bg-1.png");
    padding: 56px 0;
    width: 100% !important;
    margin: 0 !important;
}
.area-box .area-title {
}
.area-box .area-title h3 {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
}
.area-box .area-cards {
    display: flex;
}
.area-box .area-card.lk {
    background: url("/static/project/img/index/area-lk.png") center center no-repeat;
}
.area-box .area-card.ec {
    background: url("/static/project/img/index/area-ec.png") center center no-repeat;
}
.area-box .area-card.hr {
    background: url("/static/project/img/index/area-hr.png") center center no-repeat;
}
.area-box .area-card.lzh {
    background: url("/static/project/img/index/area-lzh.png") center center no-repeat;
}
.area-box .area-card.gd {
    background: url("/static/project/img/index/area-gd.png") center center no-repeat;
}
.area-box .area-card {
    width: 178px;
    height: 400px;
    margin-right: 12px;
    transition: width 0.5s ease;
    background-size: 100%;
    position: relative;
    color: #fff;
}
.area-box .area-card.pointer{
    cursor: pointer;
}
.area-box .area-card .area-img-container {
    position: absolute;
    top: -470px;
    left: -150px;
    z-index: 10;
    pointer-events: none;
    background: #fff;
    display: none;
}
.area-box .area-card .area-img-container .area-img {
    width: 788px;
    height: 471px;
    margin: 16px;
}
.area-box .area-card.lk .area-img-container .area-img {
    background: url("/static/project/img/index/area-top-img-lk.png") center center no-repeat;
    background-size: 100%;
}
.area-box .area-card.ec .area-img-container .area-img {
    background: url("/static/project/img/index/area-top-img-ec.png") center center no-repeat;
    background-size: 100%;
}
.area-box .area-card .area-name {
    width: 178px;
    height: 400px;
    font-weight: 700;
    font-size: 24px;
    line-height: 386px;
    text-shadow: 0 1px 1px 0 #00000073;
    text-align: center;
    transition: height 0.5s ease;
}
.area-box .area-card .area-split-bar {
    width: 40px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 69px;
    top: 217px;
    background-color: #fff;
}
.area-box .area-card .area-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 2s ease;
}
.area-box .area-card:last-child {
    margin-right: 0;
}
.area-box .area-card.expand {
    width: 472px;
    height: 324px;
    padding: 38px 24px;
    transition: width 0.5s ease;
}
.area-box .area-card.expand .area-img-container {
    pointer-events: none;
}
.area-box .area-card.expand .area-name {
    height: 24px;
    line-height: 24px;
    text-align: left;
    transition: height 0.5s ease;
}
.area-box .area-card.expand .area-content{
    opacity: 1;
    pointer-events: none;
    transition: opacity 2s ease;
}
.area-box .area-card.expand .area-split-bar{
    display: none;
}
.area-box .area-card.expand .area-content .area-description{
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    margin-top: 17px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
.area-box .area-card.expand .area-content .area-label-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    margin-top: 24px;
}
.area-box .area-card.expand .area-content .area-label{
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.area-box .area-card.expand .area-content .area-label-item{
    width: 64px;
    height: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    padding: 10px 12px;
    background: #FFFFFF14;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}
.area-box .area-card.expand .area-content .area-btn{
    width: 104px;
    height: 40px;
    border-radius: 20px;
    background: #FFBC4A;
    margin: 28px 0 0 368px;
    position: relative;
}
.area-box .area-card.expand .area-content .area-btn .area-btn-arrow{
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url("/static/project/img/index/area-btn-arrow.png") center center no-repeat;
}

/*area-container*/
.area-container {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 400px;
}

.area-container .text-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.area-container .text-section p {
    font-size: 18px;
    line-height: 2;
    color: #333333;
    margin-bottom: 30px;
}

.area-container .service-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.area-container .service-btn {
    padding: 6px 15px;
    border: 1px solid #1677ff;
    border-radius: 4px;
    background: #ffffff;
    color: #1677ff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

/*.area-container .service-btn:hover {*/
/*    background: #e6f2ff;*/
/*}*/

.area-container .next-btn {
    width: 120px;
    height: 40px;
    background: #1677ff;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-container .next-btn:hover {
    background: #4096ff;
}

.area-container .image-section {
    flex: 1;
}

.area-container .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-container .service-title {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}
