@charset "utf-8";
/*编码*/

/*
Document : CSS样式初始化
Description: CSS样式表的初始化，全局样式设置。
*/

/* 全局CSS reset */

/* 页面设置 */

/* 初始化标签在所有浏览器中的margin、padding值 */

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button,
img {
    padding: 0;
    margin: 0;
}

/* 酌情修改 */

body {
    background: #fff;
    font-family: "微软雅黑", "宋体";
    max-width: 1920px;
    min-width: 1200px;
    margin: 0 auto;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-size: 14px;
    line-height: 1;
}

/* 重置页面文字属性 */

/* 短引用的内容可取值：''或"" */

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

/* 重置嵌套引用*/

/* 缩写，图片等无边框 */

fieldset,
img,
abbr,
acronym {
    border: 0 none;
}

/* 重置fieldset（表单分组）、图片的边框为0*/

img {
    vertical-align: top;
}

/* 图片在当前行内的垂直位置 */

abbr,
acronym {
    font-variant: normal;
}

legend {
    color: #000;
}

blockquote,
q {
    quotes: none
}

/* 重置嵌套引用的引号类型 */

/* 清除特殊标记的字体和字号 */

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

/* 重置样式标签的样式 */

/* 上下标 */

/* 统一上标和下标 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/

/* 表格标题及内容居左显示 */

caption {
    display: none;
}

/* 重置表格标题为隐藏 */

caption,
th {
    text-align: left;
}

/* 清除列表样式 */

dl,
ul,
ol,
menu,
li {
    list-style: none
}

/* 重置类表前导符号为onne,menu在HTML5中有效 */

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

/* 输入控件字体 */

input,
select,
textarea,
button {
    vertical-align: middle;
    outline: none;
}

/* 重置表单控件垂直居中*/

textarea {
    resize: none
}

input[type="submit"] {
    cursor: pointer;
}

/* 鼠标样式 */

button {
    border: 0 none;
    background-color: transparent;
    cursor: pointer
}

/* 重置表单button按钮效果 */

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* 标题元素样式清除, 让标题都自定义, 适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

