@charset "utf-8";

/* CSS reset */

html,
body {
    -webkit-text-size-adjust: none;
}

blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5 "Microsoft YaHei", tahoma, arial, 'Hiragino Sans GB';
}

body {
    background: #fff;
    min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

small {
    font-size: 12px;
}

ol,
ul {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
}

input {
    outline: none;
}

a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #f78609;
    text-decoration: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}


.fl {
    float: left;
}

.fr {
    float: right;
}

.al {
    text-align: left;
}

.ac {
    text-align: center;
}

.ar {
    text-align: right;
}

.hide {
    display: none;
}

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.m {
    margin-left: auto;
    margin-right: auto;
}




.header {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top {
    background: transparent;
}

.logo {
    width: 180px;
    height: 45px;
    margin-top: 22px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a,
.logo a img {
    display: block;
    width: 100%;
    height: 100%;
}

.nav {
    height: 90px;
    display: flex;
    align-items: center;
}

.navlist li {
    position: relative;
    float: left;
    font-size: 15px;
    color: #2f2f2f;
    border-right: none;
}

.navlist li > a {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    padding: 0 35px;
    height: 90px;
    line-height: 90px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.navlist li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a962, #e8d5a3);
    transition: width 0.3s ease;
}

.navlist li > a:hover::after,
.navlist li.active > a::after {
    width: 60%;
}

.navlist li > a:hover,
.navlist li.active > a {
    color: #fff;
}

.navlist li.active > a{
    color: #fff;
}

.navlist li:last-child,
.navlist li:last-child a{
    border-right: none;
}
.nav-hover {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-hover > a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-hover > a.on,
.nav-hover > a:hover {
    background: linear-gradient(90deg, #c9a962, #e8d5a3);
    color: #1a1a2e;
}

.banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 0 auto;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.banner .bd {
    position: relative;
    z-index: 0;
}

.banner .bd li {
    width: 100%;
    height: 500px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.banner .bd li img {
    width: 100%;
    cursor: pointer;
    vertical-align: top;
}

.banner .hd {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.banner .hd ul {
    text-align: center;
    padding-top: 5px;
}

.banner .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 10px;
    height: 10px;
    margin: 5px 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(201, 169, 98, 0.5);
    border-radius: 50%;
    overflow: hidden;
    font-size: 0;
    transition: all 0.3s ease;
}

.banner .hd ul li:hover,
.banner .hd ul .on {
    background: #c9a962;
    border-color: #c9a962;
    transform: scale(1.2);
}

.banner .prev,
.banner .next {
    z-index: 1;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 3%;
    background: url(../images/left.png) no-repeat;
    background-size: 100% 100%;
    filter: alpha(opacity=50);
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 98, 0.3);
}

.banner .next {
    background: url(../images/right.png) no-repeat;
    background-size: 100% 100%;
    left: auto;
    right: 3%;
}

.banner .prev:hover,
.banner .next:hover {
    filter: alpha(opacity=100);
    opacity: 1;
    background-color: rgba(201, 169, 98, 0.2);
    border-color: #c9a962;
}

.banner-con {
    position: absolute;
    width: 480px;
    height: auto;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(26, 26, 46, 0.8);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.banner-con-tit {
    padding: 0 0 25px 0;
    font-size: 26px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    line-height: 1.5;
    color: #fff;
}

.banner-con-desc {
    padding: 25px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.banner-con-text {
    padding: 25px 0 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.font-big {
    font-size: 36px;
    font-weight: 600;
    color: #c9a962;
}

.font-middle {
    font-size: 32px;
    font-weight: 600;
    color: #c9a962;
}

.font-small {
    font-size: 28px;
    font-weight: 500;
    color: #e8d5a3;
}




.bot{
    background: #50545a;
    padding: 40px 0;
    color: #fff;
}
.bot-con-name{
    text-align: center;
    font-size: 18px;
}
.bot-con-info{
    margin-top: 30px;
}

.bot-con-info > div{
    width: 25%;
    float: left;
    font-size: 14px;
}

.info-row{
    display: flex;
}

.info-row-label{
    width: 90px;
    text-align: right;
    padding-right: 10px;
    line-height: 40px;
}

.info-row-input{
    flex: 1;
}

.info-row-input input,
.info-row-input select{
    width: 100%;
    padding: 0 5px;
    height: 38px;
    line-height: 38px;
    background: #fff;
    border: none;
}

.info-btn{
    width: 120px;
    height: 38px;
    text-align: center;
    font-size: 16px;
    line-height: 38px;
    background: #c9151e;
    color: #fff;
    margin: 50px auto 0;
    border-radius: 5px;
    cursor: pointer;
}

.bot-con-name-samll{
    text-align: center;
    margin-top: 30px;
}

.bottom{
    background: #313131;
    padding: 50px 0;
    font-size: 14px;
    color: #fff;
}

.bottom-con{
    display: flex;
}


.bottom-contact{
    flex: 1;
    padding-right: 50px;
}
.bottom-contact-tel{
    display: flex;
    margin-bottom: 30px;
}

.contact-tel{
    flex: 1;
}
.contact-tel p{
    line-height: 36px;
}


.bottom-code{
    width: 280px;
    color: #fff;
}
.bottom-code-tit{
    font-size: 18px;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.bottom-code-tit span{
    border-bottom: 2px solid #c9151e;
    padding-bottom: 7px;
}

.bottom-code-img{
    margin: 5px
}
.bottom-code-img img{
    width: 122px;
    height: 122px;
}

.footer{
    background: #000;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}

@media screen and (max-width: 768px) {
    .bottom-contact-tel {
        flex-direction: column;
    }
    
    .bottom-code {
        width: 100%;
        text-align: left;
        margin-top: 30px;
    }
    
    .bottom-code-img {
        margin: 0;
    }
    
    .contact-tel p {
        line-height: 30px;
        font-size: 13px;
    }
    
    .footer p {
        font-size: 12px;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1); }
    15% { transform: translateX(-5px) scale(1.05); }
    30% { transform: translateX(5px) scale(1.05); }
    45% { transform: translateX(-5px) scale(1.05); }
    60% { transform: translateX(5px) scale(1.05); }
    75% { transform: translateX(-3px) scale(1.02); }
    90% { transform: translateX(3px) scale(1.02); }
}

.bottom-contact-tel a.shake {
    animation: shake 0.6s ease;
    color: #e8d5a3 !important;
}

.contact-tel p.shake {
    animation: shake 0.6s ease;
    color: #e8d5a3 !important;
}