/* 现代化样式重构 */

/* 全局变量 */
:root {
    --primary-color: #fbca00;
    --secondary-color: #053636;
    --dark-color: #202a30;
    --light-color: #f7f7f7;
    --text-color: #666;
    --heading-color: #333;
    --white: #fff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* 全局样式优化 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
}

/* 按钮样式优化 */
.thm-btn {
    background: var(--primary-color);
    border-radius: 6px;
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.5px;
}

.thm-btn:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.thm-btn.btn-black {
    background: var(--dark-color);
}

.thm-btn.btn-black:hover {
    background: transparent;
    border-color: var(--dark-color);
    color: var(--dark-color);
}

/* 区块标题样式优化 */
.sec-title {
    margin-bottom: 50px;
}

.sec-title h2 {
    font-size: 28px;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.sec-title p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.sec-title span.decor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.sec-title span.decor:before,
.sec-title span.decor:after {
    content: '';
    position: absolute;
    top: 4px;
    width: 40px;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}

.sec-title span.decor:before {
    left: 12px;
}

.sec-title span.decor:after {
    right: 12px;
}

/* 顶部栏样式优化 */
.top-bar {
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.top-bar .left-text p {
    font-size: 13px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.top-bar .left-text p span {
    color: var(--heading-color);
    font-weight: 500;
}

.social-icons ul li a {
    display: inline-block;
    font-size: 14px;
    color: var(--text-color);
    border-right: 1px solid var(--border-color);
    line-height: 1.5;
    text-align: center;
    padding: 0 12px;
    margin-left: -5px;
    transition: var(--transition);
}

.social-icons ul li a:hover {
    color: var(--white);
    background: var(--primary-color);
}

/* 头部样式优化 */
.header {
    padding: 25px 0;
}

.logo a {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    line-height: 1.4;
    max-width: 400px;
}

.logo a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .logo a {
        font-size: 16px;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .logo a {
        font-size: 14px;
        max-width: 250px;
        margin-bottom: 10px;
    }
}

.single-header-info {
    float: left;
    padding-left: 30px;
}

.single-header-info .icon-box .inner-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    margin-right: 12px;
    transition: var(--transition);
}

.single-header-info:hover .icon-box .inner-box {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.single-header-info .icon-box .inner-box i:before {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.single-header-info:hover .icon-box .inner-box i:before {
    color: var(--white);
}

.single-header-info .content h3 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--heading-color);
    font-weight: 600;
    margin: 0;
    margin-bottom: 4px;
}

.single-header-info .content p {
    font-size: 13px;
    margin: 0;
    color: var(--text-color);
}

.single-header-info .content p b {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 600;
}

/* 导航菜单样式优化 */
.mainmenu-area {
    background: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
}

.navigation .nav-header > ul > li > a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--white);
    padding: 18px 18px;
    transition: var(--transition);
}

.navigation .nav-header > ul > li:hover > a {
    color: var(--primary-color);
}

.navigation .nav-header > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: var(--white);
    width: 220px;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: 0 0 6px 6px;
}

.navigation .nav-header > ul > li > ul > li > a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--heading-color);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navigation .nav-header > ul > li > ul > li:hover > a {
    background: var(--primary-color);
    color: var(--white);
}

.mainmenu-area .search-box {
    width: 260px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    border-radius: 6px;
}

.mainmenu-area .search-box input {
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 13px;
    line-height: 56px;
    width: calc(100% - 31px);
}

.mainmenu-area .search-box button {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    line-height: 56px;
    color: var(--white);
    cursor: pointer;
}

/* 服务板块样式优化 */
.call-to-action .container-fluid {
    padding: 0;
}

.single-call-to-action {
    min-height: 220px;
    padding: 50px 30px;
    position: relative;
    transition: var(--transition);
}

.single-call-to-action:hover {
    transform: translateY(-5px);
}

.single-call-to-action .icon-box i:before {
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    padding: 15px;
    transition: var(--transition);
}

.single-call-to-action:hover .icon-box i:before {
    transform: scale(1.1);
}

.single-call-to-action .content-box .title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    text-transform: none;
}

.single-call-to-action .content-box p {
    font-size: 13px;
    color: var(--white);
    line-height: 1.6;
}

/* 关于我们板块样式优化 */
.about-img-large {
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: 300px;
    object-fit: cover;
}

.about-img-small {
    border-radius: 6px;
    box-shadow: var(--shadow);
    max-height: 150px;
    object-fit: cover;
}

.welcome-feature {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-feature li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.welcome-feature li:last-child {
    border-bottom: none;
}

.welcome-iconbox .content {
    display: flex;
    align-items: center;
}

.welcome-iconbox .content i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 12px;
}