del,
ins,
a {
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

/* 取消a标签点击后的虚线框 */

a:active {
    star: expression(this.onFocus=this.blur());
}

/* 设置页面文字等在拖动鼠标选中情况下的背景色与文字颜色 */

/*
::selection{color: #fff;}
::-moz-selection{color: #fff;background-color: #4C6E78;}
*/

a {
    outline: none;
    transition: color 0.2s ease 0s;
}

/*CSS3链接秒数缓冲效果2秒*/

.w-1200 {
    width: 1200px;
    margin: 0 auto;
}

/*正式样式开始*/

.head {
    width: 1200px;
    height: 130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.head img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}


.head .p p {
    font-size: 26px;
    color: #d12727;
    font-family: '宋体';
    font-weight: bold;
    line-height: 1.2;
}

.ad img {
    display: block;
    width: 100%;
}

.nav {
    width: 100%;
    height: 70px;
    background: #0063cc;
}

.nav nav {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.nav nav a {
    display: block;
    color: #fff;
    width: 150px;
    text-align: center;
    height: 70px;
    line-height: 70px;
    font-size: 18px;
    float: left;
}

.nav nav a:hover {
    background-color: #d12727;
}

.nav nav a.on {
    background-color: #d12727;
}

.banner {
    width: 100%;
}

.banner>img {
    display: block;
    width: 100%;
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
}

.index1 {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
}

.index1 .item4 {
    width: 1200px;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index1 .item4 div.li {
    width: 294px;
    height: 120px;
    box-sizing: border-box;
    padding: 0 10px;
    border-right: 1px solid #cbcbcb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index1 .item4 div.li:last-child {
    border: none;
}

.index1 .item4 div.li .top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    height: 40px;
}

.index1 .item4 div.li .bottom {
    text-align: center;
}

.index1 .item4 div.li .bottom p {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

.index1 .item4 div.li img {
    display: block;
    margin-right: 10px;
}

.index1 .item4 div.li h2 {
    font-size: 25px;
    font-weight: 400;
    color: #222;
}


.index2 {
    display: flex;
    padding: 70px 0;
}

.index2 .left,
.index2 .right {
    width: 50%;
}

.index2 .left {
    box-sizing: border-box;
    padding: 0 100px;
}

.index2 .left h2 {
    font-size: 36px;
    color: #0063cc;
    font-weight: 400;
    text-align: center;
    margin-top: 70px;
}

.index2 .left h3 {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin-top: 30px;
}

.index2 .left>span {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #0063cc;
    margin: 15px auto 0;
}

.index2 .left>p {
    font-size: 16px;
    color: #333;
    line-height: 2;
    text-indent: 2em;
    margin-top: 40px;
}

.index2 .left>a {
    font-size: 18px;
    color: #0063cc;
    border: 1px solid #eee;
    padding: 7px 0;
    border-radius: 15px;
    display: block;
    text-align: center;
    width: 130px;
    margin-top: 50px;
    float: right;
}

.title-h h3 {
    font-size: 28px;
    color: #333;
    opacity: 0.3;
    text-align: center;
}

.title-h h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.title-h h2 span {
    color: #468cfd;
}

.title-h h4 {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-top: 20px;
}

.index3 {
    padding: 70px 0;
    background: url(../images/index3-bg.png) no-repeat;
    background-size: cover;
}

.index3 .index3-body {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.index3 .index3-body .li {
    width: 379px;
    color: #fff;
}

.index3 .index3-body .li .bot {
    height: 230px;
}

.index3 .index3-body .li .bot h2 {
    font-size: 26px;
    text-align: center;
    padding-top: 25px;
}

.index3 .index3-body .li .bot p {
    font-size: 18px;
    display: block;
    width: 60%;
    margin: 25px auto 0;
    line-height: 1.5;
    text-align: justify;
}

.index3 .index3-body .li a {
    display: block;
    width: 80%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    border-radius: 30px;
    background-color: #f75854;
    margin: 30px auto 0;
}

.index3 .index3-body .li:nth-child(1) .bot {
    background-color: #f88158;
}

.index3 .index3-body .li:nth-child(2) .bot {
    background-color: #2ab8ab;
}

.index3 .index3-body .li:nth-child(3) .bot {
    background-color: #468cfd;
}

.index4 {
    width: 1200px;
    height: 694px;
    background: url(../images/index4-bg.png) no-repeat;
    margin-top: 70px;
}

.index4 .title-h {
    color: #fff;
    padding-top: 50px;
}

.index4 .title-h h3,
.index4 .title-h h2,
.index4 .title-h h4 {
    color: #fff;
}

.index4 .title-h h3 {
    opacity: 1;
}

.index4 .index4-body {
    width: 1100px;
    margin: 30px auto 0;
    background-color: #fff;
    height: 460px;
}

.index4 .index4-body .i4b-head {
    height: 70px;
    background-color: #f3f4f5;
    display: flex;
}

.index4 .index4-body .i4b-bottom {
    height: 390px;
    overflow: hidden;
}

.index4 .index4-body .i4b-head span {
    line-height: 70px;
    font-size: 22px;
    color: #000;
}

.index4 .index4-body .i4b-head span,
.index4 .index4-body .i4b-bottom .lis .li span {
    display: block;
    width: 20%;
    text-align: center;
}

.index4 .index4-body .i4b-bottom .lis {
    position: relative;
    top: 0
}

.index4 .index4-body .i4b-bottom .lis .li {
    display: flex;
    height: 50px;
    border-bottom: 1px dashed #e0e0e0;
}

.index4 .index4-body .i4b-bottom .lis .li span {
    font-size: 17px;
    text-align: center;
    line-height: 50px;
}

.index4 .index4-body .i4b-bottom .lis .li span.sh {
    background-color: #0063cc;
    color: #fff;
    width: 10%;
    height: 30px;
    margin: 10px auto;
    line-height: 30px;
    border-radius: 20px;
    font-size: 15px;
}

.index5 {
    padding: 70px 0 0;
}

.index5 .index5-body {
    margin-top: 50px;
    overflow: hidden;
}

.index5 .index5-body .li {
    width: 276px;
    height: 370px;
    float: left;
    margin-right: 25.3333333px;
    margin-bottom: 25px;
    background-color: #f6f6f6;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}

.index5 .index5-body .li:nth-child(4n) {
    margin-right: 0;
}

.index5 .index5-body .li>a {
    display: block;
    width: 236px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;

}

.index5 .index5-body .li>a img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.index5 .index5-body .li>a p {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    height: 40px;
    line-height: 40px;
    font-size: 17px;
}

.index5 .index5-body .li>.cen {
    margin: 20px auto 0;
}

.index5 .index5-body .li>.cen .xue {
    margin-bottom: 10px;
}

.index5 .index5-body .li>.cen .xue span {
    font-size: 17px;
    font-weight: bold;
    display: inline;
    color: #333;
}

.index5 .index5-body .li>.cen .xue p {
    display: inline;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.index5 .index5-body .li>.btn {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.index5 .index5-body .li>.btn a {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    margin: 0 10px;
}

.index5 .index5-body .li>.btn a:first-child {
    background-color: #0063cc;
}

.index5 .index5-body .li>.btn a:last-child {
    background-color: #f75854;
}

.index5 .index5-body .li.last-li {
    background: url(../images/index5-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 0;
}

.index5 .index5-body .li.last-li .last-h {
    font-family: '宋体';
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 70px 0 0 0;
}

.index5 .index5-body .li.last-li p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

.index5 .index5-body .li.last-li a {
    display: block;
    width: 80%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #f75854;
    font-size: 18px;
    border-radius: 40px;
    margin: 100px auto 0;
}

.index6 {
    padding: 70px 0 150px;
    background: url(../images/index6-bg.png) no-repeat;
}

.index6 .index6-body {
    margin-top: 30px;
}

.index6 .index6-body .lis {
    display: flex;
    justify-content: space-between;
}

.index6 .index6-body .lis .li {
    display: block;
    width: 370px;
    height: 213px;
    background-color: #fff;
    margin-bottom: 30px;
    position: relative;
    margin-top: 130px;
}

.index6 .index6-body .lis .li::after {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-width: 115px 185px;
    border-color: transparent transparent #fff transparent;
    top: -230px;
    left: 0;
    border-style: solid;
}

.index6 .index6-body .lis .li::before {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-width: 115px 185px;
    border-color: #ffffff transparent transparent transparent;
    bottom: -230px;
    left: 0;
    border-style: solid;
}

.index6 .index6-body .lis.lis2 {
    justify-content: center;
}

.index6 .index6-body .lis.lis2 .li {
    margin: 120px 20px 0;
}

.index6 .index6-body .lis1 .li:nth-child(1) {
    background: #3c8df9 url(../images/index6-1-bg.png) no-repeat;
    background-size: cover;
}

.index6 .index6-body .lis1 .li:nth-child(1)::after {
    border-bottom-color: #3c8df9;
}

.index6 .index6-body .lis1 .li:nth-child(1)::before {
    border-top-color: #3c8df9;
}

.index6 .index6-body .lis1 .li:nth-child(2) {
    background-color: #2ab8ab;
    background: #2ab8ab url(../images/index6-2-bg.png) no-repeat;
    background-size: cover;
}

.index6 .index6-body .lis1 .li:nth-child(2)::after {
    border-bottom-color: #2ab8ab;
}

.index6 .index6-body .lis1 .li:nth-child(2)::before {
    border-top-color: #2ab8ab;
}

.index6 .index6-body .lis1 .li:nth-child(3) {
    background-color: #f3ac02;
    background: #f3ac02 url(../images/index6-3-bg.png) no-repeat;
    background-size: cover;
}

.index6 .index6-body .lis1 .li:nth-child(3)::after {
    border-bottom-color: #f3ac02;
}

.index6 .index6-body .lis1 .li:nth-child(3)::before {
    border-top-color: #f3ac02;
}

.index6 .index6-body .lis2 .li:nth-child(1) {
    background-color: #66c5ff;
    background: #66c5ff url(../images/index6-4-bg.png) no-repeat;
    background-size: cover;
}

.index6 .index6-body .lis2 .li:nth-child(1)::after {
    border-bottom-color: #66c5ff;
}

.index6 .index6-body .lis2 .li:nth-child(1)::before {
    border-top-color: #66c5ff;
}

.index6 .index6-body .lis2 .li:nth-child(2) {
    background-color: #8783f2;
    background: #8783f2 url(../images/index6-5-bg.png) no-repeat;
    background-size: cover;
}

.index6 .index6-body .lis2 .li:nth-child(2)::after {
    border-bottom-color: #8783f2;
}

.index6 .index6-body .lis2 .li:nth-child(2)::before {
    border-top-color: #8783f2;
}

.index6 .index6-body .lis .li h2 {
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
}

.index6 .index6-body .lis .li .xian {
    position: relative;
}

.index6 .index6-body .lis .li .xian p {
    width: 80%;
    height: 1px;
    background-color: #fff;
    margin: 20px auto 0;
}

.index6 .index6-body .lis .li .xian span {
    display: block;
    width: 20%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: -1px;
    left: 40%;
}

.index6 .index6-body .lis .li .p {
    width: 70%;
    text-align: justify;
    margin: 20px auto;
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
    position: relative;
}

.index6 .index6-body .lis .li .p span {
    font-size: 18px;
    font-weight: bold;
}

.index7 {
    padding: 70px 0 0;
}

.index7 .lis {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
}

.index7 .lis .li {
    width: 290px;
}

.index7 .lis .li .i7-head {
    height: 150px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
}

.index7 .lis .li:nth-child(1) .i7-head {
    background-color: #f65854;
}

.index7 .lis .li:nth-child(2) .i7-head {
    background-color: #5495fe;
}

.index7 .lis .li:nth-child(3) .i7-head {
    background-color: #8b83bf;
}

.index7 .lis .li:nth-child(4) .i7-head {
    background-color: #2ab8ab;
}


.index7 .lis .li .i7-head img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-right-radius: 30px;
}

.index7 .lis .li .i7-head .fp {
    border: 1px dashed #fff;
    width: 120px;
    position: relative;
    padding: 10px;
    top: 30px;
    left: 20px;
}

.index7 .lis .li .i7-head .fp p {
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
}

.index7 .lis .li .ps {
    width: 85%;
    margin: 20px auto;
}

.index7 .lis .li .ps p {
    color: #666;
    font-size: 17px;
    line-height: 1.5;
}

.index7 .lis .li .as {
    margin: 40px auto 0;
    width: 90%;
}

.index7 .lis .li .as a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #e6e3e3;
    margin-bottom: 10px;
    color: #333;
}

.index7 .lis .li .as a:first-child {
    color: #f35620;
}

.index8 {
    padding: 70px 0 0;
}

.index8 .index8-body {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.index8 .index8-body .li {
    width: 375px;
    padding-bottom: 50px;
    margin-bottom: 35px;
    box-shadow: 0 5px 10px 5px #eee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.index8 .index8-body .li h2 {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin: 30px 0 0;
    font-weight: bold;
}

.index8 .index8-body .li:nth-child(1) h2 {
    color: #468cfd;
}

.index8 .index8-body .li:nth-child(2) h2 {
    color: #65ba42;
}

.index8 .index8-body .li:nth-child(3) h2 {
    color: #cf4586;
}

.index8 .index8-body .li:nth-child(4) h2 {
    color: #8b83bf;
}

.index8 .index8-body .li:nth-child(5) h2 {
    color: #2ab8ab;
}

.index8 .index8-body .li:nth-child(6) h2 {
    color: #f65854;
}

.index8 .index8-body .li p {
    text-align: justify;
    width: 70%;
    margin: 30px auto 0;
    line-height: 1.5;
    font-size: 18px;
}

.index9 {
    padding: 70px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index9 .left {
    width: 376px;
    height: 525px;
    background: url(../images/index9-bg.png) no-repeat;
    background-size: 100% 100%;
}

.index9 .left .en {
    font-size: 22px;
    text-align: center;
    color: #fff;
    opacity: 0.3;
    margin-top: 70px;
}

.index9 .left .h {
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-top: 20px;
}

.index9 .left p {
    width: 70%;
    margin: 30px auto 0;
    text-align: justify;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    line-height: 2;
}

.index10 {
    padding: 30px 0 0;
    margin-top: 70px;
    background: #f6f6f6 url(../images/ren.png) no-repeat;
    background-position: bottom right;
    height: 746px;
    background-size: auto 500px;
}

.index10 .title-h h2 {
    font-weight: bold;
    letter-spacing: 2px;
}

.baoming {
    width: 100%;
}

.baoming-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.baoming-content .left {
    width: 600px;
}

.baoming-content .left h2 {
    font-size: 21px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.baoming-content .left h3 {
    font-size: 21px;
    color: #333;
    font-weight: 400;
    margin-bottom: 80px;
}

.baoming-content .left h3 span {
    color: #0063cc;
    font-size: 32px;
    font-weight: bold;
}

.baoming-content .left>p {
    font-size: 18px;
    color: #333;
    line-height: 2;
}

.baoming-content .left .luqu {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.baoming-content .left .luqu img {
    margin-right: 10px;
}

.baoming-content .left .luqu p {
    font-size: 18px;
    color: #dc0303;
}

.baoming-content .right {
    width: 550px;
    height: 600px;
    background: #4784fe url(../images/bm-bg.png) no-repeat;
    position: relative;
    background-size: cover;
}

.baoming-content .right::after {
    content: '';
    display: block;
    width: 108px;
    height: 108px;
    background: #f6f6f6;
    position: absolute;
    top: -80px;
    left: 50%;
    margin-left: -54px;
    border-radius: 108px;
}

.baoming-content .right h2 {
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 20px;
}

.baoming-content .right form {
    display: block;
    width: 400px;
    margin: 0 auto;
}

.baoming-content .right form .li {
    width: 100%;
    height: 60px;
    background: #fff;
    margin-bottom: 20px;
    display: flex;
}

.baoming-content .right form .li span {
    display: block;
    width: 165px;
    box-sizing: border-box;
    padding-left: 20px;
    line-height: 60px;
    font-size: 20px;
    color: #3e4b70;
}

.baoming-content .right form .li input,
.baoming-content .right form .li select {
    display: block;
    width: 235px;
    height: 60px;
    border: none;
    font-size: 20px;
    color: #3e4b70;
}

.baoming-content .right form .li input::placeholder {
    color: #898fa3;
}

.baoming-content .right form .submit {
    display: block;
    width: 300px;
    margin: 50px auto;
    height: 60px;
    background: #fff;
}

.baoming-content .right form .submit button {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 26px;
    color: #000033;
    border: none;
}

.index10 .tongzhi {
    width: 569px;
    height: 175px;
    background: url(../images/index10-bg.jpg) no-repeat;
    margin-bottom: 50px;
    font-size: 20px;
    box-sizing: border-box;
    padding: 20px;
    line-height: 2;
}

.index10 .tongzhi span.blue {
    color: #4784fe;
}

.index10 .tongzhi span.bg {
    font-size: 24px;
}

footer {
    background-color: #0063cc;
    padding: 40px 0 0;
}

footer .footer-content {
    width: 1200px;
    margin: 0 auto;
}

footer .footer-content>img {
    display: block;
    margin: 0 auto;
}

footer .footer-content nav {
    padding: 30px 0;
    border: 1px solid #3684cc;
    border-left: none;
    border-right: none;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

footer .footer-content nav a {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0 20px;
}

footer .footer-content .rexian {
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding: 20px 0 40px;
}

footer .footer-content .rexian a {
    color: #fff;
}

footer .footer-banquan,
footer .footer-banquan * {
    width: 100%;
    height: 48px;
    background-color: #282828;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 48px;
}

.news-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #999;
}

.breadcrumb a:hover {
    color: #0063cc;
}

.breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: #0063cc;
}

.news-page-title {
    width: 1200px;
    margin: 40px auto 30px;
    text-align: center;
}

.news-page-title h2 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
}

.news-page-title p {
    font-size: 16px;
    color: #999;
    margin-top: 15px;
}

.news-cats {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

.news-cats a {
    display: block;
    padding: 8px 25px;
    margin: 0 8px;
    font-size: 16px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.3s;
}

.news-cats a:hover {
    color: #0063cc;
    border-color: #0063cc;
}

.news-cats a.on {
    color: #fff;
    background-color: #0063cc;
    border-color: #0063cc;
}

.news-list {
    width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
    gap: 0 20px;
}

.news-list .item {
    width: 380px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
}

.news-list .item:hover {
    box-shadow: 0 5px 20px rgba(0, 99, 204, 0.15);
    transform: translateY(-3px);
}

.news-list .item .cover {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-list .item .cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-list .item:hover .cover img {
    transform: scale(1.05);
}

.news-list .item .info {
    padding: 20px;
}

.news-list .item .info .cat {
    display: inline-block;
    font-size: 12px;
    color: #0063cc;
    background-color: #e8f2ff;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.news-list .item .info h3 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 54px;
    overflow: hidden;
}

.news-list .item:hover .info h3 {
    color: #0063cc;
}

.news-list .item .info p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    height: 44px;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-list .item .info .meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #aaa;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.pagination {
    width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    margin: 0 4px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover {
    color: #0063cc;
    border-color: #0063cc;
}

.pagination .current {
    color: #fff;
    background-color: #0063cc;
    border-color: #0063cc;
}

.pagination .disabled {
    color: #ccc;
}

.news-detail {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.news-detail .back-link {
    display: inline-block;
    font-size: 14px;
    color: #0063cc;
    margin-bottom: 20px;
}

.news-detail .back-link:hover {
    text-decoration: underline;
}

.news-detail .article-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.news-detail .article-header h1 {
    font-size: 30px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}

.news-detail .article-header .meta {
    font-size: 14px;
    color: #999;
}

.news-detail .article-header .meta span {
    margin: 0 10px;
}

.news-detail .article-header .meta .sep {
    color: #ddd;
}

.news-detail .article-body {
    font-size: 16px;
    color: #333;
    line-height: 2;
    padding: 0 20px;
}

.news-detail .article-body p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.news-detail .article-body img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 4px;
}

.news-detail .article-body h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0063cc;
    margin: 30px 0 15px;
    text-indent: 0;
}

.news-detail .article-nav {
    margin-top: 50px;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.news-detail .article-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.news-detail .article-nav .nav-item .label {
    color: #999;
    width: 80px;
    flex-shrink: 0;
}

.news-detail .article-nav .nav-item a {
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-detail .article-nav .nav-item a:hover {
    color: #0063cc;
}

.news-detail .article-nav .nav-item.disabled {
    color: #ccc;
}

.related-news {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.related-news h3 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #0063cc;
}

.related-news .rel-list {
    display: flex;
    justify-content: space-between;
}

.related-news .rel-list .rel-item {
    width: 310px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
}

.related-news .rel-list .rel-item:hover {
    box-shadow: 0 5px 15px rgba(0, 99, 204, 0.12);
}

.related-news .rel-list .rel-item .cover {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.related-news .rel-list .rel-item .cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news .rel-list .rel-item .info {
    padding: 15px;
}

.related-news .rel-list .rel-item .info h4 {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
    margin-bottom: 10px;
}

.related-news .rel-list .rel-item:hover .info h4 {
    color: #0063cc;
}

.related-news .rel-list .rel-item .info .date {
    font-size: 12px;
    color: #aaa;
}

/* 专业列表页 */
.major-cats {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.major-cats a {
    display: block;
    padding: 8px 25px;
    margin: 5px 8px;
    font-size: 16px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.3s;
}

.major-cats a:hover {
    color: #0063cc;
    border-color: #0063cc;
}

.major-cats a.on {
    color: #fff;
    background-color: #0063cc;
    border-color: #0063cc;
}

.major-list {
    width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	gap:0 20px;
}

.major-card {
    width: 380px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.major-card:hover {
    box-shadow: 0 5px 20px rgba(0, 99, 204, 0.15);
    transform: translateY(-3px);
}

.major-card .cover {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.major-card .cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.major-card:hover .cover img {
    transform: scale(1.05);
}

.major-card .info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.major-card .info .cat {
    display: inline-block;
    font-size: 12px;
    color: #0063cc;
    background-color: #e8f2ff;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.major-card .info h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.major-card .info .duration {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}


.major-card .info .desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.major-card .info .btn {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    background-color: #0063cc;
    font-size: 16px;
    border-radius: 22px;
    transition: all 0.3s;
}

.major-card:hover .info .btn {
    background-color: #d12727;
}

/* 专业详情页 */
.major-detail-page {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.major-info-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
}

.major-info-card .left {
    width: 360px;
    flex-shrink: 0;
}

.major-info-card .left img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

.major-info-card .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.major-info-card .right h1 {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.major-info-card .right .info-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 16px;
    color: #555;
}

.major-info-card .right .info-row:last-child {
    border-bottom: none;
}

.major-info-card .right .info-row .label {
    width: 100px;
    color: #999;
    flex-shrink: 0;
}

.major-info-card .right .info-row .value {
    color: #333;
    font-weight: bold;
}

.major-info-card .right .info-row .value.cat {
    color: #0063cc;
}

.major-section {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 30px;
}

.major-section h2 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #0063cc;
}

.major-section .intro-text {
    font-size: 16px;
    color: #555;
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 20px;
}

.major-section .info-block {
    margin-bottom: 20px;
}

.major-section .info-block:last-child {
    margin-bottom: 0;
}

.major-section .info-block h4 {
    font-size: 17px;
    color: #0063cc;
    font-weight: bold;
    margin-bottom: 10px;
}

.major-section .info-block p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    text-indent: 2em;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.course-table th,
.course-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    text-align: left;
    font-size: 15px;
}

.course-table th {
    background-color: #f3f4f5;
    color: #333;
    font-weight: bold;
    width: 20%;
}

.course-table td {
    color: #555;
    line-height: 1.6;
}

.course-table tr:hover td {
    background-color: #f9fbff;
}

.job-prospects {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.job-prospects .job-item {
    flex: 1;
    padding: 25px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-top: 3px solid #0063cc;
}

.job-prospects .job-item h4 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.job-prospects .job-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.job-prospects .job-item .salary {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background-color: #fff;
    color: #d12727;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
}

.admission-req {
    margin-top: 10px;
}

.admission-req ul {
    padding-left: 0;
}

.admission-req ul li {
    font-size: 15px;
    color: #555;
    line-height: 2;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.admission-req ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0063cc;
    font-weight: bold;
}

.apply-section {
    background: linear-gradient(135deg, #0063cc 0%, #468cfd 100%);
    padding: 50px 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.apply-section h2 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.apply-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.apply-section .apply-btn {
    display: inline-block;
    padding: 15px 60px;
    background-color: #fff;
    color: #0063cc;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s;
}

.apply-section .apply-btn:hover {
    background-color: #f75854;
    color: #fff;
}

.related-majors {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.related-majors h3 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #0063cc;
}

.related-majors .rel-list {
    display: flex;
    justify-content: space-between;
}

.related-majors .rel-list .rel-item {
    width: 280px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}

.related-majors .rel-list .rel-item:hover {
    box-shadow: 0 5px 15px rgba(0, 99, 204, 0.12);
    transform: translateY(-3px);
}

.related-majors .rel-list .rel-item .cover {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.related-majors .rel-list .rel-item .cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-majors .rel-list .rel-item .info {
    padding: 15px;
}

.related-majors .rel-list .rel-item .info h4 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}

.related-majors .rel-list .rel-item:hover .info h4 {
    color: #0063cc;
}

.related-majors .rel-list .rel-item .info .duration {
    font-size: 13px;
    color: #999;
}

.major-detail-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.major-detail-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 报名须知 & 联系我们 公共样式 */
.apply-section-title {
    text-align: center;
    padding-top: 60px;
}

.apply-section-title h3 {
    font-size: 28px;
    color: #333;
    opacity: 0.3;
    text-align: center;
}

.apply-section-title h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.apply-section-title h4 {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-top: 20px;
}

/* 公告通知 */
.apply-notice {
    padding: 0 0 30px;
}

.notice-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #f5c0c0;
    padding: 30px 40px;
    margin-top: 30px;
}

.notice-icon img {
    width: 60px;
    height: 60px;
}

.notice-content {
    flex: 1;
    margin: 0 40px;
}

.notice-content h3 {
    font-size: 22px;
    color: #d12727;
    font-weight: bold;
    margin-bottom: 12px;
}

.notice-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
}

.notice-content p strong {
    color: #d12727;
    font-size: 18px;
}

.notice-content ul {
    padding-top: 8px;
    border-top: 1px dashed #e8b8b8;
}

.notice-content ul li {
    font-size: 15px;
    color: #555;
    line-height: 2;
    list-style: none;
}

.notice-deadline {
    text-align: center;
    padding: 20px 30px;
    background: #d12727;
    border-radius: 10px;
    color: #fff;
    min-width: 180px;
}

.notice-deadline .nd-num {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}

.notice-deadline .nd-text {
    font-size: 14px;
    margin: 8px 0 15px;
    opacity: 0.9;
}

.notice-deadline .nd-btn {
    display: inline-block;
    padding: 8px 25px;
    background: #fff;
    color: #d12727;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.3s;
}

.notice-deadline .nd-btn:hover {
    background: #fff5f5;
    transform: scale(1.05);
}

/* 报名须知卡片 */
.apply-notice-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-bottom: 40px;
}

.anc-item {
    width: 370px;
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #0063cc;
}

.anc-item:hover {
    box-shadow: 0 10px 30px rgba(0, 99, 204, 0.1);
    transform: translateY(-5px);
}

.anc-item:nth-child(2) {
    border-top-color: #2ab8ab;
}

.anc-item:nth-child(3) {
    border-top-color: #f75854;
}

.anc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anc-item:nth-child(2) .anc-icon {
    background: #e8f8f6;
}

.anc-item:nth-child(3) .anc-icon {
    background: #fef0ef;
}

.anc-icon img {
    width: 36px;
    height: 36px;
}

.anc-item h3 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.anc-item ul {
    text-align: left;
}

.anc-item ul li {
    font-size: 15px;
    color: #666;
    line-height: 2;
    padding-left: 20px;
    position: relative;
    list-style: none;
}

.anc-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0063cc;
    font-weight: bold;
}

.anc-item:nth-child(2) ul li::before {
    color: #2ab8ab;
}

.anc-item:nth-child(3) ul li::before {
    color: #f75854;
}

/* 报名流程 */
.apply-flow {
    padding-bottom: 60px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 0 20px;
}

.flow-step {
    text-align: center;
    width: 160px;
}

.flow-step .fs-num {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #0063cc;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.flow-step .fs-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.flow-step:hover .fs-icon {
    background: #0063cc;
}

.flow-step:hover .fs-icon img {
    filter: brightness(0) invert(1);
}

.flow-step .fs-icon img {
    width: 40px;
    height: 40px;
}

.flow-step h4 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.flow-arrow {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #0063cc, #468cfd);
    position: relative;
    margin: 0 5px;
    margin-bottom: 80px;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #0063cc;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* 报名表单 */
.apply-form-section {
    background: #f6f8fb;
    padding-bottom: 80px;
}

.apply-form-wrapper {
    margin-top: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.apply-form .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.apply-form .form-item {
    width: 48%;
}

.apply-form .form-item.full-row {
    width: 100%;
}

.apply-form .form-item label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.apply-form .form-item label .required {
    color: #d12727;
    margin-left: 3px;
}

.apply-form .form-item input[type="text"],
.apply-form .form-item input[type="tel"],
.apply-form .form-item select,
.apply-form .form-item textarea {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s;
}

.apply-form .form-item textarea {
    height: auto;
    padding: 12px 15px;
    resize: vertical;
    min-height: 100px;
}

.apply-form .form-item input:focus,
.apply-form .form-item select:focus,
.apply-form .form-item textarea:focus {
    border-color: #0063cc;
    box-shadow: 0 0 0 3px rgba(0, 99, 204, 0.1);
}

.apply-form .radio-group {
    display: flex;
    gap: 30px;
    padding-top: 12px;
}

.apply-form .radio-label {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 6px;
}

.apply-form .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #0063cc;
}

.apply-form .form-submit {
    text-align: center;
    margin-top: 40px;
}

.apply-form .form-submit button {
    display: inline-block;
    padding: 14px 80px;
    background: #0063cc;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s;
    cursor: pointer;
}

.apply-form .form-submit button:hover {
    background: #d12727;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 39, 39, 0.3);
}

/* 联系我们 - 卡片 */
.contact-cards {
    padding: 40px 0;
}

.contact-cards .w-1200 {
    display: flex;
    justify-content: space-between;
}

.cc-item {
    width: 220px;
    background: #fff;
    border: 1px solid #eee;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 8px;
}

.cc-item:hover {
    box-shadow: 0 10px 30px rgba(0, 99, 204, 0.12);
    transform: translateY(-5px);
    border-color: #0063cc;
}

.cc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0063cc, #468cfd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.cc-item h3 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 12px;
}

.cc-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.cc-item .cc-phone {
    font-size: 22px;
    color: #d12727;
    font-weight: bold;
    margin-bottom: 8px;
}

/* 地图 */
.contact-map-section {
    padding-bottom: 60px;
}

.map-container {
    margin-top: 40px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.map-container img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.map-info {
    position: absolute;
    right: 40px;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 320px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.map-info h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0063cc;
}

.map-info p {
    font-size: 15px;
    color: #555;
    line-height: 2;
}

.map-info .map-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 25px;
    background: #0063cc;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    transition: all 0.3s;
}

.map-info .map-btn:hover {
    background: #d12727;
}

/* 联系表单 */
.contact-form-section {
    background: #f6f8fb;
    padding-bottom: 80px;
}

.contact-form-wrapper {
    margin-top: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.contact-form .form-item {
    width: 48%;
}

.contact-form .form-item.full-row {
    width: 100%;
}

.contact-form .form-item label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form .form-item label .required {
    color: #d12727;
    margin-left: 3px;
}

.contact-form .form-item input[type="text"],
.contact-form .form-item input[type="tel"],
.contact-form .form-item textarea {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s;
}

.contact-form .form-item textarea {
    height: auto;
    padding: 12px 15px;
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-item input:focus,
.contact-form .form-item textarea:focus {
    border-color: #0063cc;
    box-shadow: 0 0 0 3px rgba(0, 99, 204, 0.1);
}

.contact-form .form-submit {
    text-align: center;
    margin-top: 40px;
}

.contact-form .form-submit button {
    display: inline-block;
    padding: 14px 80px;
    background: #0063cc;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-form .form-submit button:hover {
    background: #d12727;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 39, 39, 0.3);
}

/* FAQ */
.faq-section {
    padding-bottom: 80px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: #0063cc;
    box-shadow: 0 5px 20px rgba(0, 99, 204, 0.1);
}

.faq-q {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-q:hover {
    background: #f8fafc;
}

.faq-item.active .faq-q {
    background: #f0f7ff;
}

.faq-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #e8f2ff;
    color: #0063cc;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-num {
    background: #0063cc;
    color: #fff;
}

.faq-q h4 {
    flex: 1;
    font-size: 17px;
    color: #333;
    font-weight: bold;
    line-height: 1.6;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    color: #0063cc;
    font-weight: bold;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-q::after {
    content: '-';
}

.faq-a {
    display: none;
    padding: 0 30px 25px 85px;
    font-size: 15px;
    color: #555;
    line-height: 2;
}

.faq-item.active .faq-a {
    display: flex;
    align-items: flex-start;
}

.faq-a .faq-num {
    background: #f75854;
    color: #fff;
    margin-right: 15px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
}

.faq-a p {
    flex: 1;
}