﻿@charset "UTF-8";

/* AlibabaPuHuiTiR */
@font-face {
    font-family: "AlibabaPuHuiTiR";
    src: url("../font/TG-TYPE-Regular.otf"),
        url("../font/TG-TYPE-Bold.otf");
    font-weight: normal;
    font-style: normal;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
em,
img,
strong,
sub,
sup,
tt,
dd,
dl,
dt,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
ul,
li,
p,
a,
section {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

html,
body {
    font-family: "Microsoft YaHei", "宋体", "Tahoma", "Arial", "Roboto", "Droid Sans", "Helvetica Neue", "Helvetica", "Droid Sans Fallback", "Heiti SC", "Hiragino Sans GB", "Simsun", "sans-self";
}

a {
    text-decoration: none;
}

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

img {
    border: 0;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style-type: none;
}

body,
h1,
h2,
h3,
h4,
a,
span,
div,
p,
img,
input,
select,
button,
textarea,
ul,
li,
ol,
dl,
dt,
dd {
    box-sizing: content-box;
}

body {
    overflow-x: hidden;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

div,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
}

ul,
li {
    list-style-type: none;
    text-transform: capitalize;
}

textarea {
    resize: none;
}

/* 去掉默认样式 */
input,
textarea {
    background: none;
    outline: none;
    border: none;
}

input:focus,
textarea:focus {
    border: none;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
}

table {
    width: 100%;
    text-align: center;
    /*文本居中*/
    border-collapse: collapse;
    /*表格的边框合并，如果相邻，则共用一个边框*/
    border-spacing: 0;
    /*设置行与单元格边框的间距。当表格边框独立（即border-collapse:separate;）此属性才起作用*/
}

table td {
    word-break: break-all;
    /*允许在字内换行,即单词可分*/
    word-wrap: break-word;
    /*允许长单词或URL地址换行*/
    font: 500 14px Arial;
}

select {
    outline: none;
    -webkit-tap-highlight-color: #fff;
    border: rem(1) solid #EBEBEB;
    width: rem(100);
    height: rem(50);
    line-height: rem(50);
    /*防止紧紧靠在边上*/
    text-indent: rem(4);
    background-color: transparent;
}



/* select */
ul {
    line-style: none;
}

.select {
    position: relative;
    cursor: pointer;
}

.select:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -4px;
    border-top: 8px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.select .select_text {
    padding: 0 20px 0 10px;
    height: 38px;
    line-height: 38px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.select_ul {
    display: none;
    position: absolute;
    width: 100%;
    bottom: 38px;
    left: 0;
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #528CE6;
    padding: 10px 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* box-shadow: rgba(32, 71, 131, 0.2) 0px 0px 10px 0px; */
}

.select_ul li {
    line-height: 34px;
    text-indent: 10px;
    color: #fff;
    background-color: #528CE6;
}

.select_ul li:hover {
    color: #fff;
    background: #64A1FF;
}

.select_ul li.cur {
    color: #fff;
    background: #64A1FF;
}

.font_line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}