.welcome-iconbox .content .details a {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.welcome-iconbox .content .details a:hover {
    color: var(--primary-color);
}

/* 服务列表样式优化 */
.service-category-list {
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.service-category-list h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.service-category-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category-list ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-category-list ul li:last-child {
    border-bottom: none;
}

.service-category-list ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
    display: block;
}

.service-category-list ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* 热门产品样式优化 */
.service-hot-products {
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.service-hot-products h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.product-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-item:last-child {
    border-bottom: none;
}

.product-item:hover {
    background: var(--light-color);
    margin: 0 -15px;
    padding: 15px;
    border-radius: 6px;
}

.product-img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-item:hover .product-img img {
    transform: scale(1.1);
}

.product-content p {
    font-size: 13px;
    color: var(--text-color);
    margin: 0 0 5px;
}

.product-content a {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.product-content a:hover {
    color: var(--secondary-color);
}

/* 服务流程样式优化 */
.working-process .process-box {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.working-process .process-box:hover {
    transform: translateY(-5px);
}

.working-process .process-box .icon {
    border: 2px solid var(--border-color);
    display: inline-block;
    height: 120px;
    line-height: 120px;
    position: relative;
    text-align: center;
    width: 120px;
    border-radius: 50%;
    transition: var(--transition);
}

.working-process .process-box:hover .icon {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.working-process .process-box .icon i {
    color: var(--text-color);
    font-size: 50px;
    transition: var(--transition);
}

.working-process .process-box:hover .icon i {
    color: var(--white);
}

.working-process .process-box .icon .process-number {
    background-color: var(--secondary-color);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    height: 32px;
    left: -32px;
    line-height: 32px;
    position: absolute;
    text-align: center;
    top: 44px;
    width: 32px;
    border-radius: 50%;
}

.working-process .process-box .title {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 20px;
    text-transform: none;
}

.working-process .process-box p {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.5;
}

/* 合作品牌样式优化 */
.sponsors-section {
    padding: 50px 0;
}

.sponsors-section .sec-title {
    margin-bottom: 40px;
}

.sponsors-section .slider {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.sponsors-section .slider li {
    padding: 15px;
    transition: var(--transition);
}

.sponsors-section .slider li:hover {
    transform: scale(1.05);
}

.sponsors-section .slider li img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.sponsors-section .slider li:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer样式优化 */
.footer {
    background: var(--dark-color);
    color: #aaa;
}

.footer-upper {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget .title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.footer-widget p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-widget ul.contact li {
    padding: 8px 0;
    font-size: 13px;
}

.footer-widget ul.contact li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-widget ul.social {
    margin-top: 15px;
}

.footer-widget ul.social li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-widget ul.social li a:hover {
    background: var(--primary-color);
}

.footer-widget ul li a {
    color: #aaa;
    font-size: 13px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-widget .footer-recent-post li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget .footer-recent-post li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-widget .footer-recent-post .img-box {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.footer-widget .footer-recent-post .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-widget .footer-recent-post .content-box h4 {
    font-size: 13px;
    color: var(--white);
    margin: 0 0 5px;
    line-height: 1.4;
}

.footer-widget .footer-recent-post .content-box span {
    font-size: 12px;
    color: #888;
}

.footer-newsletter input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
}

.footer-newsletter input::placeholder {
    color: #888;
}

.footer-newsletter button {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: #e6b800;
}

.footer-work-time {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* 发展历程样式增强 - 使用更强选择器 */
section.meet-doctors {
    min-height: 200px !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 强制覆盖owl-carousel的display: none */
section.meet-doctors div.team-carousel,
section.meet-doctors div.team-carousel.owl-carousel,
section.meet-doctors .owl-carousel.owl-theme {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 100px !important;
    position: relative !important;
}

section.meet-doctors .owl-stage-outer {
    overflow: visible !important;
    min-height: 50px !important;
    display: block !important;
    position: relative !important;
}

section.meet-doctors .owl-stage {
    display: flex !important;
    flex-wrap: wrap !important;
    visibility: visible !important;
    min-height: 50px !important;
    position: relative !important;
}

section.meet-doctors .owl-item {
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important;
    width: 50% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 50px !important;
    position: relative !important;
}

/* 产品卡片样式优化 - 用户体验优化版 */
section.meet-doctors .single-team-member {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 30px;
    position: relative !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex !important;
    flex-direction: column;
}

section.meet-doctors .single-team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

section.meet-doctors .single-team-member .img-box {
    display: block !important;
    visibility: visible !important;
    margin-bottom: 0;
    position: relative !important;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

section.meet-doctors .single-team-member .img-box::before {
    content: '\f0ce';
    font-family: 'Flaticon';
    font-size: 60px;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.meet-doctors .single-team-member .img-box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block !important;
    visibility: visible !important;
    transition: transform 0.5s ease;
    background: #fff;
    padding: 15px;
    position: relative;
    z-index: 1;
}

section.meet-doctors .single-team-member:hover .img-box img {
    transform: scale(1.05) rotate(2deg);
}

section.meet-doctors .single-team-member h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 8px 20px;
    display: block !important;
    visibility: visible !important;
    line-height: 1.5;
    min-height: 48px;
    flex-shrink: 0;
}

section.meet-doctors .single-team-member > span {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    display: block !important;
    visibility: visible !important;
    margin: 0 20px 12px 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

section.meet-doctors .single-team-member p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0 20px 20px 20px;
    display: block !important;
    visibility: visible !important;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

section.meet-doctors .single-team-member .team-contact-info {
    margin: 0 20px 20px 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: block !important;
    visibility: visible !important;
    flex-shrink: 0;
}

section.meet-doctors .single-team-member .team-social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block !important;
    visibility: visible !important;
}

section.meet-doctors .single-team-member .team-social li {
    display: inline-block !important;
    visibility: visible !important;
    margin-right: 8px;
}

section.meet-doctors .single-team-member .team-social li a {
    display: inline-block !important;
    visibility: visible !important;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #f5f5f5;
    color: #666;
    border-radius: 50%;
    transition: var(--transition);
}

section.meet-doctors .single-team-member .team-social li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

section.meet-doctors .single-team-member .btn-mail {
    display: inline-block !important;
    visibility: visible !important;
    margin-left: 10px;
}

/* 响应式设计优化 */
@media (max-width: 991px) {
    .sec-title h2 {
        font-size: 24px;
    }
    
    .single-call-to-action {
        min-height: 180px;
        padding: 40px 20px;
    }
    
    .about-img-large {
        max-height: 250px;
    }
    
    .about-img-small {
        max-height: 120px;
    }
    
    /* 平板端：一排显示2个 */
    section.meet-doctors .owl-item {
        width: 50% !important;
    }
}

@media (max-width: 767px) {
    .top-bar .left-text p {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .social-icons ul {
        text-align: center;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .single-header-info {
        padding-left: 20px;
    }
    
    .mainmenu-area .search-box {
        width: 100%;
        margin-top: 10px;
    }
    
    .sec-title h2 {
        font-size: 22px;
    }
    
    .single-call-to-action {
        min-height: 160px;
        padding: 30px 15px;
    }
    
    .service-category-list,
    .service-hot-products {
        margin-bottom: 20px;
    }
    
    /* 手机端：一排显示1个 */
    section.meet-doctors .owl-item {
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    section.meet-doctors .single-team-member {
        margin-bottom: 20px;
    }
    
    section.meet-doctors .single-team-member .img-box {
        height: 140px;
    }
    
    section.meet-doctors .single-team-member .img-box img {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    section.meet-doctors .single-team-member h3 {
        font-size: 15px;
        margin: 15px 15px 6px 15px;
        min-height: 45px;
    }
    
    section.meet-doctors .single-team-member > span {
        margin: 0 15px 10px 15px;
        font-size: 12px;
    }
    
    section.meet-doctors .single-team-member p {
        margin: 0 15px 15px 15px;
        font-size: 12px;
        -webkit-line-clamp: 3;
    }
    
    section.meet-doctors .single-team-member .team-contact-info {
        margin: 0 15px 15px 15px;
    }
    
    /* 轮播图导航按钮优化 */
    section.meet-doctors .owl-nav {
        margin-top: 20px;
    }
    
    section.meet-doctors .owl-nav button {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    
    .working-process .process-box {
        margin-bottom: 30px;
    }
    
    .footer-upper {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .sec-title h2 {
        font-size: 20px;
    }
    
    .thm-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .single-call-to-action {
        min-height: 140px;
        padding: 25px 15px;
    }
    
    .single-call-to-action .content-box .title {
        font-size: 16px;
    }
    
    .product-item {
        flex-direction: column;
    }
    
    .product-img {
        width: 100%;
        height: 120px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* 额外样式增强 */

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 卡片阴影效果增强 */
.service-category-list,
.service-hot-products,
.single-service-home {
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-category-list:hover,
.service-hot-products:hover {
    box-shadow: var(--shadow-hover);
}

/* 链接样式优化 */
a {
    transition: var(--transition);
}

/* 表单样式优化 */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 202, 0, 0.1);
    outline: none;
}

/* 图片圆角优化 */
img {
    border-radius: 4px;
}

/* 列表样式优化 */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 表格样式优化 */
table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--heading-color);
}

/* 代码块样式 */
pre {
    background: var(--light-color);
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
}

code {
    background: var(--light-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
}

/* 引用样式 */
blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--light-color);
    border-radius: 0 6px 6px 0;
}

blockquote p {
    margin: 0;
    font-style: italic;
    color: var(--heading-color);
}

/* 分割线样式 */
hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

/* 标签样式 */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--white);
}

/* 警告框样式 */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* 加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6b800;
}

/* 打印样式 */
@media print {
    .top-bar,
    .header,
    .mainmenu-area,
    .footer,
    .sponsors-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

