<template> <div class="flexOne" style="min-width: 1200px;"> <!-- 信息 --> <div class="AirModel"> <el-row> <el-col :span="7"> <p>{{AirModel.AirlineName}}</p> <p><el-button type="primary" size="mini">{{AirModel.FreightSpaceStr}}</el-button></p> </el-col> <el-col :span="17"> <p v-for="item in AirModel.flightList" :key="item.Flight_number"> <span class="air">{{item.Flight_number}} </span> <span>{{item.FlightDate}} {{item.Departure_time}}({{item.DIATA}}){{item.DepartureName}} <span v-if="item.StopoverName">-({{item.StopoverIATA}}){{item.StopoverName}}</span> <span v-if="item.ArrivalCityName">- ({{item.AIATA}}){{item.ArrivalCityName}}</span></span> </p> </el-col> </el-row> </div> <!-- Tab选项 --> <div style="width: 100%; height: auto; overflow-x: auto;" class="ownScrollbarStyle"> <table class="groupTourOrderSearchTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'> <tr class="title_tr"> <th>{{$t('fnc.danhao')}}</th> <th>客户信息</th> <!-- <th>{{$t('hotel.suplier_contact')}}</th> --> <th>客人数量</th> <th>单价</th> <th>成交单价</th> <th>应收总额</th> <th>实收</th> <th>退款</th> <th>平台税金</th> <!-- <th width="80">平台在途</th> --> <!-- <th width="80">待收金额</th> --> <th>{{$t('hotel.hotel_status')}}</th> </tr> <tr> <td v-show="dataList.length==0" colspan="16" align="center">{{$t('system.content_noData')}}</td> </tr> <tbody v-for="item in dataList" :key="item.ContactName"> <tr> <td>{{item.Id}}<br/>{{item.EnterName}}<br/>{{item.CreateDate}} </td> <td><p class="fz12 over_ellipsis" style="width: 120px;">{{item.CustomerName}}<br/>{{item.CustomerMobile}}</p></td> <!-- <td><p class="fz12 over_ellipsis" style="width: 120px;">{{item.ContactName}}<br/>{{item.ContactMobile}}</p></td> --> <td>{{item.GuestNum}}/{{item.SeatNum}}{{item.FreightSpace}}</td> <td class="fz12">{{item.TC_Price}}</td> <td class="fz12">{{item.Unit_Price}}</td> <td style="color:#FF9C00">{{item.PreferPrice}}</td> <td style="color:#FF9C00">{{item.Income}}</td> <td>{{item.Refund}}</td> <td>{{item.PlatformTax}}</td> <td> <p v-if="item.RefundStatus!=1"> <span v-if="item.RefundStatus==2">退款中</span> <span v-if="item.RefundStatus==3">已退款</span> </p> <p v-else> <span v-if="item.Status==1">正常</span> <span v-if="item.Status==2">取消</span> <span v-if="item.Status==3">待付款</span> </p> </td> </tr> <tr style="height:20px"> <td colspan="15" class="RL_Order" style="height:20px"> <span class="RL-remarkTitle">名单:</span> <span class="RL-redType RL-remarkCon" v-if="item.GuestList.length>0"> <el-popover placement="right" width="1000" trigger="click"> <el-table :data="item.GuestList"> <el-table-column property="Id" label="排号"></el-table-column> <el-table-column property="Name" :label="$t('system.query_name')"></el-table-column> <el-table-column property="Sex" :label="$t('system.table_sex')"> <template slot-scope="scope"> <span v-if="scope.row.Sex=='1'">男</span> <span v-if="scope.row.Sex=='2'">女</span> </template> </el-table-column> <el-table-column property="Birthday" label="生日"></el-table-column> <el-table-column property="PassportNo" label="护照号码"></el-table-column> <el-table-column property="NationalityName" label="国籍"></el-table-column> <el-table-column width="120" property="MobilePhone" label="手机号码"></el-table-column> <el-table-column property="AgeType" label="年龄类型"> <template slot-scope="scope"> <span v-if="scope.row.AgeType=='1'">成人</span> <span v-if="scope.row.AgeType=='2'">孩子</span> <span v-if="scope.row.AgeType=='3'">婴儿</span> <span v-if="scope.row.AgeType=='4'">老人</span> </template> </el-table-column> </el-table> <span slot="reference"> <span style="cursor:pointer" v-for="(childItem) in item.GuestList" :key="childItem.Name">{{childItem.Name}} </span> </span> </el-popover> </span> <span class="RL-redType RL-remarkCon" v-else> <span>暂无名单</span> </span> </td> </tr> <tr> <td colspan="5" class="groupTourOrder_remarks" style="height: 40px;"> <div> <div> <span>备注:</span> <p>{{item.Remarks}}</p> </div> </div> </td> <td colspan="7" class="groupTourOrder_tickets" style="height: 40px;"> <div> <div>收款单据:</div> <div> <span style="cursor: pointer;"> <span v-for="(item2,index2) in item.FinanceList" :key="index2"> <span @click="goUrl('财务单据','FinancialDocumentsDetail',item2.FrID)" v-if="item2.ColorState===1" class="groupTourOrder_tickets_blue">{{item2.FrID}}</span> <span @click="goUrl('财务单据','FinancialDocumentsDetail',item2.FrID)" v-else-if="item2.ColorState===2" class="groupTourOrder_tickets_green">{{item2.FrID}}</span> <span @click="goUrl('财务单据','FinancialDocumentsDetail',item2.FrID)" v-else-if="item2.ColorState===3" class="groupTourOrder_tickets_red">{{item2.FrID}}</span> <span @click="goUrl('财务单据','FinancialDocumentsDetail',item2.FrID)" v-else-if="item2.ColorState===4" class="groupTourOrder_tickets_black">{{item2.FrID}}</span> <!-- @click="goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')" --> </span> <span v-if="item.FinanceList.length==0"> 暂无数据 </span> </span> </div> </div> <div> <div>付款单据:</div> <div> <span style="cursor: pointer;"> <span v-for="(fina,fin) in item.RefundFinanceList" :key="fin"> <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)" v-if="fina.ColorState===1" class="groupTourOrder_tickets_blue">{{fina.FrID}}</span> <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)" v-else-if="fina.ColorState===2" class="groupTourOrder_tickets_green">{{fina.FrID}}</span> <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)" v-else-if="fina.ColorState===3" class="groupTourOrder_tickets_red">{{fina.FrID}}</span> <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)" v-else-if="fina.ColorState===4" class="groupTourOrder_tickets_black">{{fina.FrID}}</span> <!-- <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)">{{fina.FrID}}</span> --> </span> <span v-if="item.RefundFinanceList.length==0"> 暂无数据 </span> </span> </div> </div> </td> </tr> </tbody> <!-- 展开或关闭 --> <tr v-if="CancelList.length>0" style="height:60px;line-height:60px;width:100%"> <td colspan="15"> <p @click="Toggle" style="cursor:pointer;display:inline-block;width:100%;background:#fff;padding:0 6px;box-sizing:border-box"> 取消订单<span style="color:blue">({{toggle_title}})</span> </p> </td> </tr> <!-- 取消订单列表 --> <tbody v-show="toggle_status" v-for="(item,index) in CancelList" :key="index"> <tr> <td>{{item.Id}}<br/>{{item.EnterName}}<br/>{{item.CreateDate}} </td> <td><p class="fz12 over_ellipsis" style="width: 120px;">{{item.CustomerName}}<br/>{{item.CustomerMobile}}</p></td> <td>{{item.GuestNum}}/{{item.SeatNum}}{{item.FreightSpace}}</td> <td class="fz12">{{item.TC_Price}}</td> <td class="fz12">{{item.Unit_Price}}</td> <td style="color:#FF9C00">{{item.PreferPrice}}</td> <td style="color:#FF9C00">{{item.Income}}</td> <td>{{item.Refund}}</td> <td>{{item.PlatformTax}}</td> <td> <span v-if="item.Status==1">正常</span> <span v-if="item.Status==2">取消</span> </td> </tr> <tr style="height:20px"> <td colspan="15" class="RL_Order" style="height:20px"> <span class="RL-remarkTitle">名单:</span> <span class="RL-redType RL-remarkCon" v-if="item.GuestList.length>0"> <!-- <span v-for="(childItem) in item.GuestList" :key="childItem.Name">{{childItem.Name}} </span> --> <el-popover placement="right" width="1000" trigger="click"> <el-table :data="item.GuestList"> <el-table-column property="Id" label="排号"></el-table-column> <el-table-column property="Name" :label="$t('system.query_name')"></el-table-column> <el-table-column property="Sex" :label="$t('system.table_sex')"> <template slot-scope="scope"> <span v-if="scope.row.Sex=='1'">男</span> <span v-if="scope.row.Sex=='2'">女</span> </template> </el-table-column> <el-table-column property="Birthday" label="生日"></el-table-column> <el-table-column property="PassportNo" label="护照号码"></el-table-column> <el-table-column property="NationalityName" label="国籍"></el-table-column> <el-table-column width="120" property="MobilePhone" label="手机号码"></el-table-column> <el-table-column property="AgeType" label="年龄类型"> <template slot-scope="scope"> <span v-if="scope.row.AgeType=='1'">成人</span> <span v-if="scope.row.AgeType=='2'">孩子</span> <span v-if="scope.row.AgeType=='3'">婴儿</span> <span v-if="scope.row.AgeType=='4'">老人</span> </template> </el-table-column> </el-table> <span slot="reference"> <span style="cursor:pointer" v-for="(childItem) in item.GuestList" :key="childItem.Name">{{childItem.Name}} </span> </span> </el-popover> </span> <span class="RL-redType RL-remarkCon" v-else> <span>暂无名单</span> </span> </td> </tr> <tr> <td colspan="5" class="groupTourOrder_remarks" style="height: 40px;"> <div> <div> <span>备注:</span> <p>{{item.Remarks}}</p> </div> </div> </td> <td colspan="7" class="groupTourOrder_tickets" style="height: 40px;"> <div> <div>收款单据:</div> <div> <span style="cursor: default;"> <span class="tickets_green" v-for="fina in item.FinanceList" :key="fina.FrID"> <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)">{{fina.FrID}}</span> </span> <span v-if="item.FinanceList==0"> 暂无数据 </span> </span> </div> </div> <div> <div>付款单据:</div> <div> <span style="cursor: default;"> <span class="tickets_green" v-for="fina in item.RefundFinanceList" :key="fina.FrID"> <span @click="goUrl('财务单据','FinancialDocumentsDetail',fina.FrID)">{{fina.FrID}}</span> </span> <span v-if="item.RefundFinanceList==0"> 暂无数据 </span> </span> </div> </div> </td> </tr> </tbody> </table> </div> </div> </template> <script> export default { data() { return { activeName: "first", msg: { AirProductId: "" }, dataList: [], loading: false, AirModel: {}, CancelList: [], toggle_status: false, toggle_title: "展开" }; }, components: {}, created() { var id = this.$route.query.ID; if (id) { this.msg.AirProductId = id; this.getList(); } }, methods: { goUrl: function (name, path, id ) { this.$router.push({ name: path, query: { id: id, blank: 'y', tab: name} }); }, Toggle() { this.toggle_status = !this.toggle_status; if (this.toggle_status) { this.toggle_title = "关闭"; } else { this.toggle_title = "展开"; } }, getList() { this.loading = true; this.apipost( "ticket_get_GetScatteringOrderForAirTicketList", this.msg, res => { this.loading = false; if (res.data.resultCode == 1) { this.total = res.data.data.count; this.dataList = res.data.data.NorList; this.AirModel = res.data.data.AirModel; this.CancelList = res.data.data.CancelList; } else { this.Error(res.data.message); } }, err => {} ); } } }; </script> <style scoped> @import "../../assets/css/newTravelManager.css"; .tickets_green { color: #008000; text-decoration: underline; margin-right: 6px; cursor: pointer; } .groupTourOrderSearchTable tr:first-child td:first-child { border-bottom: none; } .AirModel { font-size: 14px; width: 560px; margin-bottom: 15px; font-weight: 400; padding: 6px; height: 100%; border: 1px solid #e6e6e6; background-color: #ffffff; color: #221515; border-radius: 6px; } .AirModel .air { color: #ff0066; font-weight: bold; } .AirModel p { padding: 6px 0; } .title_tr th { width: 10%; } .color_red_order { color: #e95252 !important; } .groupTourOrderSearch { width: 100%; min-height: auto; padding: 0 0 20px 0; } .groupTourOrderSearch li { float: left; font-size: 12px; color: #666; margin: 20px 0 0px 0; } .groupTourOrderSearch li > span { display: inline-block; } .groupTourOrderSearch li span > em { display: inline-block; min-width: 60px; text-align: right; font-style: normal; margin: 0 12px 0 0; } .groupTourOrderSearch li:last-child { position: fixed; z-index: 10; top: 36px; right: 20px; } .groupTourOrderSearch ul { overflow: hidden; } .groupTourOrderSearchTable { width: 100%; min-width: 1500px; font-size: 14px; color: #333; border-bottom: 1px solid #cccccc; border-right: 1px solid #cccccc; /* border-collapse: collapse; */ } .groupTourOrderSearchTable tbody tr:last-child { /* border-bottom: 2px solid #333; */ } .groupTourOrderSearchTable tr:first-child td:first-child { /* border-bottom: 2px solid #333; */ } .groupTourOrderSearchTable tbody { } .groupTourOrderSearchTable tr th { background: #e6e6e6; height: 30px; font-size: 12px; text-align: left; text-indent: 15px; border-top: 1px solid #cccccc; border-left: 1px solid #cccccc; } .groupTourOrderSearchTable tr { background: #fff; text-align: left; } .groupTourOrderSearchTable tr td { /* height: 60px; */ padding: 10px; border-top: 1px solid #cccccc; border-left: 1px solid #cccccc; } .groupTourOrderSearchTable tr td p { line-height: 20px; } .groupTourOrderSearchTable .dowloadSpan:hover { text-decoration: underline; cursor: pointer; } .groupTourOrderSearchTable span.personNo { text-decoration: underline; cursor: pointer; } .groupTourOrderSearchTable span.personNo:hover { font-weight: bold; color: #e95252; } .personNolayer p { height: 28px; line-height: 28px; padding-left: 15px; } .personNolayer p > span { font-size: 12px; color: #333; margin-right: 15px; } .personNolayer table { padding: 10px 0 0 20px; width: 100%; background-color: #ededed; border-collapse: collapse; border: 1px solid #d2d2d2; font-size: 12px; } .personNolayer table th { background-color: #ededed; height: 34px; text-indent: 15px; } .personNolayer table td { background-color: #ffffff; padding: 9px 15px; color: #333333; border: 1px solid #d2d2d2; } .personNolayer table ._color_666 { color: #666666; } .personNolayer table tr._color_666 th { padding: 9px 15px; } .groupSuperSearchLayer { } .groupSuperSearchLayer > p { padding: 20px 0; font-size: 14px; color: #333; font-weight: bold; } .groupSuperSearchLayerTable { font-size: 12px; color: #666; } .groupSuperSearchLayerTable tr { height: 50px; } .groupSuperSearchLayerTable td { padding-right: 15px; } .groupTourOrderIcon button { width: 30px; height: 30px; border-radius: 4px; } .groupTourOrderIcon .el-button--primary { padding: 5px; margin: 0; font-size: 14px !important; } .groupTourOrderIcon .el-button + .el-button { margin-left: 0 !important; } .productQuerybottomLayer { overflow: auto; position: fixed; /* max-height: 300px; */ z-index: 50; bottom: 0; left: 0; border-top: 3px solid #38425d; background-color: #ffffff; padding: 10px 10px 0; width: 100%; } .productQuerybottomLayer .el-form-item__label { font-size: 12px !important; } .productQuerybottomLayer > p { border-left: 3px solid #e95252; text-indent: 15px; height: 16px; font-family: "PingFangSc-Fine"; font-size: 16px; margin-bottom: 20px; line-height: 14px; color: #000; } .productQuerybottomLayer .el-input-number { width: auto !important; } .groupTourOrder_count_green { color: #1bc594; } .groupTourOrder_count_blue { color: #4d7afd; } .groupTourOrder_count_yellow { color: #ff9c00; } .groupTourOrder_count_gray { color: #999999; } .groupTourOrder_count { margin: 0 0 20px 0; width: 100%; height: auto; } .groupTourOrder_count_col { height: 80px; } .groupTourOrder_count_item { font-weight: 400; padding: 10px; height: 100%; border: 1px solid #e6e6e6; background-color: #ffffff; color: #333333; } .groupTourOrder_count_item > div > i { font-size: 12px; vertical-align: bottom; } .groupTourOrder_count_item > div > span:nth-child(2) { font-size: 14px; vertical-align: bottom; } .groupTourOrder_count_item > div > span:nth-child(3) { font-weight: bold; font-size: 16px; vertical-align: bottom; } .groupTourOrder_count_item > p { font-size: 12px; line-height: 18px; } .groupTourOrder_count_item > p > span { margin: 0 5px 0 0; white-space: nowrap; } .groupTourOrder_more { margin: 0 -12px; } .groupTourOrder_more > div { width: 100%; height: 30px; line-height: 30px; text-align: center; font-size: 12px; color: #333333; background-color: #ffffff; cursor: pointer; } .groupTourOrder_more > div:hover { color: #297bef; background-color: #dcebff; } .groupTourOrder_remarks { font-size: 0px; } .groupTourOrder_remarks > div { } .groupTourOrder_remarks > div > div:nth-child(1) { float: left; display: flex; align-items: flex-start; } .groupTourOrder_remarks > div > div:nth-child(1) > span { line-height: 20px; font-size: 12px; color: #e95252; white-space: nowrap; } .groupTourOrder_remarks > div > div:nth-child(1) > p { line-height: 20px; font-size: 12px; color: #e95252; } .groupTourOrder_remarks > div > div:nth-child(2) { float: right; text-align: right; font-size: 12px; color: #e95252; } .groupTourOrder_remarks > div > div:nth-child(2) > i { font-size: 10px; cursor: pointer; } .groupTourOrder_remarks > div::after { display: block; clear: both; content: ""; visibility: hidden; height: 0; } .groupTourOrder_remarks_btn { padding: 0px; width: 12px; height: 12px; border: none; background-color: transparent; } .groupTourOrder_remarks_btn > i { color: #e95252; font-size: 12px; } .groupTourOrder_remarks_popover > div { display: inline-block; font-size: 14px; color: #000000; } .groupTourOrder_remarks_popover > div::before { content: ""; display: inline-block; margin: 0 5px 0 0; width: 2px; height: 12px; background-color: #e95252; } .groupTourOrder_remarks_popover > span { display: block; margin: 0 0 0 0; width: 100%; text-align: center; font-size: 12px; color: #000000; } .groupTourOrder_remarks_popover > p { margin: 5px 0 0 0; padding: 3px; width: 100%; max-height: 300px; overflow-y: auto; font-size: 12px; color: #000000; } .groupTourOrder_remarks_popover > p:nth-child(even) { background-color: #e6e6e6; } .groupTourOrder_remarks_popover > p > span:nth-child(1) { float: left; } .groupTourOrder_remarks_popover > p > span:nth-child(2) { margin: 0 10px 0 0; float: right; } .groupTourOrder_remarks_popover > p::after { display: block; clear: both; content: ""; visibility: hidden; height: 0; } .groupTourOrder_tickets > div { display: table; } .groupTourOrder_tickets > div > div { display: table-cell; cursor: pointer; } .groupTourOrder_tickets > div > div:nth-child(1) { width: 80px; } .groupTourOrder_tickets > div > div > span { display: inline-block; margin: 0 10px 0 0; } .groupTourOrder_tickets_red { color: #ff0000; text-decoration: underline; } .groupTourOrder_tickets_blue { color: #0000ff; text-decoration: underline; } .groupTourOrder_tickets_green { color: #008000; text-decoration: underline; } .groupTourOrder_tickets_black { color: #000000; text-decoration: underline; } .groupTourOrderByTuan_ico { margin: 0 10px 0 0; } .groupTourOrderByTuan_ico > i { display: inline-block; margin: 0 2px 0 0; width: 8px; height: 8px; border-radius: 2px; vertical-align: middle; } .groupTourOrderByTuan_ico > span { vertical-align: middle; } /* 出团通知书打印选择 */ .travelControlTripLayer { position: fixed; z-index: 99; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); left: 0; top: 0; } .travelControlTripLayerCont { position: absolute; left: 50%; margin-left: -300px; background: #fff; top: 50%; margin-top: -180px; width: 600px; } .travelControlTripLayerCont > div { padding: 0 30px; } .travelControlTripLayerCont > div label { cursor: pointer; vertical-align: middle; } .travelControlTripLayerCont > div label input { vertical-align: middle; } .travelControlTripBtn { color: #fff; width: 90px; height: 30px; background: #e95252; border: 1px solid #e95252; cursor: pointer; border-radius: 15px; margin-left: 10px; } .travelControlTripLayer input[type="checkbox"] + label::before { content: "\A0"; display: inline-block; width: 15px; height: 15px; margin-right: 5px; border-radius: 4px; background-color: white; text-indent: 0.15em; line-height: 15px; color: white; border: 1px solid #e95252; } .travelControlTripLayer input[type="checkbox"]:checked + label::before { content: "\2713"; background-color: #e95252; } .travelControlTripLayer input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); } .travelControlTripLayer input[type="checkbox"]:focus + label::before { box-shadow: none; } .travelControlTripLayer input[type="checkbox"]:disabled + label::before { background-color: gray; box-shadow: none; color: #555; } .groupTourOrder_transfer { position: fixed; z-index: 50; bottom: 0; left: 50px; padding: 10px 10px; width: 100%; min-width: 1366px; min-height: 200px; border-top: 3px solid #38425d; background-color: #ffffff; overflow-y: auto; } .groupTourOrder_transfer > .transfer_header { position: relative; width: 100%; height: 30px; } .groupTourOrder_transfer > .transfer_header > div:nth-child(1) { display: inline-block; padding: 0 10px; width: 200px; height: 30px; line-height: 30px; border-left: 3px solid #e95252; text-indent: 10px; font-size: 16px; color: #000000; } .groupTourOrder_transfer > .transfer_header > div:nth-child(2) { position: absolute; top: 0px; right: 80px; height: 30px; } .groupTourOrder_transfer > .transfer_header > div:nth-child(2) > div:nth-child(1) { display: inline-block; padding: 0 15px; height: 30px; line-height: 28px; font-size: 14px; color: #e95252; border: 1px solid #e95252; background: #fff; border-radius: 15px; cursor: pointer; vertical-align: top; } .groupTourOrder_transfer > .transfer_header > div:nth-child(2) > div:nth-child(2) { display: inline-block; margin: 0 0 0 10px; padding: 0 15px; height: 30px; line-height: 28px; font-size: 14px; color: #fff; border: 1px solid #e95252; background: #e95252; border-radius: 15px; cursor: pointer; vertical-align: top; } .groupTourOrder_transfer > .transfer_info { padding: 20px 0; width: 100%; font-size: 0px; border-bottom: 1px dashed #999999; } .groupTourOrder_transfer > .transfer_info > div { display: inline-block; padding: 0 10px; width: 25%; height: 30px; vertical-align: top; } .groupTourOrder_transfer > .transfer_info > div > em { display: inline-block; padding: 0 10px; width: 35%; height: 30px; line-height: 30px; text-align: right; font-size: 16px; vertical-align: top; } .groupTourOrder_transfer > .transfer_info > div > span { display: inline-block; padding: 0 10px; width: 65%; height: 30px; line-height: 30px; text-align: left; font-size: 16px; border-radius: 3px; background-color: #e5e5e5; vertical-align: top; } .groupTourOrder_transfer > .transfer_input { padding: 20px 0; width: 100%; font-size: 0px; } .groupTourOrder_transfer > .transfer_input > div { display: inline-block; padding: 0 10px; width: 25%; height: 30px; vertical-align: top; } .groupTourOrder_transfer > .transfer_input > div > em { display: inline-block; padding: 0 10px; width: 35%; height: 30px; line-height: 30px; text-align: right; font-size: 16px; vertical-align: top; } .groupTourOrder_transfer > .transfer_input > div > .el-input { display: inline-block; width: 65%; height: 30px; line-height: 30px; text-align: left; font-size: 14px; vertical-align: top; } </style>