/* 维吾尔语字体, 从右到左*/
@font-face {
    font-family: 'Uzman Tor';
    src: url('../fonts/UzmanTor.woff2') format('woff2'),
         url('..fonts/UzmanTor.woff') format('woff'),
         url('..fonts/UzmanTor.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #07c160;
    --primary-gradient: linear-gradient(135deg, #07c160 0%, #05a049 100%);
    --secondary-gradient: linear-gradient(135deg, #07c160 0%, #05a049 100%);
    --danger-gradient: linear-gradient(135deg, #fa5151 0%, #e84040 100%);
    --warning-gradient: linear-gradient(135deg, #ffc300 0%, #ffa000 100%);
    --text-primary: #181818;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #eeeeee;
    --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
    --radius-lr: 25px 0 0 25px;
    --radius-rr: 0 25px 25px 0;
    --radius-circle: 50%;
    --status-bar-height: 0px;
    --nav-height: 150px;
    --tab-bar-height: 56px;
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --wechat-green: #07c160;
    --wechat-blue: #10aeff;
    --wechat-gray: #f0f0f0;
    --uzman-Azure: #F0FFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    word-wrap : break-word; 
    word-break : keep-all;
}

body {
  font-family: 'Uzman Tor', sans-serif;
}

html, body, button, input, div, span, select, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, article, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, section, small, strike, strong, sub, tt, var, b, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, tr, textarea { 
    font-family:"Uzman Tor"!important;
} 
 
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}